:root {
    --header-height: 160px;
    --header-height-min: 80px;
}

@media screen and (max-width: 600px) {
    :root {
        --header-height: 100px;
        --header-height-min: 80px;
    }
}

:root {
    --accent-color: #8d8d8d;
    --dark-color: #191919;
    --light-color: #fff;
    --grey-color: #dbdbdb;
    --light-grey-color: #e7e6e6;
    --primary-color: #6995B1;
    --light-primary-color: #eef1f3;
    --body-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
}

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

html {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    margin: 0;
}

    body.no-scroll {
        overflow: hidden;
    }

a {
    color: var(--dark-color);
    text-decoration: none;
    transition: 0.3s color ease-out;
}

p > a {
    color: var(--primary-color);
}

a.light {
    color: var(--light-color);
}

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

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-top: 5px;
        margin-bottom: 0;
    }

    ul li, ol li {
        margin-bottom: 5px;
        outline: 0;
    }

        ul li.active a {
            color: var(--dark-color);
        }

        ul li:last-child,
        ol li:last-child {
            margin-bottom: 0;
        }

dl {
    margin-top: 0;
    margin-bottom: 2rem;
}

dt,
dd {
    line-height: 1.42857143;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: 0;
}

figure {
    margin: 0;
}

img {
    display: inline-block;
    border: 0;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

::selection {
    background: var(--primary-color);
    color: var(--light-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--light-color);
    text-shadow: none;
}

::-webkit-input-placeholder {
    color: #7A7A7A; /* WebKit browsers */
}

:-ms-input-placeholder {
    color: #7A7A7A; /* Internet Explorer 10+ */
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    line-height: 1.2;
}

    h1.light, .h1, h2.light, .h2, h3.light, .h3, h4.light, .h4, h5.light, .h5, h6.light, .h6 {
        color: var(--light-color);
    }

h1, h2, h3 {
    margin: 25px 0;
    text-transform: capitalize;
}

h5, h6 {
    letter-spacing: 1px;
}

h1, .h1 {
    font-size: 3em;
    line-height: 1.4;
}

h2, .h2 {
    font-size: 2em;
    line-height: 1.4;
}

h3, .h3 {
    font-size: 1.4em;
    line-height: 1.4;
}

h4, .h4 {
    font-size: 1.1em;
    line-height: 1.4;
}

h5, .h5 {
    font-size: .83em;
    line-height: 1.25;
}

h6, .h6 {
    font-size: .67em;
    line-height: 1.1;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
        color: inherit;
        text-decoration: none;
    }

p {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

    p.dark {
        color: var(--dark-color);
    }

    p.light {
        color: var(--light-color);
    }

    p:empty {
        display: none;
    }

small {
    font-size: 85%;
}

mark {
    background-color: var(--grey-color);
    padding: 0.28rem;
}

dfn, cite, em, i {
    font-style: italic;
}

::placeholder {
    color: var(--grey-color);
}

.align-left {
    float: left;
    text-align: left;
}

.align-right {
    float: right;
    text-align: right;
}

.align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/**::after,*/
.container::after,
.row::after,
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/** Text Align
--------------------------------------------------------------*/
.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lead {
    font-size: 120%;
    line-height: 1.7em;
}

    .text-lead strong {
        font-size: 115%;
        font-weight: 500;
    }

.text-muted {
    color: var(--primary-color);
}

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

.texting {
    margin-left: 20px;
    margin-top: 25px;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 50px;
    padding: 6px 15px;
    background-color: var(--light-background-color);
    border: 1px solid var(--grey-color);
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 130px;
    padding-top: 6px;
    padding-bottom: 6px;
}

    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="search"]:focus,
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    textarea:focus,
    select:focus {
        border: 1px solid var(--grey-color);
        outline: 0;
    }

label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline;
    margin-left: .5rem;
    font-weight: normal;
}

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol, ul {
    padding-left: 0;
    margin-top: 0;
}

    ul ul,
    ul ol,
    ol ol,
    ol ul {
        margin: 1.5rem 0 1.5rem 3rem;
        font-size: 90%;
    }

li {
    margin-bottom: 1rem;
}

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    border-radius: 4px;
    background-color: var(--accent-color);
    color: var(--light-color);
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: normal;
}

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
    padding: 12px 15px;
    text-align: left;
}

    th:first-child,
    td:first-child {
        padding-left: 0;
    }

    th:last-child,
    td:last-child {
        padding-right: 0;
    }

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    margin-bottom: 1rem;
}

textarea,
select,
fieldset {
    margin-bottom: 1rem;
}

pre,
blockquote,
dl,
figure {
    margin-bottom: 2rem;
}

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

.list-icon i {
    margin-right: 10px;
}

.list-unstyled {
    list-style: none;
}

.txt-fx .letter {
    opacity: 0;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.overflow-hidden {
    overflow: hidden;
}

.hide {
    display: none !important;
}

/* display flex utilities */
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.justify-content-end {
    -ms-flex-pack: justify !important;
    justify-content: end !important;
}

.justify-content-center {
    -ms-flex-pack: justify !important;
    justify-content: center !important;
}

.justify-content-evenly {
    -ms-flex-pack: justify !important;
    justify-content: space-evenly !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
/* disable selction in section title */
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* -Row Border
------------------------------------------*/

/* -Zoom Effect
------------------------------------------*/
.zoom-effect {
    position: relative;
    overflow: hidden;
}

    .zoom-effect img {
        max-width: 100%;
        -webkit-transition: 0.6s ease-out;
        -moz-transition: 0.6s ease-out;
        transition: 0.6s ease-out;
    }

    .zoom-effect:hover img {
        -webkit-transform: scale(1.1,1.1);
        -moz-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
    }

    .zoom-effect:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        background: rgba(0,0,0,0.3);
        z-index: 2;
        opacity: 0;
        -moz-transition: 0.5s ease;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
    }

    .zoom-effect:hover:before {
        opacity: 1;
        cursor: pointer;
    }


/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
    background-image: none;
    background: var(--dark-color);
    text-decoration: none !important;
    display: inline-block;
    position: relative;
    border: 2px solid transparent;
    border-radius: 0;
    padding: 0.75em 1.5em;
    margin-top: 15px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color);
    z-index: 1;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .btn:hover,
    .btn:focus,
    input[type="button"]:focus,
    input[type="button"]:hover,
    input[type="submit"]:focus,
    input[type="submit"]:hover,
    input[type="reset"]:focus,
    input[type="reset"]:hover,
    input[type="file"]:focus,
    input[type="file"]:hover,
    button:focus,
    button:hover {
        text-decoration: none;
        outline: 0;
    }

.light .btn:hover {
    color: var(--light-color);
}

.btn:last-child {
    margin-right: 0;
}

.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
    padding: 0.8em 1.8em;
    font-size: 0.65em;
}

.btn.btn-medium {
    padding: 1.1em 3.0em;
    font-size: 1.0em;
}

.btn.btn-large {
    padding: 1.5em 5.5em;
    font-size: 1.3em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
    border-radius: 6px;
}

.btn.btn-pill,
.btn.btn-pill::after {
    border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
    background: transparent;
    text-shadow: none;
    box-shadow: none;
}

    .btn.btn-outline-dark:hover::after,
    .btn.btn-outline-light:hover::after {
        background-color: transparent;
    }

.btn.btn-outline-dark {
    border-color: rgba(0,0,0,1);
    color: var(--dark-color);
}

    .btn.btn-outline-dark:hover {
        background: var(--dark-color);
        color: var(--light-color);
    }

.btn.btn-outline-accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

    .btn.btn-outline-accent:hover {
        background: var(--accent-color);
        color: var(--light-color);
    }

.btn.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: var(--light-color);
}

    .btn.btn-outline-light:hover {
        border-color: rgba(0,0,0,0.5);
        color: var(--dark-color);
    }

.btn.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--dark-color);
}

    .btn.btn-outline-primary:hover {
        border-color: var(--dark-color);
        color: var(--dark-color) !important;
    }

.btn.btn-full {
    display: block;
    margin: .85em 0;
    width: 100%;
    text-align: center;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-dark {
    background: var(--dark-color);
    color: var(--light-color);
}

    .btn.btn-dark:hover {
        background: var(--primary-color);
    }

.btn.btn-light {
    background: var(--light-color);
    color: var(--dark-color);
}

    .btn.btn-light:hover {
        background: var(--dark-color);
        color: var(--light-color);
    }

.btn.btn-grey {
    background: var(--grey-color);
    color: var(--dark-color);
}

    .btn.btn-grey:hover {
        background: var(--primary-color);
        color: var(--light-color);
    }

.btn.btn-accent {
    color: var(--light-color);
    background-color: var(--accent-color);
}

    .btn.btn-accent:hover {
        color: var(--light-color) !important;
        background-color: var(--primary-color);
    }

.btn.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
}

    .btn.btn-primary:hover {
        background-color: var(--dark-color);
        color: var(--light-color);
    }

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
    text-align: left;
    display: block;
}

.btn-center {
    text-align: center;
    display: block;
}

.btn-right {
    text-align: right;
    display: block;
}

/* - Buttons With Arrow
------------------------------------------------------------- */
.btn-wrap {
    font-weight: 500;
    text-transform: capitalize;
    width: fit-content;
}

    .btn-wrap:hover i.icon.icon-arrow-io {
        transform: translate3d(5px,0,0) rotate(-180deg);
    }

    .btn-wrap i.icon.icon-arrow-io {
        display: inline-block;
        font-size: 1.4em;
        transform: rotate(-180deg);
        transition: transform 0.3s ease-out;
    }

/*----------------------------------------------*/
/* 2.11 Images */
/*----------------------------------------------*/

/*--- Image Dimension
-----------------------------------------------*/
img.video-image,
img.post-image,
img.insta-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

img.large-image {
    width: 100%;
    height: 660px;
    object-fit: cover;
}

img.small-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

img.single-image {
    width: 100%;
    height: 810px;
    object-fit: cover;
}

img.brand-image {
    max-width: 100%;
    height: auto;
    margin: 20px;
}

/*--- Image Shape
-----------------------------------------------*/
img.image-rounded {
    border-radius: 10px;
}

img.image-circle {
    border-radius: 50%;
}

/*----------------------------------------------*/
/* 2.12 Section */
/*-----------------------------------------------------------*/

/* site-banner */
/*----------------------------------------------*/
.site-banner {
    text-align: center;
}

    .site-banner h1.page-title {
        font-size: 7.2em;
        font-weight: 800;
        line-height: 1em;
        letter-spacing: -0.02em;
        text-transform: capitalize;
        color: var(--dark-color);
    }

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs {
    color: var(--accent-color);
}

    .breadcrumbs .item {
        text-transform: capitalize;
    }

@media screen and (max-width: 1099px) {
    .site-banner h1.page-title {
        font-size: 6em;
    }
}

@media screen and (max-width: 768px) {
    .site-banner h1.page-title {
        font-size: 4.6em;
    }
}

@media screen and (max-width: 600px) {
    .site-banner h1.page-title {
        font-size: 3.2em;
    }
}

/* Hero section
/*----------------------------------------------*/
.hero-section {
    position: relative;
}

    .hero-section h2 {
        font-size: 1.8em;
        text-transform: none;
    }

/*--- Section Title
-----------------------------------------------*/
.section-header {
    width: 100%;
    padding-bottom: 20px;
}

.section-title {
    font-size: 2.6em;
    font-weight: 700;
}

/*--- Widget Title
-----------------------------------------------*/
h5.widget-title {
    letter-spacing: 0;
    font-size: 1.3em;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
}

/*--- Product Title
-----------------------------------------------*/
h2.product-title {
    font-size: 2.6em;
    margin: 0;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
}

.padding-large {
    padding-top: 7em;
    padding-bottom: 7em;
}

.padding-xlarge {
    padding-top: 9.5em;
    padding-bottom: 9.5em;
}

.padding-2xlarge {
    padding-top: 15em;
    padding-bottom: 15em;
}

/* no padding */
.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-gutter {
    padding: 0 !important;
}

/* no padding and margin */
.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
    margin-top: 3em;
    margin-bottom: 3em;
}

.margin-medium {
    margin-top: 4.5em;
    margin-bottom: 4.5em;
}

.margin-large {
    margin-top: 6em;
    margin-bottom: 6em;
}

.margin-xlarge {
    margin-top: 7.5em;
    margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
    .margin-small,
    .margin-medium,
    .margin-large,
    .margin-xlarge {
        margin-top: 1em;
        margin-bottom: 1em;
    }
}

/* - Section Bg Colors
--------------------------------------------------------------*/
.bg-light {
    background-color: var(--light-color) !important;
}

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

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

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

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

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

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

/* - Content Colors
--------------------------------------------------------------*/
.content-light h1, .content-light h2, .content-light h3, .content-light h4, .content-light h5, .content-light h6 {
    color: var(--light-color);
}

.primary-color h1, .primary-color h2, .primary-color h3, .primary-color h4, .primary-color h5, .primary-color h6 {
    color: var(--primary-color);
}

.content-light a,
.content-light {
    color: var(--light-color);
}

    .content-light a:hover {
        color: var(--light-color);
    }

    .content-light li.menu-item .icon {
        color: var(--light-color);
    }

.content-dark h1, .content-dark h2, .content-dark h3, .content-dark h4, .content-dark h5, .content-dark h6 {
    color: var(--dark-color);
}

.content-dark a,
.content-dark {
    color: var(--dark-color);
}

    .content-dark a:hover {
        color: var(--dark-color);
    }

    .content-dark li.menu-item .icon {
        color: var(--dark-color);
    }

/* - Content Border
--------------------------------------------------------------*/
table.border-bottom tr {
    border-bottom: 1px solid #c7cbd0;
}

.content-light table.border-bottom tr {
    border-bottom: 1px solid #c7cbd0;
}

.border-top {
    border-top: 1px solid rgba(0,0,0,0.125);
}

.content-light .border-top {
    border-top: 1px solid rgba(255,255,255,0.3);
}
/* Basic Table Styling */
.Mtable {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent; /* Transparent background */
    border-collapse: collapse; /* Ensure borders are collapsed */
}

    /* Table Header Styling */
    .Mtable thead {
        background-color: #f8f9fa; /* Light gray background for header */
        color: #495057; /* Dark text color */
    }

        .Mtable thead th {
            padding: 0.75rem;
            vertical-align: middle;
            border-bottom: 2px solid #dee2e6; /* Light border */
        }

    /* Table Row Styling */
    .Mtable tbody tr {
        border-bottom: 1px solid #dee2e6; /* Light border between rows */
    }

    .Mtable tbody td {
        padding: 0.75rem;
        vertical-align: middle;
        text-align: left;
    }

/* Table Borders */
.Mtable-bordered {
    border: 1px solid #dee2e6; /* Light border around the table */
}

    .Mtable-bordered th,
    .Mtable-bordered td {
        border: 1px solid #dee2e6; /* Light border between cells */
    }

/* Table Hover Styling */
.Mtable-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075); /* Light hover effect */
}

/* Table Sm (Small) Size Styling */
.Mtable-sm td,
.Mtable-sm th {
    padding: 0.3rem; /* Smaller padding */
}

/* Table Responsive */
.Mtable-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}


.border-right {
    border-right: 1px solid rgba(0,0,0,0.125);
}

.content-light .border-right {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.border-bottom {
    border-bottom: 1px solid rgba(0,0,0,0.125);
}

.content-light .border-bottom {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.border-left {
    border-left: 1px solid rgba(0,0,0,0.125);
}

.content-light .border-left {
    border-left: 1px solid rgba(255,255,255,0.3);
}

/* - Content Border None
--------------------------------------------------------------*/
.no-border-top {
    border-top: none !important;
}

.no-border-right {
    border-right: none !important;
}

.no-border-bottom {
    border-bottom: none !important;
}

.no-border-left {
    border-left: none !important;
}

/*====================================================================*/
/* 3. EXTENDED TYPOGRAPHY */
/*====================================================================*/
/*----------------------------------------------*/
/* 3.1 Blockquote /Pullquote */
/*----------------------------------------------*/
.single-post .content p:first-child,
.quote blockquote, blockquote,
.single-post .content blockquote p,
.pullquote-right,
.pullquote-left {
    font-family: var(--heading-font);
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
    letter-spacing: 2px;
    font-style: normal;
    margin: 0 0 20px;
    padding: 20px 40px;
}

.pullquote-right, .pullquote-left {
    width: 40%;
}

blockquote cite {
    display: block;
    font-size: 0.8em;
    margin-top: 20px;
    font-style: italic;
}

.pullquote-left {
    float: left;
    margin: 20px 20px 20px 0;
}

.pullquote-right {
    float: right;
    margin: 20px 0 20px 20px;
}

/*----------------------------------------------*/
/* 3.2 Text Highlights */
/*----------------------------------------------*/
.highlight {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1px 5px;
}

/*====================================================================*/
/* 4. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 4.1 General Tabs
--------------------------------------------------------------*/
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:hover, .nav-link:focus {
    color: var(--accent-color);
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

    .nav-tabs .nav-link {
        color: #999;
        padding: 10px 30px;
        margin-bottom: -1px;
        background: none;
        border: 1px solid transparent;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

        .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
            border-color: #e9ecef #e9ecef #dee2e6;
            isolation: isolate;
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            background-color: transparent;
            border-color: transparent;
        }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-item.show .nav-link {
            color: #495057;
            border-color: #dee2e6 #dee2e6 #fff;
        }

    .nav-tabs .dropdown-menu {
        margin-top: -1px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 0.25rem;
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #0d6efd;
    }

.nav-fill > .nav-link,
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

    .nav-fill .nav-item .nav-link,
    .nav-justified .nav-item .nav-link {
        width: 100%;
    }

.bootstrap-tabs .tab-content {
    padding: 20px 0;
}

    .bootstrap-tabs .tab-content > .tab-pane {
        display: none;
    }

    .bootstrap-tabs .tab-content > .active {
        display: block;
    }

/*--------------------------------------------------------------
/** 4.2 Accordions
--------------------------------------------------------------*/
.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
    text-align: left;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-anchor: none;
    background-color: var(--light-background-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-header {
    margin: 0;
}

.accordion-item {
    background-color: var(--light-background-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0;
    }

    .accordion-flush .accordion-item:last-child {
        border-bottom: 0;
    }

    .accordion-flush .accordion-item .accordion-button {
        border-radius: 0;
    }

/*--- Tooltip
-----------------------------------------------*/
.tooltip .tooltip-text {
    width: 120px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: -49px;
    left: -40px;
    z-index: 1;
    padding: 10px 0;
    visibility: hidden;
    border-radius: 20px;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
}


/*====================================================================*/
/* 5. BLOG STYLES */
/*====================================================================*/

/* 5.1 Blog Single Post
------------------------------------------*/
/* breadcrumbs */
.breadcrumbs span {
    display: inline-block;
}

/* 5.2 About Author
------------------------------------------*/
.author-post {
    padding-left: 30px;
}

    .author-post h4 {
        margin: 0;
        font-weight: 700;
        text-transform: none;
    }

/* 5.3 Comments List
------------------------------------------*/
.comment-list .comment-item {
    display: flex;
}

.comment-item .comment-meta {
    display: flex;
    align-items: baseline;
}

.comment-meta span.meta-date {
    font-size: 13px;
    padding-right: 50px;
}

.comments-wrap .child-comments {
    padding-left: 50px;
}

.commentor-image {
    width: 80px;
    height: 80px;
}
/* 5.4 Comments Form
------------------------------------------*/
.comment-respond .comment-form {
    display: flex;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/

/* 6.1 Header
--------------------------------------------------------------*/

/* Preloader */
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999900;
    background: #fff;
}

    .preloader-wrapper .preloader {
        margin: 20% auto 0;
        transform: translateZ(0);
    }

.preloader:before,
.preloader:after {
    content: '';
    position: absolute;
    top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

    .preloader:before {
        left: -3.5em;
        animation-delay: -0.32s;
    }

    .preloader:after {
        left: 3.5em;
    }

@keyframes animation {
    0%, 80%, 100% {
        box-shadow: 0 2em 0 -1em #333;
    }

    40% {
        box-shadow: 0 2em 0 0 #333;
    }
}

/* -- Header Top
--------------------------------------------------------------*/
.secondary-nav,
.secondary-nav p {
    line-height: 2.5em;
}

    .secondary-nav li {
        padding-right: 10px;
    }

        .secondary-nav li:last-child {
            padding-right: 0;
        }

    .secondary-nav a {
        color: var(--accent-color);
    }

        .secondary-nav a:hover {
            color: var(--dark-color);
        }

    .secondary-nav ul,
    .secondary-nav li,
    .secondary-nav p {
        margin-bottom: 0;
    }

@media only screen and (max-width: 768px) {
    .header-contact, .shipping-purchase {
        display: none;
    }
}

/* submenu */
.stellarnav ul ul {
    background: var(--dark-color);
}

    .stellarnav ul ul a {
        color: var(--light-color);
    }

.stellarnav.desktop li.has-sub a {
    padding-right: 30px;
}

.menu-list a.item-anchor {
    text-transform: capitalize;
}

    .menu-list a.item-anchor.active {
        color: var(--primary-color);
    }

    .menu-list a.item-anchor:hover {
        color: var(--primary-color);
    }

.menu-item.has-sub .submenu a.item-anchor {
    padding-right: 15px;
}

.menu-list .submenu a.item-anchor:hover {
    color: var(--light-color);
    background-color: #343434;
}

.menu-list .submenu a.item-anchor.active {
    color: var(--light-color);
    background-color: #343434;
}

/* Search Bar
------------------------------------------------------------- */

/** Search Form
--------------------------------------------------------------*/
.search-form input[type="search"].search-field {
    width: 100%;
    border: 2px solid var(--grey-color);
    transition: ease-in;
    transition-duration: 0.2s;
    border-radius: 50px;
    padding: 10px 40px;
}

    .search-form input[type="search"].search-field:focus {
        border: 2px solid var(--dark-color);
    }

.search-form button {
    position: absolute;
    top: 6px;
    right: 9px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

    .search-popup.is-visible {
        opacity: 1;
        visibility: visible;
        cursor: -webkit-image-set(url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 1x, url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E") 2x), pointer;
        cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"), pointer;
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0s;
    }

.search-popup-container {
    background-color: transparent;
    position: relative;
    top: 50%;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    text-align: center;
    box-shadow: none;
    cursor: default;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.is-visible .search-popup-container {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-popup-form {
    position: relative;
    margin: 0 0 3em 0;
}

    .search-popup-form .form-control {
        padding: 0 0 .375em 0;
        font-size: 2em;
    }

    .search-popup-form #search-popup-submit {
        display: none;
    }

.search-popup .search-popup-close {
    display: block;
    position: absolute;
    top: 2em;
    right: 2em;
    margin: -0.5em;
    padding: 0.5em;
    line-height: 0;
}

    .search-popup .search-popup-close:hover {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .search-popup .search-popup-close i {
        display: block;
        position: relative;
        width: 1em;
        height: 1em;
        fill: rgba(0,0,0,0.5);
    }

    .search-popup .search-popup-close:hover i {
        fill: rgba(0,0,0,1);
    }

.search-popup .cat-list-title {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 0.6em;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-popup .cat-list {
    margin: 0;
    list-style-type: none;
}

.search-popup .cat-list-item {
    display: inline-block;
    margin-bottom: 0;
    letter-spacing: 0.015em;
    font-size: 2em;
}

    .search-popup .cat-list-item a:hover::after {
        height: 1px;
        opacity: 1;
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    .search-popup .cat-list-item::after {
        content: "/";
        padding: 0 5px;
        line-height: 1;
        vertical-align: text-top;
    }

    .search-popup .cat-list-item:last-child::after {
        display: none;
    }

@media only screen and (max-width: 991px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.425em;
    }
}

@media only screen and (max-width: 767px) {
    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}

@media only screen and (max-width: 575px) {
    .search-popup .cat-list-item,
    .search-popup-form .form-control {
        font-size: 1.125em;
    }

    .search-popup .search-popup-close {
        top: 1em;
        right: 1em;
    }
}

.search-popup input[type="search"] {
    font-size: 22px;
    height: 60px;
    padding: 26px;
}

.search-popup .search-form button {
    position: absolute;
    top: 0;
    right: 8px;
    margin: 0;
    padding: 15px;
}

    .search-popup .search-form button i {
        font-size: 29px;
    }

/* - Main Navigation
------------------------------------------------------------- */
#navbar ul.menu-list a {
    color: var(--dark-color);
    font-weight: 500;
    padding-left: 45px;
}

.main-menu .hamburger {
    display: none;
}

.main-menu.stellarnav > ul > li > a {
    padding: 10px 30px;
    font-weight: 500;
    font-size: 17px;
    color: #191919;
}

.stellarnav li a {
    color: var(--dark-color);
    font-weight: 500;
}

.stellarnav li.has-sub > a:after {
    content: none;
}

.stellarnav .menu-toggle,
.stellarnav.mobile.right .close-menu {
    font-size: 0;
}

.stellarnav .icon-close {
    width: 30px;
    height: 30px;
}

.stellarnav .menu-toggle span.bars span {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    margin: 0 0 5px;
    transition: 0.3s ease-in;
}

.stellarnav .menu-toggle:hover span.bars span {
    background: var(--primary-color);
}

.stellarnav.mobile.right > ul {
    z-index: 222;
    background-color: var(--dark-color);
}

.stellarnav.mobile i {
    display: none;
}

.stellarnav.mobile ul {
    color: white;
}

.stellarnav.mobile li a {
    color: var(--light-color);
    border-bottom: 1px solid var(--accent-color);
}

.stellarnav.mobile .submenu li a {
    border-bottom: 1px solid #5e5e5e;
}

.stellarnav.mobile .menu-item.has-sub .submenu {
    background-color: var(--light-color);
}

.stellarnav.mobile .submenu a {
    background-color: #343434;
}

    .stellarnav.mobile .submenu a.active {
        color: var(--primary-color);
    }

.stellarnav .icon-close:after, .stellarnav .icon-close:before {
    width: 30px;
}

.stellarnav a.dd-toggle .icon-plus:after, .stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px var(--light-color);
}

/*----- Billboard
--------------------------------------------------------------*/
#billboard {
    position: relative;
}

    #billboard .button-prev,
    #billboard .button-next {
        font-size: 24px;
        position: absolute;
        top: 0;
        bottom: 0;
        padding: 12px;
        height: fit-content;
        z-index: 2;
        margin: auto;
        padding: 10px;
        background: rgba(255,255,255,0.4);
        color: #191919;
    }

    #billboard .button-prev {
        left: 0;
    }

    #billboard .button-next {
        right: 0;
    }

        #billboard .button-prev:hover,
        #billboard .button-next:hover {
            color: var(--light-color);
            background-color: var(--primary-color);
        }

    #billboard .image-holder img.banner-image {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

.main-swiper .banner-content {
    position: absolute;
    top: 145px;
    z-index: 5;
    width: 100%;
}

.banner-content h2.banner-title {
    font-size: 7.1em;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--dark-color);
}

.banner-content p {
    margin: 35px 0 60px;
}

.main-swiper .swiper-slide {
    height: 90vh;
    min-height: 700px;
}

.main-swiper .container {
    max-width: 1400px;
}

@media screen and (max-width: 1400px) {
    .banner-content h2.banner-title {
        font-size: 5.2em;
    }
}

@media screen and (max-width: 1099px) {
    .banner-content h2.banner-title {
        font-size: 4.9em;
    }
}

@media screen and (max-width: 768px) {
    .banner-content h2.banner-title {
        font-size: 4.5em;
    }
}

@media screen and (max-width: 600px) {
    .banner-content h2.banner-title {
        font-size: 3.1em;
    }
}

/*----- Featured Products Section
--------------------------------------------------------------*/
.product-store .product-item {
    position: relative;
    margin-bottom: 30px;
}

.product-item img.product-image {
    background: var(--light-color);
    border: 1px solid var(--grey-color);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
}

.product-item .cart-concern {
    background: var(--light-color);
    border-radius: 0.3rem;
    height: 40px;
    width: 60%;
    text-align: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 300px;
    z-index: 9;
    transition: 0.5s ease-out;
    padding: 10px 5px 10px 20px;
    opacity: 0;
}

.product-item:hover .cart-concern {
    bottom: 280px;
    opacity: 1;
}

i.icon.icon-arrow-io {
    font-size: 12px;
}

.cart-concern .cart-button button {
    background: none;
    color: var(--dark-color);
    height: auto;
    padding: 0;
    margin: 0;
}

    .cart-concern .cart-button button i.icon {
        color: var(--dark-color);
    }

.product-item .wishlist-btn i.icon.icon-heart {
    font-size: 20px;
    padding-left: 25px;
}

.product-item h3.product-title {
    font-size: 1.4em;
    margin: 0;
}

.product-item .item-price {
    font-size: 1.8em;
}

.swiper.product-swiper {
    position: relative;
    margin-bottom: 30px;
}

.swiper-pagination {
    width: 100%;
    position: inherit;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #E0EAF0;
    opacity: 1;
}

    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #7CA2BB;
        position: relative;
    }

        .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 1px solid #CEDDE7;
            border-radius: 50%;
            top: -6px;
            left: -6px;
        }

/*----- Latest Collection Section
--------------------------------------------------------------*/
.product-collection .collection-item {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.product-collection .product-entry {
    position: absolute;
    bottom: 30px;
}

.product-collection .left-content .product-entry {
    right: 0;
    bottom: 90px;
}

.product-collection .categories {
    text-transform: uppercase;
}

.product-collection .product-entry h3.item-title {
    font-size: 4.4em;
    line-height: 1;
    font-weight: 900;
}

.product-collection .product-entry p {
    width: 80%;
}

.product-collection .right-content h3.item-title {
    font-size: 3.2em;
    width: 80%;
    margin: 0;
}

.product-collection .right-content .product-entry {
    left: 60px;
}

@media screen and (max-width: 1200px) {
    #latest-collection .right-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 991px) {
    #latest-collection .right-content {
        flex-wrap: wrap;
    }

    .product-collection .left-content .product-entry,
    .product-collection .right-content .product-entry {
        left: 0;
        right: 0;
        margin: auto;
        width: 75%;
    }

    .product-collection .left-content h3.item-title {
        font-size: 2.2em;
    }
}

@media screen and (max-width: 767px) {
    .product-collection .left-content .product-entry {
        width: 100%;
    }
}

/*----- Subscribe Section
--------------------------------------------------------------*/
#subscribe .block-text {
    width: 50%;
}

#subscribe p {
    font-size: 1em;
}

#subscribe .subscribe-content {
    width: 45%;
    margin-top: 35px;
}

    #subscribe .subscribe-content input[type="text"] {
        width: 100%;
        height: 65px;
        background: var(--light-grey-color);
        border: 1px solid var(--grey-color);
        border-radius: 4px 0 0 4px;
        padding-left: 25px;
        margin-bottom: 0;
    }

    #subscribe .subscribe-content button {
        font-weight: 700;
        margin: 0;
    }

        #subscribe .subscribe-content button:hover {
            background: var(--primary-color);
        }

@media screen and (max-width: 1599px) {
    #subscribe .block-text {
        width: 80%;
    }

    #subscribe .subscribe-content {
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    #subscribe .block-text {
        width: 100%;
    }

    #subscribe .subscribe-content {
        width: 100%;
    }

        #subscribe .subscribe-content button {
            width: 100%;
            margin-top: 20px;
            padding: 24px 0;
        }

        #subscribe .subscribe-content #form {
            flex-wrap: wrap;
        }
}

/*----- Best selling products Section
--------------------------------------------------------------*/
.tab-content {
    position: relative;
}

[data-tab-content] {
    opacity: 0;
    visibility: hidden;
    display: grid;
    transition: cubic-bezier(0.22, 0.78, 0.71, 1.01);
    transition-duration: 0.8s;
}

.active[data-tab-content] {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

    .tabs .tab {
        font-weight: 500;
        color: var(--dark-grey-color);
        margin-right: 50px;
        cursor: pointer;
        transition: 0.2s all;
    }

        .tabs .tab.active,
        .tabs .tab:hover {
            color: var(--primary-color);
        }

@media screen and (max-width: 991px) {
    #selling-products .tabs {
        flex-wrap: unset;
        overflow-x: scroll;
    }
}

/*----- Testimonials Section
--------------------------------------------------------------*/
#testimonials .container {
    max-width: 1400px;
}

#testimonials .reviews-content {
    position: relative;
}

.review-icon i.icon.icon-right-quote {
    font-size: 9em;
    color: var(--grey-color);
}

#testimonials .testimonial-detail {
    padding-left: 20px;
}

    #testimonials .testimonial-detail p {
        font-size: 1.3em;
        color: var(--dark-color);
    }

.testimonial-detail .author-detail .name {
    font-weight: 700;
    color: var(--primary-color);
}

#testimonials .swiper-arrows {
    position: absolute;
    left: 0;
}

.swiper-arrows button {
    font-size: 1em;
    font-weight: 600;
    color: var(--dark-grey-color);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    left: 23px;
}

.swiper-arrows i.icon:hover {
    color: var(--primary-color);
}

/*----- Sales Offer Section
--------------------------------------------------------------*/
.product-item .item-price del {
    color: var(--grey-color);
    font-size: 0.6em;
    padding-right: 10px;
}

#flash-sales {
    position: relative;
}

    #flash-sales .product-item .discount {
        font-weight: 500;
        color: var(--light-color);
        width: 100px;
        text-align: center;
        background: var(--primary-color);
        position: absolute;
        top: 20px;
        left: 20px;
    }

/*----- Shoppify section banner Section
--------------------------------------------------------------*/
.shoppify-section-banner img {
    object-position: top;
}

@media screen and (max-width: 1199px) {
    .shoppify-section-banner img {
        opacity: 0.3;
    }
}

/*----- Quotation Section
--------------------------------------------------------------*/
#quotation blockquote {
    width: 50%;
    margin: 0 auto;
    padding: 0;
}

#quotation q {
    display: block;
    padding: 50px 0;
}

#quotation .author-name {
    font-size: 0.7em;
    font-weight: 600;
}

/*----- Latest Blog Section
--------------------------------------------------------------*/
#latest-blog article.post-item,
#latest-blog .image-holder {
    margin-bottom: 30px;
}

#latest-blog .image-holder {
    border-radius: 4px;
}

#latest-blog .meta-date {
    padding-bottom: 20px;
    margin-right: 30px;
    color: var(--dark-grey-color);
}

    #latest-blog .meta-date .meta-day {
        font-size: 4em;
        line-height: 1;
        font-weight: 200;
    }

    #latest-blog .meta-date .meta-month {
        line-height: 1.4;
        font-weight: 600;
        color: var(--dark-grey-color);
    }

#latest-blog h3.post-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

a.blog-categories {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
}

    a.blog-categories:hover {
        color: var(--primary-color);
    }

@media screen and (max-width: 1599px) {
    #latest-blog .meta-date {
        margin-right: 15px;
    }

        #latest-blog .meta-date .meta-day {
            font-size: 2.4em;
        }

    #latest-blog h3.post-title {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 991px) {
    #latest-blog .meta-date .meta-day {
        font-size: 3em;
    }

    #latest-blog h3.post-title {
        font-size: 1.5em;
    }
}

/*----- Instagram Section
--------------------------------------------------------------*/
#instagram p {
    font-size: 1.1em;
}

#instagram figure {
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

    #instagram figure i.icon {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        color: var(--light-color);
        opacity: 0;
        transition: 0.8s all;
    }

    #instagram figure:hover i.icon {
        opacity: 1;
    }

/*----- Icon Box Section
--------------------------------------------------------------*/
#shipping-information {
    padding-bottom: 100px;
}

    #shipping-information .icon-box {
        display: flex;
        align-items: baseline;
        border-right: 1px solid #EAEAEA;
        padding-right: 50px;
        margin-right: 50px;
    }

        #shipping-information .icon-box:last-child {
            border-right: none;
            padding-right: 0;
            margin-right: 0;
        }

        #shipping-information .icon-box i.icon {
            font-size: 1.5em;
            color: var(--primary-color);
            padding-right: 15px;
        }

.icon-box h4.block-title {
    line-height: 1.2;
    font-weight: 400;
    margin: 20px 0;
}

/*----- Footer Section
--------------------------------------------------------------*/
#footer .footer-menu {
    margin-right: 50px;
}

.footer-menu-list {
    padding-top: 20px;
}

.footer-menu ul.menu-list a {
    color: var(--accent-color);
}

    .footer-menu ul.menu-list a:hover {
        color: var(--primary-color);
    }

.footer-menu a.email {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.social-links li {
    padding-right: 20px;
}

/*----- Footer Bottom Section
--------------------------------------------------------------*/
#footer-bottom {
    margin-bottom: 30px;
}

    #footer-bottom p {
        margin-bottom: 0;
    }

.payment-method {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .payment-method img {
        object-fit: contain;
        height: fit-content;
    }

/*--------------------------------------------------------------
/* 7. OTHER PAGES 
--------------------------------------------------------------*/

/* 7.1 About Page
--------------------------------------------------------------*/
#about-us .about-image {
    border-radius: 8px;
}

#about-us .detail {
    padding: 0 60px;
}

@media screen and (max-width: 992px) {
    #about-us .detail {
        padding: 0;
    }
}

/* 7.2 Product Detail
--------------------------------------------------------------*/

/* ------ Quantity ------*/
.qty-number .increment-button,
.qty-number .decrement-button {
    background: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--grey-color);
    display: flex;
    text-align: center;
    cursor: pointer;
}

    .qty-number .increment-button:hover,
    .qty-number .decrement-button:hover {
        background: var(--light-grey-color);
    }

.qty-number input {
    width: 55px;
    text-align: center;
    margin: 0 10px;
    border-radius: 0;
    border: 1px solid var(--grey-color);
}

/* 7.3 Shop Page & Blog Page
--------------------------------------------------------------*/

/* ------ Sidebar ------*/
.shopify-grid .sidebar .widgets,
.post-grid .sidebar .widgets {
    margin-bottom: 40px;
}

.shopify-grid input[type="text"],
.post-grid input[type="text"] {
    width: 100%;
    height: 65px;
    background-color: var(--light-grey-color);
    border: 1px solid var(--grey-color);
    border-radius: 4px 0 0 4px;
    padding-left: 25px;
    margin-bottom: 0;
}

.shopify-grid .widget-search-bar .btn,
.post-grid .widget-search-bar .btn {
    margin: 0;
}

.post-grid .card-image {
    margin-bottom: 10px;
}

/* ------ Pagination ------*/
.pagination .page-numbers,
.pagination .pagination-arrow {
    margin: 0 10px;
}

.pagination .page-numbers {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    padding: 0 10px;
    line-height: 1.4;
    transition: 0.9s all;
    border-radius: 8px;
}

    .pagination .page-numbers:hover,
    .pagination .page-numbers.current {
        color: var(--light-color);
        background-color: var(--primary-color);
    }

.pagination i.icon {
    font-size: 1.5em;
}

/** 7.4 Shop List Page
--------------------------------------------------------------*/
.shopify-list .product-detail,
.shopify-list .action-buttons {
    margin-top: 20px;
}

    .shopify-list .product-detail p {
        margin-top: 10px;
    }

/** 7.5 Single Product
--------------------------------------------------------------*/
.single-product .large-swiper {
    padding-left: 0;
}

.product-preview .swiper-slide {
    padding-bottom: 15px;
    padding-right: 15px;
    transition: cubic-bezier(0.22, 0.78, 0.71, 1.01);
}

.single-product .large-swiper .swiper-slide {
    padding-right: 0;
}

.swiper-slide-thumb-active img {
    border: 1px solid var(--accent-color);
}

/*---- Single Product Information ----------*/
.product-info .item-title {
    margin-right: 20px;
}

.rating-container .rating {
    padding-right: 10px;
    color: var(--dark-color);
    font-size: 1em;
}

.product-info .product-price strong {
    font-size: 1.6em;
    color: var(--primary-color);
    padding-right: 10px;
}

.product-info .select-item {
    margin-right: 20px;
}

/*---- Product Tabs ----------*/
.product-tabs .nav-link {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-tabs .nav-link:focus {
    box-shadow: none;
}

.nav-tabs .nav-link {
    padding: 10px 30px;
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
}

.product-tabs button.nav-link.active {
    color: var(--dark-color);
}

.tabs-listing .tab-content {
    padding: 40px 0;
    border-bottom: 1px solid #dee2e6;
}

    .tabs-listing .tab-content > .tab-pane {
        display: none;
    }

    .tabs-listing .tab-content > .active {
        display: block;
    }

.product-tabs .review-item {
    width: 50%;
    margin-bottom: 20px;
}

    .product-tabs .review-item .image-holder {
        margin-right: 10px;
    }

.product-tabs .review-header {
    color: var(--dark-color);
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .product-tabs .review-item {
        width: 100%;
        flex-wrap: wrap;
    }

        .product-tabs .review-item .image-holder {
            margin-bottom: 10px;
        }
}

/** 7.6 Single Post Page
--------------------------------------------------------------*/
.main-content .post-meta {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--accent-color);
}

.main-content .feature-image {
    margin-bottom: 20px;
}

.main-content .post-tags li {
    margin-right: 10px;
}

.main-content .element-title {
    margin-right: 10px;
}

#single-post-navigation a {
    flex-direction: column;
}

    #single-post-navigation a h3 {
        margin: 0;
        transition: all 0.3s ease-in;
    }

    #single-post-navigation a:hover h3.page-nav-title {
        color: var(--primary-color);
    }

/** 7.7 Cart Page
--------------------------------------------------------------*/
@media screen and (max-width: 991px) {
    .shopify-cart .cart-header {
        display: none;
    }
}

/** 7.8 Wishlist Page
--------------------------------------------------------------*/
@media screen and (max-width: 991px) {
    .wishlist .cart-header {
        display: none;
    }
}

/** 7.9 Checkout Page
--------------------------------------------------------------*/
.checkout-wrap .form-group input.form-control,
.checkout-wrap .form-group select,
.checkout-wrap .form-group textarea {
    width: 100%;
}

.checkout-wrap .form-group .list-group-item {
    align-items: baseline;
}

    .checkout-wrap .form-group .list-group-item input {
        margin-right: 4px;
    }

    .checkout-wrap .form-group .list-group-item p {
        font-weight: 400;
    }

.form-group {
    margin-bottom: 1rem;
}
/** 7.10 Home2 Page
--------------------------------------------------------------*/
/** Billboard
--------------------------------------------------------------*/
#billboard .two-column-swiper {
    position: relative;
}

    #billboard .two-column-swiper .banner-content h1.element-title {
        font-size: 3.7em;
        font-weight: 100;
    }

    #billboard .two-column-swiper .banner-item {
        display: flex;
        align-items: center;
    }

    #billboard .two-column-swiper .banner-content {
        text-align: center;
    }

        #billboard .two-column-swiper .banner-content p {
            width: 80%;
            margin: 0 auto 30px;
        }

        #billboard .two-column-swiper .banner-content .btn-wrap {
            margin: auto;
        }

    #billboard .two-column-swiper .swiper-slide {
        opacity: 0;
        transition: ease-in-out;
        transition-duration: 0.9s;
    }

        #billboard .two-column-swiper .swiper-slide.swiper-slide-active {
            opacity: 1;
        }

#billboard .two-column-swiper-slider {
    margin-top: 30px;
}

#billboard .two-column-swiper .button-prev,
#billboard .two-column-swiper .button-next {
    position: unset;
    font-size: 24px;
    padding: 20px;
    height: fit-content;
    background: rgba(255,255,255,0.4);
    color: #191919;
    margin: 0;
    border: 2px solid var(--dark-color);
}

    #billboard .two-column-swiper .button-prev:hover,
    #billboard .two-column-swiper .button-next:hover {
        color: var(--light-color);
        background-color: var(--dark-color);
        border: 2px solid var(--dark-color);
    }

#billboard .two-column-swiper .button-prev {
    margin-right: 10px;
}

@media screen and (max-width: 991px) {
    #billboard .two-column-swiper .banner-item {
        display: block;
    }
}

/** Video Section
--------------------------------------------------------------*/
.site-banner {
    position: relative;
}

.video .video-player {
    position: absolute;
}

.video .video-player {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video .video-player i.icon {
        color: #fff;
        font-size: 50px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media (max-width: 600px) {
    .video .video-player img.text-pattern {
        width: 60%;
        display: flex;
        margin: 0 auto;
    }
}

/** Categories
--------------------------------------------------------------*/
section.categories .category-content {
    margin-bottom: 30px;
}

    section.categories .category-content a {
        font-size: 1.3em;
        font-weight: 800;
    }

/** 7.11 Coming Soon Page
--------------------------------------------------------------*/
#countdown-clock {
    margin: 2% 20%;
}

.coming-soon .time {
    font-size: 60px;
    font-weight: 400;
}

    .coming-soon .time span {
        color: var(--dark-color);
    }

    .coming-soon .time small {
        font-size: 30px;
    }

.coming-soon .btn-wrap {
    margin: auto;
}

.coming-soon .subscribe-content {
    margin: auto;
}

/** 7.12 Login Page
--------------------------------------------------------------*/
.login-tabs .tab-pane {
    max-width: 600px;
    margin: auto;
}

/** 7.13 Error Page
--------------------------------------------------------------*/
.error-page {
    position: relative;
}

    .error-page img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
    }

    .error-page .page-content {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

        .error-page .page-content h1,
        .error-page .page-content p {
            color: var(--light-color);
        }

        .error-page .page-content .btn-wrap {
            margin: auto;
        }

/* 7.14 Styles Page
--------------------------------------------------------------*/
.jarallax.min-height300 {
    min-height: 300px;
}
/*
- Jarallax
- Bootstrap Grid
- Color Box
- Stellar Nav
- Swiper 9.3.1
- Colorbox Lightbox
*/

/*--------------------------------------------------------------
/** Jarallax
--------------------------------------------------------------*/
.jarallax {
    position: relative;
    z-index: 0;
    min-height: 520px;
}

    .jarallax > .jarallax-img {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.jarallax-keep-img {
    position: relative;
    z-index: 0;
}

    .jarallax-keep-img > .jarallax-img {
        position: relative;
        display: block;
        max-width: 100%;
        height: auto;
        z-index: -100;
    }

/*--------------------------------------------------------------
/** Bootstrap Grid
--------------------------------------------------------------*/
.container {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/*@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1480px;
  }
}*/
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media only screen and (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

/* tab-content*/
.tab-content {
    position: relative;
}

    .tab-content .grid {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

[data-tab-content] {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.active[data-tab-content] {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
}

    .tabs .tab {
        font-weight: 400;
        color: #053634;
        cursor: pointer;
    }

        .tabs .tab.active,
        .tabs .tab:hover {
            color: #2e3dd3;
        }

/* Stellar Nav - jQuery Menu */
.stellarnav, .stellarnav li {
    position: relative;
    line-height: normal
}

.stellarnav {
    width: 100%;
    z-index: 9900
}

    .stellarnav a {
        color: #777
    }

    .stellarnav ul {
        margin: 0;
        padding: 0;
        text-align: center
    }

    .stellarnav li {
        list-style: none;
        display: block;
        margin: 0;
        padding: 0;
        vertical-align: middle
    }

        .stellarnav li a {
            padding: 15px;
            display: block;
            text-decoration: none;
            color: #777;
            font-size: inherit;
            font-family: inherit;
            box-sizing: border-box;
            -webkit-transition: all .3s ease-out;
            -moz-transition: all .3s ease-out;
            transition: all .3s ease-out
        }

    .stellarnav.light a, .stellarnav.light li a {
        color: #000
    }

    .stellarnav > ul > li {
        display: inline-block
    }

        .stellarnav > ul > li > a {
            padding: 20px 40px
        }

    .stellarnav ul ul {
        top: auto;
        width: 220px;
        position: absolute;
        z-index: 9900;
        text-align: left;
        display: none;
        background: #ddd
    }

    .stellarnav.light, .stellarnav.light ul ul {
        background: rgba(255,255,255,1)
    }

    .stellarnav li li {
        display: block
    }

    .stellarnav ul ul ul {
        top: 0;
        left: 220px
    }

    .stellarnav > ul > li:hover > ul > li:hover > ul {
        opacity: 1;
        visibility: visible;
        top: 0
    }

    .stellarnav > ul > li.drop-left > ul {
        right: 0
    }

    .stellarnav li.drop-left ul ul {
        left: auto;
        right: 220px
    }

    .stellarnav.dark, .stellarnav.dark ul ul {
        background: rgba(0,0,0,1)
    }

        .stellarnav.dark a, .stellarnav.dark li a {
            color: #FFF
        }

    .stellarnav.fixed {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999
    }

body.stellarnav-noscroll-x {
    overflow-x: hidden
}

.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFF;
    display: inline-block
}

.stellarnav .dd-toggle, .stellarnav li.call-btn-mobile, .stellarnav li.location-btn-mobile, .stellarnav.hide-arrows li li.has-sub > a:after, .stellarnav.hide-arrows li.drop-left li.has-sub > a:after, .stellarnav.hide-arrows li.has-sub > a:after {
    display: none
}

.stellarnav li li.has-sub > a:after {
    margin-left: 10px;
    float: right;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #FFF;
    position: relative;
    top: 4px
}

.stellarnav li.drop-left li.has-sub > a:after {
    float: left;
    margin-right: 10px;
    border-left: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #FFF
}

.stellarnav .call-btn-mobile, .stellarnav .close-menu, .stellarnav .location-btn-mobile, .stellarnav .menu-toggle {
    display: none;
    text-transform: uppercase;
    text-decoration: none
}

.stellarnav .dd-toggle {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    z-index: 9999;
    border: 0
}

.stellarnav.desktop li.has-sub a {
    padding-right: 5px
}

.stellarnav.desktop.hide-arrows li.has-sub a {
    padding-right: 15px
}

.stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 0
}

.stellarnav svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
    position: relative;
    top: 2px
}

.stellarnav a.dd-toggle .icon-plus {
    box-sizing: border-box;
    transition: transform .3s;
    width: 12px;
    height: 100%;
    position: relative;
    vertical-align: middle;
    display: inline-block
}

    .stellarnav a.dd-toggle .icon-plus:after, .stellarnav a.dd-toggle .icon-plus:before {
        content: '';
        display: block;
        height: 0;
        top: 50%;
        border-bottom: solid 3px #777;
        position: absolute;
        width: 12px
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        transform: rotate(90deg);
        transition: width .3s
    }

.stellarnav li.open > a.dd-toggle .icon-plus {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg)
}

.stellarnav.light a.dd-toggle .icon-plus:after, .stellarnav.light a.dd-toggle .icon-plus:before {
    border-color: #000
}

.stellarnav.dark a.dd-toggle .icon-plus:after, .stellarnav.dark a.dd-toggle .icon-plus:before {
    border-color: #FFF
}

.stellarnav .icon-close {
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block
}

    .stellarnav .icon-close:after, .stellarnav .icon-close:before {
        content: '';
        display: block;
        width: 12px;
        height: 0;
        top: 50%;
        border-bottom: solid 3px #777;
        position: absolute
    }

    .stellarnav .icon-close:before {
        transform: rotate(45deg)
    }

    .stellarnav .icon-close:after {
        transform: rotate(-45deg)
    }

.stellarnav.light .icon-close:after, .stellarnav.light .icon-close:before {
    border-color: #000
}

.stellarnav.dark .icon-close:after, .stellarnav.dark .icon-close:before {
    border-color: #FFF
}

.stellarnav .call-btn-mobile, .stellarnav .close-menu, .stellarnav .location-btn-mobile, .stellarnav .menu-toggle {
    padding: 15px;
    box-sizing: border-box
}

    .stellarnav .menu-toggle span.bars {
        display: inline-block;
        margin-right: 7px;
        position: relative;
        top: 3px
    }

        .stellarnav .menu-toggle span.bars span {
            display: block;
            width: 15px;
            height: 2px;
            border-radius: 6px;
            background: #777;
            margin: 0 0 3px
        }

.stellarnav .full {
    width: 100%
}

.stellarnav .half {
    width: 50%
}

.stellarnav .third {
    width: 33%;
    text-align: center
}

.stellarnav .location-btn-mobile.third {
    text-align: center
}

.stellarnav .location-btn-mobile.half {
    text-align: right
}

.stellarnav.light .half, .stellarnav.light .third {
    border-left: 1px solid rgba(0,0,0,.15)
}

.stellarnav.light.left .half, .stellarnav.light.left .third, .stellarnav.light.right .half, .stellarnav.light.right .third {
    border-bottom: 1px solid rgba(0,0,0,.15)
}

.stellarnav.light .half:first-child, .stellarnav.light .third:first-child {
    border-left: 0
}

.stellarnav.dark .half, .stellarnav.dark .third {
    border-left: 1px solid rgba(255,255,255,.15)
}

.stellarnav.dark.left .half, .stellarnav.dark.left .third, .stellarnav.dark.right .half, .stellarnav.dark.right .third {
    border-bottom: 1px solid rgba(255,255,255,.15)
}

.stellarnav.dark.left .menu-toggle, .stellarnav.dark.right .menu-toggle, .stellarnav.light.left .menu-toggle, .stellarnav.light.right .menu-toggle {
    border-bottom: 0
}

.stellarnav.dark .half:first-child, .stellarnav.dark .third:first-child {
    border-left: 0
}

.stellarnav.light .menu-toggle span.bars span {
    background: #000
}

.stellarnav.dark .menu-toggle span.bars span {
    background: #FFF
}

.stellarnav.mobile, .stellarnav.mobile.fixed {
    position: static
}

    .stellarnav.mobile ul {
        position: relative;
        display: none;
        text-align: left;
        background: rgba(221,221,221,1)
    }

    .stellarnav.mobile.active > ul, .stellarnav.mobile > ul > li {
        display: block
    }

    .stellarnav.mobile.active {
        padding-bottom: 0
    }

    .stellarnav.mobile > ul > li > a {
        padding: 15px
    }

    .stellarnav.mobile ul ul {
        position: relative;
        opacity: 1;
        visibility: visible;
        width: auto;
        display: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: color 0 ease-in;
        transition: none
    }

        .stellarnav.mobile ul ul ul {
            left: auto;
            top: auto
        }

    .stellarnav.mobile li.drop-left ul ul {
        right: auto
    }

    .stellarnav.mobile li a {
        border-bottom: 1px solid rgba(255,255,255,.15)
    }

    .stellarnav.mobile > ul {
        border-top: 1px solid rgba(255,255,255,.15)
    }

    .stellarnav.mobile.light li a {
        border-bottom: 1px solid rgba(0,0,0,.15)
    }

    .stellarnav.mobile.light > ul {
        border-top: 1px solid rgba(0,0,0,.15)
    }

    .stellarnav.mobile li a.dd-toggle, .stellarnav.mobile.light li a.dd-toggle {
        border: 0
    }

    .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .close-menu, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .location-btn-mobile, .stellarnav.mobile .menu-toggle {
        display: inline-block
    }

    .stellarnav.mobile li.call-btn-mobile {
        border-right: 1px solid rgba(255,255,255,.1);
        box-sizing: border-box
    }

    .stellarnav.mobile li.call-btn-mobile, .stellarnav.mobile li.location-btn-mobile {
        display: inline-block;
        width: 50%;
        text-transform: uppercase;
        text-align: center
    }

        .stellarnav.mobile li.call-btn-mobile.full, .stellarnav.mobile li.location-btn-mobile.full {
            display: block;
            width: 100%;
            text-transform: uppercase;
            border-right: 0;
            text-align: left
        }

    .stellarnav.mobile.light ul {
        background: rgba(255,255,255,1)
    }

    .stellarnav.mobile.dark ul {
        background: rgba(0,0,0,1)
    }

        .stellarnav.mobile.dark ul ul {
            background: rgba(255,255,255,.08)
        }

    .stellarnav.mobile.light li.call-btn-mobile {
        border-right: 1px solid rgba(0,0,0,.1)
    }

    .stellarnav.mobile.top {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999
    }

    .stellarnav.mobile li li.has-sub > a:after, .stellarnav.mobile li.drop-left li.has-sub > a:after, .stellarnav.mobile li.has-sub > a:after {
        display: none
    }

    .stellarnav.mobile.left > ul, .stellarnav.mobile.right > ul {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 280px;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .stellarnav.mobile.right > ul {
        right: 0
    }

    .stellarnav.mobile.left .close-menu, .stellarnav.mobile.right .close-menu {
        display: inline-block;
        text-align: right
    }

    .stellarnav.mobile.left > ul {
        left: 0
    }

    .stellarnav.mobile.left .call-btn-mobile.half, .stellarnav.mobile.left .call-btn-mobile.third, .stellarnav.mobile.left .close-menu.half, .stellarnav.mobile.left .close-menu.third, .stellarnav.mobile.left .location-btn-mobile.half, .stellarnav.mobile.left .location-btn-mobile.third, .stellarnav.mobile.right .call-btn-mobile.half, .stellarnav.mobile.right .call-btn-mobile.third, .stellarnav.mobile.right .close-menu.half, .stellarnav.mobile.right .close-menu.third, .stellarnav.mobile.right .location-btn-mobile.half, .stellarnav.mobile.right .location-btn-mobile.third {
        text-align: center
    }

    .stellarnav.mobile.left .menu-toggle.half, .stellarnav.mobile.left .menu-toggle.third, .stellarnav.mobile.right .menu-toggle.half, .stellarnav.mobile.right .menu-toggle.third {
        text-align: left
    }

    .stellarnav.mobile.left .close-menu.third span, .stellarnav.mobile.right .close-menu.third span {
        display: none
    }

.stellarnav.desktop li.mega ul ul {
    background: 0 0;
    width: auto
}

.stellarnav.desktop li.mega li {
    display: inline-block;
    vertical-align: top;
    margin-left: -4px
}

    .stellarnav.desktop li.mega li li {
        display: block;
        position: relative;
        left: 4px
    }

.stellarnav.desktop > ul > li.mega {
    position: inherit
}

    .stellarnav.desktop > ul > li.mega > ul {
        width: 100%
    }

        .stellarnav.desktop > ul > li.mega > ul li.has-sub ul {
            display: block;
            position: relative;
            left: auto
        }

        .stellarnav.desktop > ul > li.mega > ul > li {
            padding-bottom: 15px;
            box-sizing: border-box
        }

.stellarnav.desktop li.mega li li a {
    padding: 5px 15px
}

.stellarnav.desktop li.mega li.has-sub a:after {
    display: none
}

.stellarnav.desktop > ul > li.mega > ul > li > a {
    color: #ff0
}

@media only screen and (max-width :768px) {
    .stellarnav {
        overflow: hidden;
        display: block
    }

        .stellarnav ul {
            position: relative;
            display: none
        }
}

@media only screen and (max-width :420px) {
    .stellarnav.mobile .call-btn-mobile.third span, .stellarnav.mobile .location-btn-mobile.third span {
        display: none
    }
}

/**
 * Swiper 9.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 10, 2023
 */

@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper, swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px,0,0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide, swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

    .swiper-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform,height
    }

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

    .swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
        transform-style: preserve-3d
    }

    .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-3d .swiper-slide-shadow {
        background: rgba(0,0,0,.15)
    }

    .swiper-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

    .swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none
    }

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
}

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        content: 'prev'
    }

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: 'next'
    }

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

    .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
        display: none !important
    }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: var(--swiper-pagination-right,8px);
    left: var(--swiper-pagination-left,auto);
    top: 50%;
    transform: translate3d(0px,-50%,0)
}

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
        display: block
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: .2s transform,.2s top
        }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: .2s transform,.2s left
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color,inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color,var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size,4px);
    left: 0;
    top: 0
}

    .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
        width: var(--swiper-pagination-progressbar-size,4px);
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    position: relative;
    -ms-touch-action: none;
    background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))
}

    .swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important
    }

    .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: var(--swiper-scrollbar-sides-offset,1%);
        bottom: var(--swiper-scrollbar-bottom,4px);
        top: var(--swiper-scrollbar-top,auto);
        z-index: 50;
        height: var(--swiper-scrollbar-size,4px);
        width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
    }

    .swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
        position: absolute;
        left: var(--swiper-scrollbar-left,auto);
        right: var(--swiper-scrollbar-right,4px);
        top: var(--swiper-scrollbar-sides-offset,1%);
        z-index: 50;
        width: var(--swiper-scrollbar-size,4px);
        height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));
    border-radius: var(--swiper-scrollbar-border-radius,10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification, swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

    .swiper-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-cube.swiper-rtl .swiper-slide {
        transform-origin: 100% 0
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: .6;
        z-index: 0
    }

        .swiper-cube .swiper-cube-shadow:before {
            content: '';
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            filter: blur(50px)
        }

.swiper-flip {
    overflow: visible
}

    .swiper-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform,opacity,height
}

.swiper-cards {
    overflow: visible
}

    .swiper-cards .swiper-slide {
        transform-origin: center bottom;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden
    }

/*--------------------------------------------------------------
/** Colorbox Lightbox
--------------------------------------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}

#cboxWrapper {
    max-width: none;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
}

#cboxContent {
    position: relative;
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#cboxTitle {
    margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic;
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
    background: #000;
}

#colorbox {
    outline: 0;
}

#cboxContent {
    margin-top: 20px;
    background: #000;
}

.cboxIframe {
    background: #fff;
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc;
}

#cboxLoadedContent {
    border: 5px solid #000;
    background: #fff;
}

#cboxTitle {
    position: absolute;
    top: -20px;
    left: 0;
    color: #ccc;
}

#cboxCurrent {
    position: absolute;
    top: -20px;
    right: 0px;
    color: #ccc;
}

#cboxLoadingGraphic {
    background: url(../images/colorbox/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: none;
}

    /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
    #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
        outline: 0;
    }

#cboxSlideshow {
    position: absolute;
    top: -20px;
    right: 90px;
    color: #fff;
}

#cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -32px;
    background: url(../images/colorbox/controls.png) no-repeat top left;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
}

    #cboxPrevious:hover {
        background-position: bottom left;
    }

#cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -32px;
    background: url(../images/colorbox/controls.png) no-repeat top right;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
}

    #cboxNext:hover {
        background-position: bottom right;
    }

#cboxClose {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    background: url(../images/colorbox/controls.png) no-repeat top center;
    width: 38px;
    height: 19px;
    text-indent: -9999px;
}

    #cboxClose:hover {
        background-position: bottom center;
    }


.cardBody {
    background: #e7e6e6;
    min-height: 100vh;
    vertical-align: middle;
    display: flex;
    font-family: sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
}

.title {
    margin-bottom: 5vh;
}

.card {
    margin: auto;
    max-width: 950px;
    width: 90%;
    box-shadow: 12px 16px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    border: transparent;
}

.cart {
    background-color: #fff;
    padding: 4vh 5vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}

.summary {
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 4vh;
    color: rgb(65, 65, 65);
}

@media(max-width:767px) {
    .summary {
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem;
    }
}

.summary .col-2 {
    padding: 0;
}

.summary .col-10 {
    padding: 0;
}

.roww {
    margin: 0;
}

.cardRow {
    display: flex;
}

.title b {
    font-size: 1.5rem;
}

.main {
    margin: 0;
    padding: 2vh 0;
    width: 100%;
}

.col-2, .col {
    padding: 5px 4vh;
}

a {
    padding: 0 1vh;
}

.close {
    margin-left: auto;
    font-size: 0.7rem;
}

.img {
    width: 3.5rem;
}

.back-to-shop {
    margin-top: 4.5rem;
}

h5 {
    margin-top: 4vh;
}

.select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.form {
    margin-top: 10px;
}

.input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

    .input:focus::-webkit-input-placeholder {
        color: transparent;
    }

.btnn {
    background-color: #000;
    border-color: #000;
    color: white;
    width: 100%;
    font-size: 0.7rem;
    padding: 1vh;
    border-radius: 0;
}

    .btnn:focus {
        box-shadow: none;
        outline: none;
        box-shadow: none;
        color: white;
        -webkit-box-shadow: none;
        -webkit-user-select: none;
        transition: none;
    }

    .btnn:hover {
        color: white;
    }

.a {
    color: black;
}

    .a:hover {
        color: black;
        text-decoration: none;
    }

#code {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253), rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}

.form {
    width: 60%;
    margin-left: 20%;
    background-color: #fff;
    padding: 20px;
    border-radius: 1rem;
    box-shadow: 12px 16px 5px 5px rgba(0, 0, 0, 0.2)
}

.box {
    background-color: var(--light-grey-color);
    display: flex;
}

    .box img {
        margin: 50px;
        height: 500px;
        width: 450px;
        background: var(--light-color);
        border: 1px solid var(--grey-color);
        border-radius: 6px;
        padding: 10px;
    }

.detail {
    margin-top: 7%;
}

    .detail p {
        width: 60%;
        color: #615e5e;
        font-style: italic;
    }

body {
    background-color: #f9f9fa
}

.padding {
    padding: 3rem !important
}

.user-card-full {
    overflow: hidden;
}

.cardd {
    margin-left: 15%;
    width: 80%;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
    box-shadow: 15px 15px 5px 5px rgba(0, 0, 0, 0.2);
    border: none;
    margin-bottom: 30px;
}

.m-r-0 {
    margin-right: 0px;
}

.m-l-0 {
    margin-left: 0px;
}

.user-card-full .user-profile {
    border-radius: 5px 0 0 5px;
}

.bg-c-lite-green {
    background: -webkit-gradient(linear, left top, right top, from(#f29263), to(#ee5a6f));
    background: linear-gradient(to right, #ee5a6f, #f29263);
}

.user-profile {
    padding: 20px 0;
}

.card-block {
    padding: 1.25rem;
}

.m-b-25 {
    margin-bottom: 25px;
}

.img-radius {
    border-radius: 5px;
}



h6 {
    font-size: 14px;
}

.cardd .card-block p {
    line-height: 25px;
}

@media only screen and (min-width: 1400px) {
    p {
        font-size: 14px;
    }
}

.card-block {
    padding: 1.25rem;
}

.b-b-default {
    border-bottom: 1px solid #e0e0e0;
}

.m-b-20 {
    margin-bottom: 20px;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.cardd .card-block p {
    line-height: 25px;
}

.m-b-0 {
    margin-bottom: 0px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.text-muted {
    color: #919aa3 !important;
}

.b-b-default {
    border-bottom: 1px solid #e0e0e0;
}

.f-w-600 {
    font-weight: 600;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-t-40 {
    margin-top: 20px;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 40px;
}

.m-t-40 {
    margin-top: 20px;
}

.user-card-full .social-link li {
    display: inline-block;
}

    .user-card-full .social-link li a {
        font-size: 20px;
        margin: 0 10px 0 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

img.insta-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#instagram p {
    font-size: 1.1em;
}

#instagram figure {
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

    #instagram figure i.icon {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        color: var(--light-color);
        opacity: 0;
        transition: 0.8s all;
    }

    #instagram figure:hover i.icon {
        opacity: 1;
    }

.site-banner {
    height: 500px;
    text-align: center;
}

    .site-banner h1.page-title {
        font-size: 7.2em;
        font-weight: 800;
        line-height: 1em;
        letter-spacing: -0.02em;
        text-transform: capitalize;
        color: var(--dark-color);
    }

.jarallax {
    position: relative;
    z-index: 0;
    min-height: 520px;
}

    .jarallax > .jarallax-img {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.jarallax-keep-img {
    position: relative;
    z-index: 0;
}

    .jarallax-keep-img > .jarallax-img {
        position: relative;
        display: block;
        max-width: 100%;
        height: auto;
        z-index: -100;
    }
