/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* ========================= Variable Css Start ======================== */
:root {
    /* Font Family Variable */
    --heading-font: "Nunito", sans-serif;
    /* --heading-font: "Jost", sans-serif; */
    --body-font: "Jost", sans-serif;
    /* --body-font: "Inter", sans-serif; */
    /* Font Size Variable Start */
    /* --heading-color: #1e1d1d; */
    --heading-one: clamp(1.875rem, -2.0093rem + 8.3527vw, 4.25rem);
    --heading-two: clamp(1.75rem, -0.8115rem + 5.3364vw, 3.1875rem);
    --heading-three: clamp(1.5rem, -0.0592rem + 3.2483vw, 2.375rem);
    --heading-four: clamp(1.375rem, 0.7068rem + 1.3921vw, 1.75rem);
    --heading-five: clamp(1.125rem, 0.4568rem + 1.3921vw, 1.5rem);
    --heading-six: clamp(1rem, 0.7773rem + 0.464vw, 1.125rem);
    /* Font Size End */
    /* Gray Color */
    --main: #db8c23;
    --second-bg: #234467;
    --main-bg: #db8c23;
    --body-bg: #F9F5F2;
    --gray-seven: #FFFFFF;
    --white: #fff;
    --black-three: #1e1d1d;
    --white-one: #fff;
    --black: #000;
    --gray-five: 252 10% 90%;
    --gray-seven: 210 25% 97%;
    --body-color: var(--black-three);
    --static-black: var(--static-black-h) var(--static-black-s) var(--static-black-l);
    --black-two-h: 234;
    --black-two-s: 69%;
    --black-two-l: 9%;
    --black-two: var(--black-two-h) var(--black-two-s) var(--black-two-l);
    --black-three-h: 235;
    --black-three-s: 5%;
    --black-three-l: 43%;
    --black-three: var(--black-three-h) var(--black-three-s) var(--black-three-l);
    --body_dashboard: #F5F6F8;
    --button-secondary: #666;
}



/* ================================= Classes Css Start =========================== */
@media (min-width: 1199px) {
    .container-full {
        max-width: 1792px;
    }
}

@media (min-width: 1199px) {
    .container-two {
        max-width: 1296px;
    }
}

@media (min-width: 1199px) {
    .container-three {
        max-width: 1590px;
    }
}

body {
    background: var(--body-bg) !important;
    /* font-family: var(--body-font )!important;
     */
    /* font-family: "Rajdhani", Sans-serif !important; */
    font-style: normal;
    font-weight: 500;
}

.bg_dashboard {
    background: var(--body_dashboard) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span {
    font-family: var(--body-font) !important;
    /* font-family: "Rajdhani", Sans-serif !important; */
    font-style: normal;
    /* font-weight: 500; */
    color: var(--button-secondary);
}

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

.sales-offer-bg-two {
    background: linear-gradient(117deg, #F3FEFF 14.35%, #DACFFF 84.4%) !important;
}

.box-shadow {
    box-shadow: var(--box-shadow) !important;
}

.box-shadow-lg {
    box-shadow: var(--box-shadow-lg) !important;
}

.max-h-unset {
    max-height: unset !important;
}

.max-w-unset {
    max-width: unset !important;
}

.w-20 {
    width: 20px;
}

.min-w-maxContent {
    min-width: max-content;
}

.cursor-pointer {
    cursor: pointer;
}

.z-index-1 {
    z-index: 1;
}

.z-index--1 {
    z-index: -1;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-main {
    background-color: var(--main) !important;
}

.bg-main-btn {
    background: var(--main) !important;
    color: var(--white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-static-black {
    background-color: var(--static-black) !important;
}


.border:focus {
    border: 1px solid var(--main) !important;
}

.border-main {
    border-color: var(--main) !important;
}

.border-color {
    border-color: var(--border-color);
}

.border-black {
    border-color: var(--black) !important;
}

.border-gray-five {
    border-color: var(--gray-five) !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.left-auto {
    left: auto !important;
}



.text-main {
    color: var(--main) !important;
}


.hover-text-main:hover {
    color: var(--main) !important;
}

.hover-text-decoration-underline:hover {
    text-decoration: underline;
}

.font-heading {
    font-family: var(--heading-font);
}

.font-body {
    font-family: var(--body-font);
}

.pill {
    border-radius: 30px !important;
}

.radius-8 {
    border-radius: 8px !important;
}

.line-height-0 {
    line-height: 0;
}

.line-height-1 {
    line-height: 1;
}

/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xs-6 {
        width: 50%;
    }
}

/* Bg Image Css */
.background-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 100%;
    height: 100%;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

/* Overlay Start */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: var((--static-black)/0.8);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 991px) {
    .side-overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        content: "";
        left: 0;
        top: 0;
        background-color: var((--static-black)/0.8);
        z-index: 99;
        transition: 0.2s linear;
        visibility: hidden;
        opacity: 0;
    }

    .side-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}

/* Overlay End */
/* ================================= Classes Css End =========================== */
/* ============================ Extend Css Start ======================== */
/* Cover image Css */
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Display Flex Css Start */
.flx-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flx-align,
.common-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flx-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flx-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Display Flex Css End */
/* Positioning Css Class Start */
.pa-content {
    position: absolute;
    content: "";
}

.top-center,
.common-accordion .accordion-button[aria-expanded=true]::after,
.common-accordion .accordion-button[aria-expanded=false]::after {
    top: 50%;
    transform: translateY(-50%);
}

.left-center {
    left: 50%;
    transform: translateX(-50%);
}

.top-left-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Positioning Css Class End */
/* Font Size For responsive devices Start */
.font-10 {
    font-size: 0.625rem !important;
}

.font-11 {
    font-size: 0.6875rem !important;
}

.font-12 {
    font-size: 0.75rem !important;
}

.font-13 {
    font-size: 0.8125rem !important;
}

.font-14 {
    font-size: 0.875rem !important;
}

.font-15 {
    font-size: 0.9375rem !important;
}

.font-16 {
    font-size: 1rem !important;
}

.font-17 {
    font-size: 1.0625rem !important;
}

.font-18 {
    font-size: 1.125rem !important;
}

@media screen and (max-width: 1199px) {
    .font-18 {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 767px) {
    .font-18 {
        font-size: 0.9375rem !important;
    }
}

.font-19 {
    font-size: 1.1875rem !important;
}

.font-20 {
    font-size: 1.25rem !important;
}

@media screen and (max-width: 1199px) {
    .font-20 {
        font-size: 1.125rem !important;
    }
}

@media screen and (max-width: 767px) {
    .font-20 {
        font-size: 1rem !important;
    }
}

.font-21 {
    font-size: 1.3125rem !important;
}

.font-22 {
    font-size: 1.375rem !important;
}

.font-23 {
    font-size: 1.4375rem !important;
}

.font-24 {
    font-size: 1.5rem !important;
}

.font-25 {
    font-size: 1.5625rem !important;
}

.font-26 {
    font-size: 1.625rem !important;
}

.font-27 {
    font-size: 1.6875rem !important;
}

.font-28 {
    font-size: 1.75rem !important;
}

.font-29 {
    font-size: 1.8125rem !important;
}

.font-30 {
    font-size: 1.875rem !important;
}

.font-31 {
    font-size: 1.9375rem !important;
}

.font-32 {
    font-size: 2rem !important;
}

.font-33 {
    font-size: 2.0625rem !important;
}

.font-34 {
    font-size: 2.125rem !important;
}

.font-35 {
    font-size: 2.1875rem !important;
}

.font-36 {
    font-size: 2.25rem !important;
}

.font-37 {
    font-size: 2.3125rem !important;
}

.font-38 {
    font-size: 2.375rem !important;
}

.font-39 {
    font-size: 2.4375rem !important;
}

.font-40 {
    font-size: 2.5rem !important;
}

/* Font Size For responsive devices End */
/* ============================ Extend Css End ======================== */
/* ======================= WordPress Default Css Start =================== */
.admin-bar .default-header .sticky-wrapper.sticky {
    top: 32px;
}

.wp-block-search__label {
    position: relative;
    font-size: 24px;
    font-weight: 500 !important;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 25px 0;
}

p.has-drop-cap {
    margin-bottom: 20px;
}

.page--item p:last-child .alignright {
    clear: right;
}

.blog-title,
.pagi-title,
.breadcumb-title {
    word-break: break-word;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
    color: var(--body-color);
}

.bypostauthor,
.gallery-caption {
    display: block;
}

.page-links,
.clearfix {
    clear: both;
}

.page--item {
    margin-bottom: 30px;
}

.page--item p {
    line-height: 1.8;
}

.page--item .th-comment-form {
    padding: 0;
}

.page--item .th-comments-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
}

.content-none-search {
    margin-top: 30px;
}

.wp-block-button.aligncenter {
    text-align: center;
}

.alignleft {
    display: inline;
    float: left;
    margin-bottom: 10px;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-bottom: 10px;
    margin-left: 1.5em;
    margin-right: 1em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.gallery {
    margin-bottom: 1.5em;
    width: 100%;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0 5px;
}

.wp-block-columns {
    margin-bottom: 1em;
}

figure.gallery-item {
    margin-bottom: 10px;
    display: inline-block;
}

figure.wp-block-gallery {
    margin-bottom: 14px;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    font-size: 12px;
    color: var(--body-color);
    line-height: 1.5;
    padding: 0.5em 0;
}

.wp-block-cover p:not(.has-text-color),
.wp-block-cover-image-text,
.wp-block-cover-text {
    color: var(--white-color);
}

.wp-block-cover {
    margin-bottom: 15px;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption .wp-caption-text {
    margin: 0.5em 0;
    font-size: 14px;
}

.wp-block-media-text,
.wp-block-media-text.alignwide,
figure.wp-block-gallery {
    margin-bottom: 30px;
}

.wp-block-media-text.alignwide {
    background-color: var(--smoke-color);
}

.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
    line-height: 1.4;
}

.wp-block-latest-comments a {
    color: inherit;
}

.wp-block-button {
    margin-bottom: 10px;
}

.wp-block-button:last-child {
    margin-bottom: 0;
}

.wp-block-button .wp-block-button__link {
    color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border-color: var(--title-color);
    color: var(--title-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

ol.wp-block-latest-comments li {
    margin: 15px 0;
}

ul.wp-block-latest-posts {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

ul.wp-block-latest-posts a {
    color: inherit;
}

ul.wp-block-latest-posts a:hover {
    color: var(--theme-color);
}

ul.wp-block-latest-posts li {
    margin: 15px 0;
}

.wp-block-search {
    display: flex;
    flex-wrap: wrap;
}

.wp-block-search .wp-block-search__inside-wrapper {
    border: 1px solid #EAEBEE;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.wp-block-search .wp-block-search__input {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    border: 0;
}

.wp-block-search .wp-block-search__button {
    margin: 0;
    min-width: 110px;
    border: none;
    color: #fff;
    border-radius: 10px;
    background-color: var(--theme-color);
}

.wp-block-search .wp-block-search__button.has-icon {
    min-width: 55px;
}

.wp-block-search .wp-block-search__button:hover {
    background-color: var(--title-color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    padding: 0;
    border: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    padding: 0 8px 0 25px;
}

ul.wp-block-rss a {
    color: inherit;
}

.wp-block-group.has-background {
    padding: 15px 15px 1px;
    margin-bottom: 30px;
}

.wp-block-table td,
.wp-block-table th {
    border-color: rgba(0, 0, 0, 0.1);
}

.wp-block-table.is-style-stripes {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.wp-block-table.is-style-stripes {
    border: 0;
    margin-bottom: 30px;
    border-bottom: 0;
}

.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
    border-color: var(--border-color);
}

.logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .btn {
    top: 32px;
}

@media (max-width: 782px) {

    .logged-in .will-sticky .sticky-active.active,
    .logged-in .preloader .btn {
        top: 46px;
    }
}

@media (max-width: 600px) {

    .logged-in .will-sticky .sticky-active.active,
    .logged-in .preloader .btn {
        top: 0;
    }
}

.post-password-form {
    margin-bottom: 30px;
    margin-top: 20px;
}

.post-password-form p {
    display: flex;
    position: relative;
    gap: 15px;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .post-password-form p {
        flex-wrap: wrap;
    }
}

.post-password-form label {
    display: flex;
    align-items: center;
    flex: auto;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 0;
    gap: 15px;
    /* Extra small devices */
}

@media (max-width: 575px) {
    .post-password-form label {
        flex-wrap: wrap;
    }
}

.post-password-form input {
    width: 100%;
    border: none;
    height: 55px;
    padding-left: 25px;
    color: var(--body-color);
    ;
    border: 1px solid var(--border-color);
}

.post-password-form input[type=submit] {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    width: 140px;
    border: none;
    color: #fff;
    background-color: var(--theme-color);
    text-align: center;
}

.post-password-form input[type=submit]:hover {
    background-color: var(--title-color);
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
    padding-top: 1em;
}

.page-links>.page-links-title {
    margin-right: 10px;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text),
.page-links>a {
    display: inline-block;
    padding: 5px 13px;
    background-color: var(--white-color);
    color: var(--title-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 10px;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text):hover,
.page-links>a:hover {
    opacity: 0.8;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-color: transparent;
}

.page-links>span:not(.page-links-title):not(.screen-reader-text).current,
.page-links>a.current {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: transparent;
}

.page-links span.screen-reader-text {
    display: none;
}

.th-search {
    background-color: #f3f3f3;
    margin-bottom: 30px;
    border: 1px solid #f3f3f3;
}

.th-search .search-grid-content {
    padding: 30px;
    /* Small devices */
}

@media (max-width: 767px) {
    .th-search .search-grid-content {
        padding: 20px;
    }
}

.th-search .search-grid-title {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 0;
}

.th-search .search-grid-title a {
    color: inherit;
}

.th-search .search-grid-title a:hover {
    color: var(--theme-color);
}

.th-search .search-grid-meta>* {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
}

.th-search .search-grid-meta>*:last-child {
    margin-right: 0;
}

.th-search .search-grid-meta a,
.th-search .search-grid-meta span {
    color: var(--body-color);
}

/* Large devices */
@media (max-width: 1199px) {

    .blog-single.format-quote:before,
    .blog-single.format-link:before,
    .blog-single.tag-sticky-2:before,
    .blog-single.sticky:before {
        font-size: 14px;
        padding: 8px 16px;
    }

    .blog-single.format-quote:before {
        top: 15px;
    }
}


@media (max-width: 768px) {
    .wp-block-latest-comments {
        padding-left: 10px;
    }

    .page--content.clearfix+.th-comment-form {
        margin-top: 24px;
    }
}

.site {
    overflow-x: visible;
}

/* ======================= WordPress Default Css End =================== */
/* ================================= Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: var(--body-font);
    color: var(--body-color);

    /* 
    ;
    word-break: break-word;
    background-color: var(--body-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column; */
}

@media screen and (max-width: 767px) {
    body {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    body {
        font-size: 0.875rem;
    }
}

p {
    font-size: inherit;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: var(--heading-one);
}

h2 {
    font-size: var(--heading-two);
}

h3 {
    font-size: var(--heading-three);
}

h4 {
    font-size: var(--heading-four);
}

h5 {
    font-size: var(--heading-five);
}

h6 {
    font-size: var(--heading-six);
    font-weight: 800;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: inherit;
}

h1>a:hover,
h2>a:hover,
h3>a:hover,
h4>a:hover,
h5>a:hover,
h6>a:hover {
    color: var(--main);
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: #0661e9;
}

a:hover {
    color: #1d72f2;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

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

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/* ================================= Typography Css End =========================== */
/* ================================= Margin Css Start =========================== */
.mt--100 {
    margin-top: -100px !important;
}

.mt--24 {
    margin-top: -24px !important;
}

.mb-64 {
    margin-bottom: clamp(2rem, -0.434rem + 5.071vw, 4rem) !important;
}

.mt-64 {
    margin-top: clamp(2rem, -0.434rem + 5.071vw, 4rem) !important;
}

.mt-48 {
    margin-top: clamp(1.5rem, -0.326rem + 3.803vw, 3rem) !important;
}

.mb-48 {
    margin-bottom: clamp(1.5rem, -0.326rem + 3.803vw, 3rem) !important;
}

.mt-40 {
    margin-top: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem) !important;
}

.mb-40 {
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem) !important;
}

.mt-32 {
    margin-top: 32px !important;
}

@media screen and (max-width: 1199px) {
    .mt-32 {
        margin-top: 20px;
    }
}

.mb-32 {
    margin-bottom: 32px !important;
}

@media screen and (max-width: 1199px) {
    .mb-32 {
        margin-bottom: 20px;
    }
}

.mt-24 {
    margin-top: 24px !important;
}

@media screen and (max-width: 1199px) {
    .mt-24 {
        margin-top: 16px;
    }
}

.mb-24 {
    margin-bottom: 24px !important;
}

@media screen and (max-width: 1199px) {
    .mb-24 {
        margin-bottom: 16px;
    }
}

.margin-y-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .margin-y-120 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .margin-y-120 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.margin-t-120 {
    margin-top: 60px;
}

@media (min-width: 576px) {
    .margin-t-120 {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .margin-t-120 {
        margin-top: 120px;
    }
}

.margin-b-120 {
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .margin-b-120 {
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .margin-b-120 {
        margin-bottom: 120px;
    }
}

.margin-y-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .margin-y-60 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .margin-y-60 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.margin-t-60 {
    margin-top: 30px;
}

@media (min-width: 576px) {
    .margin-t-60 {
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .margin-t-60 {
        margin-top: 60px;
    }
}

.margin-b-60 {
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .margin-b-60 {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .margin-b-60 {
        margin-bottom: 60px;
    }
}

/* ================================= Margin Css End =========================== */
/* ================================= Padding Css Start =========================== */
.padding-y-120 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .padding-y-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .padding-y-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.padding-t-120 {
    padding-top: 60px;
}

@media (min-width: 576px) {
    .padding-t-120 {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .padding-t-120 {
        padding-top: 120px;
    }
}

.padding-b-120 {
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .padding-b-120 {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .padding-b-120 {
        padding-bottom: 120px;
    }
}

.padding-y-60 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .padding-y-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .padding-y-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.padding-t-60 {
    padding-top: 30px;
}

@media (min-width: 576px) {
    .padding-t-60 {
        padding-top: 40px;
    }
}

@media (min-width: 992px) {
    .padding-t-60 {
        padding-top: 60px;
    }
}

.padding-b-60 {
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .padding-b-60 {
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .padding-b-60 {
        padding-bottom: 60px;
    }
}

/* ================================= Padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.accordiantion_radius {
    border-radius: 16px;
    background: #FFF;
}

.common-accordion .accordion-item {
    border: 1px solid var(--border-color);
    background-color: var(--white) !important;
    /* border-radius: 8px; */
    overflow: hidden;

}

.common-accordion .accordion-item:not(:last-child) {
    margin-bottom: 20px;
    border-bottom: 3px solid #D9D9D9;
}

.common-accordion .accordion-header {
    line-height: 1;
}

.common-accordion .accordion-body {
    padding: 20px 0px;
    padding-top: 0;
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-body {
        padding: 12px 0px;
        padding-top: 0;
    }
}

.common-accordion:first-of-type .accordion-button.collapsed {
    /* border-radius: 5px; */
    /* border-bottom: 3px solid #D9D9D9; */
}

.common-accordion:last-of-type .accordion-button.collapsed {
    /* border-radius: 5px; */
    /* border-bottom: 3px solid #D9D9D9; */
}

.accordion-button {
    align-items: start;
}

.common-accordion .accordion-button {
    color: var(--heading-color);
    font-size: 1.125rem;
    padding: 20px 0px;
    padding-right: 46px;
    font-weight: 600;
    font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    font-family: var(--heading-font);
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-button {
        padding: 12px 20px;
        padding-right: 36px;
    }
}

.common-accordion .accordion-button::after {
    background-image: none;
}

.common-accordion .accordion-button:focus {
    box-shadow: none;
}

.common-accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
    color: var(--main);
}

.common-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: var(--main);
}

.common-accordion .accordion-button[aria-expanded=true]::after,
.common-accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    color: var(--main);
    display: inline-block;
    position: absolute;
    right: 30px;
    height: unset;
    font-size: 1rem;
    text-align: center;
}

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

    .common-accordion .accordion-button[aria-expanded=true]::after,
    .common-accordion .accordion-button[aria-expanded=false]::after {
        right: 20px;
    }
}

.common-accordion .accordion-button[aria-expanded=false]::after {
    content: "\f107";
    color: var(--heading-color);
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

.btn {
    position: relative;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--static-white) !important;
    z-index: 1;
    font-size: 0.875rem;
    line-height: 1;
    text-transform: capitalize;
    padding: 14px 16px;
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
    box-shadow: none !important;
}



@media screen and (max-width: 991px) {
    .btn {
        padding: 12px 16px;
    }
}

.btn-sm {
    padding: 11px 16px !important;
    font-size: 0.875rem;
}

@media screen and (max-width: 424px) {
    .btn-sm {
        padding: 10px !important;
        font-size: 12px;
    }
}

.btn-md {
    padding: 17px 16px;
}

@media screen and (max-width: 424px) {
    .btn-md {
        padding: 10px;
        font-size: 12px;
    }
}

.btn-lg {
    /* padding: 22px 40px; */
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .btn-lg {
        padding: 17px 32px;
    }
}

.btn-lg-icon {
    /* height: 60px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .btn-lg-icon {
        height: 50px;
    }
}

.btn-xl {
    padding: 20px 64px;
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .btn-xl {
        padding: 15px 36px;
    }
}

.btn-icon {
    width: 30px;
    height: 30px;
    background-color: var(--white) !important;
    padding: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
    font-size: 1.25rem;
    margin-right: 20px;
}

.btn-icon img {
    width: 60%;
}

@media screen and (max-width: 767px) {
    .btn-icon {
        width: 44px;
        height: 44px;

    }
}

.btn-icon--sm {
    width: 44px;
    height: 44px;
}

@media screen and (max-width: 767px) {
    .btn-icon--sm {
        width: 40px;
        height: 40px;
    }
}

.btn-icon:hover {
    transform: scale(1.04);
}

.btn .icon-right {
    margin-left: 8px;
    font-size: 1rem;
}

.btn .icon-left {
    margin-right: 8px;
    font-size: 1rem;
}

.btn:active {
    transform: scale(1.01);
}

.btn-main {
    background-color: var(--main-bg) !important;
    border: transparent !important;
    z-index: 1;
    color: var(--white) !important;
    /* border-radius: 30px !important; */
}

.btn-main::before,
.btn-main::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    background: var(--main-gradient);
    z-index: -1;
    transition: 0.2s linear;
}

.btn-main::after {
    background: var(--main-gradient-rev);
    visibility: hidden;
    opacity: 0;
}

.btn-main:hover::after {
    visibility: visible;
    opacity: 1;
}

.btn-outline-main {
    background-color: transparent !important;
    border-color: var(--main) !important;
    color: var(--main) !important;
}

.btn-outline-main:hover {
    background-color: var((--main)/0.15) !important;
    border-color: var((--main)/0.4) !important;
}

.btn-white {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--black) !important;
}

.btn-white:hover {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    color: var(--static-white) !important;
}

.btn-light {
    background-color: var(--white-one) !important;
    border-color: var(--white-one) !important;
    color: var(--black) !important;
}

.btn-light:hover {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    color: var(--white) !important;
}

.btn-outline-light {
    background-color: transparent !important;
    border-color: var(--white-one) !important;
    color: var(--black) !important;
    font-weight: 500;
}

.btn-outline-light:hover {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    color: var(--white) !important;
}

.btn-black {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    border-width: 2px;
    color: var(--white) !important;
}

.btn-black:hover {
    background-color: transparent !important;
    border-color: var(--black) !important;
    color: var(--black) !important;
}

.btn-outline-black {
    background-color: transparent !important;
    border-color: var(--black) !important;
    border-width: 2px;
    color: var(--black) !important;
    font-weight: 600;
}

.btn-outline-black:hover {
    background-color: var(--black) !important;
    border-color: var(--black) !important;
    color: var(--white) !important;
}

.btn-static-black {
    background-color: var(--static-black) !important;
    border-color: var(--static-black) !important;
    border-width: 2px;
    color: var(--static-white) !important;
}

.btn-static-black:hover {
    background-color: transparent !important;
    border-color: var(--static-black) !important;
    color: var(--static-black) !important;
    font-weight: 600 !important;
}

.btn-static-outline-black {
    background-color: transparent !important;
    border-color: var(--static-black) !important;
    border-width: 2px;
    color: var(--static-black) !important;
    font-weight: 600;
}

.btn-static-outline-black:hover {
    background-color: var(--static-black) !important;
    border-color: var(--static-black) !important;
    color: var(--static-white) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Form Css Start =========================== */
/* input Start */
.common-input {
    border-radius: 2px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 10px 10px;
    background-color: transparent !important;
    border: 1px solid var(--border-color);
    color: var(--black);
    line-height: 1;
    /* font-size: 1.0625rem; */
}


.spl_burron {
    margin-right: 0;
    /* padding: 8px; */
    padding: 6px !important;
}

.spl_burron img {
    width: 100%;
}

.auto-suggestion-input {
    border-radius: 5px !important;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 17px 16px;
    background-color: transparent !important;
    border: 1px solid var(--border-color);
    color: var(--black);
    line-height: 1;
    font-size: 1.0625rem;
}

/* When the input field is focused */
.common-input:focus {
    border-color: var(--main);
    /* Purple border on focus */
    box-shadow: 0 0 5px rgba(94, 53, 242, 0.2);
    /* Subtle shadow on focus */
    background-color: #fff;
    /* Optional: Give a light background on focus for better readability */
}


@media screen and (max-width: 991px) {
    .common-input {
        padding: 10px 16px;
    }
}

.common-input::placeholder {
    color: var(--black-three);
    font-size: 0.875rem;
    transition: 0.25s linear;
    font-weight: 400;
}

.common-input--md {
    padding: 13px 16px;
    font-size: 0.9375rem;
}

/* .common-input--lg {
    padding: 25px 24px;
} */

@media screen and (max-width: 767px) {
    .common-input--lg {
        padding: 18px 24px;
    }
}

.common-input:focus {
    border-color: var(--main);
    box-shadow: none;
}

.common-input:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}

.common-input:disabled,
.common-input[readonly] {
    background-color: var((--black)/0.2);
    opacity: 1;
    border: 0;
}

.common-input[type=password] {
    color: var((--black)/0.5);
}

.common-input[type=password]:focus {
    color: var(--black);
}

.common-input--withIcon {
    padding-right: 50px !important;
}

.common-input--withLeftIcon {
    padding-left: 40px !important;
}

.common-input--bg {
    background-color: var(--gray-seven) !important;
    border-color: var(--gray-seven) !important;
}

.common-input--bg::placeholder {
    color: var(--black-three);
}

/* input End */
/* input icon */
.input-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--heading-color);
    font-size: 0.875rem;
}

.input-icon--left {
    left: 10px;
    right: auto;
}

textarea+.input-icon {
    top: 15px;
    transform: translateY(0);
}

/* input icon */
/* Label */
.form-label {
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: var(--heading-color);
    font-weight: 500;
}

/* Form Select */
select option {
    background-color: var(--white);
}

.select-has-icon {
    position: relative;
}

.select-has-icon::before {
    position: absolute;
    content: "\f107";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--main);
    transition: 0.2s linear;
    pointer-events: none;
    color: var(--body-color) !important;
}

.select-has-icon.icon-black::before {
    -webkit-text-fill-color: var(--black);
}

.select-has-icon select {
    background-image: none;
    -webkit-appearance: none;
    padding: 19px 24px;
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .select-has-icon select {
        padding: 12px 24px;
    }
}

.select-has-icon .common-input {
    padding-right: 30px !important;
}

.select {
    color: var((--black)/0.6) !important;
    padding: 16px 24px;
    background-color: transparent;
}

@media screen and (max-width: 991px) {
    .select {
        padding: 11px 24px;
    }
}

@media screen and (max-width: 767px) {
    .select {
        padding: 9px 24px;
        font-size: 0.9375rem;
    }
}

.select:focus {
    border-color: var(--main);
    color: var(--black) !important;
    outline: none;
}

.select option {
    background-color: var(--white);
    color: var(--heading-color);
}

/* Form Select End */
textarea.common-input {
    height: 140px;
}

@media screen and (max-width: 767px) {
    textarea.common-input {
        height: 110px;
    }
}

/* Autofill Css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: var(--heading-color) !important;
    caret-color: var(--heading-color);
}

/* Autofill Css End */
/* Show Hide Password */
input#your-password,
input#confirm-password {
    padding-right: 50px;
}

.password-show-hide {
    position: absolute;
    right: 20px;
    z-index: 5;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: var((--black)/0.4);
}

/* Number Arrow None */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Custom Checkbox & Radio Css Start */
.common-check {
    margin-bottom: 16px;
}

.common-check:last-child {
    margin-bottom: 0;
}

.common-check a {
    display: inline;
}

.common-check.common-radio .form-check-input {
    border-radius: 50%;
}

.common-check.common-radio .form-check-input:checked {
    background-color: transparent !important;
}

.common-check.common-radio .form-check-input:checked::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.common-check .form-check-input {
    transition: 0.2s linear;
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: 0.2s linear;
    margin-top: 0;
}


.common-check .form-check-input::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--static-white);
    font-size: 0.6875rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.common-check .form-check-input::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    width: 10px;
    height: 10px;
    background-color: var(--main);
    border-radius: 50%;
    transition: 0.2s linear;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.common-check .form-check-input:checked {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    box-shadow: none;
}


.common-check .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.common-check .form-check-input:checked::before {
    visibility: visible;
    opacity: 1;
}

.common-check .form-check-label {
    font-weight: 500;
    width: calc(100% - 18px);
    padding-left: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--heading-color);
    font-family: var(--poppins-font);
}

@media screen and (max-width: 424px) {
    .common-check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .common-check a {
        font-size: 0.9375rem;
    }
}

/* Custom Checkbox & Radio Css End */
/* ================================= Form Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.common-pagination {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 64px;
    gap: 8px;
}

@media screen and (max-width: 1199px) {
    .common-pagination {
        margin-top: 48px;
    }
}

@media screen and (max-width: 991px) {
    .common-pagination {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .common-pagination {
        margin-top: 32px;
    }
}

.common-pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--black);
}

.common-pagination .page-item .page-link {
    border-radius: 8px;
    width: 42px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-weight: 600;
    padding: 0;
    color: var(--heading-color);
    border: 1px solid var((--black)/0.3);
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .common-pagination .page-item .page-link {
        width: 48px;
        height: 48px;
    }
}

.common-pagination .page-item .page-link:hover,
.common-pagination .page-item .page-link:focus,
.common-pagination .page-item .page-link:focus-visible {
    color: var(--white);
    background-color: var(--black);
}

.common-pagination .page-item .page-link:focus {
    box-shadow: none;
}

.common-pagination .page-item:last-child .page-link {
    width: unset;
    height: unset;
    background-color: var(--section-bg);
    border-color: var(--section-bg);
    padding: 9px 16px;
}

.common-pagination .page-item:last-child .page-link:hover,
.common-pagination .page-item:last-child .page-link:focus,
.common-pagination .page-item:last-child .page-link:focus-visible {
    color: var(--white);
    background-color: var(--black);
}

/* ================================= Pagination Css End =========================== */
/* ================================= Tab Css Start =========================== */
.common-tab {
    margin-bottom: 20px;
    gap: 16px;
    /* Style Icon */
}

@media screen and (max-width: 991px) {
    .common-tab {
        gap: 8px;
    }
}

.common-tab .nav-item {
    border-bottom: 0;
}

.common-tab .nav-item .nav-link {
    color: var(--heading-color);
    padding: 7px 16px !important;
    background-color: transparent;
    transition: 0.2s linear;
    border-radius: 8px;
    border: 1px solid var(--gray-five);
    text-transform: capitalize;
    font-weight: 500;
    overflow: hidden;
    font-size: 0.875rem;
}

@media screen and (max-width: 991px) {
    .common-tab .nav-item .nav-link {
        padding: 5px 10px !important;
    }
}

.common-tab .nav-item .nav-link.active {
    color: var(--white) !important;
    background-color: var(--heading-color) !important;
    border-color: var(--heading-color) !important;
    font-weight: 300;
}

.common-tab .nav-item .nav-link:hover {
    color: var(--main);
    background-color: var(--white);
}

.common-tab.style-icon .nav-item .nav-link {
    padding: 0 !important;
    border: 0 !important;
    background-color: transparent !important;
    overflow: unset;
}

.common-tab.style-icon .nav-item .nav-link .product-category-list__item {
    box-shadow: 0px 5px 10px 0px rgba(204, 204, 204, 0.25);
}

.common-tab.style-icon .nav-item .nav-link .product-category-list__item .text {
    display: none;
}

.common-tab.style-icon .nav-item .nav-link.active .product-category-list__item {
    padding: 10px;
    height: unset;
    width: unset;
    border-radius: 50px !important;
    border: 1px solid var(--main);
    background-color: var(--white);
    box-shadow: 0px 5px 10px 0px rgba(204, 204, 204, 0.25);
    color: var(--heading-color);
    font-weight: 500;
}

.common-tab.style-icon .nav-item .nav-link.active .product-category-list__item .text {
    display: block;
}

/* Style Gradient */
.tab-gradient {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tab-gradient .nav-item .nav-link {
    background-color: transparent !important;
    position: relative;
    z-index: 1;
    color: var(--heading-color);
    font-size: 1.125rem;
    text-transform: capitalize;
    font-weight: 400;
    padding: 14px 50px;
}

@media screen and (max-width: 1199px) {
    .tab-gradient .nav-item .nav-link {
        padding: 10px 30px;
        font-size: 1rem;
    }
}

.tab-gradient .nav-item .nav-link::before,
.tab-gradient .nav-item .nav-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--white);
    left: 0;
    top: 0;
    border-radius: inherit;
    z-index: -1;
}

.tab-gradient .nav-item .nav-link::after {
    background: var(--main-gradient);
    visibility: hidden;
    opacity: 0;
}

.tab-gradient .nav-item .nav-link.active {
    color: var(--white);
    font-weight: 300;
}

.tab-gradient .nav-item .nav-link.active::before {
    visibility: hidden;
    opacity: 0;
}

.tab-gradient .nav-item .nav-link.active::after {
    visibility: visible;
    opacity: 1;
}

/* Bordered Tab */
.tab-bordered {
    gap: 32px;
    margin-bottom: 0px;
}

@media screen and (max-width: 1199px) {
    .tab-bordered {
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .tab-bordered {
        gap: 16px;
    }
}

@media screen and (max-width: 575px) {
    .tab-bordered {
        gap: 8px;
        margin-bottom: 24px;
    }
}

.tab-bordered .nav-link {
    background-color: transparent;
    border: 1px solid var(--gray-five);
    border-radius: 5px;
    color: var(--body-color);
    padding: 5px 8px;
}

@media (min-width: 575px) {
    .tab-bordered .nav-link {
        background-color: transparent;
        padding: 0;
        color: var(--body-color) !important;
        font-size: 14px;
        padding-bottom: 16px !important;
        border: 0;
        border-bottom: 2px solid transparent;
        border-radius: 0;
    }
}

.tab-bordered .nav-link.active {
    background-color: transparent;
    color: var(--heading-color) !important;
    font-weight: 600;
    border-color: var(--heading-color) !important;
}

.tab-bordered .nav-link.active .star-rating__text {
    color: var(--heading-color) !important;
    font-weight: 600;
}

/* ================================= Tab Css End =========================== */
/* ======================= Common Table Css Start ======================= */
.table {
    color: var(--white);
    margin-bottom: 0;
    min-width: max-content;
    border-collapse: separate;
    border-spacing: 0 24px;
    /* Style Two */
}

.table> :not(caption)>*>* {
    border-bottom: 0;
}

.table tr th {
    padding-left: 0;
    padding: 20px 16px;
    color: var(--heading-color);
    background-color: var(--section-bg);
}

.table tr th:not(:last-child) {
    border-radius: 0;
}

.table tr th:not(:first-child) {
    border-radius: 0;
}

.table tr th:first-child {
    border-radius: 8px 0 0 8px;
}

.table tr th:last-child {
    border-radius: 0 8px 8px 0;
}

.table tr th,
.table tr td {
    text-align: center;
    vertical-align: middle;
}

.table tr th:first-child,
.table tr td:first-child {
    text-align: left;
}

.table tr th:last-child,
.table tr td:last-child {
    text-align: right;
}

.table thead tr {
    border-bottom: 1px solid var((--white)/0.2);
}

.table thead tr th {
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
    font-weight: 500;
}

.table tbody tr {
    border-bottom: 1px solid var((--white)/0.2);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr td {
    font-size: clamp(0.875rem, 0.723rem + 0.317vw, 1rem);
    font-weight: 400;
    padding: 16px;
    border: 1px solid var(--gray-five);
}

.table tbody tr td:not(:last-child) {
    border-right: 0;
}

.table tbody tr td:not(:first-child) {
    border-left: 0;
}

.table tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

.table tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

.table.style-two {
    color: var(--body-color);
    ;
    border-spacing: 0px;
    background-color: var(--white);
    border: 1px solid var(--gray-five);
    border-radius: 16px;
    overflow: hidden;
}

.table.style-two thead tr {
    border: 0;
}

.table.style-two thead tr th {
    border-bottom: 1px solid var(--gray-five);
    border-radius: 0;
    padding: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    background-color: var(--white);
}

.table.style-two tbody tr:last-child td {
    border-bottom: 0;
}

.table.style-two tbody tr td {
    border-radius: 0 !important;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-style: dashed;
}

/* ======================= Common Table Css End ======================= */
/* ================= Common Card Css Start ========================= */
.common-card {
    border: 0;
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    background-color: var(--white);
}

.common-card .card-header,
.common-card .card-footer {
    padding: 12px 24px;
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
}

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

    .common-card .card-header,
    .common-card .card-footer {
        padding: 12px 16px;
    }
}

.common-card .card-header {
    background-color: var(--main-bg);
    color: var(--white);
}

.common-card .card-header .title {
    color: var(--static-white);
    margin-bottom: 0;
}

.common-card .card-body {
    padding: 24px;
}

@media screen and (max-width: 424px) {
    .common-card .card-body {
        padding: 16px;
    }
}

.common-card .card-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: 0;
}

/* ================= Common Card Css End ========================= */
/* ================================= preload Css Start =========================== */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 99999;
}

.loader-mask .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    font-size: 0;
    display: inline-block;
    margin: -40px 0 0 -40px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader-mask .loader div {
    background-color: var(--main);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader-mask .loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ================================= preload Css End ===========================  */
/* ====================== Section Heading ==================== */
.section-heading {
    text-align: center;
    margin-bottom: clamp(2rem, 0.783rem + 2.536vw, 3rem);
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading__title {
    position: relative;
    margin-bottom: 16px;
    /* text-transform: capitalize; */
    font-size: 250px;
    line-height: 230px;
    font-family: "Unbounded", sans-serif;
    font-style: normal;


}

.section-heading__desc {
    margin-top: clamp(1rem, -0.217rem + 2.536vw, 2rem);
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
    max-width: 634px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.section-heading__desc:last-child {
    margin-bottom: 0;
}

.section-heading__desc.w-sm {
    max-width: 465px;
}

.section-heading.style-left {
    text-align: left;
    margin-left: 0;
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

.section-heading.style-white .section-heading__title {
    color: var(--static-white);
}

.section-heading.style-white .section-heading__desc {
    color: #bdbecc;
    font-weight: 300;
}

.section-heading.style-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: unset;
    align-items: center;
}

.section-heading.style-flex .section-heading__inner {
    max-width: 410px;
}

.section-heading.style-flex .section-heading__inner.w-lg {
    max-width: 636px;
}

.section-heading.style-three .section-heading__subtitle {
    text-transform: capitalize;
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--main);
    font-size: clamp(0.9375rem, 0.785rem + 0.317vw, 1.0625rem);
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ====================== Section Heading En d==================== */
/* ============= Header Start Here ======================= */
.header {
    /* background-color: var(--white); */
    transition: 0.2s linear;
    font-family: "Happy Monkey", system-ui;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 991px) {
    .header {
        padding: 10px 0;
    }
}

.header.fixed-header {
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    /* backdrop-filter: blur(24px); */
    animation: slideDown 0.35s ease-out;
    background-color: var(--body-bg);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
    .header.fixed-header {
        top: -1px;
        background-color: var(--main-bg);
    }

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    max-width: 224px;
}

@media screen and (max-width: 767px) {
    .logo img {
        max-width: 160px;
    }
}

@media (max-width: 1199px) {
    .header-right__inner .btn .icon {
        display: none;
    }

    .language-select img {
        display: none;
    }

    .language-select .select {
        padding-left: 0 !important;
    }
}

.header-right {
    gap: 24px;
}

@media screen and (max-width: 1199px) {
    .header-right {
        gap: 16px;
    }
}

.header-right__button {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.header-right__button:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.header-right__button::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: var(--gray-five);
    z-index: -1;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

/* Cart Btn */
.cart-btn {
    padding-right: 8px;
    padding-top: 5px;
}

.qty-badge {
    width: 20px;
    height: 20px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--static-white);
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

/* Cart Btn */
/* Language Select */
.language-select {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
}

.language-select::before {
    right: 16px;
}

.language-select select {
    color: var(--heading-color) !important;
    padding: 8px 16px;
}

/* Language Select */
.toggle-mobileMenu {
    line-height: 1;
    font-size: 36px;
    color: var(--heading-color);
}

.contact-number {
    padding-right: clamp(0.75rem, -0.771rem + 3.17vw, 2rem);
    margin-right: clamp(0.75rem, -0.771rem + 3.17vw, 2rem);
    border-right: 1px solid var(--border-color);
}

@media screen and (max-width: 575px) {
    .contact-number {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 424px) {
    .contact-number {
        display: none !important;
    }
}

.contact-number:hover .text {
    color: var(--main);
}

@media screen and (max-width: 575px) {
    .contact-number .icon {
        font-size: 15px !important;
    }
}

/* Header Menu and Submenu Css Start */
.nav-menu {
    gap: 24px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-menu {
        gap: 16px;
    }
}

.nav-menu__item.activePage>a {
    color: var(--main);
}

.nav-menu__item.activePage>a::before {
    color: var(--main);
}

.nav-menu__item:hover>a {
    color: var(--heading-color);
}

@media (min-width: 992px) {
    .nav-menu__item:hover>a {
        color: var(--main);
    }
}

.nav-menu__link {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    padding: 30px 20px;
    width: 100%;
    font-family: "Happy Monkey", system-ui;
    /* font-weight: 400;
    font-style: normal; */
}

@media screen and (max-width: 1199px) {
    .nav-menu__link {
        font-size: 0.875rem;
    }
}

.has-submenu {
    position: relative;
}

.has-submenu .nav-menu__link {
    padding-right: 16px;
}

.has-submenu.active>a,
.has-submenu.active>a::before {
    color: var(--main);
}

.has-submenu.active>a::before {
    transform: translateY(-50%) rotate(180deg) !important;
}

.has-submenu:hover .nav-submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

@media (min-width: 992px) {
    .has-submenu:hover>a::before {
        color: var(--main);
        transform: translateY(-50%) rotate(180deg);
    }
}

.has-submenu>a {
    position: relative;
}

.has-submenu>a::before {
    position: absolute;
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.625rem;
    color: var((--heading-color)/0.4);
    transition: 0.2s linear;
}

/* Submenu Start */
.nav-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    background-color: var(--white);
    border-radius: 6px;
    min-width: 190px;
    overflow: hidden;
    padding: 8px;
    box-shadow: var(--box-shadow);
    visibility: hidden;
    opacity: 0;
    margin-top: 16px;
    transition: 0.2s linear;
    z-index: 99;
}

@media (min-width: 992px) {
    .nav-submenu {
        max-height: 400px;
        overflow-y: auto;
    }
}

.nav-submenu::-webkit-scrollbar {
    width: 6px;
}

.nav-submenu::-webkit-scrollbar-track {
    background: #e4e4e4;
}

.nav-submenu::-webkit-scrollbar-thumb {
    background: #a2a2a2;
    border-radius: 50px;
}

.nav-submenu::-webkit-scrollbar-thumb:hover {
    background: #6d6d6d;
}

.nav-submenu__item {
    display: block;
    border-radius: 4px;
    transition: 0.2s linear;
    position: relative;
}

.nav-submenu__item.activePage .nav-submenu__link {
    color: var(--main);
}

.nav-submenu__item.activePage::before {
    visibility: visible;
    opacity: 1;
}

.nav-submenu__item.activePage a {
    margin-left: 10px;
}

.nav-submenu__item::before {
    position: absolute;
    content: "\f101";
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.625rem;
    color: var(--main);
    visibility: hidden;
    opacity: 0;
    transition: inherit;
}

.nav-submenu__item:hover {
    background-color: var(--gray-200);
}

.nav-submenu__item:hover::before {
    visibility: visible;
    opacity: 1;
}

.nav-submenu__item:hover a {
    margin-left: 10px;
    color: var(--heading-color);
}

.nav-submenu__link {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    padding-right: 16px;
    width: 100%;
    display: block;
    padding: 8px 14px;
    border-radius: inherit;
}

.nav-submenu__link::before {
    position: absolute;
}

.nav-submenu__link:hover {
    color: var(--main) !important;
}

/* Submenu End */
/* Header Menu and Submenu Css End */
/* ================================= Header Css End =========================== */
/* ============ Search box ============= */
.search-box {
    position: relative;
    /* Style Two */
    /* style Three */
}

.search-box input {
    background-color: var(--white) !important;
    border: 0;
    padding-right: 70px;
}

@media screen and (max-width: 767px) {
    .search-box input {
        padding-right: 56px;
    }
}

.search-box input::placeholder {
    color: var(--black-three);
}

.search-box .icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-color);
}

@media screen and (max-width: 767px) {
    .search-box .icon {
        right: 5px;
    }
}

.search-box.style-two {
    max-width: 636px;
    margin: 0 auto;
}

.search-box.style-two input {
    padding-left: 170px;
}

@media screen and (max-width: 575px) {
    .search-box.style-two input {
        padding-left: 128px;
    }
}

.search-box.style-two .search-box__select {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 575px) {
    .search-box.style-two .search-box__select {
        left: 0;
    }
}

.search-box.style-two .search-box__select.select-has-icon::before {
    right: 0;
}

.search-box.style-two .search-box__select.select-has-icon::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border-color);
}

.search-box.style-two .search-box__select.select-has-icon select {
    padding-right: 19px;
    padding-left: 12px;
    color: var(--black-three);
}

@media screen and (max-width: 575px) {
    .search-box.style-two .search-box__select.select-has-icon select {
        font-size: 0.75rem;
    }
}

.search-box.style-two .search-box__select.select-has-icon select:focus {
    box-shadow: none;
}

.search-box.style-three {
    max-width: 274px;
}

.search-box.style-three .icon {
    width: 48px;
    height: 48px;
    right: 4px;
}

@media screen and (max-width: 991px) {
    .search-box.style-three .icon {
        width: 36px;
        height: 36px;
    }
}

.search-box.style-three input {
    background-color: var(--section-bg) !important;
    border: 1px solid var(--white-one);
}

.search-box .rounded-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--white-one);
    border-radius: 50%;
    transition: 0.2s linear;
}

.search-box .rounded-icon:hover {
    background-color: var(--white-one) !important;
}

/* ================== Search Box =================== */
/* Mobile Menu Sidebar Start */
.mobile-menu {
    position: fixed;
    background-color: white;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 24px;
    z-index: 991;
    transform: translateX(-100%);
    transition: 0.2s linear;
    padding-bottom: 68px;
    z-index: 9999;
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #bab9b9;
    border-radius: 30px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #949494;
}

.mobile-menu.active {
    transform: translateX(0%);
}

.close-button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.close-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.nav-menu--mobile {
    display: block;
    margin-top: 32px;
}

.nav-menu--mobile .nav-menu__item>a::before {
    transform: translateY(-50%) rotate(0deg);
}

.nav-menu--mobile .nav-menu__link {
    border-bottom: 1px solid var((--black)/0.08) !important;
    position: relative;
    padding: 12px 0;
    padding-right: 16px;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

.nav-menu--mobile .nav-submenu {
    position: static;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    width: 100%;
    margin-top: 0;
    padding: 0;
    margin-left: 16px;
    display: none;
    transition: 0s;
}

.nav-menu--mobile .nav-submenu__link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var((--black)/0.08) !important;
    font-family: Poppins;
}

.nav-menu--mobile .nav-submenu__item:hover {
    background-color: transparent;
    color: var(--main);
}

.nav-menu--mobile .nav-submenu__item::before {
    display: none;
}

/* Mobile Menu Sidebar Start */
/* ============= Footer Start Here ======================= */
/* Text Slider Css Start */
.text-slider-section {
    padding: 40px 0;
    border-bottom: 1px solid var((--white-one)/0.2);
}

.text-slider .js-marquee {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-slider__item {
    font-size: clamp(1rem, -0.674rem + 3.487vw, 2.375rem);
    color: var(--black-three);
    text-transform: capitalize;
    transition: 0.2s linear;
}

.text-slider__item:hover {
    color: var(--static-white);
}

.footer-three {
    background-color: var(--black-two);
}

.footer-three .footer-inner {
    padding: 80px 0;
    background-color: #0b0e2a !important;
}

.footer-section {
    margin-top: auto;
    position: relative;
    z-index: 1;

    /* background-image: url(../images/shapes/footer-bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 70px 0;
    /* padding-top: 220px; */
    /* color: white; */
    background-color: var(--main-bg);
}

@media screen and (max-width: 1199px) {
    .footer-section {
        padding: 70px 0;
        /* background-color: var(--black) !important; */
        /* background-image: none; */
    }
}

@media screen and (max-width: 991px) {
    .footer-section {
        padding: 80px 0;
    }
}

.footer-inner {
    padding: 80px 0;
}

.footer-widget__desc {
    color: var(--static-white-one);
    font-size: 1rem;
    font-weight: 300;
    line-height: 170%;
}

.footer-widget__logo {
    margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
    .footer-widget__logo {
        margin-bottom: 24px;
    }
}

.footer-widget__logo a img {
    width: 100%;
    height: 100%;
    max-width: 240px;
    max-height: 64px;
}

.footer-widget__social {
    margin-top: 32px;
}

@media screen and (max-width: 991px) {
    .footer-widget__social {
        margin-top: 24px;
    }
}

.footer-widget__title {
    margin-bottom: 24px;
}

/* Footer List Item */
.footer-lists {
    display: flex;
    flex-direction: column;
}

.footer-lists__item {
    display: block;
    padding-bottom: 10px;
}

.footer-lists__item:last-child {
    padding-bottom: 0;
}

.footer-lists__link {
    position: relative;
    color: var(--static-white-one);
    padding-left: 22px;
}

.footer-lists__link::before {
    position: absolute;
    /* content: "\f105"; */
    font-family: "Line Awesome Free";
    font-weight: 900;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    transition: 0.2s linear;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
}

.footer-lists__link:hover {
    color: var(--static-white);
}

.footer-lists__link:hover::before {
    left: 4px;
}

/* ============= Footer End Here ======================= */

/* ===================== Scroll to Top Start ================================= */
.progress-wrap {
    position: fixed;
    right: 36px;
    bottom: 36px;
    height: 46px;
    line-height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: var(--white);
}

@media screen and (max-width: 991px) {
    .progress-wrap {
        right: 24px;
        bottom: 24px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover {
    transform: scale(1.06);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    text-align: center;
    height: 46px;
    width: 46px;
    line-height: 46px;
    font-size: 18px;
    left: 0;
    top: 0;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: var(--main) !important;
}

@media screen and (max-width: 991px) {
    .progress-wrap::after {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

.progress-circle {
    top: -2px;
    position: relative;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--main);
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
/* ================================= Template Selection Css End ===========================  */
/* ============================ Sale Offer Css Start =========================== */
.sale-offer {
    background: linear-gradient(117deg, #FEF0F8 14.35%, #DACFFF 84.4%);
    padding: 8px 0;
}

.sale-offer__content {
    gap: 16px;
}

@media screen and (max-width: 424px) {
    .sale-offer__content {
        gap: 8px;
    }
}

.sale-offer__text {
    font-size: clamp(0.6875rem, 0.459rem + 0.475vw, 0.875rem);
}

.sale-offer__qty {
    font-size: clamp(0.75rem, 0.294rem + 0.951vw, 1.125rem);
}

.sale-offer__button {
    width: 32px;
}

.sale-offer__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 1;
    transition: 0.2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 424px) {
    .sale-offer__close {
        width: 28px;
        height: 28px;
    }
}

.sale-offer__close:hover {
    color: var(--main);
}

.sale-offer__close:hover::before {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.sale-offer__close::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var((--main)/0.2);
    z-index: -1;
    border-radius: inherit;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.countdown {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 424px) {
    .countdown {
        gap: 10px;
    }
}

.countdown>div {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-direction: row-reverse;
}

.countdown span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 14px;
}

/* ============================ Sale Offer Css End =========================== */
/* ================================= Social Icon Css Start =========================== */
.social-icon-list {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.social-icon-list__link {
    width: 70px;
    height: 70px;
    border: 1px solid var(--static-white-one);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--static-white);
    position: relative;
    font-size: 0.875rem;
    z-index: 1;
    font-size: 30px;
}

.social-icon-list__link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: inherit;
    background: var(--main-gradient);
    transition: 0.2s linear;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}

.social-icon-list__link:hover {
    color: var(--static-white) !important;
    border-color: transparent;
}

.social-icon-list__link:hover::after {
    visibility: visible;
    opacity: 1;
}

/* ================================= Social Icon Css End ===========================  */
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-track {
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    cursor: grab;
    height: auto;
    margin: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
    height: 100%;
}

/* Arrow Small size */
.arrow-sm .slick-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--white-one);
    box-shadow: 0px 20px 30px rgba(197, 196, 201, 0.25);
    font-size: 1.125rem;
}

.arrow-sm .slick-arrow:hover {
    border-color: var(--main);
}

/* Slick Slider Arrow */
.slick-arrow {
    position: absolute;
    z-index: 1;
    border: none;
    background-color: transparent;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s linear;
    bottom: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    left: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    background-color: var(--white);
    color: var(--heading-color);
    box-shadow: 0px 20px 30px 0px rgba(197, 196, 201, 0.25);
    font-size: 1.5rem;
    left: -24px;
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        left: -10px;
    }
}

.slick-arrow:hover {
    background-color: var(--main);
    color: var(--white);
}

.slick-next {
    right: -24px;
    left: auto;
}

@media screen and (max-width: 575px) {
    .slick-next {
        right: -10px;
    }
}

/* Dots Css Start */
.slick-dots {
    text-align: center;
    margin-top: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1199px) {
    .slick-dots {
        gap: 8px;
    }
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: transparent;
    color: var(--white);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-indent: -9999px;
    transition: 0.3s linear;
    border: 1px solid var(--black);
}

.slick-dots li.slick-active button {
    background-color: var(--black);
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */


.search-box {
    position: relative;
}

.search-box .btn {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
}

.search-box .common-input {
    background-color: #E3E3E3 !important;
    border-color: #E3E3E3;
    padding-right: 200px;
}

@media screen and (max-width: 575px) {
    .search-box .common-input {
        padding-right: 60px;
    }
}


.shape_top {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 250px;
    z-index: 999;
}

.shape_top_2 {
    position: absolute;
    top: 350px;
    left: 0px;
    width: 150px;
    z-index: -1;
}

.shape_top_3 {
    position: absolute;
    top: 450px;
    /* left: 10px; */
    width: 150px;
    z-index: 999;
    right: -50px;
}

.shape_top_4 {
    position: absolute;
    top: 0px;
    /* left: 10px; */
    width: 150px;
    left: 0px;
    z-index: 999;
}

.shape_top_5 {
    position: absolute;
    top: 0px;
    /* left: 10px; */
    width: 150px;
    right: -50px;
    z-index: 999;
    height: 170px;
}

.shape_top_6 {
    position: absolute;
    top: 80px;
    right: 40px;
    z-index: 999;
    /* height: 170px; */
}

.shape_top_7 {
    position: absolute;
    top: 400%;
    left: 0px;
    height: 170px;
    z-index: 999;
}

.shape_top_8 {
    position: absolute;
    top: 420%;
    right: 0px;
    /* width: 250px; */
    height: 170px;
    z-index: 999;
}

.shape_top_9 {
    position: absolute;
    top: 250%;
    height: 170px;
    left: 0px;
    /* width: 250px; */
    z-index: 999;
}

.shape_top_10 {
    position: absolute;
    top: -200px;
    height: 170px;
    right: 0px;
    /* width: 250px; */
    z-index: 999;
}


.map-box iframe {
    border-radius: 10px;
}

.left_1,
.right_1 {
    top: 86% !important;
    width: 36px;
    height: 36px;

    border: 2px solid black;
}

/* Hover effect for the .left_1 and .right_1 buttons */
.left_1:hover,
.right_1:hover {
    background: var(--main-bg);
    /* Change background to white on hover */
    color: white;
    /* Change text color to match the main background color */
    border: 2px solid var(--main-bg);
    /* Keep the border color the same */
}


.learn-new {
    padding: 80px 0;
    /* background-color: #f9f9f9; */
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.course-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 15px;
}



.card-img {
    width: 40%;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.card-content {
    flex-grow: 1;
}

.course-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.author-name,
.course-duration {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.hero-inner__title {
    margin-bottom: 24px;
    font-size: clamp(6rem, -2.0093rem + 7.85vw, 4.5rem);
    line-height: 6rem;
    /* text-transform: capitalize; */

    font-family: "Unbounded", sans-serif;
    font-style: normal;
}



.hero-inner__title_2 {
    font-size: 50px;
    color: #FF7A00;
    /* -webkit-text-fill-color: white;  */
    /* -webkit-text-stroke: 1px white; */
    margin-top: -70px;
    width: 60%;
}

@media screen and (max-width: 991px) {
    .hero-inner__title {
        font-size: clamp(3rem, -2.0093rem + 7.85vw, 4.5rem);
        line-height: 3rem;
        margin-bottom: 16px;
    }

    .hero-inner__title_2 {
        margin-top: -60px;
    }

    .hero-inner__title_2 img {
        width: 300px;
        max-width: 300px;
        height: auto;

    }

    .header {
        background: var(--main-bg);
    }

    .section-heading__title {
        font-size: 60px;
        line-height: 60px;


    }

    .selling-product-slider {
        width: 80%;
    }

}

.product-item {
    position: relative;
    margin-top: 150px;
}

.product-item_main {
    position: absolute;
    z-index: 0;
}

.product-item_main_img {
    position: relative;
    width: 90%;
    height: 90%;
    margin-top: 20px;
    margin-left: 20px;
}

.product-item_main_link {
    position: relative;
    z-index: 2;
    text-align: center;
    display: block;
    font-size: 26px;
    margin-top: 10px;
    color: black;
    margin-top: 30px;
}

.most_follwed {
    background: #FF7A00;
    width: 80%;
    height: 350px;
    margin: 0 auto;
    position: absolute;
    top: 40px;
    z-index: 0;
    border-radius: 10px;
}

.most_follwed_img {
    position: relative;
    top: 20px;
    margin-left: -30px;
}

.most_follwed_name {
    position: relative;
    z-index: 2;
    text-align: center;
    display: block;
    font-size: 18px;
    margin-top: 30px;
    color: black;
}

.section-heading__1 {
    font-size: 60px;
}


/* Desktop background */
.hero-section {
    background-image: url('../images/images/slider.jpg');
    background-size: cover;
    /* background-position: center; */
    width: 100%;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
}

/* Mobile background */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('../images/images/slider_mobile.jpg');
        /* max-height: 500px; */
        min-height: 400px;
        position: relative;
        margin-bottom: 600px;
    }

    .mobile_card {
        position: absolute;
        top: 250px;
        margin-bottom: 50px;
        z-index: 9;
    }
}

.common-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


.form_headding {
    color: var(--second-bg);
    /* font-family: "Rajdhani", Sans-serif !important; */
    font-family: var(--heading-font) !important;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.form_seondheadding {
    text-align: center;
    color: var(--second-bg);
    font-family: "Lato", Sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    /* line-height: 1em; */
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
}

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

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body p {
    line-height: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Enable horizontal scroll on mobile */
.custom-scroll-x {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping on smaller screens */
    overflow-x: auto;
    /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.custom-scroll-x::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar on Webkit browsers */
}

.custom-scroll-x {
    scrollbar-width: none;
    /* Hide scrollbar on Firefox */
}

/* Adjust card width for mobile horizontal scroll */
.custom-scroll-x .col-sm-3 {
    flex: 0 0 auto;
    /* Prevent shrinking */
    width: 80vw;
    /* Adjust width as needed for mobile */
    margin-right: 1rem;
    /* Space between cards */
}

/* Desktop layout adjustments */
@media (min-width: 768px) {
    .custom-scroll-x {
        flex-wrap: wrap;
        /* Standard grid on desktop */
        overflow-x: hidden;
        /* No horizontal scroll */
    }

    .custom-scroll-x .col-sm-3 {
        width: auto;
        /* Standard width for Bootstrap grid */
    }
}

.card-img-top {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover;
}

.list-inline-item i {
    color: var(--main-bg);
}

.img_icon {
    width: auto;
    height: 80px;
    margin-bottom: 20px;
}

.section-bg {
    background: var(--main-bg);
}

/* .paly_con {
    width: 100px;
} */
.video-container {
    position: relative;
    width: 100%;
    /* padding-top: 56.25%;  */
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    max-height: 300px;
    padding: 0 !important;
}

.video-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container without distortion */
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container without distortion */
}

.play-icon {
    width: 50px;
    /* Adjust as needed */
    height: 50px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* .formhea_mobile, .formhea_mobile span {
    color: var(--white);
} */

.second-bg {
    background-color: var(--second-bg);
}

.whattsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #fff;
    box-shadow: 0.4rem 0.4rem 2.4rem 0.2rem hsla(236, 50%, 50%, 0.3);
    /* padding: 0.2rem; */
    padding-left: 8px;
    z-index: 1;
    transition: .2s;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: 0.3s;
    z-index: 337;
    align-items: center;
}

.whattsapp img {
    width: 80%;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #234467;
}

.bottom-text {
    text-align: center;
}

.bottom-text p {
    padding: 0;
    margin: 0;
    font-size: 15px;
    color: #fff;
}

.bottom-text p a {
    color: #db8c23;
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
}

.single-footer-widget .footer-contact-list li span {
    color: #234467;
    font-weight: 600;
}

.single-footer-widget .footer-contact-list li a {
    color: #777;
}

.single-footer-widget h3 {
    margin-top: 30px;
    font-size: 24px;
    color: #234467;
    margin-bottom: 15px;
}

.single-footer-widget .social-link li a {
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    color: #fff;
}

.single-footer-widget .social-link li:nth-child(1) a {
    background-color: #3b5998;
}

.single-footer-widget .social-link li:nth-child(2) a {
    background-color: #55acee;
}

.single-footer-widget .social-link li:nth-child(3) a {
    background-color: #dc3545;
}

.single-footer-widget .social-link li a:hover {
    background-color: #db8c23;
    animation: tada 1s linear;
}
.single-footer-widget .social-link li {
    display: inline-block;
    margin-right: 5px;
}

.testimonial-item img {
    width: 200px;
    height: auto;
    margin: 0 auto;
}