/* ==================================
1- core
=====================================*/
@import url("https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap");

:root {
    --primary-color: #1651d1; /* Define your primary color */
    --header-background-color: #e7e6e6; /* Define your header background color */
    --calming-blue: #4a90e2;
    --health-Green: #7ed321;
    --main-Green: #347758;
    --Light-Gray: #f5f7fa;
    --dark-Blue: #003d5b;
    --orange-color: #f4c340;
    --smoke-color: #bcbcbc;
    --dark-Green: #0a472e;
    --theme-color: rgba(38, 156, 83, 1);
    --secondary-color: rgba(255, 172, 0, 1);
    --text-color: rgba(106, 106, 106, 1);
    /* background */
    --bg-secondary: #f2f2f2;
    --bg-white: #fff;

    /* text */
    --text-secondary: #656565;
    --text-secondary-dark: #3d3d3d;
    --text-secondary-light: #f2f2f2;
    --text-white: #fff;
    --text-black: #000;
    --text-footer-body: #87a096;
    --text-smoke: #b3b3b3;

    /*border-colors*/
    --th-border-secondary: #f2f2f2;

    /* fonts */
    --font-heading: "Signika";

    /* For LTR */
    --translate-distance: 100px;
    --insent-icons: -20px;
    --right: right;
}

/* For RTL */
[dir="rtl"] {
    --translate-distance: -100px;
    --insent-icons: -5px;
    --right: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Signika", sans-serif;
    color: var(--text-secondary-dark);
}

span {
    color: var(--text-secondary);
}

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

button {
    border: unset;
    outline: unset;
}
body {
    margin: 0px;
    padding: 0px;
    overflow-x: none;
    /* background-color: var(--bg-secondary); */
}

a {
    text-decoration: none;
    color: var(--text-secondary);
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1650px;
    }
}

*:focus {
    outline: none !important;
}
.text-orange {
    color: var(--orange-color);
}
.text-secondary-light {
    color: var(--text-secondary-light);
}
.text-secondary {
    color: var(--text-secondary);
}
.text-secondary-dark {
    color: var(--text-secondary-dark) !important;
}
.text-green {
    color: var(--main-Green);
}
.text-smoke {
    color: var(--smoke-color);
}
.text-white-color {
    color: var(--text-white);
}
.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;

    color: #fff !important;
    text-align: center;
    border-radius: 50px;
    padding: 10px 40px;
    z-index: 1;
    transition: all 0.5s ease-in-out 0s;
}

/* bg-color */
.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.Header_offer {
    padding: 4px 8px;
    background-color: var(--bg-secondary); /* Use the variable */
    font-size: 14px;
    color: var(--text-secondary);
}
#languageButton {
    background-color: var(--Light-Gray) !important;
    border: none;
    color: rgb(51, 49, 49);
    font-weight: 600;
}
/* span about offer*/
.Header_offer_span {
    color: var(--primary-color); /* Use the variable */
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-weight: 600;
}
.button_lang {
    background-color: var(--header-background-color);
    border: none;
    color: black;
}

.upper-nav a:hover {
    color: var(--main-Green) !important;
}
/* Logo Section */
.Home_Logo_Section {
    padding-top: 25px;
    padding-bottom: 25px;
}
.Home_Logo_Section_img {
    width: 100px;
    /* border-radius: 50%;*/
    /* margin-right: 50px; */
}
/* Search Area */

.upper-nav .search-container {
    width: 45%;
}
.Home_Logo_Section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.Home_Logo_Section_search_container {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 5px 10px;
    width: 100%; /* adjust as needed */
    height: 50px;
}
.Home_Logo_Section_search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
    width: 100%;
}

.Home_Logo_Section_search-input {
    color: #888;
}

.Home_Logo_Section_search-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
}

.Home_Logo_Section_search-btn i {
    color: var(--dark-Blue);
}

/* Optional: Adjusting focus */
.search-input:focus {
    box-shadow: none;
}
/* login , cart , wishlist */
.Home_Logo_Section_Login_cart_container {
    display: flex;
    gap: 10px;
}

.Home_Logo_Section_Login_cart_container a {
    font-size: 15px;
}
/* customize Navbar */
.nav-section,
.nav-section-canvas {
    border-top: 1px solid var(--th-border-secondary);
    padding: 25px 12px;
}
.nav-section ul li,
.nav-section-canvas ul li {
    position: relative;
}
.nav-section ul li::after,
.nav-section-canvas ul li::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--main-Green);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease-in 300ms;
}
.nav-section ul li:hover a,
.nav-section-canvas ul li:hover a {
    color: var(--main-Green);
}
.nav-section ul li:hover::after,
.nav-section-canvas ul li:hover::after {
    width: 100%;
}
.nav-section ul a,
.nav-section-canvas ul a {
    color: var(--text-secondary-dark);
    font-size: 18px;
    font-weight: 500;
}

.nav-section-canvas {
    border-top: unset;
}

.nav-section-canvas ul li {
    width: fit-content;
}
.nav-section-canvas ul li:hover::after {
    width: 100%;
}

.navbar-toggler {
    background-color: var(--orange-color);
    border: unset;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.navbar-toggler i {
    color: var(--text-white);
    font-size: 32px;
}
.breadcrumb-container {
    background-image: url("./assets/BRC.jpg");
    height: 35vh;
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.breadcrumb-container h3 {
    color: var(--main-Green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: unset;
}

.contact {
    font-weight: bold;
}
/* Adjust dropdown positioning */
.dropdown-menu {
    margin-top: 0; /* Remove the margin caused by the hover delay */
}
#dropdownMenuButton {
    background-color: var(--calming-blue);
    border: none;
}
/* card offer section */
/* Card styling */

.banner_image_Container {
    display: flex;
    padding: 8px;
    padding-left: 50px;
    padding-right: 50px;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}
.banner_image_Container_p1 {
    width: 100%;
}
.banner_image_Container_p2 {
    display: flex;
    flex-direction: column;
    max-height: 450px;
    gap: 30px;
}
.image-tall {
    height: 500px !important;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}
.product-card .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /*background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    /* text-align: center; */
    padding: 20px;
}

.btn-main {
    background-color: var(--orange-color);
    color: var(--text-secondary-dark);
    width: fit-content;
    padding: 16px 37px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 10px;
    transition: all ease-in 300ms;
}

.btn-main:hover {
    background-color: var(--main-Green);
    color: var(--text-white);
}

.btn-second {
    font-family: var(--font-heading);
    color: var(--orange-color);
    font-weight: 700;
    border: 1px solid var(--th-border-secondary);
    padding: 13px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all ease-in-out 300ms;
}

.btn-second:hover {
    border-color: var(--main-Green);
    color: var(--main-Green);
}

.card-body h3 {
    font-size: calc(1.425rem + 1.2vw);
    font-weight: 700;
    width: 70%;
    font-size: 36px;
}

.heading-adv-span {
    color: var(--orange-color);
    font-weight: 500;
}

.product-card p {
    font-size: 1.1rem;
}
.product-card .btn {
    margin-top: 10px;
    background-color: #ffcc48;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
}
/* Feature Box */
.feature-box {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #ddd;
    border: 2px solid var(--Light-Gray);
    border-radius: 12px;
    margin-bottom: 20px;
}
.feature-box:last-child {
    border-right: none;
}
.feature-box i {
    font-size: 40px;
    color: var(--health-Green);
    margin-bottom: 15px;
    transition: all ease-in 300ms;
}

.feature-box:hover i {
    transform: scale(0.8);
}
/* banner and addToCart Section */
/* General container for banner section */
.Cart_Section_banner_Container {
    background-color: var(--Light-Gray);
    margin-top: 25px;
}
.Promo_banner_section {
    position: relative;
    background-color: #fff;
    border-radius: 15px 0px 0px 15px;
}
.Promo_banner_section img {
    border-radius: 15px 0px 0px 15px;
    height: 400px;
    transition: transform 0.3s ease;
}
.Promo_banner_section:hover img {
    transform: scale(1.02);
}
.Promo_banner_section_Info {
    background-color: #fff;
    border-radius: 0px 15px 15px 0px;
}
.Promo_banner_section_Info_Container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding-top: 50px;
}
.Promo_banner_section_Info_Container h6 {
    font-size: 25px;
    font-weight: 500;
}
.Promo_banner_section_Info_Container ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 5px;
    cursor: pointer;
}
.Promo_banner_section_Info_Container ul li {
    transition: transform 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}
.Promo_banner_section_Info_Container ul li:hover {
    color: var(--primary-color);
    font-weight: 500;
    transform: translateX(
            10px
    ); /* Adjust the value (10px) to move further or less */
}
/* button at promo section  */
.Promo_banner_section_Info_Container_Button {
    padding: 8px;
    width: 150px;
    background-color: #fff;
    border: 0.5px solid var(--health-Green);
    font-size: 16px;
    color: var(--health-Green);
    font-weight: 500;
}
.Promo_banner_section_Info_Container_Button:hover {
    border: 0.5px solid var(--calming-blue);
    color: var(--calming-blue);
}
.promo-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 55px;
    top: 20%;
    left: 5%;
    color: white;
    max-width: 300px;
}
.promo-content h2 {
    color: var(--health-Green);
    font-size: 18px;
}
.promo-content h1 {
    color: var(--Light-Gray);
    font-size: 30px;
    font-weight: 500;
}
.promo-content-button {
    color: #fff;
    font-size: 18px;
}
.promo-content-button:hover {
    color: var(--health-Green);
    font-size: 18px;
}
/*card Section */
.Card_Container {
    background-color: #fff;
    width: 200px;
    height: 350px;
    margin: 5px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s ease-in-out; /* Smooth transition */
}

.Card_Container:hover {
    background-color: #fff;
    width: 200px;
    height: 390px;
    margin: 5px;
    border-radius: 15px;
    display: flex;
    border: 1px solid var(--health-Green) !important;
    flex-direction: column;
    align-items: flex-start;
}
.Card_Container:hover .icon-container {
    transform: scale(1.05); /* Optionally scale the icon for a hover effect */
    margin-top: 50px; /* New margin */
    transition: background-color 0.3s ease, transform 0.3s ease,
    margin-top 0.3s ease; /* Animate margin-top */
}
.icon-container {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.05); /* Light partial background */
    cursor: pointer;
}

.icon-container:hover,
.upper-nav_icon:hover .icon-container {
    background-color: var(--health-Green); /* Full background on hover */
    border-radius: 10px;
}

.icon {
    position: relative;
    font-size: 20px;
    color: #777; /* Icon color */
    z-index: 1; /* Keeps icon above the background effect */
}
.Card_Container_product_image {
    width: 150px;
    text-align: center;
    margin-left: 1.5vw;
}
.Card_Container_Content {
    padding-left: 15px;
}
.Card_Price {
    font-size: 18px;
    color: var(--health-Green);
    font-weight: 700;
}
.Card_Unit {
    color: gray;
    font-size: 12px;
    font-weight: 400;
    margin: 0px;
}
.Card_Title {
    padding-left: 20px;
    color: var(--dark-Blue);
    size: 20px;
    font-weight: 700;
}
/* start design testmation section */
.testimonial-section {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-color: var(--Light-Gray);
    border-radius: 15px;
    /* margin-top: 25px; */
}
.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
}
.testimonial-content {
    position: relative;
    z-index: 1;
}
.testimonial-header {
    font-size: 30px;
    font-weight: bold;
}
.testimonial-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
}
.testimonial-stars {
    color: #ffd700; /* Gold color for stars */
    margin-top: 10px;
}
.testimonial-content-text {
    color: #fff !important;
    font-weight: 600;
    z-index: 1;
}
.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.client-info {
    font-weight: bold;
}
/* rated and top section */
.TopRated_Section {
    padding-top: 25px;
    padding-bottom: 25px;
}
/* ads sectop top and related */
.section-title {
    font-family: "Arial", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--main-Green);
    padding: 1rem 0;
    width: 93%;
    margin: auto;
}

.product-list {
    background-color: white;
    padding: 20px;
    border-radius: 40px;
    width: 93%;
    margin: auto;
}

.product-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.product-img {
    width: 100px;
    height: 100px;
}

.product-item .text-content {
    width: 33%;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
}

.promo-banner {
    position: relative;
    height: 50%;
    overflow: hidden;
    border-radius: 40px;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    transition: all ease-in-out 500ms;
}
.promo-banner:hover img {
    transform: scale(1.3);
}

.promo-text {
    position: absolute;
    /* text-align: center; */
    top: 20%;
    inset-inline-start: 5%;
    max-width: 180px;
    color: #fff;
    font-weight: bold;
}

.promo-text h3 {
    font-size: 1.5rem;
    text-shadow: #000;
}

.promo-text p {
    font-size: 1rem;
}
.toprated_price_ADD {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Brand_Logo {
    width: 80px;
    /* border-radius: 50px;*/
    filter: grayscale(80%);
    cursor: pointer;
}
.Brand_Logo:hover {
    filter: grayscale(0%);
}
.linkproduct {
    color: gray;
}
/*logo section */
.logo-container {
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    display: inline-block; /* لجعل العناصر تكون بجانب بعضها */
    margin: 0 10px; /* مسافة بين الشعارات */
    border-radius: 50px;
}
/* إنشاء تأثير الحركة المستمر */
.marquee {
    display: flex;
    align-items: center;
    overflow: hidden; /* إخفاء الشعارات الخارجة عن نطاق العرض */
    white-space: nowrap;
    background-color: var(--bg-secondary);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scroll-left 25s linear infinite; /* مدة الحركة 15 ثانية */
}
.marquee-content img {
    width: 100px;
}

.testimonial-section {
    position: relative;
    padding: 50px 0;
    /* height: 490px; */
}

.testimonial-section::before {
    content: "";
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./assets/h7_bg1.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(50%);
    z-index: -1; /* Make sure the background is behind the content */
}

.testimonial-content {
    position: relative; /* Ensure the content is above the background */
    top: 20%;
}

/* تحريك الشعارات من اليمين إلى اليسار وإعادة نفسها */
@keyframes scroll-left {
    0% {
        transform: translateX(10%); /* تبدأ من خارج الشاشة من اليمين */
    }
    100% {
        transform: translateX(-100%); /* تنتهي بخروجها إلى خارج الشاشة من اليسار */
    }
}

/* footer Section */
.footer {
    background-color: var(--dark-Green);
}

footer h5,
footer h6 {
    color: #f7f7f7;
    font-weight: 600;
}

footer a {
    text-decoration: none;
    color: #ffffff;
}

footer .text-white:hover {
    text-decoration: underline;
    color: var(--health-Green);
}

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 3rem 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--text-footer-body);
}

.footer-links a:hover {
    color: var(--orange-color);
}

.btn-primary {
    background-color: #ffcc00;
    border: none;
}

.btn-warning:hover {
    background-color: #ffb300;
}
.Copy_Right {
    color: var(--Light-Gray);
    font-weight: 500;
}

.Cover_Content_Title {
    line-height: 1;
    font-weight: 700;
    font-size: 62px;
    font-family: "Signika", "HelveticaNeue-Light", "Helvetica Neue Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-bottom: 10px;
    color: var(--main-Green);
}
.Bread_crump span,
.Bread_crump {
    color: var(--smoke-color);
    font-weight: 500;
}
/* our team */
.card {
    border-radius: 25px !important;
    margin-top: 2.5vh;
    margin-bottom: 2.5vh;
    cursor: pointer;
}
.card img {
    border-radius: 25px;
}
.card p {
    color: orange;
}
.card-text {
    color: #000 !important;
}
.card h5 {
    color: var(--main-Green);
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.footer-social-icons .icon {
    color: var(--text-black);
    background-color: var(--bg-white);
    padding: 1em 1.15em;
    border-radius: 50%;
    font-size: 12px;
    transition: all ease-in-out 300ms;
}

.footer-social-icons li:nth-child(1) .icon {
    padding: 1em 1.3em;
}

.footer-social-icons .icon:hover {
    background-color: var(--orange-color);
    color: var(--text-white);
}

/* responsive  */
/* For devices with a screen width less than 480px (small phones) */
@media (max-width: 767px) {
    .upper-nav .search-container {
        width: 80%;
    }
}
@media (max-width: 480px) {
    .btn-main {
        padding: 10px;
    }

    .card-body h3 {
        font-size: calc(1.425rem + 0.1vw);
        font-weight: 700;
        width: 50%;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    .heading-adv-span {
        font-size: 0.8rem;
    }

    .Header_offer {
        max-width: 480px;
        height: 50px;
    }
    .Home_Logo_Section_search_container {
        position: absolute;
        margin-top: 50px;
        top: 120px;
        display: none;
    }
    .Home_Logo_Section {
        position: absolute;
        top: 15%;
    }
    .banner_image_Container {
        margin-top: 125px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .banner_image_Container_p1 {
        display: none;
    }
    .product-card {
        width: 380px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px;
        justify-content: center;
    }
    .Promo_banner_section img {
        width: 100%;
        border-radius: 25px;
    }
    .Promo_banner_section_Info {
        border-radius: 8px;
    }
    .Promo_banner_section_Info_Container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }
    .Card_Container {
        width: 280px;
        margin-right: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .Card_Container:hover {
        width: 280px;
        margin-right: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .Card_Container_Content {
        padding: 0px;
        margin: 0px;
    }
    .testimonial-content {
        position: relative;
        z-index: 1;
        top: 1.2vw;
        display: flex;
        align-items: center;
    }
    .testimonial-header {
        font-size: 18px;
        font-weight: bold;
        /* position: absolute; */
        bottom: 30;
    }
    .testimonial-box {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 30px;
        width: 80vw;
        /* height: 45vw; */
        font-size: 10px;
    }
}

/* Elementpath css */

/*
el_01
color
*/
.color_blue {
    color: #7f27d8;
}
.color_purple {
    color: #6f42c1;
}
.color_pink {
    color: #d63384;
}
.color_red {
    color: #dc3545;
}
.color_orange {
    color: #fd7e14;
}
.color_yellow {
    color: #ffc107;
}
.color_green {
    color: #198754;
}
.color_gray {
    color: #6c757d;
}
.color_gray_dark {
    color: #343a40;
}
.color_light {
    color: #f8f9fa;
}
.color_dark {
    color: #212529;
}
.color_black{
    color: #000000;
}

/*
el_02
background
*/
.bg_blue {
    background-color: #7f27d8;
}
.bg_purple {
    background-color: #6f42c1;
}
.bg_pink {
    background-color: #d63384;
}
.bg_red {
    background-color: #dc3545;
}
.bg_orange {
    background-color: #fd7e14;
}
.bg_yellow {
    background-color: #ffc107;
}
.bg_green {
    background-color: #198754;;
}
.bg_gray {
    background-color: #6c757d;
}
.bg_gray-dark {
    background-color: #343a40;
}
.bg_light {
    background-color: #f8f9fa;
}
.bg_dark {
    background-color: #212529;
}
.bg_cover {
    background-size: cover;
}
.bg_contain {
    background-size: contain;
}
.bg_fixed {
    background-attachment: fixed;
}
.bg_top {
    background-position: top;
}
.bg_right {
    background-position: right;
}
.bg_bottom {
    background-position: bottom;
}
.bg_left {
    background-position: left;
}
.bg_center {
    background-position: center;
}
/*
el_03
display
*/
.d_block {
    display: block;
}
.d_iblock {
    display: inline-block;
}
.d_flex {
    display: flex;
}
.d_table {
    display: table;
}
.d_tcell {
    display: table-cell;
}
.d_none {
    display: none;
}
/*
el_04
position
*/
.p_relative {
    position: relative;
}
.p_absolute {
    position: absolute;
}
.p_fixed {
    position: fixed;
}
/*
el_05
Border
*/
.border {
    border: 1px solid #ddd;
}
.border_top {
    border-top: 1px solid #ddd;
}
.border_right {
    border-right: 1px solid #ddd;
}
.border_bottom {
    border-bottom: 1px solid #ddd;
}
.border_left {
    border-left: 1px solid #ddd;
}
/*
el_06
Transition
*/
.tran_3 {
    transition: .3s;
}
.tran_4 {
    transition: .4s;
}
.tran_5 {
    transition: .5s;
}
/*
el_07
Font size
*/
.fs_0 {
    font-size: 0;
}
.fs_1 {
    font-size: 1px;
}
.fs_2 {
    font-size: 2px;
}
.fs_3 {
    font-size: 3px;
}
.fs_4 {
    font-size: 4px;
}
.fs_5 {
    font-size: 5px;
}
.fs_6 {
    font-size: 6px;
}
.fs_7 {
    font-size: 7px;
}
.fs_8 {
    font-size: 8px;
}
.fs_9 {
    font-size: 9px;
}
.fs_10 {
    font-size: 10px;
}
.fs_11 {
    font-size: 11px;
}
.fs_12 {
    font-size: 12px;
}
.fs_13 {
    font-size: 13px;
}
.fs_14 {
    font-size: 14px;
}
.fs_15 {
    font-size: 15px;
}
.fs_16 {
    font-size: 16px;
}
.fs_17 {
    font-size: 17px;
}
.fs_18 {
    font-size: 18px;
}
.fs_19 {
    font-size: 19px;
}
.fs_20 {
    font-size: 20px;
}
.fs_25 {
    font-size: 25px;
}
.fs_30 {
    font-size: 30px;
}
.fs_35 {
    font-size: 35px;
}
.fs_40 {
    font-size: 40px;
}
.fs_45 {
    font-size: 45px;
}
.fs_50 {
    font-size: 50px;
}
.fs_55 {
    font-size: 55px;
}
.fs_60 {
    font-size: 60px;
}
.fs_65 {
    font-size: 65px;
}
.fs_70 {
    font-size: 70px;
}
.fs_75 {
    font-size: 75px;
}
.fs_80 {
    font-size: 80px;
}
.fs_85 {
    font-size: 85px;
}
.fs_90 {
    font-size: 90px;
}
.fs_95 {
    font-size: 95px;
}
.fs_100 {
    font-size: 100px;
}
.fs_110 {
    font-size: 110px;
}
.fs_120 {
    font-size: 120px;
}
.fs_130 {
    font-size: 130px;
}
.fs_140 {
    font-size: 140px;
}
.fs_150 {
    font-size: 150px;
}
.fs_160 {
    font-size: 160px;
}
.fs_170 {
    font-size: 170px;
}
.fs_180 {
    font-size: 180px;
}
.fs_190 {
    font-size: 190px;
}
.fs_200 {
    font-size: 200px;
}
/*
el_08
Font wieght
*/
.fw_light {
    font-weight: 300;
}
.fw_normal {
    font-weight: 400;
}
.fw_medium {
    font-weight: 500;
}
.fw_sbold {
    font-weight: 600;
}
.fw_bold {
    font-weight: 700;
}
.fw_exbold {
    font-weight: 800;
}
/*
el_09
Float
*/
.float_left {
    float: left;
}
.float_right {
    float: right;
}
/*
el_10
Width
*/
.w_0 {
    width: 0;
}
.w_1 {
    width: 1px;
}
.w_2 {
    width: 2px;
}
.w_3 {
    width: 3px;
}
.w_4 {
    width: 4px;
}
.w_5 {
    width: 5px;
}
.w_6 {
    width: 6px;
}
.w_7 {
    width: 7px;
}
.w_8 {
    width: 8px;
}
.w_9 {
    width: 9px;
}
.w_10 {
    width: 10px;
}
.w_11 {
    width: 11px;
}
.w_12 {
    width: 12px;
}
.w_13 {
    width: 13px;
}
.w_14 {
    width: 14px;
}
.w_15 {
    width: 15px;
}
.w_16 {
    width: 16px;
}
.w_17 {
    width: 17px;
}
.w_18 {
    width: 18px;
}
.w_19 {
    width: 19px;
}
.w_20 {
    width: 20px;
}
.w_25 {
    width: 25px;
}
.w_30 {
    width: 30px;
}
.w_35 {
    width: 35px;
}
.w_40 {
    width: 40px;
}
.w_45 {
    width: 45px;
}
.w_50 {
    width: 50px;
}
.w_55 {
    width: 55px;
}
.w_60 {
    width: 60px;
}
.w_65 {
    width: 65px;
}
.w_70 {
    width: 70px;
}
.w_75 {
    width: 75px;
}
.w_80 {
    width: 80px;
}
.w_85 {
    width: 85px;
}
.w_90 {
    width: 90px;
}
.w_95 {
    width: 95px;
}
.w_100 {
    width: 100px;
}
.w_110 {
    width: 110px;
}
.w_120 {
    width: 120px;
}
.w_130 {
    width: 130px;
}
.w_140 {
    width: 140px;
}
.w_150 {
    width: 150px;
}
.w_160 {
    width: 160px;
}
.w_170 {
    width: 170px;
}
.w_180 {
    width: 180px;
}
.w_190 {
    width: 190px;
}
.w_200 {
    width: 200px;
}
.mw_0 {
    max-width: 0;
}
.mw_1 {
    max-width: 1px;
}
.mw_2 {
    max-width: 2px;
}
.mw_3 {
    max-width: 3px;
}
.mw_4 {
    max-width: 4px;
}
.mw_5 {
    max-width: 5px;
}
.mw_6 {
    max-width: 6px;
}
.mw_7 {
    max-width: 7px;
}
.mw_8 {
    max-width: 8px;
}
.mw_9 {
    max-width: 9px;
}
.mw_10 {
    max-width: 10px;
}
.mw_11 {
    max-width: 11px;
}
.mw_12 {
    max-width: 12px;
}
.mw_13 {
    max-width: 13px;
}
.mw_14 {
    max-width: 14px;
}
.mw_15 {
    max-width: 15px;
}
.mw_16 {
    max-width: 16px;
}
.mw_17 {
    max-width: 17px;
}
.mw_18 {
    max-width: 18px;
}
.mw_19 {
    max-width: 19px;
}
.mw_20 {
    max-width: 20px;
}
.mw_25 {
    max-width: 25px;
}
.mw_30 {
    max-width: 30px;
}
.mw_35 {
    max-width: 35px;
}
.mw_40 {
    max-width: 40px;
}
.mw_45 {
    max-width: 45px;
}
.mw_50 {
    max-width: 50px;
}
.mw_55 {
    max-width: 55px;
}
.mw_60 {
    max-width: 60px;
}
.mw_65 {
    max-width: 65px;
}
.mw_70 {
    max-width: 70px;
}
.mw_75 {
    max-width: 75px;
}
.mw_80 {
    max-width: 80px;
}
.mw_85 {
    max-width: 85px;
}
.mw_90 {
    max-width: 90px;
}
.mw_95 {
    max-width: 95px;
}
.mw_100 {
    max-width: 100px;
}
.mw_110 {
    max-width: 110px;
}
.mw_120 {
    max-width: 120px;
}
.mw_130 {
    max-width: 130px;
}
.mw_140 {
    max-width: 140px;
}
.mw_150 {
    max-width: 150px;
}
.mw_160 {
    max-width: 160px;
}
.mw_170 {
    max-width: 170px;
}
.mw_180 {
    max-width: 180px;
}
.mw_190 {
    max-width: 190px;
}
.mw_200 {
    max-width: 200px;
}
/*
el_11
height
*/
.h_0 {
    height: 0;
}
.h_1 {
    height: 1px;
}
.h_2 {
    height: 2px;
}
.h_3 {
    height: 3px;
}
.h_4 {
    height: 4px;
}
.h_5 {
    height: 5px;
}
.h_6 {
    height: 6px;
}
.h_7 {
    height: 7px;
}
.h_8 {
    height: 8px;
}
.h_9 {
    height: 9px;
}
.h_10 {
    height: 10px;
}
.h_11 {
    height: 11px;
}
.h_12 {
    height: 12px;
}
.h_13 {
    height: 13px;
}
.h_14 {
    height: 14px;
}
.h_15 {
    height: 15px;
}
.h_16 {
    height: 16px;
}
.h_17 {
    height: 17px;
}
.h_18 {
    height: 18px;
}
.h_19 {
    height: 19px;
}
.h_20 {
    height: 20px;
}
.h_25 {
    height: 25px;
}
.h_30 {
    height: 30px;
}
.h_35 {
    height: 35px;
}
.h_40 {
    height: 40px;
}
.h_45 {
    height: 45px;
}
.h_50 {
    height: 50px;
}
.h_55 {
    height: 55px;
}
.h_60 {
    height: 60px;
}
.h_65 {
    height: 65px;
}
.h_70 {
    height: 70px;
}
.h_75 {
    height: 75px;
}
.h_80 {
    height: 80px;
}
.h_85 {
    height: 85px;
}
.h_90 {
    height: 90px;
}
.h_95 {
    height: 95px;
}
.h_100 {
    height: 100px;
}
.h_110 {
    height: 110px;
}
.h_120 {
    height: 120px;
}
.h_130 {
    height: 130px;
}
.h_140 {
    height: 140px;
}
.h_150 {
    height: 150px;
}
.h_160 {
    height: 160px;
}
.h_170 {
    height: 170px;
}
.h_180 {
    height: 180px;
}
.h_190 {
    height: 190px;
}
.h_200 {
    height: 200px;
}
.mh_0 {
    max-height: 0;
}
.mh_1 {
    max-height: 1px;
}
.mh_2 {
    max-height: 2px;
}
.mh_3 {
    max-height: 3px;
}
.mh_4 {
    max-height: 4px;
}
.mh_5 {
    max-height: 5px;
}
.mh_6 {
    max-height: 6px;
}
.mh_7 {
    max-height: 7px;
}
.mh_8 {
    max-height: 8px;
}
.mh_9 {
    max-height: 9px;
}
.mh_10 {
    max-height: 10px;
}
.mh_11 {
    max-height: 11px;
}
.mh_12 {
    max-height: 12px;
}
.mh_13 {
    max-height: 13px;
}
.mh_14 {
    max-height: 14px;
}
.mh_15 {
    max-height: 15px;
}
.mh_16 {
    max-height: 16px;
}
.mh_17 {
    max-height: 17px;
}
.mh_18 {
    max-height: 18px;
}
.mh_19 {
    max-height: 19px;
}
.mh_20 {
    max-height: 20px;
}
.mh_25 {
    max-height: 25px;
}
.mh_30 {
    max-height: 30px;
}
.mh_35 {
    max-height: 35px;
}
.mh_40 {
    max-height: 40px;
}
.mh_45 {
    max-height: 45px;
}
.mh_50 {
    max-height: 50px;
}
.mh_55 {
    max-height: 55px;
}
.mh_60 {
    max-height: 60px;
}
.mh_65 {
    max-height: 65px;
}
.mh_70 {
    max-height: 70px;
}
.mh_75 {
    max-height: 75px;
}
.mh_80 {
    max-height: 80px;
}
.mh_85 {
    max-height: 85px;
}
.mh_90 {
    max-height: 90px;
}
.mh_95 {
    max-height: 95px;
}
.mh_100 {
    max-height: 100px;
}
.mh_110 {
    max-height: 110px;
}
.mh_120 {
    max-height: 120px;
}
.mh_130 {
    max-height: 130px;
}
.mh_140 {
    max-height: 140px;
}
.mh_150 {
    max-height: 150px;
}
.mh_160 {
    max-height: 160px;
}
.mh_170 {
    max-height: 170px;
}
.mh_180 {
    max-height: 180px;
}
.mh_190 {
    max-height: 190px;
}
.mh_200 {
    max-height: 200px;
}
/*
el_12
Line height
*/
.lh_0 {
    line-height: 0;
}
.lh_1 {
    line-height: 1px;
}
.lh_2 {
    line-height: 2px;
}
.lh_3 {
    line-height: 3px;
}
.lh_4 {
    line-height: 4px;
}
.lh_5 {
    line-height: 5px;
}
.lh_6 {
    line-height: 6px;
}
.lh_7 {
    line-height: 7px;
}
.lh_8 {
    line-height: 8px;
}
.lh_9 {
    line-height: 9px;
}
.lh_10 {
    line-height: 10px;
}
.lh_11 {
    line-height: 11px;
}
.lh_12 {
    line-height: 12px;
}
.lh_13 {
    line-height: 13px;
}
.lh_14 {
    line-height: 14px;
}
.lh_15 {
    line-height: 15px;
}
.lh_16 {
    line-height: 16px;
}
.lh_17 {
    line-height: 17px;
}
.lh_18 {
    line-height: 18px;
}
.lh_19 {
    line-height: 19px;
}
.lh_20 {
    line-height: 20px;
}
.lh_25 {
    line-height: 25px;
}
.lh_30 {
    line-height: 30px;
}
.lh_35 {
    line-height: 35px;
}
.lh_40 {
    line-height: 40px;
}
.lh_45 {
    line-height: 45px;
}
.lh_50 {
    line-height: 50px;
}
.lh_55 {
    line-height: 55px;
}
.lh_60 {
    line-height: 60px;
}
.lh_65 {
    line-height: 65px;
}
.lh_70 {
    line-height: 70px;
}
.lh_75 {
    line-height: 75px;
}
.lh_80 {
    line-height: 80px;
}
.lh_85 {
    line-height: 85px;
}
.lh_90 {
    line-height: 90px;
}
.lh_95 {
    line-height: 95px;
}
.lh_100 {
    line-height: 100px;
}
.lh_110 {
    line-height: 110px;
}
.lh_120 {
    line-height: 120px;
}
.lh_130 {
    line-height: 130px;
}
.lh_140 {
    line-height: 140px;
}
.lh_150 {
    line-height: 150px;
}
.lh_160 {
    line-height: 160px;
}
.lh_170 {
    line-height: 170px;
}
.lh_180 {
    line-height: 180px;
}
.lh_190 {
    line-height: 190px;
}
.lh_200 {
    line-height: 200px;
}
/*
el_13
Margin
*/
.m_0 {
    margin: 0;
}
.m_1 {
    margin: 1px;
}
.m_2 {
    margin: 2px;
}
.m_3 {
    margin: 3px;
}
.m_4 {
    margin: 4px;
}
.m_5 {
    margin: 5px;
}
.m_6 {
    margin: 6px;
}
.m_7 {
    margin: 7px;
}
.m_8 {
    margin: 8px;
}
.m_9 {
    margin: 9px;
}
.m_10 {
    margin: 10px;
}
.m_11 {
    margin: 11px;
}
.m_12 {
    margin: 12px;
}
.m_13 {
    margin: 13px;
}
.m_14 {
    margin: 14px;
}
.m_15 {
    margin: 15px;
}
.m_16 {
    margin: 16px;
}
.m_17 {
    margin: 17px;
}
.m_18 {
    margin: 18px;
}
.m_19 {
    margin: 19px;
}
.m_20 {
    margin: 20px;
}
.m_25 {
    margin: 25px;
}
.m_30 {
    margin: 30px;
}
.m_35 {
    margin: 35px;
}
.m_40 {
    margin: 40px;
}
.m_45 {
    margin: 45px;
}
.m_50 {
    margin: 50px;
}
.m_55 {
    margin: 55px;
}
.m_60 {
    margin: 60px;
}
.m_65 {
    margin: 65px;
}
.m_70 {
    margin: 70px;
}
.m_75 {
    margin: 75px;
}
.m_80 {
    margin: 80px;
}
.m_85 {
    margin: 85px;
}
.m_90 {
    margin: 90px;
}
.m_95 {
    margin: 95px;
}
.m_100 {
    margin: 100px;
}
.m_110 {
    margin: 110px;
}
.m_120 {
    margin: 120px;
}
.m_130 {
    margin: 130px;
}
.m_140 {
    margin: 140px;
}
.m_150 {
    margin: 150px;
}
.m_160 {
    margin: 160px;
}
.m_170 {
    margin: 170px;
}
.m_180 {
    margin: 180px;
}
.m_190 {
    margin: 190px;
}
.m_200 {
    margin: 200px;
}
.mx_0 {
    margin-left: 0;
    margin-right: 0;
}
.mx_1 {
    margin-left: 1px;
    margin-right: 1px;
}
.mx_2 {
    margin-left: 2px;
    margin-right: 2px;
}
.mx_3 {
    margin-left: 3px;
    margin-right: 3px;
}
.mx_4 {
    margin-left: 4px;
    margin-right: 4px;
}
.mx_5 {
    margin-left: 5px;
    margin-right: 5px;
}
.mx_6 {
    margin-left: 6px;
    margin-right: 6px;
}
.mx_7 {
    margin-left: 7px;
    margin-right: 7px;
}
.mx_8 {
    margin-left: 8px;
    margin-right: 8px;
}
.mx_9 {
    margin-left: 9px;
    margin-right: 9px;
}
.mx_10 {
    margin-left: 10px;
    margin-right: 10px;
}
.mx_11 {
    margin-left: 11px;
    margin-right: 11px;
}
.mx_12 {
    margin-left: 12px;
    margin-right: 12px;
}
.mx_13 {
    margin-left: 13px;
    margin-right: 13px;
}
.mx_14 {
    margin-left: 14px;
    margin-right: 14px;
}
.mx_15 {
    margin-left: 15px;
    margin-right: 15px;
}
.mx_16 {
    margin-left: 16px;
    margin-right: 16px;
}
.mx_17 {
    margin-left: 17px;
    margin-right: 17px;
}
.mx_18 {
    margin-left: 18px;
    margin-right: 18px;
}
.mx_19 {
    margin-left: 19px;
    margin-right: 19px;
}
.mx_20 {
    margin-left: 20px;
    margin-right: 20px;
}
.mx_25 {
    margin-left: 25px;
    margin-right: 25px;
}
.mx_30 {
    margin-left: 30px;
    margin-right: 30px;
}
.mx_35 {
    margin-left: 35px;
    margin-right: 35px;
}
.mx_40 {
    margin-left: 40px;
    margin-right: 40px;
}
.mx_45 {
    margin-left: 45px;
    margin-right: 45px;
}
.mx_50 {
    margin-left: 50px;
    margin-right: 50px;
}
.mx_55 {
    margin-left: 55px;
    margin-right: 55px;
}
.mx_60 {
    margin-left: 60px;
    margin-right: 60px;
}
.mx_65 {
    margin-left: 65px;
    margin-right: 65px;
}
.mx_70 {
    margin-left: 70px;
    margin-right: 70px;
}
.mx_75 {
    margin-left: 75px;
    margin-right: 75px;
}
.mx_80 {
    margin-left: 80px;
    margin-right: 80px;
}
.mx_85 {
    margin-left: 85px;
    margin-right: 85px;
}
.mx_90 {
    margin-left: 90px;
    margin-right: 90px;
}
.mx_95 {
    margin-left: 95px;
    margin-right: 95px;
}
.mx_100 {
    margin-left: 100px;
    margin-right: 100px;
}
.mx_110 {
    margin-left: 110px;
    margin-right: 110px;
}
.mx_120 {
    margin-left: 120px;
    margin-right: 120px;
}
.mx_130 {
    margin-left: 130px;
    margin-right: 130px;
}
.mx_140 {
    margin-left: 140px;
    margin-right: 140px;
}
.mx_150 {
    margin-left: 150px;
    margin-right: 150px;
}
.mx_160 {
    margin-left: 160px;
    margin-right: 160px;
}
.mx_170 {
    margin-left: 170px;
    margin-right: 170px;
}
.mx_180 {
    margin-left: 180px;
    margin-right: 180px;
}
.mx_190 {
    margin-left: 190px;
    margin-right: 190px;
}
.mx_200 {
    margin-left: 200px;
    margin-right: 200px;
}
.my_0 {
    margin-top: 0;
    margin-bottom: 0;
}
.my_1 {
    margin-top: 1px;
    margin-bottom: 1px;
}
.my_2 {
    margin-top: 2px;
    margin-bottom: 2px;
}
.my_3 {
    margin-top: 3px;
    margin-bottom: 3px;
}
.my_4 {
    margin-top: 4px;
    margin-bottom: 4px;
}
.my_5 {
    margin-top: 5px;
    margin-bottom: 5px;
}
.my_6 {
    margin-top: 6px;
    margin-bottom: 6px;
}
.my_7 {
    margin-top: 7px;
    margin-bottom: 7px;
}
.my_8 {
    margin-top: 8px;
    margin-bottom: 8px;
}
.my_9 {
    margin-top: 9px;
    margin-bottom: 9px;
}
.my_10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.my_11 {
    margin-top: 11px;
    margin-bottom: 11px;
}
.my_12 {
    margin-top: 12px;
    margin-bottom: 12px;
}
.my_13 {
    margin-top: 13px;
    margin-bottom: 13px;
}
.my_14 {
    margin-top: 14px;
    margin-bottom: 14px;
}
.my_15 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.my_16 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.my_17 {
    margin-top: 17px;
    margin-bottom: 17px;
}
.my_18 {
    margin-top: 18px;
    margin-bottom: 18px;
}
.my_19 {
    margin-top: 19px;
    margin-bottom: 19px;
}
.my_20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.my_25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.my_30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.my_35 {
    margin-top: 35px;
    margin-bottom: 35px;
}
.my_40 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.my_45 {
    margin-top: 45px;
    margin-bottom: 45px;
}
.my_50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.my_55 {
    margin-top: 55px;
    margin-bottom: 55px;
}
.my_60 {
    margin-top: 60px;
    margin-bottom: 60px;
}
.my_65 {
    margin-top: 65px;
    margin-bottom: 65px;
}
.my_70 {
    margin-top: 70px;
    margin-bottom: 70px;
}
.my_75 {
    margin-top: 75px;
    margin-bottom: 75px;
}
.my_80 {
    margin-top: 80px;
    margin-bottom: 80px;
}
.my_85 {
    margin-top: 85px;
    margin-bottom: 85px;
}
.my_90 {
    margin-top: 90px;
    margin-bottom: 90px;
}
.my_95 {
    margin-top: 95px;
    margin-bottom: 95px;
}
.my_100 {
    margin-top: 100px;
    margin-bottom: 100px;
}
.my_110 {
    margin-top: 110px;
    margin-bottom: 110px;
}
.my_120 {
    margin-top: 120px;
    margin-bottom: 120px;
}
.my_130 {
    margin-top: 130px;
    margin-bottom: 130px;
}
.my_140 {
    margin-top: 140px;
    margin-bottom: 140px;
}
.my_150 {
    margin-top: 150px;
    margin-bottom: 150px;
}
.my_160 {
    margin-top: 160px;
    margin-bottom: 160px;
}
.my_170 {
    margin-top: 170px;
    margin-bottom: 170px;
}
.my_180 {
    margin-top: 180px;
    margin-bottom: 180px;
}
.my_190 {
    margin-top: 190px;
    margin-bottom: 190px;
}
.my_200 {
    margin-top: 200px;
    margin-bottom: 200px;
}
.mt_0 {
    margin-top: 0;
}
.mt_1 {
    margin-top: 1px;
}
.mt_2 {
    margin-top: 2px;
}
.mt_3 {
    margin-top: 3px;
}
.mt_4 {
    margin-top: 4px;
}
.mt_5 {
    margin-top: 5px;
}
.mt_6 {
    margin-top: 6px;
}
.mt_7 {
    margin-top: 7px;
}
.mt_8 {
    margin-top: 8px;
}
.mt_9 {
    margin-top: 9px;
}
.mt_10 {
    margin-top: 10px;
}
.mt_11 {
    margin-top: 11px;
}
.mt_12 {
    margin-top: 12px;
}
.mt_13 {
    margin-top: 13px;
}
.mt_14 {
    margin-top: 14px;
}
.mt_15 {
    margin-top: 15px;
}
.mt_16 {
    margin-top: 16px;
}
.mt_17 {
    margin-top: 17px;
}
.mt_18 {
    margin-top: 18px;
}
.mt_19 {
    margin-top: 19px;
}
.mt_20 {
    margin-top: 20px;
}
.mt_25 {
    margin-top: 25px;
}
.mt_30 {
    margin-top: 30px;
}
.mt_35 {
    margin-top: 35px;
}
.mt_40 {
    margin-top: 40px;
}
.mt_45 {
    margin-top: 45px;
}
.mt_50 {
    margin-top: 50px;
}
.mt_55 {
    margin-top: 55px;
}
.mt_60 {
    margin-top: 60px;
}
.mt_65 {
    margin-top: 65px;
}
.mt_70 {
    margin-top: 70px;
}
.mt_75 {
    margin-top: 75px;
}
.mt_80 {
    margin-top: 80px;
}
.mt_85 {
    margin-top: 85px;
}
.mt_90 {
    margin-top: 90px;
}
.mt_95 {
    margin-top: 95px;
}
.mt_100 {
    margin-top: 100px;
}
.mt_110 {
    margin-top: 110px;
}
.mt_120 {
    margin-top: 120px;
}
.mt_130 {
    margin-top: 130px;
}
.mt_140 {
    margin-top: 140px;
}
.mt_150 {
    margin-top: 150px;
}
.mt_160 {
    margin-top: 160px;
}
.mt_170 {
    margin-top: 170px;
}
.mt_180 {
    margin-top: 180px;
}
.mt_190 {
    margin-top: 190px;
}
.mt_200 {
    margin-top: 200px;
}
.mr_0 {
    margin-right: 0;
}
.mr_1 {
    margin-right: 1px;
}
.mr_2 {
    margin-right: 2px;
}
.mr_3 {
    margin-right: 3px;
}
.mr_4 {
    margin-right: 4px;
}
.mr_5 {
    margin-right: 5px;
}
.mr_6 {
    margin-right: 6px;
}
.mr_7 {
    margin-right: 7px;
}
.mr_8 {
    margin-right: 8px;
}
.mr_9 {
    margin-right: 9px;
}
.mr_10 {
    margin-right: 10px;
}
.mr_11 {
    margin-right: 11px;
}
.mr_12 {
    margin-right: 12px;
}
.mr_13 {
    margin-right: 13px;
}
.mr_14 {
    margin-right: 14px;
}
.mr_15 {
    margin-right: 15px;
}
.mr_16 {
    margin-right: 16px;
}
.mr_17 {
    margin-right: 17px;
}
.mr_18 {
    margin-right: 18px;
}
.mr_19 {
    margin-right: 19px;
}
.mr_20 {
    margin-right: 20px;
}
.mr_25 {
    margin-right: 25px;
}
.mr_30 {
    margin-right: 30px;
}
.mr_35 {
    margin-right: 35px;
}
.mr_40 {
    margin-right: 40px;
}
.mr_45 {
    margin-right: 45px;
}
.mr_50 {
    margin-right: 50px;
}
.mr_55 {
    margin-right: 55px;
}
.mr_60 {
    margin-right: 60px;
}
.mr_65 {
    margin-right: 65px;
}
.mr_70 {
    margin-right: 70px;
}
.mr_75 {
    margin-right: 75px;
}
.mr_80 {
    margin-right: 80px;
}
.mr_85 {
    margin-right: 85px;
}
.mr_90 {
    margin-right: 90px;
}
.mr_95 {
    margin-right: 95px;
}
.mr_100 {
    margin-right: 100px;
}
.mr_110 {
    margin-right: 110px;
}
.mr_120 {
    margin-right: 120px;
}
.mr_130 {
    margin-right: 130px;
}
.mr_140 {
    margin-right: 140px;
}
.mr_150 {
    margin-right: 150px;
}
.mr_160 {
    margin-right: 160px;
}
.mr_170 {
    margin-right: 170px;
}
.mr_180 {
    margin-right: 180px;
}
.mr_190 {
    margin-right: 190px;
}
.mr_200 {
    margin-right: 200px;
}
.mb_0 {
    margin-bottom: 0;
}
.mb_1 {
    margin-bottom: 1px;
}
.mb_2 {
    margin-bottom: 2px;
}
.mb_3 {
    margin-bottom: 3px;
}
.mb_4 {
    margin-bottom: 4px;
}
.mb_5 {
    margin-bottom: 5px;
}
.mb_6 {
    margin-bottom: 6px;
}
.mb_7 {
    margin-bottom: 7px;
}
.mb_8 {
    margin-bottom: 8px;
}
.mb_9 {
    margin-bottom: 9px;
}
.mb_10 {
    margin-bottom: 10px;
}
.mb_11 {
    margin-bottom: 11px;
}
.mb_12 {
    margin-bottom: 12px;
}
.mb_13 {
    margin-bottom: 13px;
}
.mb_14 {
    margin-bottom: 14px;
}
.mb_15 {
    margin-bottom: 15px;
}
.mb_16 {
    margin-bottom: 16px;
}
.mb_17 {
    margin-bottom: 17px;
}
.mb_18 {
    margin-bottom: 18px;
}
.mb_19 {
    margin-bottom: 19px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_25 {
    margin-bottom: 25px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_35 {
    margin-bottom: 35px;
}
.mb_40 {
    margin-bottom: 40px;
}
.mb_45 {
    margin-bottom: 45px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_55 {
    margin-bottom: 55px;
}
.mb_60 {
    margin-bottom: 60px;
}
.mb_65 {
    margin-bottom: 65px;
}
.mb_70 {
    margin-bottom: 70px;
}
.mb_75 {
    margin-bottom: 75px;
}
.mb_80 {
    margin-bottom: 80px;
}
.mb_85 {
    margin-bottom: 85px;
}
.mb_90 {
    margin-bottom: 90px;
}
.mb_95 {
    margin-bottom: 95px;
}
.mb_100 {
    margin-bottom: 100px;
}
.mb_110 {
    margin-bottom: 110px;
}
.mb_120 {
    margin-bottom: 120px;
}
.mb_130 {
    margin-bottom: 130px;
}
.mb_140 {
    margin-bottom: 140px;
}
.mb_150 {
    margin-bottom: 150px;
}
.mb_160 {
    margin-bottom: 160px;
}
.mb_170 {
    margin-bottom: 170px;
}
.mb_180 {
    margin-bottom: 180px;
}
.mb_190 {
    margin-bottom: 190px;
}
.mb_200 {
    margin-bottom: 200px;
}
.ml_0 {
    margin-left: 0;
}
.ml_1 {
    margin-left: 1px;
}
.ml_2 {
    margin-left: 2px;
}
.ml_3 {
    margin-left: 3px;
}
.ml_4 {
    margin-left: 4px;
}
.ml_5 {
    margin-left: 5px;
}
.ml_6 {
    margin-left: 6px;
}
.ml_7 {
    margin-left: 7px;
}
.ml_8 {
    margin-left: 8px;
}
.ml_9 {
    margin-left: 9px;
}
.ml_10 {
    margin-left: 10px;
}
.ml_11 {
    margin-left: 11px;
}
.ml_12 {
    margin-left: 12px;
}
.ml_13 {
    margin-left: 13px;
}
.ml_14 {
    margin-left: 14px;
}
.ml_15 {
    margin-left: 15px;
}
.ml_16 {
    margin-left: 16px;
}
.ml_17 {
    margin-left: 17px;
}
.ml_18 {
    margin-left: 18px;
}
.ml_19 {
    margin-left: 19px;
}
.ml_20 {
    margin-left: 20px;
}
.ml_25 {
    margin-left: 25px;
}
.ml_30 {
    margin-left: 30px;
}
.ml_35 {
    margin-left: 35px;
}
.ml_40 {
    margin-left: 40px;
}
.ml_45 {
    margin-left: 45px;
}
.ml_50 {
    margin-left: 50px;
}
.ml_55 {
    margin-left: 55px;
}
.ml_60 {
    margin-left: 60px;
}
.ml_65 {
    margin-left: 65px;
}
.ml_70 {
    margin-left: 70px;
}
.ml_75 {
    margin-left: 75px;
}
.ml_80 {
    margin-left: 80px;
}
.ml_85 {
    margin-left: 85px;
}
.ml_90 {
    margin-left: 90px;
}
.ml_95 {
    margin-left: 95px;
}
.ml_100 {
    margin-left: 100px;
}
.ml_110 {
    margin-left: 110px;
}
.ml_120 {
    margin-left: 120px;
}
.ml_130 {
    margin-left: 130px;
}
.ml_140 {
    margin-left: 140px;
}
.ml_150 {
    margin-left: 150px;
}
.ml_160 {
    margin-left: 160px;
}
.ml_170 {
    margin-left: 170px;
}
.ml_180 {
    margin-left: 180px;
}
.ml_190 {
    margin-left: 190px;
}
.ml_200 {
    margin-left: 200px;
}
/*
el_13
Padding
*/
.p_0 {
    padding: 0;
}
.p_1 {
    padding: 1px;
}
.p_2 {
    padding: 2px;
}
.p_3 {
    padding: 3px;
}
.p_4 {
    padding: 4px;
}
.p_5 {
    padding: 5px;
}
.p_6 {
    padding: 6px;
}
.p_7 {
    padding: 7px;
}
.p_8 {
    padding: 8px;
}
.p_9 {
    padding: 9px;
}
.p_10 {
    padding: 10px;
}
.p_11 {
    padding: 11px;
}
.p_12 {
    padding: 12px;
}
.p_13 {
    padding: 13px;
}
.p_14 {
    padding: 14px;
}
.p_15 {
    padding: 15px;
}
.p_16 {
    padding: 16px;
}
.p_17 {
    padding: 17px;
}
.p_18 {
    padding: 18px;
}
.p_19 {
    padding: 19px;
}
.p_20 {
    padding: 20px;
}
.p_25 {
    padding: 25px;
}
.p_30 {
    padding: 30px;
}
.p_35 {
    padding: 35px;
}
.p_40 {
    padding: 40px;
}
.p_45 {
    padding: 45px;
}
.p_50 {
    padding: 50px;
}
.p_55 {
    padding: 55px;
}
.p_60 {
    padding: 60px;
}
.p_65 {
    padding: 65px;
}
.p_70 {
    padding: 70px;
}
.p_75 {
    padding: 75px;
}
.p_80 {
    padding: 80px;
}
.p_85 {
    padding: 85px;
}
.p_90 {
    padding: 90px;
}
.p_95 {
    padding: 95px;
}
.p_100 {
    padding: 100px;
}
.p_110 {
    padding: 110px;
}
.p_120 {
    padding: 120px;
}
.p_130 {
    padding: 130px;
}
.p_140 {
    padding: 140px;
}
.p_150 {
    padding: 150px;
}
.p_160 {
    padding: 160px;
}
.p_170 {
    padding: 170px;
}
.p_180 {
    padding: 180px;
}
.p_190 {
    padding: 190px;
}
.p_200 {
    padding: 200px;
}
.px_0 {
    padding-left: 0;
    padding-right: 0;
}
.px_1 {
    padding-left: 1px;
    padding-right: 1px;
}
.px_2 {
    padding-left: 2px;
    padding-right: 2px;
}
.px_3 {
    padding-left: 3px;
    padding-right: 3px;
}
.px_4 {
    padding-left: 4px;
    padding-right: 4px;
}
.px_5 {
    padding-left: 5px;
    padding-right: 5px;
}
.px_6 {
    padding-left: 6px;
    padding-right: 6px;
}
.px_7 {
    padding-left: 7px;
    padding-right: 7px;
}
.px_8 {
    padding-left: 8px;
    padding-right: 8px;
}
.px_9 {
    padding-left: 9px;
    padding-right: 9px;
}
.px_10 {
    padding-left: 10px;
    padding-right: 10px;
}
.px_11 {
    padding-left: 11px;
    padding-right: 11px;
}
.px_12 {
    padding-left: 12px;
    padding-right: 12px;
}
.px_13 {
    padding-left: 13px;
    padding-right: 13px;
}
.px_14 {
    padding-left: 14px;
    padding-right: 14px;
}
.px_15 {
    padding-left: 15px;
    padding-right: 15px;
}
.px_16 {
    padding-left: 16px;
    padding-right: 16px;
}
.px_17 {
    padding-left: 17px;
    padding-right: 17px;
}
.px_18 {
    padding-left: 18px;
    padding-right: 18px;
}
.px_19 {
    padding-left: 19px;
    padding-right: 19px;
}
.px_20 {
    padding-left: 20px;
    padding-right: 20px;
}
.px_25 {
    padding-left: 25px;
    padding-right: 25px;
}
.px_30 {
    padding-left: 30px;
    padding-right: 30px;
}
.px_35 {
    padding-left: 35px;
    padding-right: 35px;
}
.px_40 {
    padding-left: 40px;
    padding-right: 40px;
}
.px_45 {
    padding-left: 45px;
    padding-right: 45px;
}
.px_50 {
    padding-left: 50px;
    padding-right: 50px;
}
.px_55 {
    padding-left: 55px;
    padding-right: 55px;
}
.px_60 {
    padding-left: 60px;
    padding-right: 60px;
}
.px_65 {
    padding-left: 65px;
    padding-right: 65px;
}
.px_70 {
    padding-left: 70px;
    padding-right: 70px;
}
.px_75 {
    padding-left: 75px;
    padding-right: 75px;
}
.px_80 {
    padding-left: 80px;
    padding-right: 80px;
}
.px_85 {
    padding-left: 85px;
    padding-right: 85px;
}
.px_90 {
    padding-left: 90px;
    padding-right: 90px;
}
.px_95 {
    padding-left: 95px;
    padding-right: 95px;
}
.px_100 {
    padding-left: 100px;
    padding-right: 100px;
}
.px_110 {
    padding-left: 110px;
    padding-right: 110px;
}
.px_120 {
    padding-left: 120px;
    padding-right: 120px;
}
.px_130 {
    padding-left: 130px;
    padding-right: 130px;
}
.px_140 {
    padding-left: 140px;
    padding-right: 140px;
}
.px_150 {
    padding-left: 150px;
    padding-right: 150px;
}
.px_160 {
    padding-left: 160px;
    padding-right: 160px;
}
.px_170 {
    padding-left: 170px;
    padding-right: 170px;
}
.px_180 {
    padding-left: 180px;
    padding-right: 180px;
}
.px_190 {
    padding-left: 190px;
    padding-right: 190px;
}
.px_200 {
    padding-left: 200px;
    padding-right: 200px;
}
.py_0 {
    padding-top: 0;
    padding-bottom: 0;
}
.py_1 {
    padding-top: 1px;
    padding-bottom: 1px;
}
.py_2 {
    padding-top: 2px;
    padding-bottom: 2px;
}
.py_3 {
    padding-top: 3px;
    padding-bottom: 3px;
}
.py_4 {
    padding-top: 4px;
    padding-bottom: 4px;
}
.py_5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.py_6 {
    padding-top: 6px;
    padding-bottom: 6px;
}
.py_7 {
    padding-top: 7px;
    padding-bottom: 7px;
}
.py_8 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.py_9 {
    padding-top: 9px;
    padding-bottom: 9px;
}
.py_10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py_11 {
    padding-top: 11px;
    padding-bottom: 11px;
}
.py_12 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py_13 {
    padding-top: 13px;
    padding-bottom: 13px;
}
.py_14 {
    padding-top: 14px;
    padding-bottom: 14px;
}
.py_15 {
    padding-top: 15px;
    padding-bottom: 15px;
}
.py_16 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py_17 {
    padding-top: 17px;
    padding-bottom: 17px;
}
.py_18 {
    padding-top: 18px;
    padding-bottom: 18px;
}
.py_19 {
    padding-top: 19px;
    padding-bottom: 19px;
}
.py_20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py_25 {
    padding-top: 25px;
    padding-bottom: 25px;
}
.py_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.py_35 {
    padding-top: 35px;
    padding-bottom: 35px;
}
.py_40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.py_45 {
    padding-top: 45px;
    padding-bottom: 45px;
}
.py_50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.py_55 {
    padding-top: 55px;
    padding-bottom: 55px;
}
.py_60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.py_65 {
    padding-top: 65px;
    padding-bottom: 65px;
}
.py_70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.py_75 {
    padding-top: 75px;
    padding-bottom: 75px;
}
.py_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.py_85 {
    padding-top: 85px;
    padding-bottom: 85px;
}
.py_90 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.py_95 {
    padding-top: 95px;
    padding-bottom: 95px;
}
.py_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.py_110 {
    padding-top: 110px;
    padding-bottom: 110px;
}
.py_120 {
    padding-top: 120px;
    padding-bottom: 120px;
}
.py_130 {
    padding-top: 130px;
    padding-bottom: 130px;
}
.py_140 {
    padding-top: 140px;
    padding-bottom: 140px;
}
.py_150 {
    padding-top: 150px;
    padding-bottom: 150px;
}
.py_160 {
    padding-top: 160px;
    padding-bottom: 160px;
}
.py_170 {
    padding-top: 170px;
    padding-bottom: 170px;
}
.py_180 {
    padding-top: 180px;
    padding-bottom: 180px;
}
.py_190 {
    padding-top: 190px;
    padding-bottom: 190px;
}
.py_200 {
    padding-top: 200px;
    padding-bottom: 200px;
}
.pt_0 {
    padding-top: 0;
}
.pt_1 {
    padding-top: 1px;
}
.pt_2 {
    padding-top: 2px;
}
.pt_3 {
    padding-top: 3px;
}
.pt_4 {
    padding-top: 4px;
}
.pt_5 {
    padding-top: 5px;
}
.pt_6 {
    padding-top: 6px;
}
.pt_7 {
    padding-top: 7px;
}
.pt_8 {
    padding-top: 8px;
}
.pt_9 {
    padding-top: 9px;
}
.pt_10 {
    padding-top: 10px;
}
.pt_11 {
    padding-top: 11px;
}
.pt_12 {
    padding-top: 12px;
}
.pt_13 {
    padding-top: 13px;
}
.pt_14 {
    padding-top: 14px;
}
.pt_15 {
    padding-top: 15px;
}
.pt_16 {
    padding-top: 16px;
}
.pt_17 {
    padding-top: 17px;
}
.pt_18 {
    padding-top: 18px;
}
.pt_19 {
    padding-top: 19px;
}
.pt_20 {
    padding-top: 20px;
}
.pt_25 {
    padding-top: 25px;
}
.pt_30 {
    padding-top: 30px;
}
.pt_35 {
    padding-top: 35px;
}
.pt_40 {
    padding-top: 40px;
}
.pt_45 {
    padding-top: 45px;
}
.pt_50 {
    padding-top: 50px;
}
.pt_55 {
    padding-top: 55px;
}
.pt_60 {
    padding-top: 60px;
}
.pt_65 {
    padding-top: 65px;
}
.pt_70 {
    padding-top: 70px;
}
.pt_75 {
    padding-top: 75px;
}
.pt_80 {
    padding-top: 80px;
}
.pt_85 {
    padding-top: 85px;
}
.pt_90 {
    padding-top: 90px;
}
.pt_95 {
    padding-top: 95px;
}
.pt_100 {
    padding-top: 100px;
}
.pt_110 {
    padding-top: 110px;
}
.pt_120 {
    padding-top: 120px;
}
.pt_130 {
    padding-top: 130px;
}
.pt_140 {
    padding-top: 140px;
}
.pt_150 {
    padding-top: 150px;
}
.pt_160 {
    padding-top: 160px;
}
.pt_170 {
    padding-top: 170px;
}
.pt_180 {
    padding-top: 180px;
}
.pt_190 {
    padding-top: 190px;
}
.pt_200 {
    padding-top: 200px;
}
.pr_0 {
    padding-right: 0;
}
.pr_1 {
    padding-right: 1px;
}
.pr_2 {
    padding-right: 2px;
}
.pr_3 {
    padding-right: 3px;
}
.pr_4 {
    padding-right: 4px;
}
.pr_5 {
    padding-right: 5px;
}
.pr_6 {
    padding-right: 6px;
}
.pr_7 {
    padding-right: 7px;
}
.pr_8 {
    padding-right: 8px;
}
.pr_9 {
    padding-right: 9px;
}
.pr_10 {
    padding-right: 10px;
}
.pr_11 {
    padding-right: 11px;
}
.pr_12 {
    padding-right: 12px;
}
.pr_13 {
    padding-right: 13px;
}
.pr_14 {
    padding-right: 14px;
}
.pr_15 {
    padding-right: 15px;
}
.pr_16 {
    padding-right: 16px;
}
.pr_17 {
    padding-right: 17px;
}
.pr_18 {
    padding-right: 18px;
}
.pr_19 {
    padding-right: 19px;
}
.pr_20 {
    padding-right: 20px;
}
.pr_25 {
    padding-right: 25px;
}
.pr_30 {
    padding-right: 30px;
}
.pr_35 {
    padding-right: 35px;
}
.pr_40 {
    padding-right: 40px;
}
.pr_45 {
    padding-right: 45px;
}
.pr_50 {
    padding-right: 50px;
}
.pr_55 {
    padding-right: 55px;
}
.pr_60 {
    padding-right: 60px;
}
.pr_65 {
    padding-right: 65px;
}
.pr_70 {
    padding-right: 70px;
}
.pr_75 {
    padding-right: 75px;
}
.pr_80 {
    padding-right: 80px;
}
.pr_85 {
    padding-right: 85px;
}
.pr_90 {
    padding-right: 90px;
}
.pr_95 {
    padding-right: 95px;
}
.pr_100 {
    padding-right: 100px;
}
.pr_110 {
    padding-right: 110px;
}
.pr_120 {
    padding-right: 120px;
}
.pr_130 {
    padding-right: 130px;
}
.pr_140 {
    padding-right: 140px;
}
.pr_150 {
    padding-right: 150px;
}
.pr_160 {
    padding-right: 160px;
}
.pr_170 {
    padding-right: 170px;
}
.pr_180 {
    padding-right: 180px;
}
.pr_190 {
    padding-right: 190px;
}
.pr_200 {
    padding-right: 200px;
}
.pb_0 {
    padding-bottom: 0;
}
.pb_1 {
    padding-bottom: 1px;
}
.pb_2 {
    padding-bottom: 2px;
}
.pb_3 {
    padding-bottom: 3px;
}
.pb_4 {
    padding-bottom: 4px;
}
.pb_5 {
    padding-bottom: 5px;
}
.pb_6 {
    padding-bottom: 6px;
}
.pb_7 {
    padding-bottom: 7px;
}
.pb_8 {
    padding-bottom: 8px;
}
.pb_9 {
    padding-bottom: 9px;
}
.pb_10 {
    padding-bottom: 10px;
}
.pb_11 {
    padding-bottom: 11px;
}
.pb_12 {
    padding-bottom: 12px;
}
.pb_13 {
    padding-bottom: 13px;
}
.pb_14 {
    padding-bottom: 14px;
}
.pb_15 {
    padding-bottom: 15px;
}
.pb_16 {
    padding-bottom: 16px;
}
.pb_17 {
    padding-bottom: 17px;
}
.pb_18 {
    padding-bottom: 18px;
}
.pb_19 {
    padding-bottom: 19px;
}
.pb_20 {
    padding-bottom: 20px;
}
.pb_25 {
    padding-bottom: 25px;
}
.pb_30 {
    padding-bottom: 30px;
}
.pb_35 {
    padding-bottom: 35px;
}
.pb_40 {
    padding-bottom: 40px;
}
.pb_45 {
    padding-bottom: 45px;
}
.pb_50 {
    padding-bottom: 50px;
}
.pb_55 {
    padding-bottom: 55px;
}
.pb_60 {
    padding-bottom: 60px;
}
.pb_65 {
    padding-bottom: 65px;
}
.pb_70 {
    padding-bottom: 70px;
}
.pb_75 {
    padding-bottom: 75px;
}
.pb_80 {
    padding-bottom: 80px;
}
.pb_85 {
    padding-bottom: 85px;
}
.pb_90 {
    padding-bottom: 90px;
}
.pb_95 {
    padding-bottom: 95px;
}
.pb_100 {
    padding-bottom: 100px;
}
.pb_110 {
    padding-bottom: 110px;
}
.pb_120 {
    padding-bottom: 120px;
}
.pb_130 {
    padding-bottom: 130px;
}
.pb_140 {
    padding-bottom: 140px;
}
.pb_150 {
    padding-bottom: 150px;
}
.pb_160 {
    padding-bottom: 160px;
}
.pb_170 {
    padding-bottom: 170px;
}
.pb_180 {
    padding-bottom: 180px;
}
.pb_190 {
    padding-bottom: 190px;
}
.pb_200 {
    padding-bottom: 200px;
}
.pl_0 {
    padding-left: 0;
}
.pl_1 {
    padding-left: 1px;
}
.pl_2 {
    padding-left: 2px;
}
.pl_3 {
    padding-left: 3px;
}
.pl_4 {
    padding-left: 4px;
}
.pl_5 {
    padding-left: 5px;
}
.pl_6 {
    padding-left: 6px;
}
.pl_7 {
    padding-left: 7px;
}
.pl_8 {
    padding-left: 8px;
}
.pl_9 {
    padding-left: 9px;
}
.pl_10 {
    padding-left: 10px;
}
.pl_11 {
    padding-left: 11px;
}
.pl_12 {
    padding-left: 12px;
}
.pl_13 {
    padding-left: 13px;
}
.pl_14 {
    padding-left: 14px;
}
.pl_15 {
    padding-left: 15px;
}
.pl_16 {
    padding-left: 16px;
}
.pl_17 {
    padding-left: 17px;
}
.pl_18 {
    padding-left: 18px;
}
.pl_19 {
    padding-left: 19px;
}
.pl_20 {
    padding-left: 20px;
}
.pl_25 {
    padding-left: 25px;
}
.pl_30 {
    padding-left: 30px;
}
.pl_35 {
    padding-left: 35px;
}
.pl_40 {
    padding-left: 40px;
}
.pl_45 {
    padding-left: 45px;
}
.pl_50 {
    padding-left: 50px;
}
.pl_55 {
    padding-left: 55px;
}
.pl_60 {
    padding-left: 60px;
}
.pl_65 {
    padding-left: 65px;
}
.pl_70 {
    padding-left: 70px;
}
.pl_75 {
    padding-left: 75px;
}
.pl_80 {
    padding-left: 80px;
}
.pl_85 {
    padding-left: 85px;
}
.pl_90 {
    padding-left: 90px;
}
.pl_95 {
    padding-left: 95px;
}
.pl_100 {
    padding-left: 100px;
}
.pl_110 {
    padding-left: 110px;
}
.pl_120 {
    padding-left: 120px;
}
.pl_130 {
    padding-left: 130px;
}
.pl_140 {
    padding-left: 140px;
}
.pl_150 {
    padding-left: 150px;
}
.pl_160 {
    padding-left: 160px;
}
.pl_170 {
    padding-left: 170px;
}
.pl_180 {
    padding-left: 180px;
}
.pl_190 {
    padding-left: 190px;
}
.pl_200 {
    padding-left: 200px;
}
/*
el_14
Top
*/
.t_0 {
    top: 0;
}
.t_1 {
    top: 1px;
}
.t_2 {
    top: 2px;
}
.t_3 {
    top: 3px;
}
.t_4 {
    top: 4px;
}
.t_5 {
    top: 5px;
}
.t_6 {
    top: 6px;
}
.t_7 {
    top: 7px;
}
.t_8 {
    top: 8px;
}
.t_9 {
    top: 9px;
}
.t_10 {
    top: 10px;
}
.t_11 {
    top: 11px;
}
.t_12 {
    top: 12px;
}
.t_13 {
    top: 13px;
}
.t_14 {
    top: 14px;
}
.t_15 {
    top: 15px;
}
.t_16 {
    top: 16px;
}
.t_17 {
    top: 17px;
}
.t_18 {
    top: 18px;
}
.t_19 {
    top: 19px;
}
.t_20 {
    top: 20px;
}
.t_25 {
    top: 25px;
}
.t_30 {
    top: 30px;
}
.t_35 {
    top: 35px;
}
.t_40 {
    top: 40px;
}
.t_45 {
    top: 45px;
}
.t_50 {
    top: 50px;
}
.t_55 {
    top: 55px;
}
.t_60 {
    top: 60px;
}
.t_65 {
    top: 65px;
}
.t_70 {
    top: 70px;
}
.t_75 {
    top: 75px;
}
.t_80 {
    top: 80px;
}
.t_85 {
    top: 85px;
}
.t_90 {
    top: 90px;
}
.t_95 {
    top: 95px;
}
.t_100 {
    top: 100px;
}
.t_110 {
    top: 110px;
}
.t_120 {
    top: 120px;
}
.t_130 {
    top: 130px;
}
.t_140 {
    top: 140px;
}
.t_150 {
    top: 150px;
}
.t_160 {
    top: 160px;
}
.t_170 {
    top: 170px;
}
.t_180 {
    top: 180px;
}
.t_190 {
    top: 190px;
}
.t_200 {
    top: 200px;
}
/*
el_15
Right
*/
.r_0 {
    right: 0;
}
.r_1 {
    right: 1px;
}
.r_2 {
    right: 2px;
}
.r_3 {
    right: 3px;
}
.r_4 {
    right: 4px;
}
.r_5 {
    right: 5px;
}
.r_6 {
    right: 6px;
}
.r_7 {
    right: 7px;
}
.r_8 {
    right: 8px;
}
.r_9 {
    right: 9px;
}
.r_10 {
    right: 10px;
}
.r_11 {
    right: 11px;
}
.r_12 {
    right: 12px;
}
.r_13 {
    right: 13px;
}
.r_14 {
    right: 14px;
}
.r_15 {
    right: 15px;
}
.r_16 {
    right: 16px;
}
.r_17 {
    right: 17px;
}
.r_18 {
    right: 18px;
}
.r_19 {
    right: 19px;
}
.r_20 {
    right: 20px;
}
.r_25 {
    right: 25px;
}
.r_30 {
    right: 30px;
}
.r_35 {
    right: 35px;
}
.r_40 {
    right: 40px;
}
.r_45 {
    right: 45px;
}
.r_50 {
    right: 50px;
}
.r_55 {
    right: 55px;
}
.r_60 {
    right: 60px;
}
.r_65 {
    right: 65px;
}
.r_70 {
    right: 70px;
}
.r_75 {
    right: 75px;
}
.r_80 {
    right: 80px;
}
.r_85 {
    right: 85px;
}
.r_90 {
    right: 90px;
}
.r_95 {
    right: 95px;
}
.r_100 {
    right: 100px;
}
.r_110 {
    right: 110px;
}
.r_120 {
    right: 120px;
}
.r_130 {
    right: 130px;
}
.r_140 {
    right: 140px;
}
.r_150 {
    right: 150px;
}
.r_160 {
    right: 160px;
}
.r_170 {
    right: 170px;
}
.r_180 {
    right: 180px;
}
.r_190 {
    right: 190px;
}
.r_200 {
    right: 200px;
}
/*
el_16
Bottom
*/
.b_0 {
    bottom: 0;
}
.b_1 {
    bottom: 1px;
}
.b_2 {
    bottom: 2px;
}
.b_3 {
    bottom: 3px;
}
.b_4 {
    bottom: 4px;
}
.b_5 {
    bottom: 5px;
}
.b_6 {
    bottom: 6px;
}
.b_7 {
    bottom: 7px;
}
.b_8 {
    bottom: 8px;
}
.b_9 {
    bottom: 9px;
}
.b_10 {
    bottom: 10px;
}
.b_11 {
    bottom: 11px;
}
.b_12 {
    bottom: 12px;
}
.b_13 {
    bottom: 13px;
}
.b_14 {
    bottom: 14px;
}
.b_15 {
    bottom: 15px;
}
.b_16 {
    bottom: 16px;
}
.b_17 {
    bottom: 17px;
}
.b_18 {
    bottom: 18px;
}
.b_19 {
    bottom: 19px;
}
.b_20 {
    bottom: 20px;
}
.b_25 {
    bottom: 25px;
}
.b_30 {
    bottom: 30px;
}
.b_35 {
    bottom: 35px;
}
.b_40 {
    bottom: 40px;
}
.b_45 {
    bottom: 45px;
}
.b_50 {
    bottom: 50px;
}
.b_55 {
    bottom: 55px;
}
.b_60 {
    bottom: 60px;
}
.b_65 {
    bottom: 65px;
}
.b_70 {
    bottom: 70px;
}
.b_75 {
    bottom: 75px;
}
.b_80 {
    bottom: 80px;
}
.b_85 {
    bottom: 85px;
}
.b_90 {
    bottom: 90px;
}
.b_95 {
    bottom: 95px;
}
.b_100 {
    bottom: 100px;
}
.b_110 {
    bottom: 110px;
}
.b_120 {
    bottom: 120px;
}
.b_130 {
    bottom: 130px;
}
.b_140 {
    bottom: 140px;
}
.b_150 {
    bottom: 150px;
}
.b_160 {
    bottom: 160px;
}
.b_170 {
    bottom: 170px;
}
.b_180 {
    bottom: 180px;
}
.b_190 {
    bottom: 190px;
}
.b_200 {
    bottom: 200px;
}
/*
el_17
Top
*/
.l_0 {
    left: 0;
}
.l_1 {
    left: 1px;
}
.l_2 {
    left: 2px;
}
.l_3 {
    left: 3px;
}
.l_4 {
    left: 4px;
}
.l_5 {
    left: 5px;
}
.l_6 {
    left: 6px;
}
.l_7 {
    left: 7px;
}
.l_8 {
    left: 8px;
}
.l_9 {
    left: 9px;
}
.l_10 {
    left: 10px;
}
.l_11 {
    left: 11px;
}
.l_12 {
    left: 12px;
}
.l_13 {
    left: 13px;
}
.l_14 {
    left: 14px;
}
.l_15 {
    left: 15px;
}
.l_16 {
    left: 16px;
}
.l_17 {
    left: 17px;
}
.l_18 {
    left: 18px;
}
.l_19 {
    left: 19px;
}
.l_20 {
    left: 20px;
}
.l_25 {
    left: 25px;
}
.l_30 {
    left: 30px;
}
.l_35 {
    left: 35px;
}
.l_40 {
    left: 40px;
}
.l_45 {
    left: 45px;
}
.l_50 {
    left: 50px;
}
.l_55 {
    left: 55px;
}
.l_60 {
    left: 60px;
}
.l_65 {
    left: 65px;
}
.l_70 {
    left: 70px;
}
.l_75 {
    left: 75px;
}
.l_80 {
    left: 80px;
}
.l_85 {
    left: 85px;
}
.l_90 {
    left: 90px;
}
.l_95 {
    left: 95px;
}
.l_100 {
    left: 100px;
}
.l_110 {
    left: 110px;
}
.l_120 {
    left: 120px;
}
.l_130 {
    left: 130px;
}
.l_140 {
    left: 140px;
}
.l_150 {
    left: 150px;
}
.l_160 {
    left: 160px;
}
.l_170 {
    left: 170px;
}
.l_180 {
    left: 180px;
}
.l_190 {
    left: 190px;
}
.l_200 {
    left: 200px;
}
/*
el_18
Text align
*/
.align-1 {
    text-align: left;
}
.align-2 {
    text-align: center;
}
.align-3 {
    text-align: right;
}
/*
el_19
Z-index
*/
.z_1 {
    z-index: 1;
}
.z_2 {
    z-index: 2;
}
.z_3 {
    z-index: 3;
}
.z_4 {
    z-index: 4;
}
.z_5 {
    z-index: 5;
}
.z_6 {
    z-index: 6;
}
.z_7 {
    z-index: 7;
}
.z_8 {
    z-index: 8;
}
.z_9 {
    z-index: 9;
}
.z_99 {
    z-index: 99;
}
.z_999 {
    z-index: 999;
}
.z_9999 {
    z-index: 9999;
}
.z_99999 {
    z-index: 99999;
}
/*
el_20
Border radius
*/
.b_radius_0 {
    border-radius: 0;
}
.b_radius_1 {
    border-radius: 1px;
}
.b_radius_2 {
    border-radius: 2px;
}
.b_radius_3 {
    border-radius: 3px;
}
.b_radius_4 {
    border-radius: 4px;
}
.b_radius_5 {
    border-radius: 5px;
}
.b_radius_6 {
    border-radius: 6px;
}
.b_radius_7 {
    border-radius: 7px;
}
.b_radius_8 {
    border-radius: 8px;
}
.b_radius_9 {
    border-radius: 9px;
}
.b_radius_10 {
    border-radius: 10px;
}
.b_radius_11 {
    border-radius: 11px;
}
.b_radius_12 {
    border-radius: 12px;
}
.b_radius_13 {
    border-radius: 13px;
}
.b_radius_14 {
    border-radius: 14px;
}
.b_radius_15 {
    border-radius: 15px;
}
.b_radius_16 {
    border-radius: 16px;
}
.b_radius_17 {
    border-radius: 17px;
}
.b_radius_18 {
    border-radius: 18px;
}
.b_radius_19 {
    border-radius: 19px;
}
.b_radius_20 {
    border-radius: 20px;
}
.b_radius_25 {
    border-radius: 25px;
}
.b_radius_30 {
    border-radius: 30px;
}
.b_radius_50 {
    border-radius: 50%;
}
/*
el_21
Box shadow
*/
.b_shadow_1 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.b_shadow_2 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.b_shadow_3 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.b_shadow_4 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.b_shadow_5 {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.b_shadow_6 {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.10);
}
.b_shadow_7 {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}
.b_shadow_8 {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.20);
}
/*
el_22
Btn
*/
.theme_btn_1{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    padding: 14.5px 31px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #0d6efd;
    z-index: 1;
    vertical-align: middle;
}
.theme_btn_1:before{
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    background: #272727;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.theme_btn_1:hover:before{
    width: 100%;
}

.theme_btn_2{
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #061a3a;
    border: 1px solid #e4e8e9;
    text-align: center;
    padding: 16.5px 41.5px;
    border-radius: 4px;
    z-index: 1;
    transition: all 500ms ease;
    vertical-align: middle;
}
.theme_btn_2:hover{
    color: #ffffff;
}
.theme_btn_2:before{
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background: #0d6efd;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}
.theme_btn_2:hover:before{
    top: -40%;
}
/*
el_23
Image Hover
*/
.img_hover_1 {
    position: relative;
    overflow: hidden;
}
.img_hover_1 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_1:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255,.2);
    border-radius: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.img_hover_1:hover:before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}
.img_hover_2 {
    position: relative;
    overflow: hidden;
    background-color: #0d6efd;
}
.img_hover_2 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_2:hover img{
    transform: scale(1.05);
    opacity: .5;
}
.img_hover_2:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255,.2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.img_hover_2:hover:before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
.img_hover_3 {
    position: relative;
    overflow: hidden;
}
.img_hover_3 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_3:before{
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.img_hover_3:hover:before{
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.img_hover_4{
    position: relative;
    overflow: hidden;
}
.img_hover_4 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_4:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    opacity: 0.8;
    transition: all 500ms ease;
    background-color: #0d6efd;
}
.img_hover_4:hover:before{
    height: 100%;
}
.img_hover_5{
    position: relative;
    display: block;
    overflow: hidden;
}
.img_hover_5:before{
    position: absolute;
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    transform: scale(0,0);
    opacity: 0.9;
    z-index: 1;
    transition: all 500ms ease;
    background-color: #0d6efd;
}
.img_hover_5:hover:before{
    transform: scale(1,1);
}
.img_hover_5 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_5:hover img{
    transform: scale(1.1);
}
.img_hover_6{
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #0d6efd;
}
.img_hover_6 img{
    width: 100%;
    transition: all 500ms ease;
}
.img_hover_6:hover img{
    transform: scale(1.1);
    opacity: 0.2;
}
.img_hover_7{
    position: relative;
    display: block;
    overflow: hidden;
}
.img_hover_7 img{
    width: 100%;
    transform: scale(1.0);
    transition: all 1700ms ease;
}
.img_hover_7:hover img{
    transform: scale(1.2);
}
.img_hover_7:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #000000;
    opacity: 1.0;
    border-radius: 5px;
    transition: .5s;
    transform: perspective(400px) scaleX(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 2;
}
.img_hover_7:hover:before{
    opacity: 0.80;
    transform: perspective(400px) scaleX(1.0);
}
.img_hover_8 {
    position: relative;
    display: block;
    overflow: hidden;
}
.img_hover_8 img{
    width: 100%;
    transition: all 1700ms ease;
}
.img_hover_8:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    -ms-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}
.img_hover_8:hover:before{
    opacity: .65;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}
.img_hover_9{
    position: relative;
    display: block;
    overflow: hidden;
}
.img_hover_9 img{
    width: 100%;
    transform: scale(1.0);
    transition: all 3500ms ease;
}
.img_hover_9:hover img{
    transform:scale(1.2) rotate(1deg);
}
.img_hover_9:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
    background-color: #0d6efd;
}
.img_hover_9:hover:before{
    opacity: 0.80;
    transform: scaleY(1.0);
}
.img_hover_9:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 1;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 1;
    background-color: #0d6efd;
}
.img_hover_9:hover:after{
    opacity: 0.80;
    transform: scaleY(1.0);
}
.img_hover_10{
    position: relative;
    display: block;
    overflow: hidden;
}
.img_hover_10:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #0d6efd;
    opacity: 1.0;
    transition: .5s;
    transform: perspective(400px) scaleY(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    z-index: 1;
}
.img_hover_10:hover:before{
    opacity: 0.50;
    transform: perspective(400px) scaleY(1.0);
}
.img_hover_10 img{
    width: 100%;
    transition: all 3500ms ease;
}
.img_hover_10:hover img{
    transform: scale(1.3) rotate(2deg);
}

.flexbox_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flexbox_2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



/** highlights-section **/

.highlights-section{
    position: relative;
}

.highlights-section .bg-color{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    background: #0E0E0E;
}

.highlights-section .inner-container{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 35px 50px;
    padding-bottom: 5px;
    box-shadow: 0px 0px 90px 0px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.highlights-section .highlights-block-one{
    float: left;
    width: 20%;
}

.highlights-section .shape{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
}

.highlights-block-one .inner-box{
    position: relative;
    display: block;
    padding: 6px 0px 6px 76px;
    margin-bottom: 30px;
}

.highlights-block-one .inner-box .icon-box{
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    transition: all 500ms ease;
}

.highlights-block-one .inner-box:hover .icon-box{
    transform: rotateY(180deg);
}

.highlights-block-one .inner-box h5{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    max-width: 160px;
}


.highlights-section.alternat-2 .inner-container{

}

.highlights-section.alternat-2 .highlights-block-one .inner-box h5{
    color: #fff;
}


/** highlights-style-two **/

.highlights-style-two{
    position: relative;
}

.highlights-block-two .inner-box{
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 24px 20px 24px 130px;
    margin-bottom: 30px;
    min-height: 130px;
}

.highlights-block-two .inner-box .icon-box{
    position: absolute;
    display: inline-block;
    left: 30px;
    top: 30px;
    width: 70px;
    height: 70px;
    line-height: 66px;
    text-align: center;
    border-radius: 50%;
}

.highlights-block-two .inner-box h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 4px;
}

.highlights-block-two .inner-box p{
    line-height: 24px;
}



/** rtl-css **/

.rtl .highlights-section .highlights-block-one{
    float: right;
}

.rtl .highlights-block-one .inner-box{
    padding-left: 0px;
    padding-right: 76px;
}

.rtl .highlights-block-one .inner-box .icon-box{
    left: inherit;
    right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
    .highlights-section .highlights-block-one{
        width: 33.333%;
    }
}

@media only screen and (max-width: 767px){
    .highlights-section .highlights-block-one{
        width: 50%;
    }
}

@media only screen and (max-width: 599px){
    .highlights-section .highlights-block-one{
        width: 100%;
    }

    .highlights-section .inner-container{
        padding-left: 30px;
        padding-right: 30px;
    }
}

/*mini cart css here*/
.mini_cart_wrapper {
    position: relative;
}

.cart_close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
}

.cart_text h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
}

.mini_cart_close > a {
    font-size: 25px;
}
.mini_cart_close > a:hover {
    color: #40a944;
}

.mini_cart {
    position: fixed;
    min-width: 355px;
    height: 100%;
    padding: 18px 28px 33px;
    background: #fff;
    z-index: 999;
    right: 0;
    top: 0;
    transition: 0.5s;
    transform: translateX(100%);
}
.mini_cart.active {
    transform: translateX(0);
    transition: 0.5s;
}
@media only screen and (max-width: 767px) {
    .mini_cart {
        min-width: 300px;
        height: 100%;
        padding: 18px 18px 33px;
    }
}

.cart_img {
    width: 90px;
    margin-right: 10px;
    border: 1px solid transparent;
}
.cart_img:hover {
    border-color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_img {
        width: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_img {
        width: 70px;
    }
}

.cart_info {
    width: 63%;
}
.cart_info a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_info a {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_info a {
        font-size: 13px;
    }
}
.cart_info a:hover {
    color: #40a944;
}
.cart_info p {
    font-size: 12px;
}
.cart_info p span {
    font-weight: 600;
}

.cart_remove a {
    font-size: 15px;
    display: block;
    line-height: 20px;
    text-align: center;
}
.cart_remove a:hover {
    color: #40a944;
}

.cart_item {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
    display: flex;
    justify-content: space-between;
}

.mini_cart_table {
    padding: 23px 0;
}

.cart_total {
    display: flex;
    justify-content: space-between;
}
.cart_total span {
    font-size: 14px;
    font-weight: 400;
}
.cart_total span.price {
    font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_total span {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_total span {
        font-size: 13px;
    }
}

.cart_button:first-child {
    margin-bottom: 15px;
}
.cart_button a {
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    background: #eef0f1;
    display: block;
    text-align: center;
    line-height: 20px;
    margin-bottom: 0;
    padding: 13px 0px 11px;
    border: 1px solid #ededed;
}
.cart_button a:hover {
    background: #40a944;
    border-color: #40a944;
    color: #fff;
}


/* ==================================
2- general
=====================================*/
/** header-upper **/

.header-upper {
    position: relative;
    background: green;
    padding: 25px 0px;
}

.header-upper .upper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .search-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 810px;
    background: #fff;
    border-radius: 50px;
}

.main-header .search-area .category-inner .nice-select {
    padding: 17px 35px 17px 25px;
    font-size: 15px;
    color: var(--title-color);
    text-transform: capitalize;
    border-right: 1px solid #e5e5e5;
}

.main-header .search-area .category-inner .nice-select:before {
    color: var(--title-color);
    top: 17px;
    right: 24px;
    display: none;
}

.main-header .search-area .search-box {
    width: 100%;
}

.main-header .search-area .search-box .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-area .search-box .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: var(--title-color);
    font-family: var(--text-font);
    padding: 10px 80px 10px 25px;
}

.main-header .search-area .search-box .form-group button[type="submit"] {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 40px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #ffac00;
    border-radius: 100px;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-header .search-area .search-box .form-group input:focus + button,
.main-header .search-area .search-box .form-group button:hover {
    background: green;
}

.main-header .right-column {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .support-box {
    position: relative;
    display: block;
    padding-left: 48px;
}

.main-header .support-box .icon-box {
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 35px;
    color: #fff;
}

.main-header .support-box a {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 18px;
    font-family: var(--title-font);
    color: #fff;
    font-weight: 700;
}

.main-header .support-box a:hover {
    text-decoration: underline;
}

.main-header .support-box p {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
}

.main-header .option-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .option-list li {
    margin-right: 20px;
}

.main-header .option-list li:last-child {
    margin: 0px !important;
}

.main-header .option-list li a,
.main-header .option-list li button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 500ms ease;
}

.main-header .option-list li a:hover,
.main-header .option-list li button:hover {
}

.main-header .option-list li a span {
    position: absolute;
    display: inline-block;
    top: -5px;
    right: -12px;
    width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

.main-header .header-lower {
    box-shadow: 0px 4px 4px 0px #0000000d;
}

.main-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .outer-box .category-box {
    position: relative;
    display: inline-block;
    left: 0px;
    top: 4px;
    width: 300px;
    border: solid;
    border-width: 1px;
    border-color: #e6e6e6;
    border-bottom: none;
    border-radius: 5px 5px 0px 0px;
    padding: 15px 20px;
    cursor: pointer;
}

.main-header .outer-box .category-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--title-color);
    padding-left: 28px;
}

.main-header .outer-box .category-box .text i {
    position: absolute;
    left: 0px;
    top: 2px;
    font-size: 18px;
    font-weight: 400;
}

.main-header .outer-box .category-box .text:before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    top: 0px;
    right: 0px;
    font-size: 16px;
    font-weight: 400;
}

.main-header .outer-box .category-box .category-list {
    position: absolute;
    left: -1px;
    top: 100%;
    width: 100%;
    background: #fff;
    border: solid;
    border-width: 1px;
    border-color: #e6e6e6;
    border-top: none;
    border-radius: 0px 0px 5px 5px;
    opacity: 0;
    transform-origin: top center;
    transform: scaleY(0);
    visibility: hidden;
    width: 300px;
    transition: all 500ms ease;
}

.main-header .outer-box .category-box:hover .category-list {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}

.main-header .outer-box .category-box .category-list > li {
    position: relative;
    display: block;
}

.main-header .outer-box .category-box .category-list > li:after {
    position: absolute;
    content: "";
    width: 3px;
    height: 0px;
    left: 0px;
    top: 0px;
    transition: all 500ms ease;
}

.main-header .outer-box .category-box .category-list > li:hover:after {
    height: 100%;
}

.main-header .outer-box .category-box .category-list > li:before {
    position: absolute;
    content: "";
    background: transparent;
    top: 0px;
    right: -10px;
    width: 10px;
    height: 100%;
}

.main-header .outer-box .category-box .category-list > li > a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-family: var(--title-font);
    color: var(--title-color);
    padding: 12px 50px;
    padding-left: 63px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 1;
    transition: all 500ms ease;
}

.main-header
.outer-box
.category-box
.category-list
> li.category-dropdown
> a:before {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    top: 12px;
    right: 20px;
    font-size: 16px;
    font-weight: 400;
}

.main-header .outer-box .category-box .category-list > li > a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    z-index: -1;
    transition: all 500ms ease;
}

.main-header .outer-box .category-box .category-list > li .icon {
    position: absolute;
    left: 25px;
    top: 10px;
}

.main-header .outer-box .category-box .category-list > li > a:hover:after {
    opacity: 0.15;
}

.main-header .outer-box .category-box .category-list .list-inner {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 990px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #00000012;
    border-radius: 5px;
    opacity: 0;
    transform-origin: left center;
    transform: scaleX(0);
    visibility: hidden;
    overflow: hidden;
    padding-right: 280px;
    transition: all 500ms ease;
}

.main-header
.outer-box
.category-box
.category-list
.category-dropdown:hover
.list-inner {
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}

.main-header .outer-box .category-box .list-inner .inner-box {
    position: relative;
    padding: 40px 50px;
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: auto;
}

.main-header .outer-box .category-box .list-inner .inner-box p {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 15px;
}

.main-header .outer-box .category-box .list-inner .inner-box .single-column {
    position: relative;
    float: left;
    width: 33.333%;
}

.main-header
.outer-box
.category-box
.list-inner
.inner-box
.single-column
ul
li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 40px;
    color: var(--title-color);
}

.main-header
.outer-box
.category-box
.list-inner
.inner-box
.single-column
ul
li
a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    color: var(--title-color);
}

.main-header
.outer-box
.category-box
.list-inner
.inner-box
.single-column
ul
li
a:hover {
}

.main-header .outer-box .category-box .list-inner .shop-block {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 280px;
    background: #e2efea;
    padding: 30px 15px 40px 30px;
}

.main-header .outer-box .category-box .list-inner .shop-block .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 6px;
}

.main-header .outer-box .category-box .list-inner .shop-block h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 6px;
}

.main-header .outer-box .category-box .list-inner .shop-block h2 a {
    position: relative;
    display: inline-block;
    color: var(--title-color);
}

.main-header .outer-box .category-box .list-inner .shop-block h2 a:hover {
}

.main-header .outer-box .category-box .list-inner .shop-block .image {
    position: absolute;
}

.main-header .outer-box .category-box .list-inner .shop-block h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 106px;
    color: #e92530;
    z-index: 1;
}

.main-header .outer-box .category-box .list-inner .shop-block .link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--title-color);
    background: #fff;
    border-radius: 5px;
    padding: 3.5px 20px;
    z-index: 1;
}

.main-header .outer-box .category-box .list-inner .shop-block .link:hover {
    color: #fff;
}

.main-header .menu-right-content .currency-box .nice-select {
    color: var(--title-color);
}

.main-header .menu-right-content .currency-box .nice-select:before {
    color: var(--title-color);
}

.main-header .menu-right-content {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .info-list {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .menu-right-content .info-list li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.main-header .menu-right-content .info-list li:last-child {
    margin: 0px !important;
}

.main-header .menu-right-content .info-list li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--title-color);
}

.main-header .menu-right-content .info-list li a:hover {
}

.main-header .menu-right-content .info-list li a.shopping-cart {
    padding-right: 12px;
}

.main-header .menu-right-content .info-list li a.shopping-cart span {
    position: absolute;
    display: inline-block;
    width: 19px;
    height: 19px;
    line-height: 19px;
    background: var(--secondary-color);
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    top: -5px;
    right: 0px;
}

/** main-menu **/

.main-menu {
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    margin: 0px;
}

.main-menu .navigation > li {
    position: inherit;
    float: left;
    z-index: 2;
    margin: 0px 19px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px !important;
}

.main-menu .navigation > li:first-child {
    margin-left: 0px !important;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    padding-top: 17px;
    padding-bottom: 17px;
    font-weight: 500;
    font-family: var(--text-font);
    opacity: 1;
    color: var(--title-color);
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu .navigation > li.dropdown > a {
    padding-right: 17px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
}

.main-menu .navigation > li.dropdown > a:before {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    top: 17px;
    right: 0px;
    font-weight: 500;
    transition: all 500ms ease;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: 230px;
    margin-top: 15px;
    padding: 15px 30px;
    z-index: 100;
    display: none;
    background: #fff;
    opacity: 0;
    border-bottom: solid;
    border-width: 3px;
    visibility: hidden;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a {
    position: relative;
    display: block;
    padding: 5px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: var(--title-color);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > .megamenu li > a {
    padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover {
    letter-spacing: 1px;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 10px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0%;
    margin-top: 15px;
    background: var(--secondary-color);
    border-top: solid;
    border-width: 2px;
    width: 230px;
    z-index: 100;
    display: none;
    border-radius: 0px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 25px;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--text-font);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
    padding-left: 35px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none;
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: green;
    display: none;
}

.mobile-menu .nav-logo img {
    max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0px;
}

/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu {
    position: absolute;
    width: 100%;
    padding: 30px 50px;
    left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    margin-bottom: 10px;
}

/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #3786ff;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 50px 25px;
    text-align: left;
    padding-bottom: 100px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.7;
    visibility: visible;
    right: 100%;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #141417;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 25px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li ul li > a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #ffffff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    padding: 0px 25px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
}

div#mCSB_1_container {
    top: 0px !important;
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .contact-info ul li a:hover {
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0px;
}

/** header-top **/

.header-top {
    position: relative;
    padding: 12px 0px;
    background: #16803f;
}

.header-top .top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top .info-list {
    position: relative;
    display: flex;
    align-items: center;
}

.header-top .info-list li {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    font-size: 14px;
    line-height: 16px;
    margin-right: 30px;
    color: #fff;
}

.header-top .info-list li:last-child {
    margin-right: 0px;
}

.header-top .info-list li i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 16px;
}

.header-top .info-list:last-child li {
    padding-left: 26px;
}

.header-top .info-list:last-child li i {
    font-size: 20px;
    top: -2px;
}

.header-top .info-list li a {
    display: inline-block;
    color: #fff;
}

.header-top .info-list li a:hover {
    text-decoration: underline;
}

.header-top .text p {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}

.header-top .text p span {
    font-weight: 600;
}

/** header-style-three **/

.header-style-three {
    position: relative;
}

.header-style-three .header-upper {
    padding: 15px 0px;
}

.header-style-three .header-upper .left-column {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .location-box {
    position: relative;
}

.main-header .location-box .select-box {
    min-height: 40px;
}

.main-header .location-box .nice-select {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-left: 48px;
    padding-right: 35px;
    font-size: 16px;
    font-family: var(--title-font);
    font-weight: 700;
    text-transform: capitalize;
}

.main-header .location-box .nice-select:before {
    right: 20px;
}

.main-header .location-box .icon-box {
    position: absolute;
    left: 20px;
    top: 9px;
    font-size: 20px;
    color: #fff;
}

.header-style-three .header-upper .main-menu .navigation > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
    color: #fff;
}

.header-style-three
.header-upper
.main-menu
.navigation
> li.dropdown
> a:before {
    top: 7px;
}

.header-style-three .support-box .icon-box {
    font-size: 24px;
}

.header-style-three .support-box {
    padding-left: 34px;
    padding-top: 2px;
}

.header-style-three .header-lower {
    padding: 9px 0px;
    box-shadow: none;
}

.header-style-three .search-area {
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.header-style-three .search-area .search-box .form-group button[type="submit"] {
    width: 40px;
    border-radius: 5px;
}

.header-style-three .outer-box .category-box {
    top: 9px;
}

.header-style-three .sticky-header .outer-box .category-box {
    top: 4px;
}

/** header-style-four **/

.header-style-four {
    position: relative;
}

.header-style-four .header-lower {
    box-shadow: none;
    padding: 10px 0px;
}

.header-style-four .header-top {
}

.header-style-four .language-picker__flag.language-picker__label,
.header-style-four .language-picker__button:before {
    color: var(--title-color);
}

.main-header .menu-right-content .search-box .form-group {
    position: relative;
    width: 370px;
    margin-bottom: 0px;
}

.main-header .menu-right-content .search-box .form-group input[type="search"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    font-size: 14px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    padding: 10px 70px 10px 20px;
    transition: all 500ms ease;
}

.main-header .menu-right-content .search-box .form-group button[type="submit"] {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: var(--secondary-color);
    transition: all 500ms ease;
}

.main-header .menu-right-content .search-box .form-group input:focus {
}

.main-header .menu-right-content .search-box .form-group input:focus + button,
.main-header .menu-right-content .search-box .form-group button:hover {
}

/** header-style-five **/

.header-style-five {
    position: relative;
}

.header-style-five .header-lower .outer-box .category-box .category-list {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
}

.header-style-five .header-lower {
    box-shadow: none;
    border-bottom: 1px solid #e5e5e5;
}

.header-style-five .header-lower .outer-box .category-box {
    background: #e9faeb;
}

.header-style-five
.header-lower
.outer-box
.category-box
.category-list
> li
> a {
    padding-top: 13.5px;
    padding-bottom: 13.5px;
}

/** rtl-css **/

.rtl .language-picker {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .search-area .category-inner .nice-select {
    border-right: none;
    border-left: 1px solid #e5e5e5;
}

.rtl .nice-select .option {
    text-align: right;
}

.rtl .main-header .menu-right-content .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .menu-right-content .info-list li {
    margin-right: 0px;
    margin-left: 20px;
}

.rtl .cart-menu {
    right: inherit;
    left: 0px;
}

.rtl .main-header .outer-box .category-box .text {
    padding-left: 0px;
    padding-right: 28px;
}

.rtl .main-header .outer-box .category-box {
    left: inherit;
    right: 0px;
}

.rtl .main-header .outer-box .category-box .category-list .list-inner {
    left: inherit;
    right: 100%;
    transform-origin: right center;
}

.rtl .main-header .outer-box .category-box .category-list > li:before {
    right: inherit;
    left: -10px;
}

.rtl
.main-header
.outer-box
.category-box
.category-list
> li.category-dropdown
> a:before {
    right: inherit;
    left: 15px;
    transform: rotate(180deg);
}

.rtl .main-header .outer-box .category-box .list-inner .shop-block .image {
    right: inherit;
    left: 10px;
}

.rtl .header-style-two .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .menu-area .text a {
    margin-left: 0px;
    margin-right: 45px;
}

.rtl .header-bottom .bottom-inner .category-list > li {
    float: right;
}

.rtl .header-upper .right-column .currency-box {
    margin-right: 0px;
    margin-left: 40px;
}

.rtl .main-header .outer-box .category-box .category-list > li > a {
    padding-left: 50px;
    padding-right: 63px;
}

.rtl .main-header .outer-box .category-box .category-list > li .icon {
    left: inherit;
    right: 25px;
}

.rtl .header-top .info-list li {
    margin-right: 0px;
    margin-left: 30px;
}

.rtl .header-style-three .header-upper .logo-box {
    margin-right: 0px;
    margin-left: 55px;
}

.rtl .main-header .menu-right-content .search-box {
    margin-right: 0px;
    margin-left: 60px;
}

/** responsive-css **/

@media only screen and (max-width: 1349px) {
    .main-header .search-area {
        width: 500px;
    }

    .main-header .menu-right-content .search-box {
        display: none;
    }
}

@media only screen and (max-width: 1200px) {
    .main-header .outer-box .category-box .list-inner .inner-box .single-column {
        width: 100%;
    }

    .main-header .outer-box .category-box .category-list .list-inner {
        width: 600px;
    }

    .main-header .outer-box .category-box .text:before {
        display: none;
    }

    .main-header .outer-box .category-box .text span {
        display: none;
    }

    .main-header .outer-box .category-box {
        padding: 0px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 1px solid #e6e6e6;
        top: 0px;
        border-radius: 0px;
        text-align: center;
    }

    .main-header .outer-box .category-box .text i {
        position: relative;
        top: 0px;
        display: inline-block;
    }

    .main-header .outer-box .category-box .text {
        padding: 0px !important;
        line-height: 30px;
    }

    .main-header .header-lower {
        padding: 15px 0px;
    }
}

@media only screen and (max-width: 991px) {
    .main-header .outer-box .category-box .category-list .list-inner {
        width: 280px;
        padding-right: 0px;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 300px;
    }

    .main-header .outer-box .category-box .list-inner .shop-block {
        position: relative;
        width: 100%;
    }

    .language-picker {
        display: none;
    }

    .main-header .search-area {
        width: 360px;
    }

    .main-header .menu-area .text {
        display: none;
    }

    .header-top .top-inner {
        padding-left: 0px;
    }

    .header-top .logo-box {
        display: none;
    }

    .header-top .top-inner {
        display: block;
        text-align: center;
    }

    .header-top .info-list {
        justify-content: center;
    }

    .header-top .text {
        margin: 10px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .header-upper .upper-inner {
        display: block;
        text-align: center;
    }

    .main-header .search-area {
        margin: 0 auto;
    }

    .header-upper .right-column {
        display: none;
    }

    .main-header .menu-right-content .currency-box {
        display: none;
    }

    .header-upper .upper-inner .logo-box {
        margin-bottom: 15px;
    }

    .header-top .search-box {
        width: 200px;
    }
}

@media only screen and (max-width: 599px) {
    .main-header .outer-box .category-box .category-list .list-inner {
        left: 0px;
        top: 50px;
        z-index: 2;
        transform-origin: top center;
        transform: scaleY(0);
    }

    .main-header
    .outer-box
    .category-box
    .category-list
    .category-dropdown:hover
    .list-inner {
        transform: scaleY(1);
    }

    .rtl .main-header .outer-box .category-box .category-list .list-inner {
        left: 0px;
        right: 0px;
        margin-bottom: 0px;
        transform-origin: top center;
    }

    .header-style-three .search-area,
    .main-header .location-box {
        display: none !important;
    }

    .header-style-three .header-upper .logo-box {
        margin: 0px !important;
    }
}

@media only screen and (max-width: 499px) {
    .main-header .outer-box .category-box .category-list > li > a {
        padding: 12px 20px;
    }

    .main-header .search-area .search-box .form-group {
        width: 100%;
    }

    .main-header .search-area .category-inner {
        width: 100%;
    }

    .main-header .search-area .category-inner .nice-select {
        border: none;
        width: 100%;
    }

    .main-header .search-area {
        display: block;
        width: 100%;
    }

    .main-header .search-area .category-inner .nice-select {
        text-align: left;
        border: none !important;
    }

    .rtl .main-header .search-area .category-inner .nice-select {
        text-align: right;
    }

    .main-header .search-area {
        border-radius: 10px;
    }

    .header-top .search-box {
        width: 130px;
    }

    .header-top .search-box .form-group input[type="search"] {
        padding-right: 30px;
    }

    .header-style-four .menu-right-content {
        display: none;
    }
}

.item-product {
    background-color: var(--bg-white);
    border-radius: 22px;
    padding: 30px;
    overflow: hidden;
    border: 2px solid var(--th-border-secondary);
    position: relative;
    transition: border 500ms;
    cursor: pointer;
    height: 100%;
    width: 95%;
    margin: auto;
}
.item-product.item-layout {
    height: 100%;
    transition: all 500ms;
}
.item-product .item-product_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.item-product .item-product_content .category-title {
    color: var(--orange-color);
}

.item-product .item-product_content .category-title:hover {
    text-decoration: underline;
}

.item-product .item-product_content h6 {
    font-weight: 700;
}

.item-product .item-product_content h6:hover {
    color: var(--main-Green);
}

.item-product .item-product_content .price {
    color: var(--main-Green);
    font-weight: 700;
}

.item-product .item-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-product .item-image img {
    width: 75%;
}

.item-product .item-icons {
    position: absolute;
    top: 0;
    inset-inline-end: -100px;
    transition: all 700ms;
}

.item-product:hover .item-icons {
    inset-inline-end: var(--insent-icons);
}

.item-icons ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.item-icons ul > li {
    background-color: var(--bg-secondary);
    padding: 10px 13px;
    border-radius: 50%;
    color: var(--main-Green);
}

.item-icons ul > li:hover {
    background-color: var(--main-Green);
    color: var(--orange-color);
    cursor: pointer;
}

.cart-section {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 10px;
    left: auto;
    right: 24px;
}

.cart-section_input {
    display: flex;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--th-border-secondary);
    border-radius: 8px;
    transition: all ease-in 200ms;
}

.cart-section_input input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: unset;
    background-color: var(--bg-secondary);
}

.cart-section_input button {
    background-color: var(--bg-white);
    text-align: center;
    height: 35px;
    padding: 0 16px 2px;
}

.cart-section_input button:hover {
    background-color: var(--orange-color);
}

.item-product:hover.item-layout {
    height: 106%;
    z-index: 99;
}

.item-product:hover {
    border-color: var(--orange-color);
}

.item-product:hover .cart-section .cart-icon {
    opacity: 1;
    background-color: var(--orange-color);
}

.item-product:hover.item-layout .cart-section .cart-section_input {
    visibility: visible;
    opacity: 1;
}

.cart-icon {
    width: 50px;
    height: 50px;
    border-radius: 20px 20px 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    background-color: var(--bg-secondary);
    cursor: pointer;
    opacity: 0.6;
    transition: all ease-in-out 300ms;
}

.cart-icon i {
    color: var(--text-black);
}

.cart-icon:hover {
    border-radius: 12px;
}

@media (hover: hover) {
    .item-product .item-icons ul > li {
        transform: translateX(var(--translate-distance));
        transition: transform 700ms;
    }
    .item-product:hover .item-icons ul > li {
        transform: translateX(0);
    }
    .item-product .item-icons ul > li:nth-child(1) {
        transition-delay: 0s;
    }
    .item-product .item-icons ul > li:nth-child(2) {
        transition-delay: 0.05s;
    }
    .item-product .item-icons ul > li:nth-child(3) {
        transition-delay: 0.1s;
    }
}

.Product_Category_Section_list li:last-of-type {
    padding-bottom: unset;
}
.Product_Category_Section_list li:hover {
    color: var(--main-Green);
    text-decoration: underline;
}
.Product_Category_Section_list li::marker {
    color: var(--main-Green);
}

.Product_Category_Section hr {
    border-top: 2px solid var(--smoke-color);
    margin: 45px 0;
}

/* produuct show */
.Product_Category_Section_ShowProduct_image {
    width: 100px;
}
.Product_Category_Section_ShowProduct {
    display: flex;
    align-items: center;
    gap: 2.5vw;
}
.Product_Category_Section_ShowProduct_Contnet {
    display: flex;
    flex-direction: column;
}

.Product_Category_Section {
    width: 93%;
    margin: auto;
    border: 2px solid var(--th-border-secondary);
    padding: 30px;
    border-radius: 15px;
}
.Product_Category_Section_header {
    line-height: 1;
    font-weight: 700;
    font-size: 22px;
    font-family: "Signika", "HelveticaNeue-Light", "Helvetica Neue Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-bottom: 10px;
    color: var(--main-Green);
}

ul.Product_Category_Section_list {
    list-style: disc;
    list-style-position: inside;
}
ul.Product_Category_Section_list li::marker {
    color: var(--orange-color);
}
.Product_Category_Section_list li {
    padding-bottom: 15px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-secondary);
}

.border-rounded {
    border-radius: 24px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-smoke);
}

.stars a:hover {
    color: var(--main-Green);
    text-decoration: underline;
}

.stars ul {
    display: flex;
    color: gold;
}

.Tags_Container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.Tags {
    cursor: pointer;
    border: 2px solid var(--Light-Gray);
    border-radius: 22px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}
.Tags:hover {
    background-color: var(--main-Green);
    color: var(--Light-Gray);
}
/* 10. shop page css here */
@media only screen and (max-width: 767px) {
    .shop_area {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.canvas_padding {
    margin-bottom: 0;
}

.breadcrumbs_area {
    background: #f7f7f7;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .breadcrumbs_area {
        background-position: 16%;
        height: 105px;
    }
}

.breadcrumb_content {
    text-align: center;
}
.breadcrumb_content h3 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 9px;
}
@media only screen and (max-width: 767px) {
    .breadcrumb_content h3 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 7px;
    }
}
.breadcrumb_content ul li {
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    margin-right: 3px;
    padding-right: 13px;
    position: relative;
}
.breadcrumb_content ul li::before {
    position: absolute;
    content: "/";
    right: 0;
    top: 50%;
    transform: translatey(-50%);
}
.breadcrumb_content ul li:last-child {
    margin-right: 0;
}
.breadcrumb_content ul li:last-child::before {
    display: none;
}
.breadcrumb_content ul li a:hover {
    color: #40a944;
}


/* ==============================================
  3-Navbar
  ================================================= */
.offcanvas_menu .container {
    position: relative;
}
.bg-menu {
    /* box-shadow: none !important; */
}
.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #222222;
    top: 0;
}
.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}
.offcanvas_menu {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}
.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 999;
    top: 0;
    height: 100vh;
    transition: 0.5s;
    left: 0;
    margin-inline-start: -300px;
    padding: 50px 15px 30px;
    overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
    margin-inline-start: 0;
}
.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}
.offcanvas_menu_wrapper .language_currency {
    display: block;
}
.offcanvas_menu_wrapper .header_account_area {
    display: flex;
}
.offcanvas_menu_wrapper .call-support {
    display: block;
}
.offcanvas_main_menu > li.menu-item-has-children.menu-open > span.menu-expand {
    transform: rotate(180deg);
}
.offcanvas_main_menu
> li
ul
li.menu-item-has-children.menu-open
span.menu-expand {
    transform: rotate(180deg);
}
.offcanvas_main_menu li {
    position: relative;
}
.offcanvas_main_menu li:last-child {
    margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0;
}
.offcanvas_main_menu li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
}
.offcanvas_main_menu li a:hover {
    color: #40a944;
}
.offcanvas_main_menu li ul.sub-menu {
    padding-left: 20px;
}
.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.offcanvas_footer span a {
    font-size: 14px;
}
.offcanvas_footer span a:hover {
    color: #40a944;
}
.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}
.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: #40a944;
}
.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}
.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 33px;
    border: 1px solid #ededed;
    border-radius: 50%;
}
.canvas_close a:hover {
    background: #40a944;
    border-color: #40a944;
    color: #fff;
}
.canvas_open {
    position: absolute;
    right: 17px;
    top: 26px;
    z-index: 9;
}
@media only screen and (max-width: 767px) {
    .canvas_open {
        right: 20px;
        top: 25px;
    }
}
.canvas_open a {
    font-size: 26px;
    width: 41px;
    height: 37px;
    display: block;
    line-height: 39px;
    text-align: center;
    border: 1px solid #222222;
}
@media only screen and (max-width: 767px) {
    .canvas_open a {
        width: 32px;
        height: 32px;
        line-height: 34px;
        font-size: 24px;
    }
}
.canvas_open a:hover {
    color: #40a944;
    border-color: #40a944;
}
.sticky-header.sticky {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 900ms;
    animation-duration: 900ms;
    -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    border-bottom: 0;
    display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sticky-header.sticky {
        position: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        -webkit-animation-name: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}
@media only screen and (max-width: 767px) {
    .sticky-header.sticky {
        position: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        -webkit-animation-name: inherit;
        animation-name: inherit;
        padding: 0;
        background: inherit;
        opacity: inherit;
    }
}
.sticky-header.sticky .search_widget {
    top: 50px;
}
.sticky-header.sticky .dropdown_account {
    top: 50px;
}
.sticky-header.sticky .mini_cart {
    top: 55px;
}
/*header css heer*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_header {
        padding: 30px 0 28px;
    }
}
@media only screen and (max-width: 767px) {
    .main_header {
        padding: 25px 0;
    }
}
.header_top {
    border-bottom: 1px solid #ededed;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_top {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .header_top {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_language {
        left: -10px;
    }
}
@media only screen and (max-width: 767px) {
    .dropdown_language {
        left: -10px;
    }
}
.header_middle {
    padding: 30px 0 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_middle {
        margin-bottom: 29px;
        padding: 0;
    }
}
@media only screen and (max-width: 767px) {
    .header_middle {
        margin-bottom: 29px;
        padding: 0;
    }
}
.logo img {
    max-width: 150px;
}
@media only screen and (max-width: 767px) {
    .logo img {
        max-width: 120px;
    }
}
@media only screen and (max-width: 575px) {
    .logo img {
        max-width: 100px;
    }
}
.dropdown_links {
    position: absolute;
    background: #fff;
    border: 1px solid #ededed;
    padding: 10px 20px;
    text-align: left;
    top: 100%;
    right: -36px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    overflow: hidden;
    z-index: 9999;
    border-radius: 3px;
    visibility: hidden;
    max-height: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dropdown_links {
        padding: 10px 12px;
    }
}
@media only screen and (max-width: 767px) {
    .dropdown_links {
        padding: 10px 12px;
    }
}
.dropdown_links li a {
    text-transform: capitalize;
    display: block;
    font-size: 13px;
    white-space: nowrap;
    line-height: 28px;
    color: #222222;
}
.dropdown_links li a:hover {
    color: #40a944;
}
.hover_category {
    position: relative;
    border-radius: 25px 0 0 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hover_category {
        border-radius: 6px 0 0 6px;
    }
}
@media only screen and (max-width: 479px) {
    .hover_category {
        border-radius: 6px;
        width: 280px;
        margin: 0 auto 20px;
    }
}
.hover_category .select_option {
    border: 0;
    background: #f5f5f5;
    padding-left: 25px;
    padding-right: 35px;
    font-size: 13px;
    height: 45px;
    line-height: 45px;
    border-radius: 25px 0 0 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hover_category .select_option {
        padding-right: 28px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hover_category .select_option {
        height: 43px;
        line-height: 43px;
        font-size: 12px;
        width: 145px;
        letter-spacing: 0;
        padding-left: 10px;
        padding-right: 23px;
        border-radius: 6px 0 0 6px;
    }
}
@media only screen and (max-width: 767px) {
    .hover_category .select_option {
        height: 37px;
        line-height: 37px;
        font-size: 13px;
        border-radius: 6px;
    }
}
@media only screen and (max-width: 479px) {
    .hover_category .select_option {
        width: 100%;
        border-radius: 6px 0 0 6px;
    }
}
.hover_category .select_option::after {
    top: 54%;
    right: 13px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hover_category .select_option::after {
        right: 8px;
    }
}
.hover_category .select_option ul.list {
    max-height: 300px;
    overflow: auto;
    width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hover_category .select_option ul.list {
        max-height: 220px;
    }
}
@media only screen and (max-width: 767px) {
    .hover_category .select_option ul.list {
        max-height: 220px;
    }
}
.search_container {
    margin-inline-end: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search_container {
        margin-inline-end: 35px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_container {
        margin-inline-end: 0;
    }
}
@media only screen and (max-width: 767px) {
    .search_container {
        margin-inline-end: 0;
        margin-bottom: 25px;
    }
}
@media only screen and (max-width: 479px) {
    .search_container {
        margin-bottom: 0;
    }
}
.search_container form {
    display: flex;
    border-radius: 30px;
    border: 1px solid #ededed;
    background: #fff;
    width: 940px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search_container form {
        width: 481px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_container form {
        width: 100%;
        border-radius: 6px;
    }
}
@media only screen and (max-width: 767px) {
    .search_container form {
        width: 100%;
        border-radius: 6px;
    }
}
@media only screen and (max-width: 479px) {
    .search_container form {
        flex-direction: column;
        border: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mobail_s_none {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .mobail_s_none {
        display: none;
    }
}
.mobail_s_block {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mobail_s_block {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .mobail_s_block {
        display: block;
    }
}
.search_box {
    position: relative;
    width: 100%;
}
@media only screen and (max-width: 479px) {
    .search_box {
        border: 1px solid #ededed;
        border-radius: 6px;
        margin-bottom: 25px;
    }
}
.search_box input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #222222;
}
.search_box input::-moz-placeholder {
    /* Firefox 19+ */
    color: #222222;
}
.search_box input:-ms-input-placeholder {
    /* IE 10+ */
    color: #222222;
}
.search_box input:-moz-placeholder {
    /* Firefox 18- */
    color: #222222;
}
.search_box input {
    border: 0;
    background: inherit;
    width: 100%;
    height: 45px;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
    padding: 0 75px 0 20px;
    opacity: 0.7;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_box input {
        font-size: 12px;
        padding: 0 54px 0 10px;
        width: 100%;
        height: 43px;
    }
}
@media only screen and (max-width: 767px) {
    .search_box input {
        font-size: 12px;
        padding: 0 54px 0 10px;
        width: 100%;
        height: 34px;
    }
}
.search_box button {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    line-height: 48px;
    width: 60px;
    padding: 0;
    text-align: center;
    right: 0;
    font-weight: 400;
    font-size: 20px;
    border-radius: 0 30px 30px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #40a944;
    color: #fff;
}
.search_box button:hover {
    background: #222222;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search_box button {
        width: 48px;
        padding: 0 6px;
        top: 0;
        bottom: 0;
        right: 0;
        font-size: 16px;
        line-height: 38px;
        border-radius: 0 6px 6px 0;
    }
}
@media only screen and (max-width: 767px) {
    .search_box button {
        width: 48px;
        padding: 0 6px;
        top: 0;
        bottom: 0;
        right: 0;
        font-size: 16px;
        line-height: 38px;
        border-radius: 0 6px 6px 0;
    }
}
.header_account_list {
    margin-inline-end: 20px;
}
.header_account_list:last-child {
    margin-inline-end: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_account_list {
        margin-inline-end: 17px;
    }
}
@media only screen and (max-width: 767px) {
    .header_account_list {
        margin-inline-end: 14px;
    }
}
.header_account_list > a {
    font-size: 26px;
    display: flex;
    align-items: center;
}
.header_account_list > a:hover {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_account_list > a {
        font-size: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .header_account_list > a {
        font-size: 22px;
    }
}
@media only screen and (max-width: 575px) {
    .header_account_list.register {
        display: none;
    }
}
.header_account_list.register ul li {
    display: inline-block;
}
.header_account_list.register ul li a {
    text-transform: uppercase;
}
.header_account_list.register ul li a:hover {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_account_list.register ul li a {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .header_account_list.register ul li a {
        font-size: 13px;
    }
}
.header_account_list.register ul li span {
    margin: 0 2px;
}
.header_account_list span.item_count {
    margin-inline-start: 5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: #e6e6e6;
    color: #222222;
    border-radius: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    display: inline-block;
}
@media only screen and (max-width: 767px) {
    .header_account_list span.item_count {
        margin-inline-start: 2px;
        width: 16px;
        height: 16px;
        line-height: 16px;
    }
}
.header_account_area {
    display: flex;
    justify-content: flex-end;
}
.header_right_info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_right_info {
        justify-content: center;
    }
}
@media only screen and (max-width: 767px) {
    .header_right_info {
        justify-content: center;
    }
}
/*mini cart css here*/
.mini_cart_wrapper {
    position: relative;
}
.cart_close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
}
.cart_text h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
}
.mini_cart_close > a {
    font-size: 25px;
}
.mini_cart_close > a:hover {
    color: #40a944;
}
.mini_cart {
    position: fixed;
    min-width: 355px;
    height: 100%;
    padding: 18px 28px 33px;
    background: #fff;
    z-index: 999;
    right: 0;
    top: 0;
    transition: 0.5s;
    transform: translateX(100%);
}
.mini_cart.active {
    transform: translateX(0);
    transition: 0.5s;
}
@media only screen and (max-width: 767px) {
    .mini_cart {
        min-width: 300px;
        height: 100%;
        padding: 18px 18px 33px;
    }
}
.cart_img {
    width: 90px;
    margin-inline-end: 10px;
    border: 1px solid transparent;
}
.cart_img:hover {
    border-color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_img {
        width: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_img {
        width: 70px;
    }
}
.cart_info {
    width: 63%;
}
.cart_info a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_info a {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_info a {
        font-size: 13px;
    }
}
.cart_info a:hover {
    color: #40a944;
}
.cart_info p {
    font-size: 12px;
}
.cart_info p span {
    font-weight: 600;
}
.cart_remove a {
    font-size: 15px;
    display: block;
    line-height: 20px;
    text-align: center;
}
.cart_remove a:hover {
    color: #40a944;
}
.cart_item {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #ededed;
    display: flex;
    justify-content: space-between;
}
.mini_cart_table {
    padding: 23px 0;
}
.cart_total {
    display: flex;
    justify-content: space-between;
}
.cart_total span {
    font-size: 14px;
    font-weight: 400;
}
.cart_total span.price {
    font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cart_total span {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .cart_total span {
        font-size: 13px;
    }
}
.cart_button:first-child {
    margin-bottom: 15px;
}
.cart_button a {
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    background: #eef0f1;
    display: block;
    text-align: center;
    line-height: 20px;
    margin-bottom: 0;
    padding: 13px 0px 11px;
    border: 1px solid #ededed;
}
.cart_button a:hover {
    background: #40a944;
    border-color: #40a944;
    color: #fff;
}
/*mini cart css end*/
.menu_position {
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main_menu {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .main_menu {
        display: none;
    }
}
.main_menu nav > ul {
    display: flex;
}
.main_menu nav > ul > li {
    position: relative;
    margin-inline-end: 37px;
}
.main_menu nav > ul > li:last-child {
    margin-inline-end: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main_menu nav > ul > li {
        margin-inline-end: 24px;
    }
}
.main_menu nav > ul > li:hover ul.sub_menu {
    visibility: visible;
    max-height: 360px;
    padding: 24px 20px;
}
.main_menu nav > ul > li:hover .mega_menu {
    visibility: visible;
    max-height: 300px;
    padding: 25px 30px 30px 30px;
}
.main_menu nav > ul > li:hover > a {
    color: #40a944;
}
.main_menu nav > ul > li:hover > a::before {
    opacity: 1;
    visibility: visible;
}
.main_menu nav > ul > li > a {
    display: block;
    font-size: 15px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
}
.main_menu nav > ul > li > a i {
    margin-inline-start: 3px;
}
.main_menu nav > ul > li > a.active {
    color: #40a944;
}
.main_menu nav > ul > li ul.sub_menu {
    position: absolute;
    min-width: 220px;
    padding: 0 20px;
    background: #ffffff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    top: 101%;
    text-align: left;
}
.main_menu nav > ul > li ul.sub_menu li a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 32px;
    text-transform: capitalize;
}
.main_menu nav > ul > li ul.sub_menu li a:hover {
    color: #40a944;
}
.main_menu nav > ul > li.mega_items {
    position: static;
}
.main_menu nav > ul > li .mega_menu {
    position: absolute;
    min-width: 100%;
    padding: 0 30px 0 30px;
    background: #ffffff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    max-height: 0;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    left: 0;
    right: auto;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 99;
    top: 101%;
    text-align: left;
}
.mega_menu_inner {
    display: flex;
    justify-content: space-between;
}
.mega_menu_inner > li > a {
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}
.mega_menu_inner > li > a:hover {
    color: #40a944;
}
.mega_menu_inner > li ul li {
    display: block;
}
.mega_menu_inner > li ul li a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 30px;
    text-transform: capitalize;
}
.mega_menu_inner > li ul li a:hover {
    color: #40a944;
}
/*main menu css end*/
.categories_menu {
    position: relative;
}
.categories_title {
    position: relative;
    cursor: pointer;
    height: 51px;
    background: #40a944;
    border-radius: 5px 0 0 5px;
    padding-left: 20px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_title {
        height: 45px;
        border-radius: 6px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_title {
        height: 43px;
        border-radius: 6px;
    }
}
.categories_title h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    cursor: pointer;
    margin-bottom: 0;
    display: block;
    line-height: 51px;
    text-transform: capitalize;
    padding-left: 35px;
    position: relative;
    color: #fff;
}
.categories_title h2::before {
    content: "\f0c9";
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    display: block;
    position: absolute;
    font-size: 22px;
    line-height: 0px;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
}
.categories_title h2::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    display: block;
    position: absolute;
    font-size: 13px;
    line-height: 0px;
    right: 17px;
    top: 50%;
    transform: translatey(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_title h2 {
        line-height: 45px;
        float: inherit;
        text-align: right;
        padding-right: 37px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_title h2 {
        line-height: 45px;
        float: inherit;
        text-align: right;
        padding-right: 37px;
    }
}
.categories_menu_toggle {
    background: #ffffff;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 9;
    display: none;
    padding: 10px 0;
    box-shadow: 0px 0px 5.76px 0.24px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle {
        display: none;
        max-height: 360px;
        overflow: auto;
        padding: 10px 0 20px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle {
        display: none;
        max-height: 350px;
        overflow: auto;
    }
}
.categories_menu_toggle > ul > li {
    position: relative;
}
.categories_menu_toggle > ul > li > a {
    font-size: 14px;
    line-height: 38px;
    text-transform: capitalize;
    font-weight: 400;
    display: block;
    cursor: pointer;
    padding: 0 20px 0 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .categories_menu_toggle > ul > li > a {
        line-height: 38px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li > a {
        line-height: 38px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li > a {
        line-height: 38px;
    }
}
.categories_menu_toggle > ul > li > a i.fa-angle-right {
    float: right;
    font-size: 15px;
    line-height: 35px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li > a i.fa-angle-right {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li > a i.fa-angle-right {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li > a:hover {
        color: #40a944;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li > a:hover {
        color: #40a944;
    }
}
.categories_menu_toggle > ul > li:last-child > a {
    border-bottom: 0;
}
.categories_menu_toggle > ul > li:hover ul.categories_mega_menu {
    opacity: 1;
    visibility: visible;
    left: 100%;
}
.categories_menu_toggle > ul > li:hover > a {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li:hover > a {
        background: inherit;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li:hover > a {
        background: inherit;
    }
    .login_icons {
        display: none;
    }
    .login_user {
        display: none;
    }
    .Home_Logo_Section_Login_cart_container {
        text-align: center;
    }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu {
    position: absolute;
    left: 120%;
    width: 500px;
    background: #ffffff;
    padding: 25px 20px 23px;
    overflow: hidden;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu {
        width: 480px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu {
        display: none;
        opacity: inherit !important;
        visibility: inherit !important;
        left: inherit !important;
        width: 100%;
        top: 100%;
        max-height: 350px;
        overflow: auto;
        transition: unset;
        box-shadow: inherit;
        position: inherit;
        padding: 0 20px 0px 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu {
        display: none;
        opacity: inherit !important;
        visibility: inherit !important;
        left: inherit !important;
        width: 100%;
        top: 100%;
        max-height: 350px;
        overflow: auto;
        transition: unset;
        box-shadow: inherit;
        position: inherit;
        padding: 0 20px 0px 60px;
    }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu.open {
    display: block;
    left: 0;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li {
    padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
        padding: 0;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu > li {
        padding: 0;
    }
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
    line-height: 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}
.categories_menu_toggle > ul > li ul.categories_mega_menu > li > a:hover {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
        line-height: 38px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle > ul > li ul.categories_mega_menu > li > a {
        line-height: 38px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle
    > ul
    > li
    ul.categories_mega_menu
    > li.menu_item_children
    > a {
        text-transform: capitalize;
        font-weight: 400;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle
    > ul
    > li
    ul.categories_mega_menu
    > li.menu_item_children
    > a {
        text-transform: capitalize;
        font-weight: 400;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li.menu_item_children > a {
        position: relative;
    }
    .categories_menu_toggle ul li.menu_item_children > a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li.menu_item_children > a {
        position: relative;
    }
    .categories_menu_toggle ul li.menu_item_children > a::before {
        position: absolute;
        content: "+";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li.menu_item_children.open > a::before {
        display: none;
    }
    .categories_menu_toggle ul li.menu_item_children.open > a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li.menu_item_children.open > a::before {
        display: none;
    }
    .categories_menu_toggle ul li.menu_item_children.open > a::after {
        position: absolute;
        content: "-";
        right: 15px;
        top: 50%;
        transform: translatey(-50%);
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_sub_menu {
        display: none;
        padding: 0 0 0 30px;
    }
}
@media only screen and (max-width: 767px) {
    .categorie_sub_menu {
        display: none;
        padding: 0 0 0 30px;
    }
}
.categorie_sub_menu li a {
    text-transform: capitalize;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}
.categorie_sub_menu li a:hover {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_sub_menu li a {
        line-height: 38px;
    }
}
@media only screen and (max-width: 767px) {
    .categorie_sub_menu li a {
        line-height: 38px;
    }
}
.categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
    width: 400px;
}
@media only screen and (max-width: 767px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categories_menu_toggle ul li ul.categories_mega_menu.column_2 {
        width: 100%;
    }
}
.categorie_sub {
    opacity: 0;
    z-index: 999;
    position: absolute;
    width: 100%;
    left: 0;
    background: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 65%;
    visibility: hidden;
}
.categorie_sub.open {
    top: 95%;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.11);
}
.categories_menu_toggle ul li.has-sub > a::before {
    position: absolute;
    content: "\f055";
    font-family: FontAwesome;
    top: 0;
    right: 20px;
    font-size: 18px;
    pointer-events: none;
}
.categories_menu_toggle ul li.has-sub > a.open::before {
    content: "\f056";
}
.categories_menu_toggle ul li.has-sub ul.categorie_sub li a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    padding-left: 30px;
    display: block;
    line-height: 45px;
}
.categories_menu_toggle ul li.has-sub ul.categorie_sub li a:hover {
    color: #40a944;
}
.categories_menu_toggle ul li ul.categories_mega_menu > li:first-child {
    padding-left: 0;
}
.categories_menu_toggle ul li ul.categories_mega_menu > li:last-child {
    padding-right: 0;
}
.categorie_banner {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 500px;
}
@media only screen and (max-width: 767px) {
    .categorie_banner {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .categorie_banner {
        display: none;
    }
}
.categorie_banner a img:hover {
    opacity: 0.8;
}
.call-support {
    text-align: right;
    padding-top: 5px;
    font-weight: 800;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .call-support {
        display: none;
        text-align: center;
        margin-bottom: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .call-support {
        display: none;
        text-align: center;
        margin-bottom: 22px;
    }
}
.call-support p {
    font-size: 13px;
    line-height: 18px;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
}
.call-support p::before {
    content: "\f879";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    /* width: 32px;
    height: 32px; */
    font-size: 25px;
    display: inline-block;
    left: -41px;
    top: 10px;
    color: green;
}
.call-support p a {
    display: block;
    font-size: 15px;
    padding-top: 5px;
}
.call-support p a:hover {
    color: #40a944;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .call-support p {
        font-size: 13px;
    }
}
@media only screen and (max-width: 767px) {
    .call-support p {
        font-size: 13px;
    }
}
.count_cart {
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 12px;
    font-weight: 700;
    background: #40a944;
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
@media only screen and (max-width: 767px) {
    .dropdown_language {
        left: -10px;
    }
}
.header_social {
    text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header_social {
        text-align: center !important;
        margin-bottom: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .header_social {
        text-align: center !important;
        margin-bottom: 18px;
    }
}
.header_social ul li {
    display: inline-block;
    margin-right: 18px;
}
.header_social ul li:last-child {
    margin-right: 0;
}
.header_social ul li a {
    font-size: 16px;
}
.header_social ul li a:hover {
    color: #40a944;
}

/* =============================================================
  4- Home page
  ===============================================================*/
.container-adv .item-product {
    min-height: 400px;
}

.container-adv .item-product .item-layout {
    min-height: 400px;
}

.container-adv .item-product:hover.item-layout {
    min-height: 440px;
}

.container-adv {
    display: flex;
    justify-content: space-around;
    gap: 26px;
    padding: 1rem 0;
    z-index: 99;
}
.container-adv .slick-slider {
    min-height: calc(455px);
}
.container-adv .right {
    display: flex;
    flex: 40%;
    overflow: hidden;
    border-radius: 12px;
    height: 450px;
    background-color: var(--bg-white);
}
.section_product .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section_product .content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}
.section_product ul li:hover > a > span {
    color: var(--main-Green);
}
.section_product .card-body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.section_product .card-body a {
    color: var(--text-white);
    font-weight: 700;
    border-bottom: 1px solid var(--text-white);
    transition: all ease-in 300ms;
}
.container-adv .right .card-body a:hover {
    border-color: var(--orange-color);
    color: var(--orange-color);
}
.container-adv .left {
    flex: 60%;
    display: flex;
}

@media (max-width: 1025px) {
    .container-adv {
        flex-direction: column;
    }
    .container-adv .right {
        flex: 100%;
    }
    .container-adv .left {
        flex: 100%;
    }
}

@media (max-width: 500px) {
    .container-adv .item-product:hover.item-layout {
        min-height: calc(400px + 20vh);
    }

    .container-adv .slick-slider {
        min-height: calc(400px + 20.8vh);
    }
}

.feature-box {
    display: flex;
    padding: 20px 15px;
}
.feature-box .feature-icon {
    display: inline-flex;
    flex: 0 0 auto;
    margin-inline-end: 20px;
    padding-top: 20px;
}
.feature-box .feature-text {
    flex-grow: 1;
    text-align: start;
}

.banner-divider {
    background-image: url("../assets/divider-banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 97%;
    margin: auto;
}

.categories ul li {
    text-align: center;
    font-family: var(--font-heading);
}

.categories li img {
    border-radius: 50%;
    object-fit: cover;
    max-width: 214px;
    margin: auto;
    margin-bottom: 20px;
}
.feature-icon img {
    width: 60px;
    height: 60px;
}
.image-banner-cat {
    min-height: 450px;
}
.image-banner-cat img {
    min-height: 450px;
}
/* .slider_products .item-product {
    margin: 0 15px;
  } */
.slick-slider .slick-slide {
    padding: 0 5px;
}
/*
  .slick-next,
  .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 80px !important;
    height: 80px !important;
    padding: 15px !important;
    color: red !important;
    z-index: 9999;
  }
  .slick-next:before,
  .slick-prev:before {
    color: green;
    font-size: 60px;
    padding: 20px;
    z-index: 9999999999999999;
  } */
.hero_slider .slick-dots {
    position: absolute;
    bottom: 30px;
}

.hero_slider .slick-dots li button {
    /*width: 30px;
    height: 15px;
    */
    color: green;

    border-radius: 0;
}
.slick-dots li button:before {
    /* width: 30px;
    height: 30px; */
    color: #fff;
    font-size: 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    color: green;
    opacity: 1;
    border-radius: 0;
}
.slick-dots li button:before {
    content: "\f2f8";
    font-size: 22px;
    font-family: "Font Awesome 6 Pro";
}
/* =====================================================
  5-about page
  ======================================================== */

/** about-section **/

.about-section{
    position: relative;
}

.about-section .sec-title h2{
    font-size: 48px;
    line-height: 56px;
}

.about-section .content-box{
    position: relative;
    display: block;
}

.about-section .content-box .text-box span{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 14px;
}

.about-section .content-box .text-box h2{
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
}

.about-section .content-box .text-box p{
    margin-bottom: 30px;
}

.about-section .content-box .text-box .list-style-one li{
    font-weight: 500;
    color: var(--title-color);
}

.about-section .content-box .text-box .list-style-one li:before{
    background: #111;
}

.about-section .content-box .funfact-block{
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    padding: 17px 15px;
}

.about-section .content-box .funfact-block .count-outer{
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 50px;
    height: 50px;
    font-family: var(--title-font);
    font-weight: 700;
    margin-bottom: 3px;
}

.about-section .content-box .funfact-block p{
    line-height: 26px;
    color: var(--title-color);
}

.about-section .content-box .btn-box .theme-btn{
    padding-top: 13px;
    padding-bottom: 13px;
}

.about-section .content-box .btn-box .theme-btn img{
    margin-left: 10px;
}

.about-section .inner-box{
    position: relative;
    width: 100%;
    padding-top: 460px;
    border-radius: 10px;
    overflow: hidden;
}

.about-section .inner-box .bg-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-section .inner-box .content-info{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(0, 0, 0, 0.50);
    padding: 24px 50px;
}

.about-section .inner-box .content-info:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.30);
    left: 50%;
    top: 34px;
}

.about-section .inner-box .content-info .single-item{
    position: relative;
    display: block;
    padding: 10px 0px 10px 100px;
    min-height: 80px;
}

.about-section .inner-box .content-info .single-item h2{
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 32px;
}

.about-section .inner-box .content-info .single-item h3{
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
}



/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
    .about-section .content-box{
        margin-right: 0px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px){
    .about-section .inner-box .content-info{
        display: block;
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-section .inner-box .content-info:before{
        display: none;
    }

    .about-section .inner-box .content-info .single-item{
        margin-bottom: 30px;
    }

    .about-section .inner-box .content-info .single-item:last-child{
        margin-bottom: 0px;
    }

    .about-section .inner-box{
        padding-top: 250px;
    }
}
/* ===============================================
6-news section
================================================== */
/** news-section **/

.news-section {
    position: relative;
}

.news-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 500ms ease;
}

.news-block-one .inner-box:hover {
    border-color: #fff;
    box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.1);
}

.news-block-one .inner-box .image-box {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.news-block-one .inner-box .image-box img {
    width: 100%;
    border-radius: 10px;
}

.news-block-one .inner-box .image-box .overlay-image {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    z-index: 1;
    transition: all 0.5s ease-in-out 0.1s;
}

.news-block-one .inner-box:hover .image-box .overlay-image {
    transform: scaleY(1);
}

.news-block-one .inner-box .lower-content {
    position: relative;
    display: block;
    padding: 28px 20px 16px 20px;
    z-index: 2;
}

.news-block-one .inner-box .lower-content .sub-title {
    position: absolute;
    left: 20px;
    top: -12px;
}

.news-block-one .inner-box .lower-content h4 {
    display: block;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 12px;
}

.news-block-one .inner-box .lower-content h4 a {
    display: inline-block;
    color: var(--title-color);
}

.news-block-one .inner-box .lower-content h4 a:hover {
}

.news-block-one .inner-box .lower-content .post-info {
    position: relative;
    display: flex;
    align-items: center;
}

.news-block-one .inner-box .lower-content .post-info li {
    margin-right: 7px;
    font-size: 16px;
    line-height: 26px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child {
    margin: 0px;
}

.news-block-one .inner-box .lower-content .post-info li a {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--title-color);
}

.news-block-one .inner-box .lower-content .post-info li a:hover {
}

.news-block-two {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.1);
}

.news-block-two .inner-box .sub-title {
    display: block;
    margin-bottom: 195px;
}
.news-block-two .inner-box {
    position: relative;
    display: block;
    border-radius: 6px;
    padding: 20px 20px 20px 20px;
    overflow: hidden;
}

.news-block-two .inner-box .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    transition: all 500ms ease;
}

.news-block-two .inner-box:hover .bg-layer {
    transform: scaleY(1.05);
}

.news-block-two .inner-box .bg-layer:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.86%, #000000 100%);
}

.news-block-two .inner-box .sub-title {
    margin-bottom: 195px;
}

.news-block-two .inner-box h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 14px;
}

.news-block-two .inner-box h4 a {
    position: relative;
    display: inline-block;
    color: #fff;
}

.news-block-two .inner-box h4 a:hover {
}

.news-block-two .inner-box .post-info {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #6a6a6a;
}

.news-block-two .inner-box .post-info a {
    display: inline-block;
    color: #fff;
    font-weight: 700;
}

.news-block-two .inner-box .post-info a:hover {
}

.news-block-one .inner-box .lower-content h2 {
    display: block;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 12px;
}

.news-block-one .inner-box .lower-content h2 a {
    display: inline-block;
    color: var(--title-color);
}

.news-block-one .inner-box .lower-content h2 a:hover {
}

/** rtl-css **/

.rtl .news-block-one .inner-box .lower-content .sub-title {
    left: inherit;
    right: 20px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
    .news-block-one .inner-box .lower-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 599px) {
}

@media only screen and (max-width: 499px) {
    .news-block-one .inner-box .lower-content .post-info {
        display: block;
    }
}
.highlights-section.alternat-2 .inner-container {
    background: green;
}
/* product style */
:root {
    --primary-color: #1651d1; /* Define your primary color */
    --header-background-color: #e7e6e6; /* Define your header background color */
    --calming-blue: #4a90e2;
    --health-Green: #7ed321;
    --main-Green: #347758;
    --Light-Gray: #f5f7fa;
    --dark-Blue: #003d5b;
}
body {
    margin: 0px;
    padding: 0px;
    overflow-x: none;
}

/* customize Navbar */
.navbar {
    /*border-radius: 8px;*/
    padding: 15px;
    height: 50px;
    background-color: var(--main-Green);
}
.navbar .dropdown-menu {
    background-color: var(--Light-Gray);
    display: none; /* Hide by default */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add box-shadow */
    border-radius: 5px; /* Optional: add rounded corners */
}
.navbar .dropdown:hover .dropdown-menu {
    display: block; /* Show on hover */
    transform: scaleX(1.2);
    z-index: 10;
}

.navbar-nav .nav-link {
    color: #fff !important;
    padding: 10px 15px;
    font-size: 18px;
}
.navbar-collapse {
    background-color: var(--main-Green);
    z-index: 25;
}
.navbar-nav .nav-link:hover {
    color: #28a745;
}
.navbar .contact {
    color: #fff;
}
.navbar .dropdown-toggle::after {
    color: #faf7f7;
}
.contact {
    font-weight: bold;
}
/* Adjust dropdown positioning */
.dropdown-menu {
    margin-top: 0; /* Remove the margin caused by the hover delay */
}
#dropdownMenuButton {
    background-color: var(--calming-blue);
    border: none;
}
/* Cover Title */
.Cover_Content_Title {
    line-height: 1;
    font-weight: 700;
    font-size: 62px;
    font-family: "Signika", "HelveticaNeue-Light", "Helvetica Neue Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    margin-bottom: 10px;
    color: var(--main-Green);
}

/*content page Design  */
.Product_Content_Container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px;
    gap: 80px;
}



.Price {
    color: var(--main-Green);
    font-weight: 500;
    font-size: 18px;
}
.product_name {
    color: var(--text-secondary-dark);
    font-weight: bold;
    font-size: 15px;
}

.product_name:hover {
    color: var(--main-Green);
    text-decoration: underline;
    cursor: pointer;
}



.Product_Details_Section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 250px;
    padding: 10px;
}
.main-image {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--Light-Gray);
    border-radius: 15px;
}
.thumbnail-img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.thumbnail-img:hover {
    border-color: #007bff;
}
.Product_Details_Content {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

/* Ensure thumbnails are smaller on mobile screens */
@media (max-width: 480px) {
    .thumbnail-img {
        width: 60px; /* smaller thumbnail for mobile */
    }
    .Product_Category_Section {
        display: none;
    }

    .Bread_crump {
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 600;
    }
    .Bread_crump span {
        /* color: gray; */
        cursor: pointer;
    }
}

.image-for {
    overflow: hidden;
    border-radius: 22px;
    border: 2px solid var(--th-border-secondary);
}

.image-nav div {
    width: 92%;
    margin: auto;
}

.image-nav img {
    display: inline-block;
    /* object-fit: contain; */
    /* margin-right: 15px; */
    cursor: pointer;
    border: 1px solid var(--th-border-secondary);
    transition: border ease-in 300ms;
}
.image-nav img:hover {
    border: 2px solid var(--orange-color);
}

.image-nav .slick-current img {
    border: 2px solid var(--orange-color);
}



.description {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 1rem 0;
}

.stock i {
    font-size: 14px;
}

.cart-input {
    display: flex;
    border: 1px solid var(--th-border-secondary);
    width: fit-content;
    border-radius: 12px;
    height: 50px;
}

.cart-input input {
    max-width: 60px;
    text-align: center;
    border: unset;
    background-color: var(--bg-secondary);
}

.cart-input button {
    width: 50px;
    font-size: 12px;
    background-color: transparent;
}

.btn-add_cart,
.btn-add_wishlist {
    border-radius: 12px;
    height: 50px;
    background-color: var(--orange-color);
    color: var(--main-Green);
    padding: 0 1.5rem;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: color ease-in-out 300ms;
}

.btn-add_cart:hover,
.btn-add_wishlist:hover {
    color: var(--text-black);
}

.btn-add_wishlist {
    background-color: var(--main-Green);
    color: var(--orange-color);
}

.accordion {
    border-radius: 40px;
}

.accordion-button {
    color: var(--main-Green);
    font-size: 1.5rem;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.accordion-item:first-of-type .accordion-button.collapsed,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.accordion-button:not(.collapsed) {
    color: var(--main-Green);
    background-color: transparent;
    box-shadow: unset;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("./assets/icons/minus-solid.svg");
}

.accordion-button{
    position: relative;
}

.accordion-button::after {
    background-image: url("./assets/icons/plus-solid.svg");
    position: absolute;
    inset-inline-end: 25px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    border-bottom-right-radius:22px;
    border-bottom-left-radius:22px;
}



.text-small i {
    font-size: 12px;
}

#images:hover {
    cursor: pointer;
}
/*=======================================================
  7-cart page
  ========================================================*/
/** cart-section **/



.cart-section .table-outer {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.cart-section .cart-table {
    min-width: 1230px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 30px;
}

.cart-section .cart-table thead {
    position: relative;
}

.cart-section .cart-table thead th {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 22px;
    padding: 0px 30px;
}

.cart-section .cart-table tbody tr:last-child {
    border-bottom: none;
}

.cart-section .cart-table td {
    position: relative;
    font-size: 18px;
    line-height: 20px;
    font-family: var(--title-font);
    color: var(--title-color);
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(229, 229, 229, 1);
    border-right: none;
    border-left: none;
}

.cart-section .cart-table td:first-child {
    border-left: 1px solid rgba(229, 229, 229, 1);
    border-radius: 10px 0px 0px 10px;
}

.cart-section .cart-table td:last-child {
    border-right: 1px solid rgba(229, 229, 229, 1);
    border-radius: 0px 10px 10px 0px;
}

.cart-section .cart-table tbody .product-column {
    padding: 9px 30px;
}

.cart-section .cart-table tbody .product-column .product-box {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-section .cart-table tbody .product-column .product-box .image-box {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-inline-end: 30px;
}

.cart-section .cart-table tbody .product-column .product-box h6 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    max-width: 260px;
    text-align: left;
}

.cart-section .cart-table tbody .product-column .product-box h6 a {
    display: inline-block;
    color: var(--title-color);
}

.cart-section .cart-table tbody .product-column .product-box h6 a:hover {
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-down:after {
    position: absolute;
    content: "";
    background: #e5e5e5;
    width: 1px;
    height: 24px;
    top: 7px;
    right: 0px;
}

.cart-section .bootstrap-touchspin .btn.bootstrap-touchspin-up:after {
    position: absolute;
    content: "";
    background: #e5e5e5;
    width: 1px;
    height: 24px;
    top: 7px;
    left: 3px;
}

.cart-section .cart-table td .cancel-btn {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: red;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    background: rgba(255, 220, 222, 1);
    border-radius: 50%;
    transition: all 500ms ease;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-up,
.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-down {
    border: none !important;
}

.cart-section .item-quantity {
    position: relative;
    display: inline-block;
    max-width: 130px;
    width: 100%;
    padding: 0px 30px;
    margin-left: 0px;
    border: 1px solid #e5e5e5;
    border-radius: 50px !important;
    height: 40px;
    z-index: 1;
    margin: 0 auto;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
    left: 12px;
}

.cart-section .item-quantity input.quantity-spinner {
    line-height: 48px;
    height: 40px;
    width: 43px !important;
    padding: 0px !important;
    box-shadow: none !important;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #101010;
    background: transparent;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-down {
    position: absolute;
    height: 40px;
    width: 70px;
    background: transparent;
    padding: 0px 0px;
    left: -30px;
    top: 0px;
    border-radius: 0px;
    border: none !important;
}

.cart-section .bootstrap-touchspin .btn.bootstrap-touchspin-up:before,
.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
.bootstrap-touchspin-down:before {
    color: var(--title-color) !important;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-up {
    position: absolute;
    height: 40px;
    width: 70px;
    background: transparent;
    padding: 0px 0px;
    right: -35px;
    top: 0px;
    margin-top: 0px;
    border-radius: 0px;
    border: none !important;
}

.cart-section .bootstrap-touchspin .glyphicon-chevron-up:before {
    content: "\2b";
    font-size: 16px;
    font-style: normal;
    color: var(--title-color);
    font-family: "Font Awesome 6 Pro";
}

.cart-section .bootstrap-touchspin .glyphicon-chevron-down:before {
    content: "\f068";
    font-size: 16px;
    font-style: normal;
    color: var(--title-color);
    font-family: "Font Awesome 6 Pro";
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
    width: 100%;
}

.cart-section .bootstrap-touchspin .input-group-btn-vertical i {
    top: 15px;
    left: 15px;
    font-size: inherit !important;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
.bootstrap-touchspin-down {
    margin-top: 0px;
}

.cart-section .bootstrap-touchspin .btn:hover,
.cart-section .bootstrap-touchspin .btn:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.cart-section .item-quantity {
    border-radius: 5px;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-down {
    width: 40px;
    top: 0px;
}

.cart-section
.bootstrap-touchspin
.input-group-btn-vertical
> .btn.bootstrap-touchspin-up {
    width: 50px;
    top: 0px;
}

.cart-section .coupon-box .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 23px;
}

.cart-section .coupon-box .form-group input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 55px;
    font-size: 16px;
    color: var(--title-color);
    padding: 10px 110px 10px 20px;
    transition: all 500ms ease;
}

.cart-section .coupon-box .form-group input:focus {
}

.cart-section .coupon-box .form-group button {
    position: absolute;
    display: inline-block;
    top: 6px;
    right: 6px;
    width: 90px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-family: var(--title-font);
    font-weight: 700;
    border-radius: 55px;
    color: #fff;
    text-align: center;
    transition: all 500ms ease;
}

.cart-section .total-cart {
    position: relative;
    display: block;
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 10px;
    padding: 35px 30px 12px 30px;
    margin-top: 84px;
}

.cart-section .total-cart h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 9px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 23px;
}

.cart-section .total-cart h4 {
    font-size: 20px;
    line-height: 28px;
    font-family: var(--title-font);
    font-weight: 600;
}

.cart-section .total-cart h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.cart-section .total-cart .shipping-cost h4 {
    margin-bottom: 12px;
}

.cart-section .total-cart .shipping-cost .cost-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-section .total-cart .shipping-cost .cost-list li .price {
    font-size: 13px;
    color: var(--title-color);
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent !important;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:after {
    background-image: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 3px;
}

.cart-section .total-cart .total-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cart-section .total-cart .btn-box .theme-btn {
    width: 100%;
}

.cart-section .sec-title h2 {
    font-size: 48px;
    line-height: 56px;
}

.cart-section .coupon-box h4 {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 9px;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box input {
    display: none;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label {
    position: relative;
    font-size: 14px;
    line-height: 26px;
    color: var(--title-color);
    padding-inline-start: 26px;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 0px;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:before {
    position: absolute;
    content: "";
    inset-inline-start: 0px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    border-color: #e5e5e5;
    background: transparent;
}

.cart-section .total-cart .shipping-cost .cost-list li .check-box label:after {
    position: absolute;
    content: "";
    font-family: "icomoon";
    inset-inline-start: 3px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-image: none;
    opacity: 0;
}

.cart-section
.total-cart
.shipping-cost
.cost-list
li
.check-box
input:checked
+ label:after {
    opacity: 1;
}

.cart-section
.total-cart
.shipping-cost
.cost-list
li
.check-box
input:checked
+ label:before {
}

.cart-section .total-cart .shipping-address .single-item {
    position: relative;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 70px;
    padding: 8px 20px 7px 80px;
    margin-bottom: 12px;
}

.cart-section .total-cart .shipping-address .single-item:last-child {
    margin-bottom: 0px;
}

.cart-section .total-cart .shipping-address .single-item .icon-box {
    position: absolute;
    display: inline-block;
    left: 10px;
    top: 10px;
    width: 56px;
    height: 40px;
    line-height: 40px;
    background: rgba(242, 255, 247, 1);
    font-size: 20px;
    text-align: center;
    border-radius: 70px;
}

.cart-section .total-cart .shipping-address .single-item span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 3px;
}

.cart-section .total-cart .shipping-address .single-item p {
    font-size: 14px;
    line-height: 20px;
}

.cart-section .total-cart .shipping-address .single-item p a {
    display: inline-block;
    color: var(--text-color);
}

.cart-section .total-cart .shipping-address .single-item p a:hover {
}

.cart-section .total-cart .payment-option .card-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 7px;
    margin-bottom: 10px;
}

.cart-section .total-cart .payment-option .card-list li:last-child {
    margin-right: 0px;
}

.cart-section .total-cart .payment-option .card-list li a {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.08);
}

.cart-section .total-cart .more-text p {
    font-size: 14px;
}

.cart-section .total-cart .more-text p span {
    color: var(--title-color);
}

.cart-section .total-cart .more-text {
    position: relative;
    padding-top: 11px;
    margin-top: 38px;
    border-top: 1px solid #e5e5e5;
}

/** rtl-css **/

.rtl .cart-section .cart-table tbody .product-column .product-box .image-box {
    margin-right: 0px;
    margin-left: 24px;
}

.rtl
.cart-section
.total-cart
.shipping-calculator
.form-group
.nice-select:before {
    right: inherit;
    left: 20px;
}

.rtl .cart-section .total-cart .payment-option .card-list li {
    margin-right: 0px;
    margin-left: 7px;
    float: right;
}

.rtl .cart-section .total-cart .payment-option .card-list li:last-child {
    margin-left: 0px;
}

.rtl .cart-section .cart-table td:first-child {
    border-left: none;
    border-right: 1px solid #e5e5e5;
    border-radius: 0px 10px 10px 0px;
}

.rtl .cart-section .cart-table td:last-child {
    border-right: none;
    border-left: 1px solid #e5e5e5;
    border-radius: 10px 0px 0px 10px;
}

.rtl .cart-section .cart-table tbody .product-column .product-box h6 {
    text-align: right;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 991px) {
    .cart-section .total-cart {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 599px) {
}

@media only screen and (max-width: 499px) {
    .cart-section .total-cart {
        padding-left: 30px;
        padding-right: 30px;
    }
}
/** checkout-section **/

.checkout-section {
    position: relative;
}

.checkout-section .sec-title h2 {
    font-size: 48px;
    line-height: 56px;
}

.checkout-section .inner-container {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 39px 50px 50px 50px;
}

.checkout-section h3 {
    position: relative;
    display: block;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 32px;
}

.checkout-section .billing-content {
    position: relative;
    display: block;
}

.checkout-section .billing-content .form-inner {
    padding-bottom: 20px;
}

.checkout-section .billing-content .form-inner .form-group {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.checkout-section .billing-content .form-inner .form-group input[type="text"],
.checkout-section .billing-content .form-inner .form-group input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: 16px;
    color: rgba(124, 124, 124, 1);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 500ms ease;
}

.checkout-section .billing-content .form-inner .form-group input:focus {
}

.checkout-section .billing-content .form-inner .form-group .select-box {
    min-height: 50px;
}

.checkout-section .billing-content label {
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    margin-bottom: 5px;
}
.checkout-section .billing-content .form-inner .form-group .select-box {
    width: 100%;
    margin-bottom: 26px;
}

.select-box .nice-select.open .list {
    width: 100%;
}

.nice-select.open .list {
    width: 100%;
}
.checkout-section .billing-content .form-inner .form-group label span {
}

.checkout-section .billing-content .form-inner .form-group .nice-select {
    border: 1px solid rgba(229, 229, 229, 1);
    font-size: 16px;
    color: rgba(124, 124, 124, 1);
    font-family: var(--text-font);
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    text-transform: capitalize;
    border-radius: 50px;
}

.checkout-section .billing-content .form-inner .form-group .nice-select:before {
    color: var(--title-color);
    right: 20px;
}

.checkout-section .billing-content .other-address h3 {
    margin-bottom: 30px;
}

.checkout-section .order-info {
    position: relative;
    display: block;
}

.checkout-section .order-info .title-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
}

.checkout-section .order-info .title-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 7px 12px;
}

.checkout-section .order-info h4 {
    font-size: 16px;
    line-height: 26px;
}

.checkout-section .order-info h4 span {
    color: var(--title-color);
}

.checkout-section .order-info .order-product .single-item .product-box {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-section
.order-info
.order-product
.single-item
.product-box
.image-box {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-inline-end: 30px;
}

.checkout-section .order-info .order-product .single-item h6 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    max-width: 190px;
}

.checkout-section .order-info .order-product .single-item h6 span {
    color: rgba(124, 124, 124, 1);
}

.checkout-section .order-info .cost-box {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(232, 232, 232, 1);
    margin-bottom: 24px;
}

.checkout-section .order-info .cost-box h4,
.checkout-section .order-info .total-box h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
}

.checkout-section .order-info .cost-box li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.checkout-section .order-info .cost-box li:last-child {
    margin-bottom: 0px;
}

.checkout-section .order-info .total-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}

.checkout-section .order-info .payment-option .check-box input {
    display: none;
}

.checkout-section .order-info .payment-option .check-box label {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    padding-inline-start: 24px;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 0px;
}

.checkout-section .order-info .payment-option .check-box label:before {
    position: absolute;
    content: "";
    inset-inline-start: 0px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 5px;
    border: 1px solid rgba(154, 154, 154, 1);
}

.checkout-section
.order-info
.payment-option
.check-box
input:checked
+ label:before {
}

.checkout-section .order-info .payment-option .check-box label:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 3px;
    top: 8px;
    opacity: 0;
}

.checkout-section
.order-info
.payment-option
.check-box
input:checked
+ label:after {
    opacity: 1;
}

.checkout-section .order-info .payment-option .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    margin-bottom: 13px;
}

.checkout-section .order-info .payment-option .bank-payment {
    position: relative;
    display: block;
    background: rgba(247, 247, 247, 1);
    padding: 30px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.checkout-section .order-info .payment-option .bank-payment .card-list li {
    position: relative;
    float: inline-start;
    margin-right: 10px;
    margin-bottom: 10px;
}

.checkout-section .order-info .payment-option .bank-payment .card-list li a {
    position: relative;
    display: inline-block;
    border-radius: 5px;
}

.checkout-section
.order-info
.payment-option
.bank-payment
.card-list
li
a
img {
    width: 100%;
    border-radius: 5px;
}

.checkout-section .order-info .btn-box .theme-btn {
    width: 100%;
    color: #fff;
}

.checkout-section .order-info .btn-box .theme-btn span {
    background: var(--title-color);
}

.checkout-section .order-info .payment-option .text-box p {
    font-size: 16px;
    color: #6a6a6a;
}

/** rtl-css **/

.rtl
.checkout-section
.order-info
.order-product
.single-item
.product-box
.image-box {
    margin-right: 0px;
    margin-left: 15px;
}

.rtl .checkout-section .billing-content {
    margin-right: 0px;
    margin-left: 30px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 991px) {
    .checkout-section .billing-content {
        margin-bottom: 40px;
    }

    .checkout-section .billing-content {
        margin-right: 0px;
    }

    .rtl .checkout-section .billing-content {
        margin-left: 0px;
    }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 599px) {
    .checkout-section .order-info .order-product .single-item {
        display: block;
        margin-bottom: 10px;
    }

    .checkout-section .order-info .order-product .single-item h6 br {
        display: none;
    }

    .checkout-section .order-info .order-product .single-item .product-box {
        display: block;
    }

    .checkout-section
    .order-info
    .order-product
    .single-item
    .product-box
    .image-box {
        margin: 0px 0px 10px 0px !important;
    }

    .checkout-section .inner-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 499px) {
}
/*===========================================================
    8-contact page
    ============================================================= */

/** contact-section **/

.contact-section{
    position: relative;
}

.contact-section .sec-title h2{
    font-size: 48px;
    line-height: 56px;
}

.contact-section .inner-container{
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 80px 50px;
}

.contact-section .info-box{
    position: relative;
}

.contact-section .info-box .single-item{
    position: relative;
    display: block;
    padding-left: 95px;
    margin-bottom: 35px;
}

.contact-section .info-box .single-item:last-child{
    margin-bottom: 0px;
}

.contact-section .info-box .single-item .icon-box{
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 8px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
}

.contact-section .info-box .single-item h4{
    display: block;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 4px;
}

.contact-section .info-box .single-item p{
    line-height: 26px;
    max-width: 190px;
}

.contact-section .info-box .single-item p a{
    color: var(--text-color);
}

.contact-section .info-box .single-item p a:hover{

}

.contact-section .form-inner{
    position: relative;
    display: block;
}

.contact-section .form-inner:before{
    position: absolute;
    content: '';
    background: #e5e5e5;
    width: 1px;
    height: calc(100% - 0px);
    top: 0px;
    left: -120px;
}

.contact-section .form-inner .form-group{
    position: relative;
    margin-bottom: 22px;
}

.contact-section .form-inner .form-group:last-child{
    margin-bottom: 0px;
}

.contact-section .form-inner .form-group label{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
    color: var(--title-color);
}

.contact-section .form-inner .form-group:last-child{
    margin-bottom: 0px;
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 1);
    transition: all 500ms ease;
}

.contact-section .form-inner .form-group textarea{
    height: 150px;
    resize: none;
    border-radius: 20px;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{

}


.google-map .inner-container{
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.google-map .inner-container iframe{
    position: relative;
    width: 100%;
    height: 500px;
}



/** rtl-css **/

.rtl .contact-section .form-inner:before{
    left: inherit;
    right: -120px;
}

.rtl .contact-section .info-box .single-item{
    padding-left: 0px;
    padding-right: 95px;
}

.rtl .contact-section .info-box .single-item .icon-box{
    left: inherit;
    right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
    .contact-section .form-inner:before{
        display: none;
    }

    .contact-section .info-box{
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px){
    .contact-section .inner-container{
        padding: 70px 30px;
    }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){
    .contact-section .info-box .single-item{
        padding-left: 0px;
    }

    .rtl .contact-section .info-box .single-item{
        padding-right: 0px;
    }

    .contact-section .info-box .single-item .icon-box{
        position: relative;
        margin-bottom: 20px;
        top: 8px;
    }
}
/*========================================
    9- login page
    ==========================================  */
/** sign-section **/

.sign-section {
    position: relative;
}

.sign-section .form-inner {
    position: relative;
    display: block;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 29px 30px 32px 30px;
}

.sign-section .form-inner .form-group {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.sign-section .form-inner .form-group label {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    margin-bottom: 4px;
}

.sign-section .form-inner .form-group input[type="text"],
.sign-section .form-inner .form-group input[type="email"],
.sign-section .form-inner .form-group input[type="password"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid rgba(237, 240, 230, 1);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--title-color);
    transition: all 500ms ease;
}

.sign-section .form-inner .form-group input:focus {
}

.sign-section .form-inner .form-group .theme-btn {
    width: 100%;
    margin-top: 8px;
}

.sign-section .form-inner .form-group .theme-btn span {
    background: var(--title-color);
}

.sign-section .form-inner .text {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 22px;
    text-transform: capitalize;
}

.sign-section .form-inner .social-links li {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sign-section .form-inner .social-links li a {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--title-color);
    text-align: center;
    border: 1px solid rgba(237, 240, 230, 1);
    border-radius: 50px;
    padding: 9px 30px;
}

.sign-section .form-inner .social-links li a:hover {
}

.sign-section .form-inner .social-links li a img {
    position: relative;
    margin-inline-end: 12px;
    top: -2px;
}

.sign-section .form-inner .other-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
}

.sign-section .form-inner .other-option .check-box label {
    font-size: 16px;
}

.sign-section .form-inner .other-option .forgot-password {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--title-color);
    transition: all 500ms ease;
    background: transparent;
}

.sign-section .form-inner .other-option .forgot-password:hover {
}

.sign-section .form-inner .lower-text p {
    color: var(--title-color);
}

.sign-section .form-inner .lower-text p a {
    display: inline-block;
    font-weight: 500;
}

.sign-section .form-inner .lower-text p a:hover {
    text-decoration: underline;
}

.sign-section .check-box-two label:before {
    top: 8px;
}

.sign-section .sec-title h2 {
    font-size: 48px;
    line-height: 56px;
}

/** rtl-css **/

.rtl .sign-section .form-inner .social-links li a img {
    margin-right: 0px;
    margin-left: 12px;
}



@media only screen and (max-width: 499px) {
    .sign-section .form-inner .other-option {
        display: block;
    }
}
/* ====================================================
  10- shop page
  =================================*/

.price-input{
    width: 100%;
    display: flex;
    margin: 20px 0;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.price-input .field{
    display: flex;
    width: 100%;
    height: 15px;
    align-items: center;
}
.field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14px;
    text-align: center;
    -moz-appearance: textfield;
    border: none;
    background: transparent;
    color: var(--text-black);
    border: 1px solid var(--orange-color);
    padding: 10px 6px;
    border-radius: 22px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.slider{
    height: 5px;
    position: relative;
    background: var(--bg-secondary);
    border-radius: 5px;
}
.slider .progress{
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 5px;
    background: var(--orange-color);
}
.range-input{
    position: relative;
}
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--orange-color);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: e-resize;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17A2B8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* .sort-products{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-secondary);
    padding: 16px;
    border-radius: 22px;
} */

.sort-section{
    width: 97%;
    margin: auto;
    padding: 15px 0;
}

.form-select{
    padding: 10px 16px;
    background-color: var(--bg-secondary);
    border: unset;
    border-radius: unset;
    color: var(--text-secondary);
}
.form-select:focus {
    outline: 0;
    box-shadow: none;
    border: unset;
}

.form-select option:checked{
    color: var(--font-white);
    background-color: var(--green-color);
}

.filter-icon{
    border: none;
    outline: none;
    color: var(--font-black);
    background-color: transparent;
    font-size: 18px;
}

.categories li:hover{
    transition: all ease-in-out 300ms   ;
    color: var(--green-color);
    cursor: pointer;
}

.pagination li{
    border-radius: 20px 20px 60px 20px;
    min-width: 50px;
    text-align: center;
    background-color: transparent;
}

.pagination li.active{
    background-color: var(--orange-color);
}

.pagination li:hover{
    background-color:  var(--bg-secondary);
}

.pagination a{
    display: block;
    padding: 15px;
    color: var( --main-Green);
    transition: all ease-in 300ms;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
}

.pagination a i{
    font-size: 10px;
}

/* .pagination a:hover{
  color: var(--font-white);
  background-color: var(--green-color);
} */

.search{
    background-color: var(--primary-color);
    border-radius: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    box-shadow: 1px 1px 3px var(--primary-color);
    right: 0;
    padding: 9px;
    width: fit-content;
    top: 0;
}

.search i{
    color: var(--font-white);
}

.filter{
    border: 1px solid var(--th-border-color);
    border-radius: 22px;
    padding: 20px;
    width: 93%;
    margin: auto;
}

hr{
    color: var(--gray-color);
}

.products-filter img{
    width: 90px;
    height: 90px;
}

.tag-item{
    background-color: transparent;
    color: var(--gray-color);
    border: 1px solid var(--th-border-color);
    cursor: pointer;
}

.tag-item:hover{
    background-color: var(--green-color);
    color: var(--font-white);
    border: 1px solid var(--green-color);
}

.sort-products button>i{
    font-size: 22px;
}

.active-layout i{
    color: var(--green-color);
}

.form-select{
    background-position: var(--right) .75rem center;
}