@charset "UTF-8";

/*
  1. Base CSS
*/

:root {
    --primary-color: #deac76;
    /* --secondary-color: #80b500; */
    --secondary-color:#de7a2f;
    --secondary-off-color: #c78c60;
    --yellow-color: #ffc107;
    --text-gray-color: #606060;
    --white-color: #ffffff;
    --ofwhite-color: #f2f2f2;
    --black-color: #000000;
    --light-color: #fcfcfc;
    --light-color2: #f7f6f6;
    --dark-color: #242424;
    --sky-color: #647589;
    --border-color: #e7e7e7;
    --border-color2: #e4e4e4;
    --border-color3: #dddddd;
    --border-dark: #383434;
    --bg-gray-color: #fcfcfc;
    --gray-color: #fafbfe;
    --gray-color2: #f5f5f5;
    --font-jost: "Jost", sans-serif;
    --body-font-size: 1.6rem;
    --body-font-weight: 400;
    --body-line-height: 2.8rem;
    --headings-weight: 600;
    --transition: all 0.3s ease 0s;
    --container-fluid-offset: 19rem;
}

.color-scheme-1 {
    --secondary-color: #2E368F;
}

.color-scheme-2 {
    --secondary-color: #56af7d;
}


/* Common Style */

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

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    margin: 0;
    font-size: 62.5%;
    padding: 0;
}

body {
    font-family: var(--font-jost);
    font-size: var(--body-font-size, 1.6rem);
    font-weight: var(--body-font-weight);
    font-style: normal;
    line-height: var(--body-line-height, 25px);
    position: relative;
    visibility: visible;
    overflow-x: hidden;
    color: var(--black-color);
    background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--headings-weight);
    margin: 0;
}

h1,
.h1 {
    font-size: 2.3rem;
    line-height: 3rem;
}

@media only screen and (min-width: 576px) {

    h1,
    .h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 768px) {

    h1,
    .h1 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
}

@media only screen and (min-width: 992px) {

    h1,
    .h1 {
        font-size: 3.8rem;
        line-height: 4.5rem;
    }
}

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

    h1,
    .h1 {
        font-size: 4.2rem;
        line-height: 5rem;
    }
}

@media only screen and (min-width: 1366px) {

    h1,
    .h1 {
        font-size: 4.5rem;
        line-height: 5.3rem;
    }
}

@media only screen and (min-width: 1600px) {

    h1,
    .h1 {
        font-size: 5.5rem;
        line-height: 6.5rem;
    }
}

h2,
.h2 {
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {

    h2,
    .h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

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

    h2,
    .h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 1600px) {

    h2,
    .h2 {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}

h3,
.h3 {
    font-size: 1.7rem;
    line-height: 2.4rem;
}

@media only screen and (min-width: 768px) {

    h3,
    .h3 {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
}

@media only screen and (min-width: 992px) {

    h3,
    .h3 {
        font-size: 2rem;
        line-height: 2.7rem;
    }
}

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

    h3,
    .h3 {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
}

@media only screen and (min-width: 1600px) {

    h3,
    .h3 {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

h4,
.h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

@media only screen and (min-width: 992px) {

    h4,
    .h4 {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}

h5,
.h5 {
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-weight: 400;
}

@media only screen and (min-width: 768px) {

    h5,
    .h5 {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}

h6,
.h6 {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 400;
}

@media only screen and (min-width: 768px) {

    h6,
    .h6 {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}

p {
    margin-top: 0;
    margin-bottom: 1.8rem;
    color: var(--text-gray-color);
}

@media only screen and (max-width: 767px) {
    p {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    display: inline-block;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

a,
button,
img,
input,
textarea {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

*:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

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

button,
input[type="submit"] {
    cursor: pointer;
    font-family: var(--font-lato);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

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

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

span {
    display: inline-block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}

ul {
    margin: 0;
    padding: 0;
}

ul:last-child {
    margin-bottom: 0;
}

li {
    list-style: none;
    line-height: 1;
}

hr {
    border-top-width: 2px;
}

.container,
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.container-fluid {
    --offset-fluid: 1.5rem;
    padding-right: var(--offset-fluid);
    padding-left: var(--offset-fluid);
}

@media only screen and (min-width: 992px) {
    .container-fluid {
        --offset-fluid: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .container-fluid {
        --offset-fluid: calc(var(--container-fluid-offset) / 4.5);
    }
}

@media only screen and (min-width: 1600px) {
    .container-fluid {
        --offset-fluid: calc(var(--container-fluid-offset) / 2.5);
    }
}

@media only screen and (min-width: 1800px) {
    .container-fluid {
        --offset-fluid: var(--container-fluid-offset);
    }
}

.container-fluid-2 {
    --offset-fluid: 1.5rem;
    padding-right: var(--offset-fluid);
    padding-left: var(--offset-fluid);
}

@media only screen and (min-width: 992px) {
    .container-fluid-2 {
        --offset-fluid: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .container-fluid-2 {
        --offset-fluid: 4.5rem;
    }
}

@media only screen and (min-width: 1500px) {
    .container-fluid-2 {
        --offset-fluid: 5rem;
    }
}

@media only screen and (min-width: 576px) {
    .container {
        max-width: 576px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-bottom: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.row-cols-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
}

@media only screen and (min-width: 576px) {
    .col-sm {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-sm-auto>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}

@media only screen and (min-width: 480px) {
    .row-cols-sm-u-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media only screen and (min-width: 768px) {
    .col-md {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-md-auto>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}

@media only screen and (min-width: 992px) {
    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-lg-auto>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}

@media only screen and (min-width: 1200px) {
    .col-xl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-xl-auto>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xl-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}

@media only screen and (min-width: 1600px) {
    .col-xxl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6>* {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

@media only screen and (min-width: 576px) {
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (min-width: 992px) {
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

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

@media only screen and (min-width: 1200px) {
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (min-width: 1400px) {
    .col-xxl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .row>* {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .row {
        margin-right: -8px;
        margin-left: -8px;
    }

    .row>* {
        padding-right: 8px;
        padding-left: 8px;
    }
}

.row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media only screen and (max-width: 991px) {
    .row-md-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.d-none {
    display: none !important;
}

.display-block {
    display: block;
}

@media only screen and (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media only screen and (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (max-width: 1199px) {
    .d-xl-none {
        display: none;
    }

    .col-md-order {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (max-width: 991px) {
    .d-md-2-none {
        display: none;
    }

    .d-md-2-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .col-md-2-order {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (max-width: 767px) {
    .d-sm-none {
        display: none;
    }

    .d-sm-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .col-sm-order {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (max-width: 575px) {
    .d-sm-2-none {
        display: none;
    }

    .d-sm-2-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .col-sm-2-order {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.header--transparent {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.section--heading--maintitle {
    position: relative;
    padding-bottom: 2rem;
}

.section--heading--maintitle::before {
    position: absolute;
    content: "";
    background: url(../img/other/heading-shape.png);
    width: 174px;
    height: 5px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.section--heading--maintitle.style2::before {
    width: 13rem;
    height: 0.2rem;
    background: var(--secondary-color);
}

.primary--btn {
    font-size: 1.4rem;
    font-weight: var(--body-line-height);
    line-height: 3.5rem;
    display: inline-block;
    height: 3.5rem;
    padding: 0 1.8rem;
    letter-spacing: 0.2px;
    border-radius: 0.3rem;
    background: var(--secondary-color);
    color: var(--white-color);
    border: 0;
}

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

@media only screen and (min-width: 768px) {
    .primary--btn {
        font-size: 1.5rem;
        line-height: 4rem;
        height: 4rem;
        padding: 0 2rem;
    }
}

@media only screen and (min-width: 992px) {
    .primary--btn {
        font-size: 1.6rem;
        line-height: 4.5rem;
        height: 4.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .primary--btn {
        font-size: 1.7rem;
        line-height: 4.8rem;
        height: 4.8rem;
        padding: 0 2.3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .primary--btn {
        font-size: 1.8rem;
        line-height: 5.2rem;
        height: 5.2rem;
        padding: 0 2.5rem;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.swiper--nav--btn {
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (max-width: 767px) {
    .swiper--nav--btn {
        width: 3.5rem;
        height: 3.5rem;
    }
}

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

.swiper--nav--btn::after {
    background: url(../img/icon/left-arrow-angle.png);
    width: 9px;
    height: 17px;
    font-size: 0;
}

.swiper--nav--btn.swiper-button-prev {
    left: 0;
}

.swiper--nav--btn.swiper-button-next {
    right: 0;
}

.swiper--nav--btn.swiper-button-next::after {
    background: url(../img/icon/right-arrow-angle.png);
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--secondary-color);
    background: var(--white-color);
    opacity: 1;
    vertical-align: middle;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 1.8rem;
    height: 1.8rem;
}

label {
    display: block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

select {
    word-wrap: normal;
    font-family: var(--font-lato);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
}

#scroll--top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 99;
    outline: none;
    background-color: var(--secondary-off-color);
    color: var(--white-color);
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    line-height: 1;
    width: 4.3rem;
    height: 4.3rem;
    line-height: 1;
    border-radius: 50%;
    border: 0;
}

#scroll--top:hover {
    background: var(--secondary-color);
}

#scroll--top.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll--top svg {
    width: 25px;
    line-height: 1;
}

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

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

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

.overflow-hidden {
    overflow: hidden;
}

.break {
    word-break: break-word;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

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

.text-ofwhite {
    color: var(--ofwhite-color);
}

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

.body--background {
    background: var(----gray-color);
}

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

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

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

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

.bg--black {
    background: #1d1c1c;
}

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

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

.text--secondary2 {
    color: var(--secondary-color);
}

.position--relative {
    position: relative;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.border {
    border: 1px solid var(--border-color);
}

.border-0 {
    border: none;
}

.border-radius-5 {
    border-radius: 0.5rem;
}

.border-radius-10 {
    border-radius: 1rem;
}

.border-radius-50 {
    border-radius: 50%;
}

.width-100 {
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .md-width-100 {
        width: 100%;
    }
}


/* Tab */

.tab_content {
    display: block;
}

.tab_pane {
    display: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.tab_pane:not(.show) {
    opacity: 0;
}

.tab_pane.show {
    opacity: 1;
}

.tab_pane.active {
    display: block;
}

body.overlay--active,
.mobile_menu_open,
.predictive--search--box_active,
.offCanvas--minicart_active,
.offcanvas--filter--sidebar_active {
    overflow-y: hidden;
}

body.overlay--active::before,
.predictive--search--box_active::before,
.mobile_menu_open::before,
.offCanvas--minicart_active::before,
.offcanvas--filter--sidebar_active::before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.5;
    cursor: crosshair;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.animate-fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


/* Section padding */

.section--padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media only screen and (min-width: 768px) {
    .section--padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

@media only screen and (min-width: 992px) {
    .section--padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

@media only screen and (min-width: 1200px) {
    .section--padding {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}


/* Section margin */

.section--nargin {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

@media only screen and (min-width: 768px) {
    .section--nargin {
        margin-top: 7rem;
        margin-bottom: 7rem;
    }
}

@media only screen and (min-width: 992px) {
    .section--nargin {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
}

@media only screen and (min-width: 1200px) {
    .section--nargin {
        margin-top: 9rem;
        margin-bottom: 9rem;
    }
}


/* Padding */

.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}


/* Margin */

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-60 {
    margin-bottom: 3.5rem;
}

@media only screen and (min-width: 768px) {
    .mb-60 {
        margin-bottom: 4rem;
    }
}

@media only screen and (min-width: 992px) {
    .mb-60 {
        margin-bottom: 6rem;
    }
}

.mb-55 {
    margin-bottom: 3.5rem;
}

@media only screen and (min-width: 992px) {
    .mb-55 {
        margin-bottom: 5.5rem;
    }
}

.mb-50 {
    margin-bottom: 2.8rem;
}

@media only screen and (min-width: 768px) {
    .mb-50 {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .mb-50 {
        margin-bottom: 4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .mb-50 {
        margin-bottom: 5rem;
    }
}

.mb-40 {
    margin-bottom: 2.5rem;
}

@media only screen and (min-width: 992px) {
    .mb-40 {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .mb-40 {
        margin-bottom: 4rem;
    }
}

.mb--n40 {
    margin-bottom: -2.5rem;
}

@media only screen and (min-width: 992px) {
    .mb--n40 {
        margin-bottom: -2rem;
    }
}

@media only screen and (min-width: 1600px) {
    .mb--n40 {
        margin-bottom: -4rem;
    }
}

.mb-35 {
    margin-bottom: 2rem;
}

@media only screen and (min-width: 1200px) {
    .mb-35 {
        margin-bottom: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .mb-35 {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .mb-35 {
        margin-bottom: 3.5rem;
    }
}

.mb-30 {
    margin-bottom: 2.5rem;
}

@media only screen and (min-width: 1366px) {
    .mb-30 {
        margin-bottom: 3rem;
    }
}

.mb--n30 {
    margin-bottom: -2.5rem;
}

@media only screen and (min-width: 1366px) {
    .mb--n30 {
        margin-bottom: -3rem;
    }
}

.mb-28 {
    margin-bottom: 2.8rem;
}

.mb--n28 {
    margin-bottom: -2.8rem;
}

.mb-25 {
    margin-bottom: 1.8rem;
}

@media only screen and (min-width: 992px) {
    .mb-25 {
        margin-bottom: 2.5rem;
    }
}

.mb-20 {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
    .mb-20 {
        margin-bottom: 2rem;
    }
}

.mb-15 {
    margin-bottom: 1rem;
}

@media only screen and (min-width: 1200px) {
    .mb-15 {
        margin-bottom: 1.5rem;
    }
}

.mb-12 {
    margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
    .mb-12 {
        margin-bottom: 1.2rem;
    }
}

.mb-10 {
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .mb-10 {
        margin-bottom: 1rem;
    }
}

.mb-8 {
    margin-bottom: 0.8rem;
}

.mb-5 {
    margin-bottom: 0.5rem;
}

.mr-30 {
    margin-right: 3rem;
}


/*
    2. Header css
*/

.offcanvas--header--menu--open {
    line-height: 1;
    display: none;
}

.offcanvas--header--menu--open--btn>* {
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .offcanvas--header--menu--open {
        display: block;
    }
}

.offcanvas--header--menu--open--svg {
    width: 32px;
}

.offcanvas--header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: var(--white-color);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 480px) {
    .offcanvas--header {
        max-width: 320px;
    }
}

.offcanvas--header.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.offcanvas--header.open~.offcanvas-overlay {
    visibility: visible;
    opacity: 0.75;
}

.offcanvas-overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    background-color: var(--black-color);
}

.offcanvas--inner {
    position: relative;
    height: 100%;
}


/* Offacnvas Logo */

.offcanvas--logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 15px;
}

.offcanvas--close--btn {
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
}

.offcanvas--close--btn::before,
.offcanvas--close--btn::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--black-color);
}

.offcanvas--close--btn::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* Mobile Menu */

.offcanvas--menu {
    overflow-y: auto;
    height: 100%;
}

.offcanvas--menu_ul {
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: calc(100vh - 25vh);
}

.offcanvas--menu_li {
    position: relative;
    border-bottom: 1px solid var(--border-color2);
}

.offcanvas--menu_li:first-child {
    border-top: 1px solid var(--border-color2);
}

.offcanvas--menu_item {
    line-height: 1;
    display: block;
    padding: 15px 20px;
    text-transform: uppercase;
}


/* Mobile Sub Menu */

.offcanvas--sub_menu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas--sub_menu_li {
    position: relative;
    border-top: 1px solid var(--border-color2);
}

.offcanvas--sub_menu_item {
    line-height: 1;
    display: block;
    padding: 15px 0 15px 30px;
}

.offcanvas--sub_menu_item~.offcanvas--sub_menu .offcanvas--sub_menu_item {
    padding-left: 40px;
}

.offcanvas--sub_menu_toggle {
    font-size: 20px;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4.6rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.offcanvas--sub_menu_toggle::before,
.offcanvas--sub_menu_toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--black-color);
}

.offcanvas--sub_menu_toggle:not(.active)::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.offcanvas--account--items {
    padding: 28px 17px 20px;
}

.offcanvas--account--items--icon {
    width: 3rem;
    height: 3rem;
    text-align: center;
    background: var(--secondary-color);
    line-height: 2.8rem;
    border-radius: 50%;
    color: var(--white-color);
}

.offcanvas--account--items--label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 6px;
}

.offcanvas--language--switcher {
    font-weight: 500;
    font-family: var(--font-poppins);
}

.offcanvas--language--switcher>* {
    pointer-events: none;
}

.offcanvas--dropdown--language {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    bottom: 100%;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
}

.offcanvas--dropdown--language.active {
    opacity: 1;
    visibility: visible;
    margin-bottom: 8px;
}

.offcanvas--account--currency {
    position: relative;
    padding: 0 17px;
}

.offcanvas--account--currency--menu {
    font-family: var(--font-poppins);
    font-weight: 500;
}

.offcanvas--account--currency--menu>* {
    pointer-events: none;
}

.offcanvas--account--currency--submenu {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    bottom: 100%;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
}

.offcanvas--account--currency--submenu.active {
    opacity: 1;
    visibility: visible;
    margin-bottom: 8px;
}

.offcanvas--stikcy--toolbar {
    position: fixed;
    bottom: 0;
    background: var(--white-color);
    left: 0;
    right: 0;
    z-index: 99;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    display: none;
}

@media only screen and (min-width: 500px) {
    .offcanvas--stikcy--toolbar {
        padding: 10px 40px;
    }
}

@media only screen and (min-width: 768px) {
    .offcanvas--stikcy--toolbar {
        padding: 10px 60px;
    }
}

@media only screen and (max-width: 991px) {
    .offcanvas--stikcy--toolbar {
        display: block;
    }
}

.offcanvas--stikcy--toolbar--btn {
    position: relative;
    text-align: center;
}

.offcanvas--stikcy--toolbar--btn>* {
    pointer-events: none;
}

.offcanvas--stikcy--toolbar--btn:hover .offcanvas--stikcy--toolbar--icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.offcanvas--stikcy--toolbar--icon {
    width: 3rem;
    height: 3rem;
    line-height: 2.8rem;
    text-align: center;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--white-color);
}

.offcanvas--stikcy--toolbar--label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 6px;
}

.header--sticky.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--white-color);
    left: 0;
    z-index: 99;
    padding: 1.5rem 0;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header--sticky.sticky .header--sticky--block {
    display: block !important;
}

.header--sticky.sticky .header--sticky--none {
    display: none !important;
}

@media only screen and (max-width: 991px) {
    .header--sticky.sticky .header--menu.header--sticky--block {
        display: none !important;
    }
}

.header--sticky .header--sticky--block {
    display: none !important;
}

.header--topbar {
    padding: 1rem 0;
}

@media only screen and (min-width: 992px) {
    .header--topbar {
        padding: 1.2rem 0;
    }
}

@media only screen and (min-width: 1600px) {
    .header--topbar {
        padding: 1.7rem 0;
    }
}

@media only screen and (max-width: 991px) {
    .header--topbar--inner {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.main--logo--title {
    line-height: 2rem;
}

@media only screen and (max-width: 575px) {
    .header--shipping--wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.header--shipping--text {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
}

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

@media only screen and (min-width: 992px) {
    .header--shipping--text {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

@media only screen and (max-width: 575px) {
    .header--shipping--text {
        margin-right: 0;
        padding-right: 0;
    }

    .header--shipping--text:last-child {
        margin-bottom: 0;
    }
}

.header--shipping--text:last-child {
    margin-right: 0;
    padding-right: 0;
}

.header--shipping--text:last-child::before {
    display: none;
}

.header--shipping--text::before {
    position: absolute;
    content: "";
    width: 0.1rem;
    height: 100%;
    background: var(--white-color);
    right: 0;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (max-width: 575px) {
    .header--shipping--text::before {
        display: none;
    }
}

.header--shipping--text--icon {
    margin-right: 0.5rem;
}

.header--shipping--text--link:hover {
    color: var(--primary-color);
}

.header--discount--text {
    font-size: 1.6rem;
}

@media only screen and (min-width: 992px) {
    .header--discount--text {
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--discount--text {
        font-size: 1.7rem;
    }
}

@media only screen and (min-width: 1600px) {
    .header--discount--text {
        font-size: 1.8rem;
    }
}

.header--discount--icon--img {
    vertical-align: middle;
    margin-right: 0.4rem;
}

@media only screen and (max-width: 991px) {
    .language--currency {
        padding: 5px 20px;
    }
}

.language--currency--list {
    position: relative;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
}

.language--currency--list:last-child {
    margin-right: 0;
    padding-right: 0;
}

.language--currency--list:last-child::before {
    display: none;
}

.language--currency--list::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--white-color);
    right: 0;
    top: 0;
}

.language--switcher {
    font-size: 1.5rem;
}

.language--switcher>* {
    pointer-events: none;
}

@media only screen and (min-width: 992px) {
    .language--switcher {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

.language--switcher--icon--img {
    vertical-align: middle;
    margin-right: 3px;
}

.language--switcher:hover {
    color: var(--primary-color);
}

.language--switcher:hover span {
    color: var(--primary-color);
}

.language--switcher:hover svg {
    color: var(--primary-color);
}

.language--switcher svg {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.dropdown--language {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    top: 100%;
    opacity: 0;
    visibility: hidden;
    margin-top: 28px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
}

.dropdown--language.active {
    opacity: 1;
    visibility: visible;
    margin-top: 17px;
}

.language--items:last-child .language--text {
    border-bottom: 0;
}

.language--text {
    display: block;
    font-size: 1.4rem;
    padding: 10px 14px;
    background: var(--gray-color2);
    border-bottom: 1px solid var(--border-color2);
}

.language--text:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.account--currency {
    margin-right: 25px;
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .account--currency {
        margin-right: 32px;
    }
}

.account--currency--link {
    font-size: 1.5rem;
}

.account--currency--link>* {
    pointer-events: none;
}

@media only screen and (min-width: 992px) {
    .account--currency--link {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

.account--currency--link:hover {
    color: var(--primary-color);
}

.account--currency--link:hover span {
    color: var(--primary-color);
}

.account--currency--link:hover svg {
    color: var(--primary-color);
}

.account--currency--link svg {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.dropdown--currency {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    top: 100%;
    opacity: 0;
    visibility: hidden;
    margin-top: 28px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
}

.dropdown--currency.active {
    opacity: 1;
    visibility: visible;
    margin-top: 17px;
}

.currency--items:last-child .currency--text {
    border-bottom: 0;
}

.currency--text {
    display: block;
    font-size: 1.4rem;
    padding: 1rem 1.4rem;
    background: var(--gray-color2);
    border-bottom: 1px solid var(--border-color2);
}

.currency--text:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.main--header {
    padding: 1.2rem 0;
}

@media only screen and (min-width: 768px) {
    .main--header {
        padding: 1.5rem 0;
    }
}

@media only screen and (min-width: 992px) {
    .main--header {
        padding: 2rem 0;
    }
}

.main--logo--img {
    max-width: 120px;
}

@media only screen and (min-width: 480px) {
    .main--logo--img {
        max-width: 155px;
    }
}

@media only screen and (min-width: 768px) {
    .main--logo--img {
        max-width: 100%;
    }
}

.header--search--form {
    border: 1px solid var(--border-color);
}

.select {
    position: relative;
}

.select::before {
    border-bottom: 2px solid var(--black-color);
    border-right: 2px solid var(--black-color);
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0.7;
}

.header--select--inner {
    border: 0;
    background: var(--white-color);
    height: 5rem;
    padding: 0 3.3rem 0 1.8rem;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 1200px) {
    .header--select--inner {
        padding: 0 4.3rem 0 2rem;
    }
}

.header--search--box {
    position: relative;
    width: 35rem;
}

@media only screen and (min-width: 992px) {
    .header--search--box {
        width: 27rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--search--box {
        width: 39.5rem;
    }
}

.header--search--input {
    width: 100%;
    border: 0;
    border-left: 1px solid var(--border-color);
    height: 5rem;
    padding: 0 7rem 0 2.2rem;
    font-size: 1.5rem;
    color: var(--text-gray-color);
}

.header--search--input:focus::-webkit-input-placeholder {
    color: #000000;
}

@media only screen and (min-width: 1200px) {
    .header--search--input {
        padding: 0 7rem 0 2.2rem;
    }
}

.header--search--button {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 102%;
    border: 0;
    padding: 0 1.5rem;
    line-height: 2rem;
    background: var(--secondary-color);
}

.header--search--button:hover {
    background: var(--primary-color);
}

.header--account--items {
    margin-right: 2rem;
}

.header--account--items:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 992px) {
    .header--account--items {
        margin-right: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--account--items {
        margin-right: 3rem;
    }
}

@media only screen and (max-width: 575px) {
    .header--account--items {
        margin-right: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    .header--account--search--items.mobile--d--block {
        display: none;
    }
}

.header--account--btn {
    position: relative;
    color: var(--text-gray-color);
    text-align: center;
}

.header--account--btn>* {
    pointer-events: none;
}

.header--account--btn:hover {
    color: var(--secondary-color);
}

.header--account--btn--text {
    display: block;
    margin-top: 0.1rem;
    font-size: 1.5rem;
    line-height: 2.4rem;
}

@media only screen and (min-width: 1200px) {
    .header--account--btn--text {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 575px) {
    .header--account--btn--text {
        display: none;
    }
}

.search--open--btn>* {
    pointer-events: none;
}

.items--count {
    position: absolute;
    right: -0.5rem;
    top: -1.3rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    background: var(--secondary-color);
    text-align: center;
    border-radius: 50%;
    color: var(--white-color);
}

@media only screen and (min-width: 992px) {
    .items--count {
        right: -0.2rem;
        top: -1rem;
    }
}

.items--count.style2 {
    right: -0.7rem;
}

@media only screen and (min-width: 992px) {
    .items--count.style2 {
        right: -1.4rem;
    }
}

.items--count.wishlist {
    top: -1rem;
    right: 0.5rem;
}

.items--count.wishlist.style2 {
    right: -1rem;
}

.predictive--search--title {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
    .predictive--search--title {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .predictive--search--title {
        margin-bottom: 30px;
    }
}

.predictive--search--box {
    background: var(--white-color);
    -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    position: relative;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.predictive--search--box.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.predictive--search--box--inner {
    padding: 20px 16px;
    text-align: center;
}

@media only screen and (min-width: 576px) {
    .predictive--search--box--inner {
        padding: 22px 50px;
    }
}

@media only screen and (min-width: 768px) {
    .predictive--search--box--inner {
        padding: 30px 80px;
    }
}

@media only screen and (min-width: 992px) {
    .predictive--search--box--inner {
        padding: 30px 150px;
    }
}

.predictive--search--form {
    width: 100%;
    position: relative;
}

.predictive--search--input {
    width: 100%;
    height: 5rem;
    border: 1px solid var(--border-color2);
    padding: 0 80px 0 15px;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 5px;
}

.predictive--search--input:focus {
    border-color: var(--secondary-color);
}

.predictive--search--input:focus::-webkit-input-placeholder {
    color: #000000;
}

@media only screen and (max-width: 576px) {
    .predictive--search--input {
        height: 45px;
    }
}

.predictive--search--button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0;
    background: var(--secondary-color);
    border: 0;
    width: 5rem;
    text-align: center;
    color: var(--white-color);
    border-radius: 0 5px 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.predictive--search--button:hover {
    background: var(--primary-color);
}

@media only screen and (min-width: 768px) {
    .predictive--search--button {
        width: 6rem;
    }
}

.predictive--search--close--btn {
    position: absolute;
    top: 20px;
    right: 40px;
    padding: 0;
    border: 0;
    background: inherit;
}

.predictive--search--close--btn>* {
    pointer-events: none;
}

@media only screen and (max-width: 576px) {
    .predictive--search--close--btn {
        right: 15px;
    }
}

.predictive--search--close--btn:hover {
    color: var(--primary-color);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

@media only screen and (min-width: 992px) {
    .header--bottom {
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
}

.header--menu--items {
    margin-right: 3rem;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .header--menu--items {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--menu--items {
        margin-right: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .header--menu--items {
        margin-right: 4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .header--menu--items {
        margin-right: 4rem;
    }
}

.header--menu--items:last-child {
    margin-right: 0;
}

.header--menu--items.style2 {
    margin-right: 2rem;
}

@media only screen and (min-width: 992px) {
    .header--menu--items.style2 {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--menu--items.style2 {
        margin-right: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .header--menu--items.style2 {
        margin-right: 3.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .header--menu--items.style2 {
        margin-right: 5rem;
    }
}

.header--menu--items:hover .header--menu--link {
    color: var(--secondary-color);
}

.header--menu--items:hover .header--sub--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
}

.header--menu--items:hover .header--mega--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
}

.header--menu--link {
    font-size: 1.6rem;
    line-height: 2.5rem;
    padding: 16px 0;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 1200px) {
    .header--menu--link {
        font-size: 1.7rem;
        padding: 16px 0;
    }
}

@media only screen and (min-width: 1600px) {
    .header--menu--link {
        padding: 20px 0;
    }
}

.menu--arrowdown--icon {
    margin-left: 3px;
}

.header--sub--menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    visibility: hidden;
    width: 220px;
    margin: 0;
    margin-top: 20px;
    padding: 20px;
    list-style: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    background-color: var(--white-color);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.header--sub--menu--link {
    font-size: 1.5rem;
    display: block;
    padding: 10px 0;
}

.mega--menu--items {
    position: static;
}

.header--mega--menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    padding: 25px;
    list-style: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
    background-color: var(--white-color);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.header--mega--menu--li {
    padding: 3px 15px;
    width: 25%;
}

.header--mega--subtitle {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.header--mega--sub--menu--title {
    font-size: 1.5rem;
    padding: 8px 0;
}

.offCanvas--minicart {
    position: fixed;
    width: 310px;
    height: 100%;
    padding: 20px 15px 33px;
    background: var(--white-color);
    z-index: 999;
    right: 0;
    top: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto;
    -webkit-box-shadow: 0 0 15px rgba(5, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(5, 0, 0, 0.1);
}

.offCanvas--minicart.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media only screen and (min-width: 480px) {
    .offCanvas--minicart {
        width: 375px;
    }
}

.minicart--header--top {
    margin-bottom: 10px;
}

.minicart--header--desc {
    font-size: 1.6rem;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 480px) {
    .minicart--header--desc {
        font-size: 1.7rem;
    }
}

.minicart--title {
    font-weight: 600;
}

.minicart--close--btn {
    padding: 0;
    background: inherit;
    border: 0;
    line-height: 1.5rem;
    color: var(--black-color);
}

.minicart--close--btn>* {
    pointer-events: none;
}

.minicart--close--btn:hover {
    color: var(--secondary-color);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.minicart--close--icon {
    width: 22px;
}

.minicart--product {
    margin-bottom: 17px;
}

.minicart--product--items {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color2);
}

.product--items {
    transition: all 0.3s ease-in-out;
    padding: 10px;
    min-height: 100%;
}

.product--items:hover {
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    background: var(--gray-color);
    background: #ECEDF2;
    border-radius: 15px;
}

@media only screen and (min-width: 1600px) {
    .minicart--product--items {
        margin-top: 22px;
        padding-top: 22px;
    }
}

.minicart--product--remove {
    border: 0;
    padding: 0;
    background: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
    opacity: 0.7;
}

.minicart--product--remove:hover {
    color: var(--secondary-color);
}

.minicart--thumb {
    width: 100px;
    line-height: 1;
}

@media only screen and (min-width: 480px) {
    .minicart--thumb {
        width: 120px;
    }
}

.minicart--text {
    width: calc(100% - 100px);
    padding-left: 10px;
}

@media only screen and (min-width: 480px) {
    .minicart--text {
        width: calc(100% - 120px);
        padding-left: 13px;
    }
}

.minicart--subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 2px;
}

@media only screen and (min-width: 480px) {
    .minicart--subtitle {
        font-size: 1.6rem;
    }
}

.color--variant {
    opacity: 0.8;
    margin-bottom: 4px;
    line-height: 20px;
}

.minicart--price {
    margin-bottom: 9px;
}

.minicart--quantity {
    margin-right: 15px;
}

.quantity--box {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.quantity--value {
    display: inline-block;
    border: 1px solid var(--border-color2);
    margin: 0px;
    width: 3.3rem;
    height: 3rem;
    text-align: center;
    padding: 0;
    background: var(--gray-color2);
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
}

.quantity--value.decrease {
    margin-right: -4px;
    border-radius: 13px 0 0 13px;
}

.quantity--value.increase {
    margin-left: -4px;
    border-radius: 0 13px 13px 0;
}

input.quantity--number {
    text-align: center;
    border: none;
    border-top: 1px solid var(--border-color2);
    border-bottom: 1px solid var(--border-color2);
    margin: 0px;
    width: 3.3rem;
    height: 3rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.minicart--amount {
    padding: 13px 0;
    border-top: 1px solid var(--border-color2);
    border-bottom: 1px solid var(--border-color2);
}

.minicart--amount_list {
    margin-bottom: 10px;
}

.minicart--amount_list:last-child {
    margin-bottom: 0;
}

.minicart--conditions {
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 1600px) {
    .minicart--conditions {
        padding: 20px 0;
    }
}

.minicart--conditions--input {
    vertical-align: middle;
    margin-right: 8px;
}

.minicart--conditions--label {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-gray-color);
}

.minicart--conditions--link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.minicart--conditions--link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.minicart--button--link {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 4.5rem;
    height: 4.5rem;
    margin-right: 14px;
}

.minicart--button--link:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 992px) {
    .header--account2--items {
        margin-right: 1.2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--account2--items {
        margin-right: 2rem;
    }
}

.header--topbar--style3 {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.language--currency--list.style3::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--primary-color);
    right: 0;
    top: 0;
}

.header--social--list {
    margin-right: 1.8rem;
}

.header--social--list:last-child {
    margin-right: 0;
}

.main--header--style3 {
    padding: 1rem 0;
}

@media only screen and (max-width: 767px) {
    .main--header--style3 {
        padding: 2rem 0;
    }
}

.header--menu--items.style3 {
    margin-right: 1.8rem;
}

@media only screen and (min-width: 992px) {
    .header--menu--items.style3 {
        margin-right: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header--menu--items.style3 {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .header--menu--items.style3 {
        margin-right: 2rem;
    }
}

@media only screen and (min-width: 1600px) {
    .header--menu--items.style3 {
        margin-right: 3rem;
    }
}

.header--menu--items.style3:last-child {
    margin-right: 0;
}

.header--mega--menu--li.style3 {
    width: 18%;
}

.header--mega--menu--li.style3:last-child {
    width: 28%;
}

.mega--menu--banner {
    overflow: hidden;
}

.mega--menu--banner:hover .mega--menu--banner--img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.mega--menu--banner:hover .mega--menu--banner--text {
    color: var(--secondary-color);
}

.mega--menu--banner--text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translatex(-50%);
    transform: translateY(-50%) translatex(-50%);
    text-decoration: underline;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 8px 12px;
    color: var(--primary-color);
    background: var(--white-color);
    border-radius: 5px;
}

.newsletter--subscribe--style3 .newsletter--subscribe--input {
    background: var(--white-color);
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
}

.newsletter--subscribe--style3 .newsletter--subscribe--button:hover {
    background: var(--white-color);
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
}

@media only screen and (min-width: 768px) {
    .header--topbar--inner.style3 {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}


/* 
    3. Slider css 
*/

.home1--slider--bg {
    background: url(../img/slider/home1-slider1.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home1--slider--bg {
        background-position: 0%;
    }
}

.home1--slider--bg.two {
    background: url(../img/slider/home1-slider2.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home1--slider--bg.two {
        background-position: 0%;
    }
}

.home1--slider--bg.three {
    background: url(../img/slider/home1-slider3.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home1--slider--bg.three {
        background-position: 0%;
    }
}

.hero--slider--items {
    position: relative;
}

.hero--slider--items--inner {
    padding: 6rem 0;
}

@media only screen and (min-width: 768px) {
    .hero--slider--items--inner {
        padding: 6rem 0;
    }
}

@media only screen and (min-width: 992px) {
    .hero--slider--items--inner {
        padding: 6.5rem 0;
    }
}

@media only screen and (min-width: 1200px) {
    .hero--slider--items--inner {
        padding: 7rem 0;
    }
}

@media only screen and (min-width: 1600px) {
    .hero--slider--items--inner {
        padding: 14.7rem 0;
    }
}

@media only screen and (max-width: 1599px) {
    .slider--content {
        padding-left: 5rem;
    }
}

@media only screen and (max-width: 1199px) {
    .slider--content {
        padding-left: 5rem;
    }
}

@media only screen and (max-width: 991px) {
    .slider--content {
        padding-left: 3.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .slider--content {
        text-align: center;
        padding-left: 0;
    }
}

.slider--content.center {
    padding-left: 0;
}

.slider--content--maintitle {
    margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
    .slider--content--maintitle {
        margin-bottom: 1.3rem;
    }
}

@media only screen and (min-width: 992px) {
    .slider--content--maintitle {
        margin-bottom: 1.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .slider--content--maintitle {
        margin-bottom: 1.8rem;
    }
}

.slider--content--desc {
    font-size: 1.6rem;
    line-height: 2.5rem;
}

@media only screen and (min-width: 992px) {
    .slider--content--desc {
        font-size: 1.7rem;
        line-height: 2.8rem;
    }
}

@media only screen and (min-width: 1600px) {
    .slider--content--desc {
        font-size: 1.8rem;
        line-height: 3.1rem;
    }
}

.slider--content--desc.desc1 {
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    .slider--content--desc.mb-40 {
        margin-bottom: 2.8rem;
    }
}

@media only screen and (max-width: 1200px) {
    .slider--content--desc.mb-40 {
        margin-bottom: 2.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .slider--content--desc.mb-40 {
        margin-bottom: 2.2rem;
    }
}

@media only screen and (max-width: 991px) {
    .slider--content--desc.mb-40 {
        margin-bottom: 1.8rem;
    }
}

.hero--slider--activation .swiper-button-prev {
    left: 1rem;
}

@media only screen and (min-width: 768px) {
    .hero--slider--activation .swiper-button-prev {
        left: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    .hero--slider--activation .swiper-button-prev {
        left: 2rem;
    }
}

.hero--slider--activation .swiper-button-next {
    right: 1rem;
}

@media only screen and (min-width: 768px) {
    .hero--slider--activation .swiper-button-next {
        right: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    .hero--slider--activation .swiper-button-next {
        right: 2rem;
    }
}

.slider--text--shape--icon {
    vertical-align: middle;
    margin-right: 0.3rem;
}

.swiper-slide-active .slider--content>* {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.swiper-slide-active .slider--content--desc {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.swiper-slide-active .slider--content--maintitle {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.swiper-slide-active .slider--content--desc.desc2 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.swiper-slide-active .slider--btn {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.primary--btn--arrow--icon {
    vertical-align: middle;
    margin-left: 0.3rem;
}

.home2--slider--bg {
    background: url(../img/slider/home2-slider1.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home2--slider--bg {
        background-position: 25%;
    }
}

.home2--slider--bg.two {
    background: url(../img/slider/home2-slider2.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home2--slider--bg.two {
        background-position: 25%;
    }
}

.home2--slider--bg.three {
    background: url(../img/slider/home2-slider3.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home2--slider--bg.three {
        background-position: 25%;
    }
}

@media only screen and (min-width: 992px) {
    .home2--slider--bg--inner {
        padding: 7rem 0;
    }
}

@media only screen and (min-width: 1200px) {
    .home2--slider--bg--inner {
        padding: 8rem 0;
    }
}

@media only screen and (min-width: 1366px) {
    .home2--slider--bg--inner {
        padding: 9.8rem 0;
    }
}

@media only screen and (min-width: 1600px) {
    .home2--slider--bg--inner {
        padding: 17rem 0;
    }
}

.home3--slider--bg {
    background: url(../img/slider/home3-slider1.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home3--slider--bg {
        background-position: 25%;
    }
}

.home3--slider--bg.two {
    background: url(../img/slider/home3-slider2.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home3--slider--bg.two {
        background-position: 25%;
    }
}

.home3--slider--bg.three {
    background: url(../img/slider/home3-slider3.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .home3--slider--bg.three {
        background-position: 25%;
    }
}

.slider--content.style3.center {
    padding-left: 0;
}


/* 
    4. Product card css 
*/

.swiper:hover .swiper--nav--btn {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 767px) {
    .product--tab--primary--btn {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.product--tab--primary--btn--list {
    font-size: 1.6rem;
    margin-right: 20px;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (max-width: 767px) {
    .product--tab--primary--btn--list {
        font-size: 1.4rem;
    }
}

.product--tab--primary--btn--list.active {
    color: var(--secondary-color);
}

.product--tab--primary--btn--list:hover {
    color: var(--secondary-color);
}

.product--tab--primary--btn--list:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 575px) {
    .product--tab--primary--btn--list {
        line-height: 22px;
        margin: 5px 10px;
    }
}

@media only screen and (min-width: 768px) {
    .product--tab--primary--btn--list {
        margin-right: 30px;
        font-size: 1.7rem;
    }
}

@media only screen and (min-width: 992px) {
    .product--tab--primary--btn--list {
        margin-right: 45px;
        font-size: 1.8rem;
    }
}

.product--items--thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.product--secondary--img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product--items:hover .product--items--img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.product--items:hover .product--secondary--img {
    opacity: 1;
    visibility: visible;
}

.product--items--link {
    display: block;
}

@media only screen and (max-width: 991px) {
    .product--items--link {
        width: 100%;
    }
}

.product--items--img {
    display: block;
    width: 100%;
}

.product--items--action--list {
    margin-right: 0.6rem;
}

.product--items--action--list:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 1366px) {
    .product--items--action--list {
        margin-right: 0.8rem;
    }
}

@media only screen and (min-width: 1600px) {
    .product--items--action--list {
        margin-right: 1.4rem;
    }
}

.product--items--action--btn {
    border: 1px solid var(--border-color);
    height: 4.4rem;
    line-height: 4rem;
    padding: 0 0.6rem;
    color: var(--text-gray-color);
    border-radius: 0.3rem;
}

@media only screen and (min-width: 992px) {
    .product--items--action--btn {
        height: 4rem;
        line-height: 3.6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product--items--action--btn {
        padding: 0 0.7rem;
        height: 4.2rem;
        line-height: 3.8rem;
    }
}

@media only screen and (min-width: 1366px) {
    .product--items--action--btn {
        padding: 0 0.7rem;
        height: 4.4rem;
        line-height: 4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .product--items--action--btn {
        padding: 0 1rem;
        height: 4.4rem;
        line-height: 4rem;
    }
}

@media only screen and (max-width: 575px) {
    .product--items--action--btn {
        height: 3.6rem;
        line-height: 3.2rem;
    }
}

.product--items--action--btn.add--to--cart {
    padding: 0 0.7rem;
    font-size: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .product--items--action--btn.add--to--cart {
        font-size: 1.4rem;
        padding: 0 0.6rem;
    }
}

@media only screen and (min-width: 1366px) {
    .product--items--action--btn.add--to--cart {
        padding: 0 1rem;
    }
}

@media only screen and (min-width: 1600px) {
    .product--items--action--btn.add--to--cart {
        padding: 0 1.3rem;
    }
}

.product--items--action--btn.add--to--cart:hover span {
    color: var(--white-color);
}

.product--items--action--btn--svg {
    vertical-align: middle;
}

@media only screen and (max-width: 1365px) {
    .product--items--action--btn--svg {
        width: 2rem;
    }
}

.product--items--action--btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.product--items--content {
    padding-top: 1.2rem;
}

.product--items--content--subtitle {
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 992px) {
    .product--items--content--subtitle {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .product--items--content--title {
        font-size: 1.3rem;
        line-height: 2rem;
        margin-bottom: 0.3rem;
    }
}

.product--items--content--title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 575px) {
    .add--to--cart--text {
        display: none;
    }
}

.product--items--price {
    margin-bottom: 0.5rem;
}

.current--price {
    font-size: 1.5rem;
    color: var(--text-gray-color);
}

.old--price {
    font-size: 1.5rem;
    color: var(--text-gray-color);
    text-decoration: line-through;
}

.price--divided {
    width: 1.2rem;
    height: 0.1rem;
    background: var(--text-gray-color);
    vertical-align: middle;
    margin: 0 0.3rem;
}

.product--rating {
    margin-bottom: 1.6rem;
}

.rating--list {
    margin-right: 0.5rem;
}

@media only screen and (min-width: 768px) {
    .rating--list {
        margin-right: 0.8rem;
    }
}

.rating--list:last-child {
    margin-right: 0;
}

.rating--list--icon {
    color: var(--yellow-color);
}

.product--badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

@media only screen and (min-width: 576px) {
    .product--badge {
        top: 20px;
        left: 20px;
    }
}

.product--badge--items {
    height: 2rem;
    line-height: 2rem;
    padding: 0 7px;
    font-weight: 300;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 6px 0 6px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 575px) {
    .product--badge--items {
        font-size: 1.3rem;
    }
}

.product--items.out-off-stock-product .product--items--thumbnail .product--items--link {
    filter: blur(10px);
}

.product--items.out-off-stock-product .product--add-to--cart--btn--style2 {
    background-color: #ee2761;
}

.product--items.out-off-stock-product .product--add-to--cart--btn--style2 {
    padding: 0.8rem 0;
    max-height: 5rem;
}

.product--items:hover .product--items--action--style2 {
    opacity: 1;
    visibility: visible;
    right: 1.5rem;
}

@media only screen and (max-width: 575px) {
    .product--items:hover .product--items--action--style2 {
        right: 1rem;
    }
}

.product--items:hover .product--add-to--cart--btn--style2 {
    padding: 0.8rem 0;
    max-height: 5rem;
}

@media only screen and (min-width: 1600px) {
    .product--items:hover .product--add-to--cart--btn--style2 {
        padding: 1.1rem 0;
    }
}

@media only screen and (max-width: 575px) {
    .product--items:hover .product--add-to--cart--btn--style2 {
        padding: 0.5rem 0;
    }
}

.product--add-to--cart--btn--style2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 0;
    max-height: 0;
}

@media only screen and (max-width: 575px) {
    .product--add-to--cart--btn--style2 {
        padding: 0.3rem 0;
        max-height: 5rem;
    }
}

.product--add-to--cart--btn--style2:hover {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.product--items--action--style2 {
    position: absolute;
    top: 1.5rem;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (max-width: 575px) {
    .product--items--action--style2 {
        opacity: 1;
        visibility: visible;
        right: 1rem;
    }
}

.product--items--action--style2--list {
    margin-bottom: 1rem;
}

.product--items--action--style2--list:last-child {
    margin-bottom: 0;
}

.product--items--action--style2--btn {
    width: 3rem;
    height: 3rem;
    line-height: 2.6rem;
    text-align: center;
    border: 1px solid var(--text-gray-color);
    color: var(--text-gray-color);
    border-radius: 0.3rem;
}

.product--items--action--style2--btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

@media only screen and (min-width: 480px) {
    .product--items--action--style2--btn {
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.2rem;
    }
}

@media only screen and (min-width: 576px) {
    .product--items--action--style2--btn {
        width: 4rem;
        height: 4rem;
        line-height: 3.8rem;
    }
}

.product--grid--heading--maintitle {
    font-weight: 600;
    padding-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .product--grid--heading--maintitle {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

.product--grid--heading--maintitle::before {
    position: absolute;
    content: "";
    width: 6rem;
    height: 0.2rem;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.product--grid--items--img {
    display: block;
}

.product--items--grid {
    background: var(--white-color);
    -webkit-box-shadow: 1px 0 72px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 72px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

@media only screen and (min-width: 1600px) {
    .product--items--grid {
        margin-bottom: 2.5rem;
    }
}

.product--items--grid:last-child {
    margin-bottom: 0;
}

.product--items--grid--thumbnail {
    overflow: hidden;
    line-height: 1;
    width: 8rem;
}

@media only screen and (min-width: 1366px) {
    .product--items--grid--thumbnail {
        width: 9rem;
    }
}

.product--items--grid--content {
    padding: 0.2rem 1rem 0.2rem 1.5rem;
    width: calc(100% - 8rem);
}

@media only screen and (min-width: 1366px) {
    .product--items--grid--content {
        padding: 0.8rem 0.8rem 0.8rem 1.5rem;
        width: calc(100% - 9rem);
    }
}

.product--items--grid:hover .product--items--img {
    -webkit-transform: inherit;
    transform: inherit;
}

@media only screen and (max-width: 767px) {
    .product--collection--content {
        margin-bottom: 3rem;
        text-align: center;
    }
}

.product--collection--content--title {
    margin-bottom: 1.5rem;
}

.product--collection--content--btn {
    font-size: 1.6rem;
    line-height: 4.6rem;
    height: 4.6rem;
    padding: 0 2rem;
}

.swiper--nav--btn.style3 {
    opacity: 1;
    visibility: visible;
    top: inherit;
}


/*
@media only screen and (min-width: 768px) {
  .swiper--nav--btn.style3 {
    bottom: 25px;
    left: -116px;
  }
}

@media only screen and (min-width: 992px) {
  .swiper--nav--btn.style3 {
    bottom: 15%;
    left: -52%;
  }
}

@media only screen and (min-width: 1200px) {
  .swiper--nav--btn.style3 {
    bottom: 0;
  }
}

@media only screen and (min-width: 1366px) {
  .swiper--nav--btn.style3 {
    bottom: 10%;
    left: -51%;
  }
}

@media only screen and (min-width: 1600px) {
  .swiper--nav--btn.style3 {
    bottom: 25%;
  }
}

@media only screen and (max-width: 767px) {
  .swiper--nav--btn.style3 {
    display: none;
  }
}

 .swiper--nav--btn.style3.swiper-button-next {
  left: -46%;
}

@media only screen and (min-width: 768px) {
  .swiper--nav--btn.style3.swiper-button-next {
    left: -70px;
  }
}

@media only screen and (min-width: 992px) {
  .swiper--nav--btn.style3.swiper-button-next {
    left: -44%;
  }
}

@media only screen and (min-width: 1200px) {
  .swiper--nav--btn.style3.swiper-button-next {
    left: -45%;
  }
}

@media only screen and (min-width: 1600px) {
  .swiper--nav--btn.style3.swiper-button-next {
    left: -46%;
  }
} */

.new--product--section .swiper--nav--btn {
    top: 50% !important;
}

.new--product--items:hover .new--product--thumbnail--img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
}

.new--product--items:hover .new--product--content--title a {
    color: var(--secondary-color);
}

.new--product--thumbnail {
    overflow: hidden;
    border-radius: 15px;
}

.new--product--thumbnail--link {
    display: block;
}

.new--product--thumbnail--img {
    display: block;
}

@media only screen and (max-width: 767px) {
    .new--product--content {
        text-align: center;
    }
}

.new--product--content--title {
    padding-top: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .new--product--content--title {
        font-size: 2rem;
        line-height: 2.2rem;
    }
}


/*
   5. Banner css 
*/
.left-side-image-wrapper,
.right-bottom-side-image-wrapper,
.right-top-side-image-wrapper {
    background: #EDEEF2;
    height: 700px;
    overflow: hidden;
    border-radius: 15px;
}

.left-side-image-wrapper img,
.right-bottom-side-image-wrapper img,
.right-top-side-image-wrapper img {
    width: 100%;
    height: auto;
    object-position: top center;
    object-fit: scale-down;
}

.right-top-side-image-wrapper {
    height: 350px;
}

.right-bottom-side-image-wrapper {
    height: 320px;
}

.banner--items--thumbnail {
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

.banner--items--thumbnail--img {
    display: block;
    width: 100%;
}

.banner--items--thumbnail:hover .banner--items--thumbnail--img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.banner--items--thumbnail:hover .banner--items--content--link {
    color: var(--secondary-color);
}

.banner--items--content {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .banner--items--content {
        top: 2rem;
        left: 2rem;
    }
}

@media only screen and (min-width: 1366px) {
    .banner--items--content {
        top: 3rem;
        left: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--items--content {
        top: 3.5rem;
        left: 4rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--items--content {
        top: 50%;
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
    }
}

.banner--items--content--subtitle {
    color: var(--text-gray-color);
    margin-bottom: 0.8rem;
    line-height: 2.2rem;
}

@media only screen and (min-width: 992px) {
    .banner--items--content--subtitle {
        font-size: 1.7rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--items--content--subtitle {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--items--content--subtitle {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--items--content--subtitle {
        display: none;
    }
}

.banner--items--content--subtitle.text--secondary {
    color: var(--secondary-color);
}

.banner--items--content--title {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media only screen and (min-width: 768px) {
    .banner--items--content--title {
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--items--content--title {
        margin-bottom: 1.2rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--items--content--title {
        margin-bottom: 1.8rem;
        line-height: 3.3rem;
    }
}

.banner--items--content--title.style2 {
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-bottom: 0.4rem;
}

@media only screen and (min-width: 992px) {
    .banner--items--content--title.style2 {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--items--content--title.style2 {
        font-size: 1.8rem;
        line-height: 2.7rem;
        margin-bottom: 1rem;
        margin-bottom: 0.8rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--items--content--title.style2 {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 1.2rem;
    }
}

.banner--items--content--link {
    line-height: 2.4rem;
    color: var(--text-gray-color);
}

.banner--items--content--link.style2 {
    font-size: 1.4rem;
    text-decoration: underline;
}

@media only screen and (min-width: 1600px) {
    .banner--items--content--link.style2 {
        font-size: 1.5rem;
    }
}

.banner--items--content--arrow--icon {
    color: var(--secondary-color);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.banner--items--content.style2 {
    top: 1.5rem;
    left: 2.5rem;
}

@media only screen and (min-width: 992px) {
    .banner--items--content.style2 {
        top: 2rem;
        left: 3rem;
    }
}

.banner--items--content.style2.right {
    right: 3rem;
    left: auto;
}

@media only screen and (max-width: 575px) {
    .banner--items--content.style2 {
        top: 50%;
    }
}

.banner--bg {
    background: url(../img/banner/banner-bg1.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    border-radius: 15px;
}

@media only screen and (max-width: 575px) {
    .banner--bg {
        background-position: 10%;
    }
}

.deals--banner--section {
    border-radius: 15px;
    overflow: hidden;
}

.deals--banner--content {
    padding: 4rem 2rem;
}

@media only screen and (min-width: 576px) {
    .deals--banner--content {
        padding: 4rem 3rem 4rem 3rem;
    }
}

@media only screen and (min-width: 768px) {
    .deals--banner--content {
        padding: 5rem 3rem 5rem 3.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .deals--banner--content {
        padding: 6rem 3rem 6rem 5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .deals--banner--content {
        padding: 5rem 3rem 6rem 6.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--content {
        padding: 6rem 3rem 7rem 6.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .deals--banner--content {
        text-align: center;
    }
}

.deals--banner--content--subtitle {
    font-weight: 500;
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .deals--banner--content--subtitle {
        margin-bottom: 1.2rem;
    }
}

.deals--banner--content--maintitle {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 576px) {
    .deals--banner--content--maintitle {
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 768px) {
    .deals--banner--content--maintitle {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 992px) {
    .deals--banner--content--maintitle {
        font-size: 3rem;
        line-height: 3.5rem;
        margin-bottom: 1.6rem;
    }
}

@media only screen and (min-width: 1366px) {
    .deals--banner--content--maintitle {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--content--maintitle {
        font-size: 4rem;
        line-height: 4.6rem;
        margin-bottom: 1.8rem;
    }
}

.deals--banner--content--desc {
    margin-bottom: 2.5rem;
}

@media only screen and (min-width: 1200px) {
    .deals--banner--content--desc {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--content--desc {
        margin-bottom: 3.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .deals--banner--content--desc {
        display: none;
    }
}

.deals--banner--countdown {
    margin-bottom: 2rem;
}

@media only screen and (min-width: 992px) {
    .deals--banner--countdown {
        margin-bottom: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .deals--banner--countdown {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--countdown {
        margin-bottom: 4rem;
    }
}

@media only screen and (max-width: 575px) {
    .deals--banner--countdown {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.deals--banner--countdown .countdown--item {
    width: 6rem;
    height: 6rem;
    text-align: center;
    background: #efeff1;
    margin-right: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 59px rgba(0, 0, 0, 0.19);
    box-shadow: 0 0 59px rgba(0, 0, 0, 0.19);
    position: relative;
    border-radius: 0.5rem;
}

@media only screen and (min-width: 768px) {
    .deals--banner--countdown .countdown--item {
        width: 6rem;
        height: 6rem;
    }
}

@media only screen and (min-width: 992px) {
    .deals--banner--countdown .countdown--item {
        width: 8rem;
        height: 7rem;
        margin-right: 4rem;
    }
}

@media only screen and (min-width: 1200px) {
    .deals--banner--countdown .countdown--item {
        width: 8.5rem;
        height: 7.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .deals--banner--countdown .countdown--item {
        width: 9rem;
        height: 8rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--countdown .countdown--item {
        width: 10.5rem;
        height: 9rem;
    }
}

@media only screen and (max-width: 767px) {
    .deals--banner--countdown .countdown--item {
        margin-right: 1.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .deals--banner--countdown .countdown--item {
        margin-right: 1rem;
    }
}

.deals--banner--countdown .countdown--item::before {
    position: absolute;
    content: ":";
    right: -2.2rem;
    top: 50%;
    font-size: 4rem;
    font-weight: 700;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (min-width: 992px) {
    .deals--banner--countdown .countdown--item::before {
        right: -2.6rem;
    }
}

@media only screen and (max-width: 767px) {
    .deals--banner--countdown .countdown--item::before {
        display: none;
    }
}

.deals--banner--countdown .countdown--item:last-child {
    margin-right: 0;
}

.deals--banner--countdown .countdown--item:last-child::before {
    display: none;
}

.deals--banner--countdown .countdown--number {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 0.3rem;
}

@media only screen and (min-width: 768px) {
    .deals--banner--countdown .countdown--number {
        font-size: 2rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 992px) {
    .deals--banner--countdown .countdown--number {
        font-size: 2.5rem;
        line-height: 2.8rem;
    }
}

@media only screen and (min-width: 1200px) {
    .deals--banner--countdown .countdown--number {
        font-size: 2.8rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .deals--banner--countdown .countdown--number {
        font-size: 3rem;
        line-height: 3.2rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--countdown .countdown--number {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}

.deals--banner--countdown .countdown--text {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2rem;
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) {
    .deals--banner--countdown .countdown--text {
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 992px) {
    .deals--banner--countdown .countdown--text {
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .deals--banner--countdown .countdown--text {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}

@media only screen and (min-width: 1600px) {
    .deals--banner--countdown .countdown--text {
        font-size: 1.8rem;
    }
}

.banner--bideo--play {
    position: absolute;
    top: 50%;
    right: 24%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (min-width: 768px) {
    .banner--bideo--play {
        right: 8%;
    }
}

@media only screen and (min-width: 992px) {
    .banner--bideo--play {
        right: 10%;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--bideo--play {
        right: 24%;
    }
}

@media only screen and (max-width: 767px) {
    .banner--bideo--play {
        position: inherit;
        display: inline-block;
        top: inherit;
        -webkit-transform: inherit;
        transform: inherit;
        right: 0;
        margin-top: 2rem;
    }
}

.banner--bideo--play--icon {
    width: 5rem;
    height: 5rem;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: animate 2s linear infinite;
    animation: animate 2s linear infinite;
}

.banner--bideo--play--icon:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

@media only screen and (min-width: 768px) {
    .banner--bideo--play--icon {
        width: 6rem;
        height: 6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--bideo--play--icon {
        width: 7rem;
        height: 7rem;
    }
}

.banner--bideo--play--icon:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

@media only screen and (max-width: 767px) {
    .banner--bideo--play--icon svg {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@-webkit-keyframes animate {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    80% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes animate {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    80% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 rgba(255, 193, 7, 0);
        box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    }
}

.banner--section--inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: 9;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .banner--img--height--md {
        height: 30rem;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media only screen and (max-width: 575px) {
    .banner--img--height--md {
        height: 33rem;
    }
}

.banner--content--style2 {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}

@media only screen and (min-width: 768px) {
    .banner--content--style2 {
        left: 3.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .banner--content--style2 {
        left: 6rem;
    }
}

@media only screen and (max-width: 767px) {
    .banner--content--style2 {
        padding: 0 3rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--content--style2 {
        padding: 0 2rem;
        text-align: center;
    }
}

.banner--content--style2--title {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
    .banner--content--style2--title {
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    .banner--content--style2--title {
        margin-bottom: 1.2rem;
        font-size: 3.2rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--content--style2--title {
        font-size: 3.5rem;
        line-height: 3.5rem;
        margin-bottom: 1.8rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--content--style2--title {
        font-size: 4rem;
        line-height: 4rem;
        margin-bottom: 2rem;
    }
}

.banner--content--style2--desc {
    color: var(--light-color);
    margin-bottom: 1.8rem;
    line-height: 2.2rem;
}

@media only screen and (min-width: 576px) {
    .banner--content--style2--desc {
        width: 75%;
        line-height: 2.4rem;
    }
}

@media only screen and (min-width: 768px) {
    .banner--content--style2--desc {
        width: 63%;
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 992px) {
    .banner--content--style2--desc {
        width: 53%;
        margin-bottom: 2rem;
        line-height: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--content--style2--desc {
        width: 42%;
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .banner--content--style2--desc {
        width: 37%;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--content--style2--desc {
        margin-bottom: 4rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--img--max--height {
        height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media only screen and (max-width: 575px) {
    .banner--style2--top--sidebar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media only screen and (max-width: 575px) {
    .banner--items.mr-30 {
        margin-right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .banner--discount--items {
        margin-bottom: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--discount.section--padding {
        padding-bottom: 3.5rem;
    }
}

.banner--discount--content {
    background: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 1rem 2rem;
    -webkit-transform: translatey(-50%) translatex(-50%);
    transform: translatey(-50%) translatex(-50%);
}

@media only screen and (min-width: 768px) {
    .banner--discount--content {
        padding: 2rem 3rem;
    }
}

@media only screen and (min-width: 992px) {
    .banner--discount--content {
        padding: 3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--discount--content {
        padding: 4rem;
    }
}

@media only screen and (min-width: 1366px) {
    .banner--discount--content {
        padding: 4rem 5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--discount--content {
        padding: 5.5rem 13rem 6rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner--discount--content {
        left: 10%;
        right: 10%;
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
    }
}

.banner--discount--content--subtitle {
    font-weight: 600;
    color: var(--text-gray-color);
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .banner--discount--content--subtitle {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 1200px) {
    .banner--discount--content--subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

@media only screen and (max-width: 767px) {
    .banner--discount--content--subtitle {
        margin-bottom: 0.5rem;
        line-height: 2rem;
        font-size: 1.5rem;
    }
}

.banner--discount--content--title {
    font-weight: 500;
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 1200px) {
    .banner--discount--content--title {
        font-size: 2.8rem;
        line-height: 3.7rem;
        margin-bottom: 1.3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .banner--discount--content--title {
        font-size: 3rem;
        line-height: 4rem;
        margin-bottom: 1.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .banner--discount--content--title {
        margin-bottom: 0.5rem;
        line-height: 2.2rem;
        font-size: 1.6rem;
    }
}

.banner--discount--content--link {
    color: var(--text-gray-color);
    text-decoration: underline;
}

.banner--discount--content--link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .banner--discount--content--link {
        font-size: 1.3rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .shop--card--section--inner {
        padding: 0 4.5rem;
    }
}

.shop--card--banner--thumbnail {
    width: 50%;
    overflow: hidden;
}

.shop--card--banner--thumbnail a {
    width: 100%;
}

.shop--card--banner--thumbnail a img {
    width: 100%;
}

.shop--card--banner--thumbnail.two {
    margin: 3rem 0 0 2.5rem;
}

@media only screen and (max-width: 767px) {
    .shop--card--banner--thumbnail.two {
        margin: 0 0 0 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .shop--card--banner--thumbnail.two {
        margin: 0 0 0 1.5rem;
    }
}

.shop--card--banner--thumbnail:hover .shop--card--banner--thumbnail--img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.shop--card--play {
    left: 50%;
    right: auto;
    -webkit-transform: translatey(-50%) translatex(-50%);
    transform: translatey(-50%) translatex(-50%);
    top: 50%;
    position: absolute;
}

@media only screen and (max-width: 767px) {
    .shop--card--play {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .shop--card--play--icon {
        width: 7rem;
        height: 7rem;
    }
}

@media only screen and (min-width: 1600px) {
    .shop--card--play--icon {
        width: 8rem;
        height: 8rem;
    }
}

@media only screen and (max-width: 767px) {
    .shop--card--play--icon {
        width: 6rem;
        height: 6rem;
    }
}

@media only screen and (max-width: 575px) {
    .shop--card--play--icon {
        width: 5rem;
        height: 5rem;
    }
}

@media only screen and (max-width: 767px) {
    .shop--card--content {
        margin-top: 2.5rem;
        text-align: center;
    }
}

.order--place-details {
    background-color: var(--secondary-color);
    border-radius: 25px;
    color: var(--white-color);
    padding: 10px 25px;
    display: table;
    margin: 0 auto;
}

.shop--card--content--subtitle {
    font-weight: 400;
    color: var(--text-gray-color);
    margin-bottom: 0.3rem;
}

@media only screen and (min-width: 1200px) {
    .shop--card--content--subtitle {
        font-size: 1.7rem;
    }
}

@media only screen and (min-width: 1366px) {
    .shop--card--content--subtitle {
        font-size: 1.8rem;
    }
}

.shop--card--content--maintitle {
    font-weight: 600;
}

@media only screen and (min-width: 992px) {
    .shop--card--content--maintitle {
        line-height: 4.5rem;
    }
}

.shop--card--content--desc {
    margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
    .shop--card--content--desc {
        margin-bottom: 2.5rem;
    }
}

.banner--items--content--style3 {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner--items--content--style3--subtitle {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

@media only screen and (min-width: 992px) {
    .banner--items--content--style3--subtitle {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
}

.banner--items--content--style3--title {
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 3rem;
}

@media only screen and (min-width: 1200px) {
    .banner--items--content--style3--title {
        font-size: 2.4rem;
        line-height: 3.2rem;
    }
}

@media only screen and (min-width: 1366px) {
    .banner--items--content--style3--title {
        font-size: 2.6rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 1666px) {
    .banner--items--content--style3--title {
        font-size: 3.2rem;
        line-height: 4rem;
    }
}

.banner--bg3 {
    background: url(../img/banner/banner-bg5.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

@media only screen and (max-width: 575px) {
    .banner--bg3 {
        background-position: 10%;
    }
}

.deals--countdown--style3 {
    padding: 0.8rem 0 2.2rem;
}

@media only screen and (min-width: 768px) {
    .deals--countdown--style3 {
        padding: 2rem 0 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .deals--countdown--style3 {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.deals--countdown--style3 .countdown--item {
    text-align: center;
    margin-right: 1.5rem;
}

.deals--countdown--style3 .countdown--item:last-child {
    margin-right: 0;
}

.deals--countdown--style3 .countdown--number {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--white-color);
    line-height: 4.5rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 50%;
}

.deals--countdown--style3 .countdown--text {
    text-transform: capitalize;
    color: var(--primary-color);
    font-size: 1.5rem;
    padding-top: 0.8rem;
    line-height: 2rem;
    font-weight: 500;
}

.deals--content--style3--subtitle {
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .deals--content--style3--subtitle {
        font-size: 1.7rem;
    }
}

.deals--content--style3--maintitle {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .deals--content--style3--maintitle {
        font-size: 3rem;
        line-height: 3.2rem;
    }
}

.countdown--style3--btn {
    font-size: 1.5rem;
    line-height: 4rem;
    height: 4.2rem;
    padding: 0 1.2rem;
}

@media only screen and (min-width: 768px) {
    .countdown--style3--btn {
        font-size: 1.6rem;
        line-height: 4.8rem;
        height: 4.8rem;
        padding: 0 1.8rem;
    }
}

@media only screen and (min-width: 768px) {
    .banner--bideo--play.style3 {
        right: 10%;
    }
}


/* 
    6. Blog css 
*/

.blog--items:hover .blog--thumbnail--img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.blog--thumbnail {
    overflow: hidden;
}

.blog--thumbnail--link {
    width: 100%;
    display: block;
}

.blog--thumbnail--img {
    width: 100%;
    display: block;
}

.blog--content {
    padding-top: 1.2rem;
}

.blog--content--meta {
    color: var(--text-gray-color);
    line-height: 2.4rem;
    margin-bottom: 0.9rem;
}

.blog--content--title {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 992px) {
    .blog--content--title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
}

@media only screen and (min-width: 1200px) {
    .blog--content--title {
        line-height: 3rem;
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 1366px) {
    .blog--content--title {
        font-size: 1.9rem;
        line-height: 2.7rem;
    }
}

@media only screen and (min-width: 1600px) {
    .blog--content--title {
        font-size: 2.2rem;
        line-height: 3.2rem;
        margin-bottom: 2.3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .blog--content--title.style2 {
        font-size: 1.7rem;
        line-height: 2.7rem;
    }
}

@media only screen and (min-width: 1600px) {
    .blog--content--title.style2 {
        font-size: 1.8rem;
        line-height: 3rem;
    }
}

.blog--content--btn {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--text-gray-color);
    line-height: 3.3rem;
}

@media only screen and (min-width: 768px) {
    .blog--content--btn {
        line-height: 3.8rem;
    }
}

@media only screen and (min-width: 992px) {
    .blog--content--btn {
        padding: 0 3rem;
        line-height: 4.3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .blog--content--btn {
        padding: 0 3rem;
        line-height: 4.2rem;
        height: 4.4rem;
    }
}

.blog--content--btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

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

@media only screen and (min-width: 992px) {
    .blog--content--btn.style2 {
        padding: 0 3rem;
        height: 4.3rem;
        line-height: 4.3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .blog--content--btn.style2 {
        padding: 0 4rem;
        height: 4.8rem;
        line-height: 4.8rem;
    }
}

.blog--content--btn.style2:hover {
    background: var(--secondary-color) !important;
}

.blog--content.style2 {
    background: var(--white-color);
    position: relative;
}

@media only screen and (min-width: 1200px) {
    .blog--content.style2 {
        margin-left: 2.5rem;
        padding: 1.8rem;
        margin-top: -5.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .blog--content.style2 {
        margin-left: 5.5rem;
        padding: 1.8rem;
        margin-top: -5.5rem;
    }
}


/* 
    7. Testimonial css
*/

@media only screen and (max-width: 767px) {
    .testimonial--section.section--padding {
        padding-bottom: 5.5rem;
    }
}

.testimonial--section--inner {
    padding: 1rem 1rem 4.5rem;
}

@media only screen and (min-width: 768px) {
    .testimonial--section--inner {
        padding: 1rem 1rem 5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .testimonial--section--inner {
        padding: 1rem 1rem 6rem;
    }
}

.testimonial--items {
    padding: 22px 18px;
    background: var(--white-color);
    border-radius: 1rem;
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
}

@media only screen and (min-width: 1200px) {
    .testimonial--items {
        padding: 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .testimonial--items {
        padding: 3rem 3.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .testimonial--items {
        padding: 4rem 4.5rem;
    }
}

.testimonial--items:hover .testimonial--items--thumbnail--img {
    border-color: var(--secondary-color);
}

.testimonial--items--thumbnail {
    margin-bottom: 1.3rem;
}

.testimonial--items--thumbnail--img {
    padding: 0.3rem;
    display: block;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.testimonial--items--content {
    position: relative;
}

.testimonial--items--title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 6px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) {
    .testimonial--items--title {
        font-size: 2rem;
        line-height: 2.3rem;
        margin-bottom: 1rem;
    }
}

@media only screen and (min-width: 1600px) {
    .testimonial--items--title {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }
}

.testimonial--items--subtitle {
    font-size: 1.6rem;
    line-height: 2rem;
    color: var(--text-gray-color);
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    .testimonial--items--subtitle {
        font-size: 2rem;
        line-height: 2.6rem;
        margin-bottom: 1.2rem;
    }
}

.testimonial--items--desc {
    margin-bottom: 1.2rem;
    line-height: 2.4rem;
}

@media only screen and (min-width: 992px) {
    .testimonial--items--desc {
        margin-bottom: 1.4rem;
        line-height: 2.7rem;
    }
}

@media only screen and (min-width: 992px) {
    .testimonial--items--desc.style2 {
        width: 55%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 575px) {
    .testimonial--items--desc.style2 {
        padding: 0 1.5rem;
    }
}

.testimonial--bg {
    background: url(../img/banner/banner-bg3.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

.testimonial--bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    left: 0;
    top: 0;
    opacity: 0.4;
}

.testimonial--items--style2 {
    background: none;
    padding: 0 0 5rem;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

@media only screen and (max-width: 575px) {
    .testimonial--items--style2 {
        padding: 0 0 4.5rem;
    }
}

.testimonial--items--style2--thumbnail--img {
    border: 3px solid var(--white-color);
}

.testimonial--items--subtitle.text-white {
    color: var(--white-color);
}

.testimonial--pagination.style2 .swiper-pagination-bullet {
    border: 1px solid var(--secondary-color);
}

.testimonial--pagination.style2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}


/*
    8. Featured services css
*/

@media only screen and (max-width: 767px) {
    .shipping--section.section--padding {
        padding-bottom: 5.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .shipping--section--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.shipping--items {
    padding: 0 20px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .shipping--items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0 15px;
        margin-bottom: 27px;
    }
}

@media only screen and (min-width: 768px) {
    .shipping--items {
        width: 50%;
    }
}

@media only screen and (min-width: 992px) {
    .shipping--items {
        width: 25%;
    }

    .shipping--items::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        background: #aeaebf;
        right: 0;
        top: 0;
        opacity: 0.25;
    }
}

.shipping--items:last-child::before {
    display: none;
}

.shipping--items:hover .shipping--items--icon {
    background: var(--primary-color);
    opacity: 0.67;
    color: var(--white-color);
    border-color: var(--primary-color);
}

.shipping--items--icon {
    width: 5rem;
    height: 5rem;
    line-height: 5.3rem;
    padding: 5px 9px;
    text-align: center;
    border: 1px solid rgba(174, 174, 191, 0.2);
    background: var(--white-color);
    border-radius: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (min-width: 992px) {
    .shipping--items--icon {
        width: 5.5rem;
        height: 5.5rem;
        line-height: 5.1rem;
        padding: 8px 12px;
        margin: 0 auto 20px;
    }
}

.shipping--items--icon svg {
    width: 25px;
}

@media only screen and (min-width: 992px) {
    .shipping--items--icon svg {
        width: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .shipping--items--content {
        text-align: left !important;
        padding-left: 20px;
    }
}

.shipping--items--title {
    margin-bottom: 8px;
}

@media only screen and (min-width: 992px) {
    .shipping--items--title {
        font-size: 2.2rem;
        line-height: 2.6rem;
        margin-bottom: 10px;
    }
}

.shipping--items--desc {
    color: var(--sky-color);
    font-size: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .shipping--items--desc {
        font-size: 1.6rem;
    }
}

.shipping--section2--inner {
    -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    padding: 30px 20px;
    background: var(--white-color);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .shipping--section2--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 20px 5px;
    }
}

@media only screen and (min-width: 992px) {
    .shipping--section2--inner {
        padding: 35px 25px;
    }
}

@media only screen and (min-width: 1200px) {
    .shipping--section2--inner {
        padding: 35px 65px;
    }
}

.shipping--items2 {
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--items2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .shipping--items2 {
        margin-bottom: 25px;
        margin-right: 0;
        width: 50%;
    }
}

@media only screen and (max-width: 450px) {
    .shipping--items2 {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.shipping--items2:last-child {
    margin-right: 0;
}

.shipping--items2--content {
    padding-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--items2--content {
        padding-left: 0;
    }
}

@media only screen and (max-width: 450px) {
    .shipping--items2--content {
        padding-left: 20px;
    }
}

.shipping--items2--content--title {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
    .shipping--items2--content--title {
        font-size: 1.8rem;
    }
}

.shipping--items2--content--desc {
    font-size: 1.2rem;
    color: var(--sky-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--items2--icon {
        margin-bottom: 1.5rem;
    }
}

.shipping--items2--icon img {
    display: block;
}

@media only screen and (max-width: 575px) {
    .shipping--items2--icon img {
        width: 4rem;
    }
}

.shipping--style3--items {
    position: relative;
    margin-right: 10rem;
    padding-right: 10rem;
}

@media only screen and (min-width: 992px) {
    .shipping--style3--items {
        margin-right: 2rem;
        padding-right: 2rem;
        width: 25%;
    }
}

@media only screen and (min-width: 1200px) {
    .shipping--style3--items {
        margin-right: 4rem;
        padding-right: 4rem;
        width: auto;
    }
}

@media only screen and (min-width: 1366px) {
    .shipping--style3--items {
        margin-right: 6rem;
        padding-right: 6rem;
    }
}

@media only screen and (min-width: 1600px) {
    .shipping--style3--items {
        margin-right: 10rem;
        padding-right: 10rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--style3--items {
        margin-right: 2rem;
        padding-right: 2rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .shipping--style3--items::before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .shipping--style3--items {
        margin-right: 0;
        padding-right: 0;
        width: 50%;
        margin-bottom: 2.5rem;
    }

    .shipping--style3--items::before {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    .shipping--style3--items {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.shipping--style3--items:last-child {
    margin-right: 0;
    padding-right: 0;
}

.shipping--style3--items:last-child::before {
    display: none;
}

.shipping--style3--items::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--border-color);
    right: 0;
    top: 0;
}

.shipping--style3--icon {
    color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--style3--icon {
        margin-bottom: 1.5rem;
    }
}

.shipping--style3--content {
    padding-left: 1.5rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shipping--style3--content {
        padding-left: 0;
    }
}

.shipping--style3--content--title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

@media only screen and (min-width: 1200px) {
    .shipping--style3--content--title {
        font-size: 1.8rem;
        line-height: 2.2rem;
        margin-bottom: 0.8rem;
    }
}

.shipping--style3--content--desc {
    line-height: 2rem;
    font-size: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .shipping--style3--content--desc {
        font-size: 1.6rem;
    }
}

.shipping--style3--inner {
    -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    padding: 2.5rem 2rem;
    background: var(--white-color);
}

@media only screen and (min-width: 1200px) {
    .shipping--style3--inner {
        padding: 3.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .shipping--style3--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 2.5rem 1.5rem 0;
    }
}


/*
  9. Footer css
*/

@media only screen and (max-width: 991px) {
    .footer--section {
        padding-bottom: 7rem;
    }
}

.footer--section {
    background-color: var(--secondary-color);
    position: relative;
}

.footer--section .bg-wave-shapes {
    bottom: unset;
    transform: rotate(180deg);
}

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

.main--footer {
    border-bottom: 1px solid #dddddd;
    padding: 6rem 0 2rem;
}

@media only screen and (min-width: 992px) {
    .main--footer {
        padding: 6.5rem 0 3rem;
    }
}

@media only screen and (min-width: 1366px) {
    .main--footer {
        padding: 7rem 0;
    }
}

@media only screen and (min-width: 1600px) {
    .main--footer {
        padding: 8rem 0;
    }
}

@media only screen and (max-width: 1365px) {
    .main--footer {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .main--footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 6rem 0 3.5rem;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1449px) {
    .footer--widget--width {
        width: 33.00%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .footer--widget--width {
        width: 33.00%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer--widget--width {
        width: 32%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer--widget--width {
        width: 49%;
    }
}

.social--title {
    font-size: 1.8rem;
    font-weight: 400;
}

.social--shear--list {
    margin-right: 1.3rem;
}

.social--shear--list:last-child {
    margin-right: 0;
}

.social--shear--list--icon {
    color: var(--ofwhite-color);
}

.footer--widget {
    margin-right: 3rem;
}

@media only screen and (max-width: 1365px) {
    .footer--widget {
        margin-bottom: 4rem;
    }
}

@media only screen and (max-width: 767px) {
    .footer--widget {
        margin-bottom: 0;
        margin-right: 0;
    }
}

.footer--widget:last-child {
    margin-right: 0;
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer--widget:nth-child(3) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer--widget:nth-child(2) {
        margin-right: 0;
    }
}

.footer--widget--title {
    margin-bottom: 2rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .footer--widget--title {
        margin-bottom: 3rem;
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width: 1199px) {
    .footer--widget--title {
        font-size: 2rem;
        margin-bottom: 2.2rem;
    }
}

@media only screen and (max-width: 767px) {
    .footer--widget--title {
        padding-bottom: 0;
        font-size: 1.8rem;
    }
}

.footer--widget--title::before {
    position: absolute;
    content: "";
    height: 0.2rem;
    width: 6rem;
    background: #ffffff;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 767px) {
    .footer--widget--title::before {
        display: none;
    }
}

.footer--widget--title--arrowdown--icon {
    position: absolute;
    right: 0;
    top: 38%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: none;
}

@media only screen and (max-width: 767px) {
    .footer--widget--title--arrowdown--icon {
        display: block;
    }
}

.footer--widget.active {
    padding-bottom: 3.5rem;
}

.footer--widget.active .footer--widget--title--arrowdown--icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer--widget--menu--text {
    color: var(--ofwhite-color);
    line-height: 3rem;
}

.footer--widget--menu--wrapper .footer--widget {
    margin-right: 3rem;
}

@media only screen and (min-width: 1600px) {
    .footer--widget--menu--wrapper .footer--widget {
        margin-right: 6rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer--widget--menu--wrapper .footer--widget {
        margin-right: 4rem;
    }
}

.footer--widget--menu--wrapper .footer--widget:last-child {
    margin-right: 3rem;
}

@media only screen and (max-width: 767px) {
    .footer--widget--menu--wrapper .footer--widget:last-child {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer--widget--menu--wrapper .footer--widget {
        margin-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer--widget--menu--wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer--widget--button {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    content: "";
    color: transparent;
    border: 0;
    background-color: transparent;
    color: var(--white-color);
}

.footer--widget--button>* {
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .footer--widget--button {
        visibility: visible;
    }
}

@media only screen and (max-width: 767px) {
    .footer--widget--inner {
        display: none;
    }
}

.newsletter--subscribe {
    margin-top: 2rem;
}

.newsletter--subscribe--input {
    width: 100%;
    border: 0;
    height: 4.5rem;
    background: var(--ofwhite-color);
    padding: 0 1.5rem;
    font-weight: 600;
}

.newsletter--subscribe--input:focus {
    border-color: var(--secondary-color);
}

.newsletter--subscribe--input:focus::-webkit-input-placeholder {
    color: #000000;
}

.newsletter--subscribe--input.style3 {
    padding: 0 4.7rem 0 1.5rem;
}

.newsletter--subscribe--button {
    width: 100%;
    margin: 0 auto;
    height: 4.5rem;
    display: block;
    font-weight: 600;
    background: var(--white-color);
    border: 0;
    color: var(--secondary-color);
    margin-top: 2rem;
}

@media only screen and (min-width: 992px) {
    .newsletter--subscribe--button {
        font-size: 2rem;
    }
}

.newsletter--subscribe--button:hover {
    background: var(--secondary-off-color);
    color: var(--white-color);
}

.newsletter--subscribe--button.style3 {
    line-height: 5.5rem;
    position: absolute;
    top: 0px;
    right: 9px;
    width: auto;
    background: inherit;
    color: var(--secondary-color);
    margin: 0;
}

.newsletter--subscribe--button.style3:hover {
    color: var(--primary-color);
}

.footer--bottom {
    padding: 2rem 0;
}

@media only screen and (min-width: 768px) {
    .footer--bottom {
        padding: 2.5rem 0;
    }
}

@media only screen and (max-width: 991px) {
    .footer--bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer--instagram--list {
    margin-bottom: 1rem;
}

.footer--instagram--list:last-child {
    margin-bottom: 0;
}

.instagram--thumbnail {
    margin-right: 1rem;
}

.instagram--thumbnail:last-child {
    margin-bottom: 0;
}

.instagram--thumbnail a {
    display: block;
}

.instagram--thumbnail a img {
    display: block;
    width: 8rem;
}

@media only screen and (max-width: 991px) {
    .copyright--content {
        margin-bottom: 2rem !important;
    }
}

@media only screen and (max-width: 767px) {
    .copyright--content {
        text-align: center;
        margin-bottom: 1.5rem !important;
    }
}

.copyright--content--link:hover {
    text-decoration: underline;
}

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

.footer--dropdown--language {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    top: auto;
    bottom: 100%;
    left: 0;
    margin-top: 0;
    margin-bottom: 2.8rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
    opacity: 0;
    visibility: hidden;
}

.footer--dropdown--language.active {
    opacity: 1;
    visibility: visible;
    margin-bottom: 1.5rem;
}

.footer--dropdown--currency {
    position: absolute;
    z-index: 9;
    width: 100px;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    top: auto;
    bottom: 100%;
    left: 0;
    margin-top: 0;
    margin-bottom: 2.8rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: var(--white-color);
    opacity: 0;
    visibility: hidden;
}

.footer--dropdown--currency.active {
    opacity: 1;
    visibility: visible;
    margin-bottom: 1.5rem;
}

.footer--currency--link>* {
    pointer-events: none;
}

.footer--currency--link:hover {
    color: var(--secondary-color);
}

.footer--currency--link:hover span {
    color: var(--secondary-color);
}

.footer--social--style3 .social--shear--list--icon {
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer--social--style3 .social--shear--list--icon:hover {
    color: var(--secondary-color);
}

.footer--social--style3 .social--shear--list--icon:hover span {
    color: var(--secondary-color);
}

.footer--social--style3 .social--shear--list {
    margin-right: 0;
    margin-bottom: 1.5rem;
}

.footer--social--style3 .social--shear--list:last-child {
    margin-right: 0;
}

.footer--social--icon--svg {
    width: 2.5rem;
    margin-right: 1rem;
}

.footer--menu--style3 .footer--widget--menu--text {
    color: var(--black-color);
}

.footer--menu--style3 .footer--widget--menu--text:hover {
    color: var(--secondary-color);
}

.footer--language--link>* {
    pointer-events: none;
}

@media only screen and (max-width: 1199px) {
    .footer--language--currency {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 1199px) {
    .footer--language--currency ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.copyright--content.style3 {
    text-align: center;
    margin-bottom: 2rem;
}

.footer--payment.style3 {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

@media only screen and (min-width: 1366px) {
    .footer--widget--desc.style3 {
        padding-right: 4rem;
    }
}

.footer--widget--button.style3 {
    color: var(--primary-color);
}


/*
  10. Quick view modal css
*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in;
    z-index: 99;
}

.modal.is-visible {
    visibility: visible;
    opacity: 1;
}

.modal.is-visible .quickview--main--wrapper {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.quickview--main--wrapper {
    position: relative;
    min-width: 880px;
    max-width: 880px;
    max-height: 80vh;
    border-radius: 10px;
    background: #fff;
    overflow: auto;
    cursor: default;
    padding: 20px;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    pointer-events: inherit;
}

@media only screen and (max-width: 767px) {
    .quickview--main--wrapper {
        max-width: 550px;
    }
}

@media only screen and (max-width: 575px) {
    .quickview--main--wrapper {
        padding: 25px 15px;
    }
}

.quickview--header {
    position: absolute;
    padding: 0;
    top: 16px;
    right: 16px;
    z-index: 9;
}

@media only screen and (max-width: 767px) {
    .quickview--header {
        top: 10px;
        right: 10px;
    }
}

.quickview--close--btn {
    font-size: 1.8rem;
    padding: 0;
    width: 3.2rem;
    height: 3.2rem;
    line-height: 2.6rem;
    border-radius: 50%;
    font-weight: 700;
    border: 1px solid var(--border-color);
    background: var(--white-color);
}

.quickview--close--btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}


/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

[data-animation] .modal-dialog {
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

[data-animation].is-visible .modal-dialog {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

@media only screen and (max-width: 767px) {
    .quickview--product--media.product--details--media {
        margin-bottom: 3rem;
    }
}

.quickview--info--review--text {
    color: var(--text-gray-color);
    font-weight: 500;
    margin-left: 15px;
}

@media only screen and (max-width: 767px) {
    .quickview--gallery {
        margin-bottom: 20px;
    }
}

.quickview--thumb {
    position: relative;
    line-height: 1;
}

.quickview--thumb--link {
    width: 100%;
    border-radius: 8px;
}

.quickview--thumb--img {
    width: 100%;
    border-radius: 8px;
}

.quickview--gallery--pagination .swiper-pagination-bullet {
    width: 16px;
    height: 5px;
    background: var(--secondary-color);
    opacity: 1;
    border-radius: 2px;
    margin: 0 3px !important;
}

.quickview--gallery--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.variant--color--value {
    width: 2.5rem;
    height: 2.5rem;
    padding: 2px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
    line-height: 1;
    cursor: pointer;
}

.variant--color--value:last-child {
    margin-right: 0;
}

.variant--color--value--img {
    border-radius: 50%;
}

.variant--input--fieldset input[type="radio"]+label {
    border: 1px solid var(--primary-color);
}

.variant--input--fieldset input[type="radio"]+label:hover {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.variant--input--fieldset {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    border: none;
    margin: 0;
    padding: 0;
}

.variant--input--fieldset {
    margin-right: 10px;
}

.variant--input--fieldset input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

.variant--input--fieldset input[type="radio"]:checked+label {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.variant--input--fieldset:last-child {
    margin-right: 0;
}

.variant--size--value {
    width: 4.7rem;
    height: 3.2rem;
    line-height: 2.8rem;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-right: 7px;
}

.variant--size--value:last-child {
    margin-right: 0;
}

.quickview--variant--wishlist--svg {
    width: 22px;
    margin-right: 7px;
}

.variant--wishlist--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quickview--value--quantity {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.2rem;
    line-height: 3.3rem;
}

.quickview--value--quantity.decrease {
    border-radius: 17px 0 0 17px;
}

.quickview--value--quantity.increase {
    border-radius: 0 17px 17px 0;
}

input.quickview--value--number {
    height: 3.5rem;
    font-size: 1.7rem;
    width: 7.5rem;
}

.quickview--cart--btn {
    height: 3.8rem;
    line-height: 3.8rem;
    padding: 0 25px;
    margin-left: 15px;
    font-size: 1.5rem;
}

.quickview--social--title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 15px;
}

.quickview--social--list {
    margin-right: 10px;
}

.quickview--social--list:last-child {
    margin-right: 0;
}

.quickview--social--icon {
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
}

.quickview--social--icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/*
    11. Accordion css
*/

@media only screen and (max-width: 767px) {
    .accordion--section--inner .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 767px) {
    .accordion--banner {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .accordion--wrapper {
        margin-bottom: 30px;
    }
}

.accordion--items.active {
    margin-bottom: 20px;
}

.accordion--items.active:last-child {
    margin-bottom: 0;
}

.accordion--items--body {
    display: none;
    padding: 0 20px;
}

.accordion--items--body--desc {
    font-size: 1.5rem;
    line-height: 2.8rem;
}

.accordion--items--button {
    border: 0;
    background: var(--white-color);
    width: 100%;
    padding: 13px 60px 13px 25px;
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .accordion--items--button {
        padding: 13px 70px 13px 35px;
    }
}

@media only screen and (min-width: 1200px) {
    .accordion--items--button {
        padding: 24px 80px 24px 40px;
    }
}

.accordion--items--button--icon {
    width: 3rem;
    height: 3rem;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (min-width: 768px) {
    .accordion--items--button--icon {
        right: 15px;
    }
}

@media only screen and (min-width: 992px) {
    .accordion--items--button--icon {
        right: 35px;
    }
}


/*
    12. Portfolio css
*/

.portfolio--items--thumbnail {
    line-height: 1;
}

.portfolio--items--thumbnail::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 9;
    pointer-events: none;
}

.portfolio--items--thumbnail:hover::before {
    opacity: 0.8;
}

.portfolio--items--thumbnail:hover .portfolio--view--icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translatey(-50%) translatex(-50%) scale(1);
    transform: translatey(-50%) translatex(-50%) scale(1);
}

.portfolio--items--thumbnail--link {
    overflow: hidden;
    display: block;
}

.portfolio--items--thumbnail:hover .portfolio--items--thumbnail--img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.portfolio--items--thumbnail--img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
}

.portfolio--view--icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translatey(-50%) translatex(-50%) scale(0);
    transform: translatey(-50%) translatex(-50%) scale(0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 9;
    width: 4rem;
    height: 4rem;
    background: var(--white-color);
    color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.portfolio--view--icon svg {
    width: 25px;
}

.portfolio--view--icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/*
    13. Brand logo css
*/

@media only screen and (max-width: 767px) {
    .brand--logo--section {
        padding-bottom: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .brand--logo--section--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.brand--logo--items {
    margin-right: 8rem;
}

.brand--logo--items:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    .brand--logo--items {
        margin-right: 3.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .brand--logo--items {
        margin-right: 6rem;
    }
}

@media only screen and (min-width: 1200px) {
    .brand--logo--items {
        margin-right: 8rem;
    }
}

@media only screen and (max-width: 767px) {
    .brand--logo--items {
        margin: 0 30px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .brand--logo--items {
        margin: 0 15px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .brand--logo--items--thumbnail--img {
        max-width: 11rem;
    }
}

.brand--logo--items--thumbnail--img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}


/*
    14. Breadcrumb css
*/

.breadcrumb--bg {
    background-image: url(../img/banner/shop-banner.jpg);
    background-repeat: no-repeat;
    height: 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.contact-us.breadcrumb--bg {
    background-image: url(../img/banner/contact-breadcrumb-bg.png);
}

.blog.breadcrumb--bg {
    background-image: url(../img/banner/blog-breadcrumb-bg.png);
}

.coupons.breadcrumb--bg {
    background-image: url(../img/banner/coupons-breadcrumb-bg.png);
}

.flashdeals.breadcrumb--bg {
    background-image: url(../img/banner/flashdeals-breadcrumb-bg.png);
}

.shopping-cart.breadcrumb--bg {
    background-image: url(../img/banner/cart-breadcrumb-bg.png);
}

.my-account.breadcrumb--bg {
    background-image: url(../img/banner/signup-breadcrumb-bg.png);
}

.aboutus.breadcrumb--bg {
    background-image: url(../img/banner/aboutus-breadcrumb-bg.png);
}

.privacy-policy.breadcrumb--bg {
    background-image: url(../img/banner/privacy-policy-breadcrumb-bg.png);
}

.profile.breadcrumb--bg {
    background-image: url(../img/banner/profile-breadcrumb-bg.png);
}

.breadcrumb--bg::before {
    content: '';
    background-color: #0000005c;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.privacy-policy-breadcrumb {
    background: url(../img/banner/privacy-policy-breadcrumb.png);
}

@media only screen and (min-width: 480px) {
    .breadcrumb--bg {
        height: 250px;
    }
}

@media only screen and (min-width: 576px) {
    .breadcrumb--bg {
        height: 270px;
    }
}

@media only screen and (min-width: 768px) {
    .breadcrumb--bg {
        height: 290px;
    }
}

@media only screen and (min-width: 992px) {
    .breadcrumb--bg {
        height: 350px;
    }
}

@media only screen and (min-width: 1200px) {
    .breadcrumb--bg {
        height: 400px;
    }
}

@media only screen and (min-width: 1600px) {
    .breadcrumb--bg {
        height: 450px;
    }
}

@media only screen and (max-width: 1600px) {
    .breadcrumb--bg {
        background-position: center center;
        background-size: cover;
    }
}

.breadcrumb--content {
    position: relative;
}

.breadcrumb--content--title.mb-25 {
    margin-bottom: 12px;
    color: var(--secondary-color) !important;
}

@media only screen and (min-width: 768px) {
    .breadcrumb--content--title.mb-25 {
        margin-bottom: 18px;
    }
}

@media only screen and (min-width: 992px) {
    .breadcrumb--content--title.mb-25 {
        margin-bottom: 20px;
    }
}

.breadcrumb--content--menu--items {
    position: relative;
    margin-right: 20px;
    padding-right: 22px;
    font-size: 16px;
    line-height: 24px;
}

@media only screen and (min-width: 768px) {
    .breadcrumb--content--menu--items {
        font-size: 18px;
    }
}

.breadcrumb--content--menu--items:last-child {
    margin-right: 0;
    padding-right: 0;
}

.breadcrumb--content--menu--items:last-child::before {
    display: none;
}

.breadcrumb--content--menu--items::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 20px;
    background: var(--secondary-color);
    right: 0;
    top: 4px;
    border-radius: 5px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}


/*
    15. About page css
*/

@media only screen and (max-width: 991px) {
    .team--section.section--padding {
        padding-bottom: 6rem;
    }
}

@media only screen and (max-width: 767px) {
    .team--section.section--padding {
        padding-bottom: 4rem;
    }
}

@media only screen and (max-width: 991px) {
    .about--thumb {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .about--thumb {
        margin-bottom: 2.5rem;
    }
}

.about--thumb--items {
    margin-right: 2rem;
    width: 50%;
}

.about--thumb--items:last-child {
    margin-right: 0;
}

.about--thumb--items:first-child {
    margin-top: 5rem;
}

@media only screen and (max-width: 991px) {
    .about--thumb--items:first-child {
        margin-top: 0;
    }
}

.about--thumb--img {
    width: 100%;
}

.about--thumb--play {
    top: 40%;
    padding: 0;
    border: 0;
    right: 42%;
    position: absolute;
}

@media only screen and (max-width: 991px) {
    .about--thumb--play {
        top: 50%;
        -webkit-transform: translatey(-50%);
        transform: translatey(-50%);
        margin-top: 0;
    }
}

@media only screen and (max-width: 575px) {
    .about--content {
        text-align: center;
    }
}

.about--content--subtitle {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.2rem;
}

@media only screen and (max-width: 575px) {
    .about--content--subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

.about--content--maintitle {
    font-weight: 700;
}

@media only screen and (min-width: 992px) {
    .about--content--maintitle {
        font-size: 3rem;
        line-height: 3.7rem;
    }
}

@media only screen and (max-width: 575px) {
    .about--content--maintitle {
        line-height: 2.8rem;
        margin-bottom: 1.5rem;
    }
}

.about--content--desc {
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: var(--text-gray-color);
}

@media only screen and (max-width: 575px) {
    .about--content--desc {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .about--author {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.about--author--name {
    font-weight: 600;
    line-height: 2.6rem;
}

.about--author--signature {
    margin-left: 1.5rem;
}

.counterup--banner--bg2 {
    background: url(../img/banner/banner-bg4.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.counterup--banner--bg2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--black-color);
    left: 0;
    top: 0;
    opacity: 0.7;
}

.counterup--banner--inner {
    padding: 60px 0;
}

@media only screen and (max-width: 575px) {
    .counterup--banner--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 60px 0 38px;
    }
}

@media only screen and (min-width: 768px) {
    .counterup--banner--inner {
        padding: 70px 0;
    }
}

@media only screen and (min-width: 992px) {
    .counterup--banner--inner {
        padding: 80px 0;
    }
}

@media only screen and (min-width: 1200px) {
    .counterup--banner--inner {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 1600px) {
    .counterup--banner--inner {
        padding: 150px 0;
    }
}

@media only screen and (max-width: 575px) {
    .counterup--banner--items {
        width: 50%;
        margin-bottom: 22px;
    }
}

.counterup--banner--items--text {
    font-size: 1.4rem;
    line-height: 2.3rem;
    margin-bottom: 10px;
    font-weight: 400;
}

@media only screen and (min-width: 768px) {
    .counterup--banner--items--text {
        font-size: 1.6rem;
        line-height: 2.4rem;
        margin-bottom: 11px;
    }
}

@media only screen and (min-width: 992px) {
    .counterup--banner--items--text {
        font-size: 1.7rem;
        line-height: 2.7rem;
    }
}

@media only screen and (min-width: 1200px) {
    .counterup--banner--items--text {
        font-size: 2rem;
        line-height: 3.2rem;
    }
}

.counterup--banner--items--number {
    font-family: var(--font-lora);
    font-weight: 600;
    font-size: 3rem;
    line-height: 3rem;
}

@media only screen and (min-width: 768px) {
    .counterup--banner--items--number {
        font-size: 3.3rem;
    }
}

@media only screen and (min-width: 992px) {
    .counterup--banner--items--number {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .counterup--banner--items--number {
        font-size: 4rem;
        line-height: 4.5rem;
    }
}

.team--items:hover .team--thumb {
    border-color: var(--secondary-color);
}

@media only screen and (max-width: 991px) {
    .team--items {
        margin-bottom: 2.5rem;
    }
}

.team--thumb {
    position: relative;
    display: inline-block;
    border: 6px solid transparent;
    padding: 0.7rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50%;
}

.team--thumb--img {
    display: block;
    width: 100%;
}

.team--social--list {
    margin-right: 1.5rem;
}

.team--social--list:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 575px) {
    .team--social--list {
        margin-right: 0.8rem;
    }
}

.team--social--icon {
    width: 3.2rem;
    height: 3.2rem;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white-color);
    line-height: 3.5rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.team--social--icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@media only screen and (max-width: 575px) {
    .team--social--icon {
        width: 2.8rem;
        height: 2.8rem;
        line-height: 3.4rem;
    }
}

.team--content {
    padding: 1.2rem 0 0;
}

@media only screen and (max-width: 991px) {
    .team--content {
        padding: 1rem 0 0;
    }
}

@media only screen and (max-width: 575px) {
    .team--content {
        padding: 0.5rem 0 0;
    }
}

.team--content--subtitle {
    color: var(--sky-color);
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 767px) {
    .team--content--subtitle {
        font-size: 1.7rem;
        line-height: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .team--content--subtitle {
        margin-bottom: 1.2rem;
    }
}

.team--content--title {
    font-weight: 700;
    margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
    .team--content--title {
        font-size: 2.2rem;
        line-height: 2.5rem;
        margin-bottom: 1.2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .team--content--title {
        font-size: 2.4rem;
        line-height: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .team--content--title {
        margin-bottom: 0.5rem;
        line-height: 2.2rem;
    }
}


/*
    16. Shop page css
*/

.shop--header {
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
}

@media only screen and (max-width: 479px) {
    .shop--header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.product--view--mode--list {
    margin-right: 2rem;
}

.product--view--mode--list:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 992px) {
    .product--view--mode--list {
        margin-right: 1.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product--view--mode--list {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .product--view--mode--list {
        margin-right: 3.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .product--view--mode--list {
        margin-right: 0;
    }
}

.product--view--label {
    font-weight: 600;
    margin-right: 1.2rem;
}

@media only screen and (min-width: 992px) {
    .product--view--label {
        margin-right: 0.8rem;
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product--view--label {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .product--view--label {
        margin-right: 3.5rem;
    }
}

.product--view--select {
    border: 1px solid var(--border-color);
    padding: 0.6rem 3rem 0.6rem 1.2rem;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 0.5rem;
    background: var(--white-color);
}

.select.shop--header--select::before {
    right: 14px;
}

.product--grid--column--buttons--icons {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: 0.3rem;
    width: 3.7rem;
    height: 3.7rem;
    line-height: 1.1rem;
    margin-right: 10px;
    text-align: center;
    padding: 0;
}

.product--grid--column--buttons--icons>svg {
    pointer-events: none;
}

.product--grid--column--buttons--icons:last-child {
    margin-right: 0;
}

.product--grid--column--buttons--icons:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.product--grid--column--buttons--icons.active {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.product--view--search--form {
    width: 200px;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .product--view--search--form {
        width: 180px;
    }
}

@media only screen and (min-width: 1200px) {
    .product--view--search--form {
        width: 260px;
    }
}

@media only screen and (min-width: 1366px) {
    .product--view--search--form {
        width: 300px;
    }
}

.product--view--search--input {
    width: 100%;
    height: 4rem;
    background: var(--white-color);
    border-radius: 0.5rem;
    padding: 0 5rem 0 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

@media only screen and (min-width: 992px) {
    .product--view--search--input {
        font-size: 1.5rem;
    }
}

.product--view--search--input:focus {
    border-color: var(--secondary-color);
}

.product--view--search--btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    height: 100%;
    width: 4rem;
    border-radius: 0 0.5rem 0.5rem 0;
    line-height: 4.8rem;
}

.product--view--search--btn:hover {
    background: var(--primary-color);
}

.product--showing--count {
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media only screen and (min-width: 992px) {
    .product--showing--count {
        font-size: 1.5rem;
        line-height: 2.6rem;
        margin-left: 1.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product--showing--count {
        font-size: 1.7rem;
        line-height: 2.8rem;
        margin-left: 2rem;
    }
}

@media only screen and (max-width: 479px) {
    .product--showing--count {
        text-align: center;
        width: 100%;
        margin-top: 1.2rem;
    }
}

.offcanvas--filter--sidebar {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: var(--white-color);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

@media only screen and (min-width: 480px) {
    .offcanvas--filter--sidebar {
        max-width: 320px;
    }
}

.offcanvas--filter--sidebar.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.widget--filter--btn {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: 0.3rem;
    padding: 0.5rem 1.2rem;
}

.widget--filter--btn>* {
    pointer-events: none;
}

@media only screen and (max-width: 479px) {
    .widget--filter--btn {
        margin-right: 2.5rem;
    }
}

.widget--filter--btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.widget--filter--btn--icon {
    width: 20px;
}

.widget--filter--btn--text {
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 0.7rem;
}

.offcanvas--filter--close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    margin: 25px;
    background: var(--white-color);
}

.offcanvas--filter--close>* {
    pointer-events: none;
}

.offcanvas--filter--close:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.offcanvas--filter--close--text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 8px;
}

.shop--sidebar--widget {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.single--widget {
    margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
    .single--widget {
        margin-bottom: 4rem;
    }
}

.single--widget:last-child {
    margin-bottom: 0;
}

.single--widget.widget--bg {
    padding: 2rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
}

.widget--title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color2);
    padding-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
    .widget--title {
        padding-bottom: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

.widget--search--form {
    position: relative;
}

.widget--search--form--input {
    width: 100%;
    height: 5rem;
    padding: 0 6rem 0 1.2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color2);
}

@media only screen and (min-width: 992px) {
    .widget--search--form--input {
        font-size: 1.5rem;
    }
}

.widget--search--form--input:focus {
    border-color: var(--secondary-color);
}

.widget--search--form--btn {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0;
    width: 4.5rem;
    height: 100%;
    border-radius: 0 0.5rem 0.5rem 0;
}

.widget--search--form--btn:hover {
    background: var(--primary-color);
}

.widget--categories--menu--list {
    border: 1px solid var(--border-color2);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.widget--categories--menu--list.active {
    margin-bottom: 1.5rem;
}

.widget--categories--menu--list.active:last-child {
    margin-bottom: 0;
}

.widget--categories--menu--list.active .widget--categories--menu--arrowdown--icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 38%;
}

.widget--categories--menu--label {
    cursor: pointer;
    background: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    position: relative;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget--categories--menu--label>* {
    pointer-events: none;
}

.widget--categories--menu--label:hover {
    color: var(--primary-color);
}

.widget--categories--menu--text {
    padding-left: 1rem;
}

.widget--categories--menu--img {
    width: 3rem;
}

.widget--categories--menu--arrowdown--icon {
    position: absolute;
    right: 1.5rem;
    top: 43%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget--categories--sub--menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color2);
    background-color: var(--light-color2);
}

.widget--categories--sub--menu--list {
    margin-bottom: 0.8rem;
    padding: 0 1rem 0.8rem;
    border-bottom: 1px solid var(--border-color2);
}

.widget--categories--sub--menu--list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.widget--categories--sub--menu--img {
    width: 2.8rem;
}

.widget--categories--sub--menu--text {
    padding-left: 1rem;
    line-height: 2.8rem;
}

.widget--form--check--list {
    margin-bottom: 1rem;
    position: relative;
}

.widget--form--check--list:last-child {
    margin-bottom: 0;
}

.widget--form--check--label {
    cursor: pointer;
    line-height: 2.8rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 1px solid var(--border-color2);
    background: var(--white-color);
    padding: 0.5rem 3rem 0.5rem 1.5rem;
    border-radius: 0.5rem;
    display: block;
}

.widget--form--check--label:hover {
    color: var(--primary-color);
}

.widget--form--check--input {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    opacity: 0;
    cursor: pointer;
    z-index: 999;
}

.widget--form--check--input:checked~.widget--form--checkmark {
    background-color: var(--secondary-color);
}

.widget--form--check--input:checked~.widget--form--checkmark::before {
    display: block;
}

.widget--form--checkmark {
    height: 1.8rem;
    width: 1.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    background: var(--white-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget--form--checkmark::before {
    right: 0.5rem;
    top: 0.3rem;
    width: 0.5rem;
    height: 0.8rem;
    border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

.price--filter--group {
    width: 46%;
}

.price--filter--label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: inline-block;
}

@media only screen and (min-width: 992px) {
    .price--filter--label {
        font-size: 1.5rem;
    }
}

.price--filter--input {
    border: 1px solid var(--border-color2);
    padding: 0.7rem 1rem;
}

.price--filter--input--field {
    width: 100%;
}

.price--filter--currency {
    font-weight: 700;
    margin-right: 0.6rem;
}

.price--filter--btn {
    height: 4rem;
    line-height: 4rem;
}

.price--divider {
    font-size: 2rem;
    padding: 2.5rem 1rem 0;
}

.widget--tagcloud--list {
    display: inline-block;
    margin: 0 8px 8px 0;
}

.widget--tagcloud--link {
    border: 1px solid var(--border-color2);
    background: var(--white-color);
    padding: 0.5rem 1.2rem;
    line-height: 2.5rem;
    border-radius: 0.3rem;
}

.widget--tagcloud--link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

@media only screen and (max-width: 991px) {
    .shop--product--wrapper .product--items--link {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .shop--product--wrapper .product--items--img {
        width: 100%;
    }
}

@media only screen and (max-width: 1365px) {
    .product--grid--inner .product--items--action--btn {
        padding: 0 0.6rem;
    }
}

@media only screen and (max-width: 1199px) {
    .product--grid--inner .product--items--action--btn {
        padding: 0 0.5rem;
    }
}

.product--grid--inner .product--items--action--btn.add--to--cart {
    font-size: 1.3rem;
    padding: 0 0.6rem;
}

@media only screen and (min-width: 1600px) {
    .product--grid--inner .product--items--action--btn.add--to--cart {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 1365px) {
    .product--grid--inner .product--items--action--btn.add--to--cart {
        padding: 0 0.4rem;
    }
}

@media only screen and (max-width: 1600px) {
    .product--grid--inner .product--items--action--btn.add--to--cart {
        padding: 0 0.6rem;
    }
}

.product--list--items--thumbnail {
    width: 132px;
}

@media only screen and (min-width: 480px) {
    .product--list--items--thumbnail {
        width: 200px;
    }
}

@media only screen and (min-width: 768px) {
    .product--list--items--thumbnail {
        width: 280px;
    }
}

.product--list--items--content {
    width: calc(100% - 132px);
    padding-left: 1.5rem;
}

@media only screen and (min-width: 480px) {
    .product--list--items--content {
        width: calc(100% - 200px);
        padding-left: 2rem;
    }
}

@media only screen and (min-width: 768px) {
    .product--list--items--content {
        width: calc(100% - 280px);
        padding-left: 3rem;
    }
}

.product--list--items--content--title {
    font-weight: 600;
}

@media only screen and (min-width: 992px) {
    .product--list--items--content--title {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

@media only screen and (max-width: 991px) {
    .product--list--items--content--title.mb-10 {
        margin-bottom: 3px;
    }
}

@media only screen and (min-width: 992px) {
    .product--list--items--content--desc {
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .product--list--items--content--desc {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .product--list--items--content--desc.mb-20 {
        margin-bottom: 13px;
    }
}

@media only screen and (min-width: 992px) {
    .product--list--items--content .current--price {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}

@media only screen and (min-width: 992px) {
    .product--list--items--content .old--price {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
}

.pagination--area {
    padding: 1.5rem 2rem;
    margin-top: 3rem;
}

@media only screen and (min-width: 768px) {
    .pagination--area {
        margin-top: 5rem;
    }
}

.pagination--list {
    margin-right: 0.8rem;
}

.pagination--list:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    .pagination--list {
        margin-right: 1.2rem;
    }
}

.pagination--item {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--border-color2);
    background: var(--white-color);
}

.pagination--item--current {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.pagination--item:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

@media only screen and (min-width: 768px) {
    .pagination--item {
        width: 4rem;
        height: 4rem;
        line-height: 3.8rem;
    }
}


/*
    17. Product details page css
*/

.product--details--media {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .product--details--media {
        margin-bottom: 5.7rem;
    }
}

.product--media--preview--items {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.product--media--preview--items--link {
    width: 100%;
    display: block;
}

.product--media--preview--items--img {
    width: 100%;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.product--media--view--icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.product--media--view--icon--link {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.3rem;
    text-align: center;
    background: var(--secondary-color);
    border-radius: 50%;
    color: var(--white-color);
}

.product--media--view--icon--link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.product--media--view--icon.media--play {
    right: 2rem;
    left: auto;
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 50px;
}

.product--media--view--icon.media--play svg {
    font-size: 15px;
}

.product--media--view--icon.media--play span {
    color: var(--white-color);
}

.media--play--icon--link {
    color: var(--secondary-color);
}

.media--play--icon--link:hover {
    color: var(--primary-color);
}

.product--media--nav {
    margin-top: 2rem;
}

.product--media--nav--items {
    border: 1px solid var(--border-color2);
    padding: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.product--media--nav--items--img {
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 5px;
}

@media only screen and (min-width: 768px) {
    .product--details--info {
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 992px) {
    .product--details--info--title {
        font-size: 2.8rem;
    }
}

@media only screen and (min-width: 992px) {
    .product--details--info--title.style2 {
        font-size: 2.5rem;
    }
}

.product--details--info--price .current--price {
    font-size: 1.6rem;
}

@media only screen and (min-width: 992px) {
    .product--details--info--price .current--price {
        font-size: 2rem;
    }
}

.product--details--info--price .old--price {
    font-size: 1.4rem;
    margin-left: 0.8rem;
}

@media only screen and (min-width: 992px) {
    .product--details--info--price .old--price {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 992px) {
    .product--details--info--desc {
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
}

.product--items--rating--count--number {
    font-size: 1.4rem;
    color: var(--text-gray-color);
    padding-left: 7px;
    line-height: 20px;
}

.variant--buy--now--btn {
    width: 100%;
}

.product--variant--title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.product--details--info--meta--list {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.product--details--info--meta--list:last-child {
    margin-bottom: 0;
}

.guarantee--safe--checkout--title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.product--details--tab--section {
    background: var(--bg-gray-color);
}

.product--details--tab--section.sidebar--tab--section {
    padding: 3.5rem;
}

@media only screen and (max-width: 1599px) {
    .product--details--tab--section.sidebar--tab--section {
        padding: 3rem;
    }
}

@media only screen and (max-width: 767px) {
    .product--details--tab--section.sidebar--tab--section {
        padding: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .product--details--tab--section.sidebar--tab--section {
        padding: 1.5rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sidebar--tab--section .product--details--tab--list {
        margin-right: 3rem;
    }

    .sidebar--tab--section .product--details--tab--list:last-child {
        margin-right: 0;
    }
}

.product--details--tab--inner {
    background: var(--white-color);
    padding: 3rem;
}

@media only screen and (max-width: 767px) {
    .product--details--tab--inner {
        padding: 2.5rem 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .product--details--tab--inner {
        padding: 2.5rem 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .product--details--tab {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product--details--tab.mb-30 {
        margin-bottom: 1.5rem;
    }
}

.product--details--tab--list {
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin-right: 5rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: relative;
    padding-bottom: 0.4rem;
}

.product--details--tab--list::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    left: 50%;
    right: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    bottom: 0;
}

.product--details--tab--list.active {
    color: var(--secondary-color);
}

.product--details--tab--list.active::before {
    width: 100%;
    left: 0;
    right: 0;
}

.product--details--tab--list:hover {
    color: var(--secondary-color);
}

.product--details--tab--list:hover::before {
    width: 100%;
    left: 0;
    right: 0;
}

.product--details--tab--list:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    .product--details--tab--list {
        font-size: 1.7rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product--details--tab--list {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .product--details--tab--list {
        margin: 0 1rem 1.3rem;
    }
}

.product--tab--content--title {
    font-weight: 600;
    font-size: 1.7rem;
}

@media only screen and (min-width: 992px) {
    .product--tab--content--title {
        font-size: 1.8rem;
    }
}

.product--tab--content--desc {
    line-height: 2.6rem;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 992px) {
    .product--tab--content--desc {
        font-size: 1.5rem;
        line-height: 2.8rem;
    }
}

.product--tab--content--list {
    line-height: 2.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-gray-color);
}

@media only screen and (min-width: 992px) {
    .product--tab--content--list {
        font-size: 1.5rem;
        line-height: 2.8rem;
    }
}

.product--tab--content--list:last-child {
    margin-bottom: 0;
}

.product--tab--content--list--icon {
    width: 2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.product--reviews--header {
    position: relative;
    border-bottom: 1px solid var(--border-color2);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

@media only screen and (min-width: 768px) {
    .product--reviews--header {
        padding-bottom: 2.5rem;
        margin-bottom: 3.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .product--reviews--header {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .reviews--ratting {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.reviews--summary--caption {
    color: var(--secondary-color);
    margin-left: 1.2rem;
}

@media only screen and (max-width: 575px) {
    .reviews--summary--caption {
        margin-left: 1rem;
        font-size: 1.3rem;
    }
}

.actions--newreviews--btn {
    position: absolute;
    right: 0;
    bottom: 2.2rem;
}

@media only screen and (max-width: 575px) {
    .actions--newreviews--btn {
        position: inherit;
        bottom: inherit;
        margin-top: 1rem;
    }
}

.actions--newreviews--btn.primary--btn {
    font-size: 1.4rem;
    line-height: 4rem;
    height: 4rem;
    padding: 0 1.5rem;
}

@media only screen and (min-width: 992px) {
    .actions--newreviews--btn.primary--btn {
        font-size: 1.5rem;
        line-height: 4.2rem;
        height: 4.2rem;
        padding: 0 1.8rem;
    }
}

.reviews--comment--area {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 767px) {
    .reviews--comment--area {
        padding: 0;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 1199px) {
    .reviews--comment--area.style2 {
        padding: 0;
    }
}

.reviews--comment--thumb {
    width: 100px;
    height: 100px;
    object-position: center;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50px;
}

@media only screen and (max-width: 575px) {
    .reviews--comment--thumb {
        margin-bottom: 1.5rem;
    }
}

.reviews--comment--content {
    width: 100%;
    position: relative;
}

@media only screen and (min-width: 576px) {
    .reviews--comment--content {
        width: calc(100% - 100px);
        padding-left: 2rem;
    }
}

.reviews--comment--content--date {
    border: 1px solid var(--border-color2);
    padding: 0 0.6rem;
    border-radius: 5px;
    height: 3.8rem;
    line-height: 3.6rem;
    font-size: 1.3rem;
}

@media only screen and (min-width: 576px) {
    .reviews--comment--content--date {
        padding: 0 0.8rem;
        height: 4rem;
        line-height: 3.8rem;
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 768px) {
    .reviews--comment--content--date {
        padding: 0 1rem;
        height: 4.2rem;
        line-height: 4rem;
        font-size: 1.5rem;
    }
}

.reviews--comment--content--title {
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.reviews--comment--content .reviews--ratting {
    margin-bottom: 0.8rem;
}

@media only screen and (max-width: 575px) {
    .reviews--comment--content .reviews--ratting {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.reviews--comment--content--desc {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
    .reviews--comment--content--desc {
        font-size: 1.5rem;
        line-height: 2.8rem;
    }
}

.reviews--comment--list {
    border-bottom: 1px solid var(--border-color2);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.reviews--comment--list:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .reviews--comment--list {
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .reviews--comment--list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.reviews--comment--list.margin--left {
    margin-left: 3rem;
}

@media only screen and (min-width: 992px) {
    .reviews--comment--list.margin--left {
        margin-left: 5rem;
    }
}

@media only screen and (max-width: 1199px) {
    .reviews--comment--list.margin--left.style2 {
        margin-left: 0;
    }
}

.reviews--comment--top {
    margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
    .reviews--comment--reply--title {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }
}

@media only screen and (max-width: 575px) {
    .reviews--comment--reply--title {
        text-align: center;
    }
}

.reviews--comment--reply--textarea {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color2);
    border-radius: 0.5rem;
}

@media only screen and (min-width: 768px) {
    .reviews--comment--reply--textarea {
        height: 150px;
    }
}

@media only screen and (min-width: 992px) {
    .reviews--comment--reply--textarea {
        font-size: 1.5rem;
    }
}

.reviews--comment--reply--textarea:focus {
    border-color: var(--secondary-color);
}

.reviews--comment--reply--input {
    width: 100%;
    border: 1px solid var(--border-color2);
    height: 5rem;
    border-radius: 0.5rem;
    padding: 0 1.5rem;
}

@media only screen and (min-width: 992px) {
    .reviews--comment--reply--input {
        font-size: 1.5rem;
    }
}

.reviews--comment--reply--input:focus {
    border-color: var(--secondary-color);
}

.reviews--comment--btn {
    font-size: 1.5rem;
    line-height: 4rem;
    height: 4rem;
}

@media only screen and (max-width: 575px) {
    .reviews--comment--rating {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.product--details--gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 767px) {
    .product--details--gallery {
        margin-bottom: 4.5rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .add--to--cart--text.style2 {
        display: none;
    }
}


/*
    18. Blog details css
*/

.blog--wrapper--sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.blog--sidebar--widget {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .blog--sidebar--widget.left {
        margin-top: 8rem;
    }
}

@media only screen and (max-width: 767px) {
    .blog--sidebar--widget.left {
        margin-top: 6rem;
    }
}

.blog--post--header.mb-30 {
    margin-bottom: 2.5rem;
}

@media only screen and (min-width: 992px) {
    .post--header--title {
        line-height: 3rem;
        font-size: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .post--header--title {
        line-height: 3.5rem;
        font-size: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .post--header--title {
        font-size: 3.5rem;
        line-height: 4rem;
    }
}

.blog--post--meta {
    text-transform: capitalize;
}

@media only screen and (min-width: 992px) {
    .blog--post--meta {
        font-size: 1.5rem;
    }
}

.blog--post--meta--link {
    color: var(--secondary-color);
}

.blog--post--meta--link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

@media only screen and (max-width: 767px) {
    .blog--thumbnail.mb-30 {
        margin-bottom: 2rem;
    }
}

.blog--details--content--subtitle {
    line-height: 2.6rem;
}

@media only screen and (min-width: 992px) {
    .blog--details--content--subtitle {
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .blog--details--content--subtitle {
        line-height: 3.5rem;
    }
}

.blockquote--content {
    padding: 20px 30px;
    text-align: center;
    border-radius: 10px;
}

@media only screen and (min-width: 992px) {
    .blockquote--content {
        padding: 30px 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .blockquote--content {
        padding: 40px 70px;
    }
}

@media only screen and (max-width: 767px) {
    .blockquote--content {
        margin: 0 0 2.5rem;
        padding: 1.5rem 2rem;
    }
}

.blockquote--content--desc {
    font-size: 1.6rem;
    line-height: 2.8rem;
    font-style: italic;
    font-weight: 500;
}

@media only screen and (min-width: 768px) {
    .blockquote--content--desc {
        font-size: 1.8rem;
        line-height: 3rem;
    }
}

@media only screen and (min-width: 1600px) {
    .blockquote--content--desc {
        font-size: 2rem;
        line-height: 3.4rem;
    }
}

.blog--tags--social--media {
    padding: 5rem 0;
}

@media only screen and (max-width: 1199px) {
    .blog--tags--social--media {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 1199px) {
    .blog--tags--media {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .blog--tags--media {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.blog--tags--media--title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
}

@media only screen and (min-width: 992px) {
    .blog--tags--media--title {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 575px) {
    .blog--tags--media--title {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.blog--tags--media--list {
    margin-right: 0.7rem;
}

.blog--tags--media--list:last-child {
    margin-right: 0;
}

.blog--tags--media--link {
    border: 1px solid var(--border-color2);
    background: var(--white-color);
    padding: 0.5rem 1.2rem;
    line-height: 2.5rem;
    border-radius: 0.3rem;
    text-transform: capitalize;
}

.blog--tags--media--link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

@media only screen and (max-width: 575px) {
    .blog--tags--media--link {
        padding: 0.4rem 0.8rem;
        font-size: 1.3rem;
    }
}

.meta--deta {
    font-weight: 500;
    margin-top: 0.6rem;
    font-size: 1.5rem;
}

.blog--social--media--title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
}

@media only screen and (min-width: 992px) {
    .blog--social--media--title {
        font-size: 1.6rem;
    }
}

.blog--social--media--list {
    margin-right: 1rem;
}

.blog--social--media--list:last-child {
    margin-right: 0;
}

.blog--social--media--link {
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
}

.blog--social--media--link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.related--post--area {
    margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
    .related--post--area {
        margin-bottom: 40px;
    }
}

.related--post--items:hover .related--post--img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.related--post--thumb {
    line-height: 1;
    overflow: hidden;
}

@media only screen and (max-width: 479px) {
    .related--post--text {
        text-align: center;
    }
}

.related--post--title {
    font-size: 1.7rem;
    line-height: 2.2rem;
    margin-bottom: 5px;
}

@media only screen and (min-width: 992px) {
    .related--post--title {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }
}

@media only screen and (min-width: 1200px) {
    .related--post--title {
        font-size: 2rem;
    }
}

.related--post--deta {
    font-size: 1.5rem;
    line-height: 2.2rem;
}

.comment--reply--btn {
    height: 3.2rem;
    line-height: 3.2rem;
    padding: 0 2.2rem;
    font-size: 1.4rem;
    border: 0;
}

@media only screen and (min-width: 992px) {
    .comment--reply--btn {
        font-size: 1.6rem;
    }
}

.comment--content--topbar {
    margin-bottom: 1rem;
}

.reviews--comment--content--title2 {
    font-weight: 600;
    line-height: 2.2rem;
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
}

@media only screen and (min-width: 992px) {
    .reviews--comment--content--title2 {
        font-size: 1.8rem;
    }
}

.reviews--comment--content--date2 {
    font-size: 1.5rem;
    color: var(--text-gray-color);
}

.reviews--comment--area2.mb-50 {
    margin-bottom: 5rem;
}

@media only screen and (max-width: 575px) {
    .reviews--comment--area2.mb-50 {
        margin-bottom: 4.8rem;
    }
}


/*
    19. Contact page css
*/

@media only screen and (min-width: 1366px) {
    .contact--section--inner {
        padding: 0 13rem;
    }
}

@media only screen and (max-width: 767px) {
    .contact--section.section--padding.color-scheme-2 {
        padding-bottom: 4.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .home--contact--info {
        margin-bottom: 3rem;
    }
}

.home--contact--info--items {
    border-bottom: 1px solid var(--border-color3);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

@media only screen and (max-width: 575px) {
    .home--contact--info--items {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.home--contact--info--items:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.home--contact--info--items:hover .home--contact--info--icon {
    color: var(--secondary-color);
}

.home--contact--info--icon {
    margin-right: 1.5rem;
    padding-top: 0.2rem;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

@media only screen and (min-width: 1200px) {
    .home--contact--info--icon {
        margin-right: 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .home--contact--info--icon {
        margin-right: 0;
        padding-top: 0;
        margin-bottom: 0.5rem;
    }
}

.home--contact--info--icon svg {
    width: 2.5rem;
}

@media only screen and (max-width: 575px) {
    .home--contact--info--icon svg {
        width: 2rem;
    }
}

.home--contact--map iframe {
    width: 100%;
}

.contact--form {
    background: var(--white-color);
    border-radius: 10px;
    -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
    padding: 2rem;
}

@media only screen and (min-width: 576px) {
    .contact--form {
        padding: 3rem;
    }
}

@media only screen and (min-width: 768px) {
    .contact--form {
        padding: 4rem;
    }
}

@media only screen and (min-width: 992px) {
    .contact--form {
        margin-left: 36rem;
        padding: 5.5rem 3.5rem 5.5rem 10rem;
    }
}

@media only screen and (min-width: 1200px) {
    .contact--form {
        margin-left: 40rem;
    }
}

.contact--form--title {
    font-weight: 600;
}

@media only screen and (max-width: 1199px) {
    .contact--form--title.mb-30 {
        margin-bottom: 2rem;
    }
}

.contact--form--label {
    display: block;
    margin-bottom: 8px;
}

.contact--form--label--star {
    color: var(--secondary-color);
}

.contact--form--input {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact--form--input:focus {
    border-color: var(--secondary-color) !important;
}

@media only screen and (min-width: 576px) {
    .contact--form--input {
        height: 50px;
    }
}

.contact--form--textarea {
    width: 100%;
    height: 100px;
    padding: 12px 15px;
    border-radius: 8px;
    resize: none;
    border: 1px solid var(--border-color);
    font-family: var(--font-poppins);
}

.contact--form--textarea:focus {
    border-color: var(--secondary-color) !important;
}

@media only screen and (min-width: 992px) {
    .contact--form--textarea {
        height: 120px;
    }
}

@media only screen and (min-width: 1200px) {
    .contact--form--textarea {
        height: 160px;
    }
}

.contact--info {
    background: var(--secondary-color);
    width: 46rem;
    padding: 2rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

@media only screen and (min-width: 992px) {
    .contact--info {
        width: 42rem;
        padding: 4rem 3rem;
    }
}

@media only screen and (min-width: 1200px) {
    .contact--info {
        width: 46rem;
        padding: 5rem 6rem;
    }
}

@media only screen and (max-width: 991px) {
    .contact--info {
        position: inherit;
        top: inherit;
        -webkit-transform: inherit;
        transform: inherit;
        margin-top: 3rem;
        width: 100%;
        padding: 3rem;
    }
}

@media only screen and (max-width: 575px) {
    .contact--info {
        padding: 2rem;
    }
}

.contact--info--items {
    margin-bottom: 2.7rem;
}

.contact--info--items:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .contact--info--items {
        margin-bottom: 2rem;
    }
}

.contact--info--icon {
    margin-right: 1.2rem;
    color: var(--white-color);
    padding-top: 0.8rem;
}

@media only screen and (min-width: 1200px) {
    .contact--info--icon {
        margin-right: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .contact--info--icon svg {
        width: 2.5rem;
    }
}

.contact--info--content--title {
    font-weight: 600;
}

@media only screen and (min-width: 992px) {
    .contact--info--content--title {
        font-size: 2rem;
        line-height: 2.8rem;
    }
}

.contact--info--content--desc {
    font-size: 1.5rem;
    line-height: 2.6rem;
}

@media only screen and (min-width: 1200px) {
    .contact--info--content--desc {
        font-size: 1.6rem;
        line-height: 2.7rem;
    }
}

.contact--info--content--desc a:hover {
    color: var(--primary-color);
}

.contact--info--social--list {
    margin-right: 11px;
}

.contact--info--social--list:last-child {
    margin-right: 0;
}

.contact--info--social--icon {
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius: 50%;
}

.contact--info--social--icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.contact--map--iframe {
    width: 100%;
    height: 280px;
    margin-bottom: -7px;
}

@media only screen and (min-width: 768px) {
    .contact--map--iframe {
        height: 320px;
    }
}

@media only screen and (min-width: 992px) {
    .contact--map--iframe {
        height: 400px;
    }
}

@media only screen and (min-width: 1200px) {
    .contact--map--iframe {
        height: 500px;
    }
}

@media only screen and (min-width: 1600px) {
    .contact--map--iframe {
        height: 600px;
    }
}


/*
    20. Cart page css
*/

@media only screen and (max-width: 575px) {
    .cart--title {
        text-align: center;
    }
}

.cart--table--inner {
    width: 100%;
    border-spacing: 0;
}

@media only screen and (max-width: 575px) {
    .cart--table--header {
        display: none;
    }
}

.cart--table--header--list {
    padding: 0 2rem 1.5rem 0;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid var(--border-color2);
    font-size: 1.4rem;
}

.cart--table--header--list:last-child {
    padding-right: 0;
}

@media only screen and (min-width: 768px) {
    .cart--table--header--list {
        padding: 0 2rem 2rem 0;
    }
}

@media only screen and (min-width: 992px) {
    .cart--table--header--list {
        font-size: 1.5rem;
    }
}

.cart--table--header--list.text-center {
    text-align: center;
}

.cart--table--header--list.text-right {
    text-align: right;
}

@media only screen and (max-width: 575px) {
    .cart--table--body--items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cart--table--body--list {
    border-bottom: 1px solid var(--border-color2);
    padding: 2rem 1.5rem 2rem 0;
}

.cart--table--body--list:last-child {
    padding-right: 0;
}

@media only screen and (min-width: 768px) {
    .cart--table--body--list {
        padding: 2rem 2rem 2rem 0;
    }
}

@media only screen and (max-width: 575px) {
    .cart--table--body--list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 1.2rem 0;
    }
}

.cart--thumbnail {
    max-width: 10rem;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .cart--thumbnail {
        max-width: 8rem;
    }
}

.cart--content {
    padding-left: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .cart--content {
        padding-left: 2rem;
    }
}

.cart--content--variant {
    display: block;
    margin-bottom: 0.5rem;
    line-height: 2.2rem;
    font-size: 1.3rem;
}

.cart--content--variant:last-child {
    margin-bottom: 0;
}

.cart--content--title {
    margin-bottom: 0.5rem;
    line-height: 2.2rem;
}

@media only screen and (min-width: 768px) {
    .cart--content--title {
        line-height: 2.5rem;
    }
}

.cart--remove--btn {
    font-weight: 600;
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    background: var(--white-color);
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    margin-right: 1rem;
    border-radius: 50%;
    border: 0;
    padding: 0;
}

.cart--remove--btn:hover {
    color: var(--secondary-color);
}

@media only screen and (min-width: 768px) {
    .cart--remove--btn {
        margin-right: 1.5rem;
    }
}

.cart--price {
    font-weight: 600;
}

@media only screen and (min-width: 992px) {
    .cart--price {
        font-size: 1.6rem;
    }
}

.continue--shopping {
    padding-top: 2rem;
}

.continue--shopping--link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@media only screen and (min-width: 992px) {
    .continue--shopping--link {
        font-size: 1.7rem;
    }
}

.continue--shopping--clear {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    border: 0;
    padding: 0;
    background: inherit;
}

@media only screen and (min-width: 992px) {
    .continue--shopping--clear {
        font-size: 1.7rem;
    }
}

.cart--summary {
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    padding: 2rem;
    background: var(--white-color);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .cart--summary {
        margin-top: 7.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .cart--summary {
        margin-top: 5.5rem;
    }
}

.cart--summary--total--table {
    width: 100%;
}

.coupon--code--title {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    line-height: 2.4rem;
}

@media only screen and (min-width: 992px) {
    .coupon--code--title {
        font-size: 2rem;
    }
}

.coupon--code--desc {
    margin-bottom: 1.5rem;
}

.coupon--code--field--input {
    border: 1px solid var(--border-color);
    height: 4rem;
    padding: 0 1rem;
    width: 100px;
}

@media only screen and (min-width: 768px) {
    .coupon--code--field--input {
        width: 130px;
    }
}

@media only screen and (min-width: 992px) {
    .coupon--code--field--input {
        width: 120px;
    }
}

@media only screen and (min-width: 1200px) {
    .coupon--code--field--input {
        width: 160px;
    }
}

.coupon--code--field--input:focus {
    border-color: var(--secondary-color);
}

.coupon--code--field--btn {
    height: 4rem;
    line-height: 4rem;
    padding: 0 1rem;
    margin-left: 1.5rem;
    font-size: 1.4rem;
}

@media only screen and (min-width: 1200px) {
    .coupon--code--field--btn {
        margin-left: 2.5rem;
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .coupon--code--field--btn {
        padding: 0 2.2rem;
    }
}

.cart--note--title {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    line-height: 2.4rem;
}

@media only screen and (min-width: 992px) {
    .cart--note--title {
        font-size: 2rem;
    }
}

.cart--note--desc {
    margin-bottom: 1.5rem;
}

.cart--note--textarea {
    border: 1px solid var(--border-color);
    height: 8rem;
    padding: 1rem;
    width: 100%;
    resize: none;
}

.cart--note--textarea:focus {
    border-color: var(--secondary-color);
}

@media only screen and (min-width: 1200px) {
    .cart--note--textarea {
        height: 10rem;
    }
}

.cart--summary--total--list {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart--summary--total--list:last-child {
    margin-bottom: 0;
}

.cart--summary--footer--desc {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cart--summary--footer--btn {
    height: 4rem;
    line-height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
    .cart--summary--footer--btn {
        padding: 0 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .cart--summary--footer--btn {
        padding: 0 2.5rem;
        font-size: 1.5rem;
    }
}

.wishlist--cart--btn {
    font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
    .wishlist--cart--btn {
        font-size: 1.5rem;
        line-height: 4rem;
        height: 4rem;
        padding: 0 1.8rem;
    }
}

@media only screen and (max-width: 767px) {
    .wishlist--cart--btn {
        padding: 0.5rem 0.8rem;
        height: auto;
        line-height: 2.4rem;
        border-radius: 5px;
        font-size: 1.3rem;
    }
}


/*
    21. Checkout page css
*/

@media only screen and (max-width: 767px) {
    .checkout--page--inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.checkout--mian {
    padding: 4rem 2rem 0 0;
    width: 60%;
}

.checkout--mian--header {
    padding: 0;
}

@media only screen and (min-width: 992px) {
    .checkout--mian {
        padding: 5rem 5rem 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .checkout--mian {
        width: 100%;
        padding: 3rem 0 0;
    }
}

.checkout--sidebar {
    width: 40%;
    padding: 3rem 0 0 2rem;
    border-left: 1px solid var(--border-color2);
}

@media only screen and (min-width: 992px) {
    .checkout--sidebar {
        padding: 3rem 0 0 4.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .checkout--sidebar {
        width: 100%;
        padding: 3rem 0 0;
        display: none;
    }
}

.checkout--breadcrumb {
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .checkout--breadcrumb {
        margin-top: 2.5rem;
    }
}

.breadcrumb--link {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.readcrumb--chevron-icon {
    color: #737373;
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 0.6rem;
}

.breadcrumb--text {
    color: #737373;
    font-size: 1.3rem;
}

.breadcrumb--text.current {
    color: var(----black-color);
}

.order--summary--mobile--version {
    display: none;
}

@media only screen and (max-width: 767px) {
    .order--summary--mobile--version {
        display: block;
    }
}

.order--summary--toggle {
    width: 100%;
    text-align: left;
    background: var(--bg-gray-color);
    border: 0;
    border: 1px solid var(--border-color2);
    padding: 1.2rem;
}

.order--summary--toggle--inner {
    width: 100%;
}

.order--summary--toggle--text {
    color: var(--secondary-color);
}

.order--summary--toggle--icon {
    color: var(--secondary-color);
    vertical-align: middle;
    line-height: 1.5rem;
    margin-right: 1rem;
}

.summary--table {
    width: 100%;
}

.summary--table--items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.summary--table--list {
    padding: 1rem 2rem 1rem 0;
    border-bottom: 1px solid var(--border-color2);
}

.summary--table--list:last-child {
    padding-right: 0;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

.order--summary--final--price {
    float: right;
    font-size: 1.5rem;
    font-weight: 600;
}

.order--summary--section {
    background: var(--bg-gray-color);
    padding: 3rem 1rem 1rem;
}

.checkout--checkbox {
    position: relative;
}

.checkout--checkbox--input {
    position: absolute;
    left: -1px;
    top: 45%;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    opacity: 0;
    cursor: pointer;
    z-index: 999;
}

.checkout--checkbox--input:checked~.checkout--checkbox--checkmark {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.checkout--checkbox--input:checked~.checkout--checkbox--checkmark::before {
    display: block;
}

.checkout--checkbox--label {
    padding-left: 3rem;
    cursor: pointer;
}

.checkout--checkbox--checkmark {
    height: 1.8rem;
    width: 1.8rem;
    border: 1px solid var(--black-color);
    border-radius: 0.3rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    background: var(--white-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.checkout--checkbox--checkmark::before {
    left: 0.5rem;
    top: 0.3rem;
    width: 0.5rem;
    height: 0.8rem;
    border: solid white;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

textarea.checkout--input--field {
    height: auto;
}

.checkout--input--field {
    width: 100%;
    border: 1px solid var(--border-color2);
    height: 5.5rem;
    padding: 0.5rem 1.5rem;
}

.checkout--input--field:focus {
    border-color: var(--secondary-color);
}

@media only screen and (max-width: 575px) {
    .checkout--section--header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.section--header--title {
    font-size: 1.8rem;
    line-height: 2.2rem;
}

@media only screen and (min-width: 1200px) {
    .section--header--title {
        font-size: 2rem;
        line-height: 2.4rem;
    }
}

@media only screen and (max-width: 575px) {
    .section--header--title {
        margin-bottom: 0.8rem;
    }
}

.section--header--desc {
    margin-top: 0.5rem;
}

.layout--flex--item {
    color: var(--text-gray-color);
}

.layout--flex--item--link {
    color: var(--secondary-color);
}

.section--shipping--address {
    padding: 3rem 0 2rem;
}

@media only screen and (min-width: 992px) {
    .section--shipping--address {
        padding: 4rem 0 3rem;
    }
}

.section--shipping--address.pt-10 {
    padding-top: 1rem;
}

.section--shipping--address.pt-0 {
    padding-top: 0;
}

.checkout--input--select {
    position: relative;
}

.checkout--input--select--field {
    width: 100%;
    border: 0;
    height: 4.5rem;
    padding: 1.6rem 1.5rem 0.5rem;
    border: 1px solid var(--border-color2);
    -webkit-appearance: none;
    cursor: pointer;
}

.checkout--input--select--field:focus {
    border-color: var(--secondary-color);
}

.checkout--select--label {
    position: absolute;
    top: 0.3rem;
    padding: 0 1.8rem;
    line-height: 2rem;
    font-size: 1.2rem;
}

.previous--link--content {
    margin-left: 2rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    text-align: center;
}

.checkout--footer {
    border: 0;
}

.product--thumbnail {
    width: 7rem;
    border: 1px solid var(--border-color2);
    position: relative;
    line-height: 1;
}

.product--thumbnail--quantity {
    position: absolute;
    top: -6px;
    right: -5px;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background: #7f7f7f;
    color: var(--white-color);
    text-align: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.product--description {
    padding-left: 1.5rem;
}

.product--description--name {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 600;
    opacity: 0.9;
}

.product--description--variant {
    font-size: 1.2rem;
    color: var(--light-color);
    line-height: 2rem;
}

.checkout--product--table {
    margin-bottom: 2rem;
}

.checkout--product--table .cart--table--body--list {
    padding: 1rem 2rem 1rem 0;
}

.checkout--product--table .cart--table--body--list:last-child {
    padding-right: 0;
}

.checkout--discount--code {
    margin-bottom: 2.5rem;
}

.checkout--discount--code--input--field {
    width: 100%;
    border: 1px solid var(--border-color2);
    height: 4rem;
    padding: 0 1.5rem;
}

.checkout--discount--code--input--field:focus {
    border-color: var(--secondary-color);
}

.checkout--discount--code--btn {
    height: 4rem;
    line-height: 4rem;
    margin-left: 2rem;
    padding: 0 2rem;
    font-size: 1.4rem;
}

@media only screen and (min-width: 992px) {
    .checkout--discount--code--btn {
        font-size: 1.5rem;
    }
}

.checkout--total {
    border-top: 1px solid var(--border-color2);
    padding-top: 1.2rem;
}

.checkout--total--table {
    width: 100%;
}

.checkout--total--calculated--text {
    font-size: 1.3rem;
    color: var(--text-gray-color);
}

.checkout--total--title {
    color: var(--text-gray-color);
}

.checkout--total--footer--list {
    padding-top: 3rem;
    position: relative;
}

.checkout--total--footer--list::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #e4e4e4;
    top: 1.5rem;
    left: 0;
}

.checkout--total--footer--title {
    font-size: 1.6rem;
}

.checkout--total--footer--amount {
    font-size: 2.2rem;
    font-weight: 600;
}

.checkout--contact--information2 {
    border: 1px solid var(--border-color2);
    padding: 1rem 2rem;
}

.checkout--review {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color2);
}

.checkout--review:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .checkout--review--inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.checkout--review--label {
    color: #737373;
    width: 6.5rem;
}

@media only screen and (min-width: 768px) {
    .checkout--review--label {
        width: 8rem;
    }
}

@media only screen and (min-width: 576px) {
    .checkout--review--content {
        margin-left: 1rem;
    }
}

@media only screen and (min-width: 768px) {
    .checkout--review--content {
        margin-left: 1.5rem;
    }
}

.checkout--review--link--text {
    color: var(--secondary-color);
    border: 0;
    background: inherit;
    padding: 0;
}

.shipping--contact--box {
    border: 1px solid var(--border-color2);
    padding: 1rem 2rem;
}

.shipping--contact--box--list {
    display: table;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color2);
}

.shipping--contact--box--list:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.shipping--radio--input {
    display: table-cell;
    padding-right: 1.5rem;
}

.shipping--radio--label {
    display: table-cell;
    width: 100%;
}

.shipping--radio--label--primary {
    display: table-cell;
    width: 100%;
}

.shipping--radio--label--price {
    display: table-cell;
    text-align: right;
    padding-left: 1.5rem;
}

.checkout--content--step--inner3 {
    border: 1px solid var(--border-color2);
}

.checkout--address--content--header {
    border-bottom: 1px solid var(--border-color2);
    padding: 1rem 1.5rem;
}

.checkout--content--input--box--wrapper {
    padding: 1.5rem;
    background-color: #fafafa;
    border-radius: 0 0 0.5rem 0.5rem;
}

.checkout--input--field--button {
    position: absolute;
    padding: 0;
    border: 0;
    right: 1.2rem;
    top: 50%;
    background: inherit;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    line-height: 1;
}

.checkout--header--style3 {
    padding-left: 5.5rem;
}

.account--wrapper.account--wrapper--style4 {
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .account--wrapper.account--wrapper--style4 {
        margin-bottom: 2.5rem;
    }
}

.checkout--submission--icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 3.8rem;
}

.checkout--submission--icon svg {
    color: var(--secondary-color);
}

.checkout--order--number {
    padding-bottom: 0.3rem;
}

.order--confirmed--area {
    border: 1px solid var(--border-color2);
    padding: 1.5rem;
}

.customer--information--title {
    margin-bottom: 1.2rem;
}

.customer--information--area {
    border: 1px solid var(--border-color2);
    padding: 1.5rem;
}

.customer--information--list {
    width: 50%;
    margin-right: 2rem;
}

.customer--information--list:last-child {
    margin-right: 0;
}

.customer--information--subtitle {
    font-size: 1.4rem;
    font-weight: 600;
}

.customer--information--step {
    margin-bottom: 1.2rem;
}

.customer--information--step:last-child {
    margin-bottom: 0;
}

.customer--information--text {
    font-size: 1.3rem;
    display: inline-block;
    line-height: 2.2rem;
}

.customer--information--text--link {
    font-size: 1.3rem;
    display: inline-block;
    line-height: 2.2rem;
}


/*
    22. My account page css
*/

.my--account--section .nav-pills .nav-link {
    background-color: transparent !important;
    color: var(--black-color);
    font-weight: 800;
    font-size: 16px;
    text-align: left;
    display: flex;
    align-items: center;
}

.my--account--section .nav-pills .nav-link.active svg,
.my--account--section .nav-pills .nav-link.active {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
}

.my--account--section--inner {
    background: var(--white-color);
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
    padding: 3rem 2rem;
}

.my--account--section .support-ticket-wrapper {
    /* background-color: red; */
}

@media only screen and (min-width: 1199px) {
    .my--account--section--inner {
        padding: 5rem 4rem;
    }
}

@media only screen and (max-width: 991px) {
    .my--account--section--inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.account--left--sidebar {
    border-right: 1px solid var(--border-color2);
    padding-right: 3rem;
    margin-right: 3rem;
    width: 18rem;
}

@media only screen and (min-width: 1199px) {
    .account--left--sidebar {
        padding-right: 5rem;
        margin-right: 5rem;
        width: 23rem;
    }
}

@media only screen and (max-width: 991px) {
    .account--left--sidebar {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border-color2);
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.account--wrapper {
    width: calc(100% - 18rem);
}

@media only screen and (min-width: 1199px) {
    .account--wrapper {
        width: calc(100% - 23rem);
    }
}

@media only screen and (max-width: 991px) {
    .account--wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .account--menu {
        width: 250px;
        margin-right: 3rem;
    }
}

@media only screen and (max-width: 479px) {
    .account--menu {
        margin-right: 0;
    }
}

.account--menu--list {
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.account--menu--list:last-child {
    margin-bottom: 0;
}

.account--menu--list:hover {
    color: var(--secondary-color);
}

.account--menu--list.active {
    color: var(--secondary-color);
}

@media only screen and (min-width: 992px) {
    .account--menu--list {
        font-size: 1.6rem;
    }
}

.account--details.two {
    padding-top: 0;
}

@media only screen and (min-width: 992px) {
    .account--details {
        padding-top: 3rem;
    }
}

@media only screen and (max-width: 479px) {
    .account--details {
        padding-top: 3rem;
    }
}

.account--details--title {
    margin-bottom: 1rem;
}

.account--details--desc {
    color: var(--text-gray-color);
    line-height: 3rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.account--details--link {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    font-size: 1.5rem;
}

.account--details--link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.new--address--btn {
    padding: 0 2.5rem;
}

@media only screen and (min-width: 992px) {
    .new--address--btn {
        font-size: 1.5rem;
    }
}

.account--details--footer {
    margin-top: 2rem;
}

.account--details--footer--btn {
    background: var(--white-color);
    border: 1px solid var(--black-color);
    padding: 0 2.5rem;
    height: 4rem;
    line-height: 3.8rem;
    border-radius: 2.5rem;
    margin-right: 1rem;
    font-size: 1.5rem;
}

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

.account--details--footer--btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.account--welcome--text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

@media only screen and (min-width: 992px) {
    .account--welcome--text {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}

.account--content--title {
    font-weight: 600;
}

.account--table {
    width: 100%;
    border: 1px solid var(--border-color2);
    border-spacing: 0;
    border-bottom: 0;
}

@media only screen and (max-width: 479px) {
    .account--table {
        border: 0;
    }
}

@media only screen and (max-width: 767px) {
    .account--table--header {
        display: none;
    }
}

.account--table--header--child--items {
    text-align: left;
    border-bottom: 1px solid var(--border-color2);
    padding: 1.7rem 1.3rem;
    font-size: 1.5rem;
}

.account--table--header--child--items:last-child {
    text-align: right;
}

@media only screen and (min-width: 1200px) {
    .account--table--header--child--items {
        font-size: 1.6rem;
        padding: 1.7rem 1.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .account--table--body.mobile--none {
        display: none;
    }
}

.account--table--body.mobile--block {
    display: none;
}

@media only screen and (max-width: 767px) {
    .account--table--body.mobile--block {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .account--table--body--child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 2rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 2rem;
    }

    .account--table--body--child:last-child {
        margin-bottom: 0;
    }
}

.account--table--body--child--items {
    border-bottom: 1px solid var(--border-color2);
    padding: 1.7rem 2rem;
    color: var(--text-gray-color);
}

.account--table--body--child--items svg {
    stroke: var(--secondary-color);
}

.account--table--body--child--items:last-child {
    text-align: right;
}

.support-ticket-wrapper.details .account--content--title.smalll {
    font-weight: 400;
}

.support-ticket-wrapper.details .w-70 {
    width: calc(100% - 30%);
}

.support-ticket-wrapper.details .account--content--title span {
    color: var(--secondary-color);
}

.support-ticket-wrapper.details .w-30 {
    width: calc(100% - 70%);
}

@media only screen and (max-width: 767px) {
    .account--table--body--child--items {
        padding: 0.5rem 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border: 0;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 479px) {
    .account--table--body--child--items {
        padding: 0.5rem 0;
    }
}


/*
    23. 404 page css
*/

@media only screen and (max-width: 1199px) {
    .error--content--img {
        max-width: 600px;
    }
}

@media only screen and (max-width: 767px) {
    .error--content--img {
        max-width: 450px;
    }
}

@media only screen and (max-width: 575px) {
    .error--content--img {
        max-width: 100%;
        padding: 0 3rem;
    }
}

.error--content--title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 3rem;
}

@media only screen and (min-width: 576px) {
    .error--content--title {
        margin-bottom: 1.5rem;
        font-size: 2.4rem;
        line-height: 2.8rem;
    }
}

@media only screen and (min-width: 768px) {
    .error--content--title {
        margin-bottom: 1.8rem;
        font-size: 3rem;
        line-height: 3.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .error--content--title {
        font-size: 3.5rem;
        line-height: 4rem;
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .error--content--title {
        font-size: 3.8rem;
        line-height: 4.3rem;
        margin-bottom: 2.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .error--content--title {
        font-size: 4rem;
        line-height: 4.5rem;
    }
}

.error--content--desc {
    font-size: 1.5rem;
}

@media only screen and (min-width: 768px) {
    .error--content--desc {
        font-size: 1.6rem;
        line-height: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .error--content--desc {
        font-size: 1.7rem;
        line-height: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .error--content--desc {
        font-size: 1.8rem;
        line-height: 2.3rem;
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 992px) {
    .error--content--btn {
        font-size: 1.6rem;
    }
}


/*
    24. Login page css
*/

.account--login {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) {
    .account--login {
        padding: 3rem;
    }
}

.account--login--header--title {
    font-weight: 600;
}

.account--login--header--desc {
    font-size: 1.5rem;
    font-weight: 600;
}

.account--login--input {
    width: 100%;
    height: 4.8rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
    .account--login--input {
        height: 5.2rem;
    }
}

@media only screen and (min-width: 992px) {
    .account--login--input {
        font-size: 1.5rem;
    }
}

.account--login--input:focus {
    border-color: var(--secondary-color);
}

.account--login--btn {
    width: 100%;
    border-radius: 0.5rem;
    font-size: 1.5rem;
}

@media only screen and (min-width: 992px) {
    .account--login--btn {
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 767px) {
    .account--login--btn {
        height: 4rem;
        line-height: 4rem;
    }
}

.account--login--signup--text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gray-color);
}

.account--login--signup--text button {
    padding: 0;
    background: inherit;
    border: 0;
    font-weight: 600;
}

.account--login--signup--text button:hover {
    color: var(--secondary-color);
}

.account--login--forgot {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding: 0;
    background: inherit;
    border: 0;
}

@media only screen and (max-width: 575px) {
    .account--login--forgot {
        margin-top: 0.6rem;
    }
}

.account--login--forgot:hover {
    color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
    .account--login.register {
        margin-top: 6rem;
    }
}

@media only screen and (max-width: 575px) {
    .account--login--remember--forgot {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 575px) {
    .account--login--remember .checkout--checkbox--checkmark {
        top: 0;
        top: 5px;
        -webkit-transform: inherit;
        transform: inherit;
    }
}

.login--remember--label {
    font-size: 1.3rem;
    font-weight: 600;
}

@media only screen and (min-width: 992px) {
    .login--remember--label {
        font-size: 1.5rem;
    }
}

.account--login--divide {
    text-align: center;
    position: relative;
    padding: 1rem 0;
}

.account--login--divide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0.1rem;
    background: var(--border-color2);
    top: 50%;
    left: 0;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
}

.account--login--divide--text {
    padding: 0 0.8rem;
    background: var(--white-color);
    position: relative;
    font-weight: 500;
    color: var(--light-color);
}

@media only screen and (min-width: 992px) {
    .account--login--divide--text {
        font-size: 1.5rem;
    }
}

.account--social--link {
    height: 4.2rem;
    line-height: 4.2rem;
    padding: 0 2.5rem;
    color: var(--white-color);
    border-radius: 0.5rem;
    font-weight: 600;
    margin-right: 1rem;
}

.account--social--link.facebook {
    background: #4867aa;
}

.account--social--link.facebook:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.account--social--link.google {
    background: #e94235;
}

.account--social--link.google:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.account--social--link.twitter {
    background: #55adee;
}

.account--social--link.twitter:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.account--social--link:last-child {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    .account--social--link {
        padding: 0 2rem;
    }
}

@media only screen and (min-width: 992px) {
    .account--social--link {
        padding: 0 3.2rem;
        margin-right: 1.2rem;
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .account--social--link {
        padding: 0 4.5rem;
        margin-right: 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .account--social--link {
        height: 3.5rem;
        line-height: 3.5rem;
        padding: 0 1.3rem;
        font-size: 1.4rem;
    }
}


/*
    25. Compare page css
*/

.compare--table {
    border: 1px solid var(--border-color2);
    border-spacing: 0;
    border-bottom: 0;
}

.compare--table--items--child {
    padding: 1.2rem;
    border-left: 1px solid var(--border-color2);
    border-bottom: 1px solid var(--border-color2);
}

.compare--table--items--child:first-child {
    border-left: 0;
}

@media only screen and (max-width: 991px) {
    .compare--table--items--child {
        min-width: 200px;
    }
}

.compare--table--items--child--header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color2);
    text-transform: uppercase;
    background: var(--gray-color2);
    font-size: 1.4rem;
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    .compare--table--items--child--header {
        font-size: 1.5rem;
    }
}

.compare--product--title {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-bottom: 1rem;
}

.compare--product--thumb {
    border-radius: 0.5rem;
}

.compare--remove {
    padding: 0;
    float: right;
    width: 100%;
    border: 0;
    background: inherit;
    color: var(--text-gray-color);
    margin-bottom: 5px;
}

.compare--remove:hover {
    color: var(--secondary-color);
}

.compare--description {
    color: var(--text-gray-color);
    padding: 0.5rem 0;
}

.compare--instock {
    text-transform: uppercase;
    font-size: 1.3rem;
}

.compare--product--price {
    color: var(--text-gray-color);
}

.compare--cart--btn {
    border-radius: 0.5rem;
    text-transform: uppercase;
    padding: 0 1.8rem;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.3rem;
}

@media only screen and (min-width: 992px) {
    .compare--cart--btn {
        height: 4rem;
        line-height: 4rem;
        padding: 0 2.2rem;
    }
}


/*
    26. FAQ page css
*/

.face--step {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
}

.face--step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.face--step--title {
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .face--step--title.mb-30 {
        margin-bottom: 2.2rem;
    }
}

.faq--accordion--btn {
    -webkit-box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.1);
    padding: 1.8rem 6rem 1.8rem 2rem;
    font-size: 1.5rem;
    border-radius: 0.5rem;
}

.faq--accordion--btn .accordion--items--button--icon {
    right: 1.5rem;
    pointer-events: none;
}

@media only screen and (min-width: 768px) {
    .faq--accordion--btn {
        font-size: 1.7rem;
    }
}


/*
    27. Preloader css
*/

.ctn-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.ctn-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 4px solid var(--light-color2);
    border-top-color: var(--black-color);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

.ctn-preloader .animation-preloader .txt-loading {
    font-weight: 900;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--light-color2);
    font-size: 3.5rem;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 5s infinite;
    color: var(--black-color);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-animation: letters-loading 5s infinite;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.ctn-preloader .loader-section {
    background: rgba(255, 255, 255, 0.80);
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(100% + 1px);
}

.ctn-preloader .loader-section.section-left {
    left: 0;
}

.ctn-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.5s ease-out;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -ms-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
}

.loaded .loader-section.section-left {
    /* -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1); */
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
}

.loaded .loader-section.section-right {
    -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
}


/* Animación del preloader */

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}


/* Animación de las letras cargando del preloader */

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}


/* Tamaño de portatil hacia atras (portatil, tablet, celular) */

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

    /* Preloader */
    /* Spinner cargando */
    .ctn-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    /* Texto cargando */
    .ctn-preloader .animation-preloader .txt-loading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
}


/*
    28. Privacy policy page css
*/

.privacy--policy--content {
    margin-bottom: 2rem;
}

.privacy--policy--content:last-child {
    margin-bottom: 0;
}

.privacy--policy--content--title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 768px) {
    .privacy--policy--content--title {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .privacy--policy--content--title {
        font-size: 2.5rem;
        line-height: 2.8rem;
        margin-bottom: 1.2rem;
    }
}

.privacy--policy--content--subtitle {
    font-size: 1.8rem;
    line-height: 2.5rem;
    margin-bottom: 0.8rem;
}

@media only screen and (min-width: 1600px) {
    .privacy--policy--content--subtitle {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 1rem;
    }
}

.privacy--policy--content--desc {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 1200px) {
    .privacy--policy--content--desc {
        font-size: 1.6rem;
    }
}


/* 
    29. Newsletter popup css
*/


/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

[data-animation] .newsletter--popup--inner {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

[data-animation].newsletter--show .newsletter--popup--inner {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.newsletter--popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 999;
}

.newsletter--popup.newsletter--show {
    visibility: visible;
    opacity: 1;
}

.newsletter--popup.newsletter--show .newsletter--popup--inner {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.newsletter--popup--inner {
    position: relative;
    width: 88%;
    max-height: 80vh;
    border-radius: 10px;
    background: var(--white-color);
    -webkit-box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
    overflow: auto;
    cursor: default;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

@media only screen and (min-width: 576px) {
    .newsletter--popup--inner {
        width: 80%;
    }
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--inner {
        width: 655px;
    }
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--inner {
        width: 720px;
    }
}

@media only screen and (min-width: 1200px) {
    .newsletter--popup--inner {
        width: 760px;
    }
}

.newsletter--popup--close--btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--secondary-color);
    color: var(--white-color);
    line-height: 2.8rem;
    border: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 0;
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.newsletter--popup--close--btn:hover {
    background: var(--primary-color);
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--close--btn {
        width: 3.2rem;
        height: 3.2rem;
    }
}

.newsletter--popup--close--btn>* {
    pointer-events: none;
}

.newsletter--popup--thumbnail {
    width: 280px;
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--thumbnail {
        width: 320px;
    }
}

@media only screen and (min-width: 1200px) {
    .newsletter--popup--thumbnail {
        width: 330px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter--popup--thumbnail {
        display: none;
    }
}

.newsletter--popup--box--right {
    width: 100%;
    padding: 4rem 2rem 2.2rem;
    text-align: center;
}

@media only screen and (min-width: 576px) {
    .newsletter--popup--box--right {
        padding: 4rem 2rem 3rem;
    }
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--box--right {
        width: calc(100% - 280px);
        padding: 3rem 2rem;
    }
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--box--right {
        width: calc(100% - 320px);
        padding: 4rem 2.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .newsletter--popup--box--right {
        width: calc(100% - 330px);
        padding: 4rem 3rem;
    }
}

.newsletter--popup--title {
    margin-bottom: 1.3rem;
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--title {
        margin-bottom: 2rem;
    }
}

.newsletter--popup--content--desc {
    color: var(--text-gray-color);
    display: inline-block;
    line-height: 2.4rem;
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--content--desc {
        line-height: 2.6rem;
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 992px) {
    .newsletter--popup--content--desc {
        font-size: 1.7rem;
        margin-bottom: 2.2rem;
    }
}

.newsletter--popup--subscribe--input {
    width: 100%;
    height: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0 15px;
}

.newsletter--popup--subscribe--input:focus {
    border-color: var(--secondary-color);
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--subscribe--input {
        height: 4.5rem;
    }
}

.newsletter--popup--subscribe--btn {
    width: 100%;
    height: 4rem;
    background: var(--secondary-color);
    color: var(--white-color);
    border: 0;
    padding: 0 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.newsletter--popup--subscribe--btn:hover {
    background: var(--primary-color);
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--subscribe--btn {
        height: 4.5rem;
    }
}

.newsletter--popup--footer {
    margin-top: 1.2rem;
}

.newsletter--popup--dontshow--again--text {
    color: var(--text-gray-color);
    cursor: pointer;
    font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
    .newsletter--popup--dontshow--again--text {
        font-size: 1.6rem;
    }
}


/*
    26. Coupons page css
*/

.coupons--section--inner .coupons_inner_wrapper {
    min-height: 300px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    padding: 30px;
    height: 100%;
}

.coupons--section--inner .coupons__wrapper:nth-child(odd) .coupons_inner_wrapper {
    background-color: var(--secondary-color);
}

.coupons--section--inner .coupons__wrapper:nth-child(even) .coupons_inner_wrapper {
    background-color: var(--secondary-off-color);
}

.corner-shape-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.corner-shape-wrapper .round--shape-right,
.corner-shape-wrapper .round--shape-left {
    left: -25px;
    position: relative;
    background-color: var(--white-color);
    border-radius: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
}

.corner-shape-wrapper .round--shape-right {
    right: -25px;
    left: unset;
}

.corner-shape-wrapper .line-shape {
    width: 100%;
    border: 2.5px dashed var(--white-color);
}


/* .coupon_text .coupon_upper_text
{
  display: flex;
  justify-content: space-between;
} */

.coupon_text .coupon_upper_text a,
.coupon_text .coupon_upper_text h6 {
    color: var(--black-color);
    font-size: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.coupon_text .coupon_upper_text h6 {
    color: var(--white-color);
}

.coupon_text .coupon_upper_text a {
    margin-left: 15px;
    font-size: 17px;
    text-decoration: underline;
}

.coupon_text .coupon_upper_text a:hover {
    color: var(--white-color);
}

.bottom-discount-slider .coupon-main-wrapper .coupon_slider img {
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.coupons_main_wrapper_design {
    /* display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; */
    height: 100%;
    position: relative;
}

.coupons_main_wrapper_design .bottom-discount-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.coupons_main_wrapper_design .copyButton {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none;
    font-size: 15px;
    margin-left: 10px;
    color: var(--white-color);
}

.bg-wave-shapes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.bg-wave-shapes .waves {
    position: relative;
    width: 100%;
    height: 10vh;
    margin-bottom: -7px;
    min-height: 90px;
    max-height: 130px;
}


/* Animation */

.bg-wave-shapes .parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.bg-wave-shapes .parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.bg-wave-shapes .parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.bg-wave-shapes .parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.bg-wave-shapes .parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .bg-wave-shapes .waves {
        height: 40px;
        min-height: 40px;
    }
}

.forgot--password-wrapper .step {
    display: none;
}

.forgot--password-wrapper .step.active {
    display: block;
}

.forgot--password-wrapper .form-group {
    width: 100%;
    margin-top: 20px;
}

.forgot--password-wrapper .form-group input {
    width: 100%;
    border: 1.5px solid rgba(128, 128, 128, 0.418);
    padding: 5px;
    font-size: 18px;
    margin-top: 5px;
    border-radius: 4px;
}

.forgot--password-wrapper button.next-btn,
.forgot--password-wrapper button.previous-btn,
.forgot--password-wrapper button.submit-btn {
    border: none;
    outline: none;
    margin-top: 20px;
}

.forgot--password-wrapper button.previous-btn {
    float: left;
}

.forgot--password-wrapper button.submit-btn {
    background-color: aquamarine;
}
.company-pages p{
    margin: 0px;
}
.account--table--body--child--items:nth-child(2){
    width: 150px;
}
.account--table--body--child--items:nth-child(3){
    width: 110px;
}