/**
 * Add any custom CSS here.
 *
 * This file will be loaded after all other theme stylesheets.
 */

 @charset "utf-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}


/**
* Remove default margin.
*/

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


/* HTML5 display definitions
========================================================================== */


/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}


/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}


/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/

audio:not([controls]) {
    display: none;
    height: 0;
}


/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
*/

[hidden],
template {
    display: none;
}


/* Links
========================================================================== */


/**
* Remove the gray background color from active links in IE 10.
*/

a {
    background-color: transparent;
}


/**
* Improve readability of focused elements when they are also in an
* active/hover state.
*/

a:active,
a:hover {
    outline: 0;
}


/* Text-level semantics
========================================================================== */


/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/

abbr[title] {
    border-bottom: 1px dotted;
}


/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/

b,
strong {
    font-weight: bold;
}


/**
* Address styling not present in Safari and Chrome.
*/

dfn {
    font-style: italic;
}


/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}


/**
* Address styling not present in IE 8/9.
*/

mark {
    background: #ff0;
    color: #000;
}


/**
* Address inconsistent and variable font size in all browsers.
*/

small {
    font-size: 80%;
}


/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* Embedded content
========================================================================== */


/**
* Remove border when inside `a` element in IE 8/9/10.
*/

img {
    border: 0;
}


/**
* Correct overflow not hidden in IE 9/10/11.
*/

svg:not(:root) {
    overflow: hidden;
}


/* Grouping content
========================================================================== */


/**
* Address margin not present in IE 8/9 and Safari.
*/

figure {
    margin: 1em 40px;
}


/**
* Address differences between Firefox and other browsers.
*/

hr {
    box-sizing: content-box;
    height: 0;
}


/**
* Contain overflow in all browsers.
*/

pre {
    overflow: auto;
}


/**
* Address odd `em`-unit font size rendering in all browsers.
*/

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}


/* Forms
========================================================================== */


/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/


/**
* 1. Correct color not being inherited.
*    Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}


/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/

button {
    overflow: visible;
}


/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/

button,
select {
    text-transform: none;
}


/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/

button,
html input[type="button"],

/* 1 */

input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}


/**
* Re-set default cursor for disabled elements.
*/

button[disabled],
html input[disabled] {
    cursor: default;
}


/**
* Remove inner padding and border in Firefox 4+.
*/

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/

input {
    line-height: normal;
}


/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}


/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
*/

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    box-sizing: content-box;
    /* 2 */
}


/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
* Define consistent border, margin, and padding.
*/

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/

legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/

textarea {
    overflow: auto;
}


/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/

optgroup {
    font-weight: bold;
}


/* Tables
========================================================================== */


/**
* Remove most spacing between table cells.
*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/**/

 ::-moz-selection {
    background-color: var(--deepergreen);
    color: #fff;
    text-shadow: none;
}

 ::selection {
    background-color: var(--deepergreen);
    color: #fff;
    text-shadow: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    color: inherit;
    opacity: 0.7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.7;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-family: var(--redhat) !important;
}

.container:after,
.container:before {
    content: " ";
    display: table;
}

.container:after {
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
figure {
    margin: 0;
    padding: 0;
}

img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto !important;
    display: block;
}

a,
button,
input {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none !important;
}

 :root {
    --black: #000000;
    --white: #ffffff;
    --deepgreen: #052C25;
    --deepergreen: #132B25;
    --rdeepgreen: 5, 44, 37;
    --ofwhite: #F5F4F0;
    --lfwhite: #F8F7F3;
    --pistagreen: #99A8A6;
    --lighterpgreen: #D2E1DF;
    --lightpistagreen: #E1EBE9;
    --rgreen: 5, 44, 37;
    --lgrey: #707070;
    --rlgrey: 112, 112, 112;
    --lightgrey: #D1D7DA;
    --lpgreen: #ACC8C3;
    --greyl: #F1F2F2;
    --lightwhite: #EFEDE4;
    --inter: 'Inter', sans-serif;
    --redhat: 'Red Hat Display', sans-serif;
    --lrgrey: #6c757d;
    --rblack: 0, 0, 0;
    --lightergrey: #F5F6F6;
    --dgrey: #707070;
    --lighterblue: #1A9CA2;
    --d1grey: #D1D6DA;
    --b3grey: #3B3B3B;
}


/**************global css end*******/

.modal-backdrop{
    z-index: 9999 !important;
}
.modal{
   z-index: 99999 !important;
}

.container {
    position: relative;
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100% !important;
}

.c-default-btn {
    padding: 1.3rem 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    border: 1px solid var(--deepgreen);
    border-radius: 4.4rem;
    background: transparent;
    display: inline-block;
}

.c-default-btn:hover {
    background: var(--deepgreen);
    color: var(--ofwhite);
}

.c-default-btn.c-default-btn-white {
    border-color: var(--white);
    color: var(--white);
}

.c-default-btn.c-default-btn-white:hover {
    background: var(--white);
    color: var(--deepgreen);
}

.c-cloting-btn {
    position: fixed;
    width: 25rem;
    height: 7rem;
    background: var(--deepgreen);
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--redhat);
    top: 50%;
    left: auto;
    right: -9rem;
    transform: translate(0%, -50%) rotate( -90deg);
    /* right: -9rem; */
    text-align: center;
    display: block;
    line-height: 7rem;
    box-shadow: 0 13px 16px rgba(0, 0, 0, 0.16);
    border: 1px solid var(--deepgreen);
    z-index: 99;
}

.c-cloting-btn:hover {
    background: var(--lfwhite);
    color: var(--deepgreen);
}


/* --- Home banner start --- */


/* --- Home banner end --- */

.c-main-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
}

.c-main-banner::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(var(--rblack), 50%);
    top: 0;
    left: 0;
}

.c-main-banner .c-banner-content {
    height: 76vh;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 0 6rem;
    z-index: 2;
}

.c-main-banner .c-banner-content big {
    font-size: 9rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
    font-family: var(--redhat);
}

.c-banner-btn {
    padding: 1.3rem 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ofwhite);
    border: 0.2rem solid var(--deepgreen);
    border-radius: 4.4rem;
    background: var(--deepgreen);
    display: inline-block;
    margin: 0;
}

.c-banner-btn:hover {
    background: transparent;
    color: var(--ofwhite);
    border-color: var(--ofwhite);
}

.c-big-banner__caption {
    width: 100%;
    position: absolute;
    /* top: 40px; */
    /* bottom: 40px; */
    bottom: 18%;
    left: 0;
}

.c-big-banner__caption big {
    font-size: 70px;
    color: #FFF;
    font-weight: 400;
    margin: 0;
}


/*
.c-home-banner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(var(--rblack), 30%);
    top: 0;
    left: 0;
    z-index: 1;
}*/


.woocommerce-order-details th,
.woocommerce table.shop_table td,
.woocommerce .woocommerce-customer-details address{
    font-size:16px;
}
.woocommerce table.shop_table td a{
    color:var(--deepgreen);
}
.woocommerce table.shop_table td a:hover{
    color:var(--lightpistagreen);
}

.c-biling-address-form h3{
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    line-height: 1.2;
    font-family: var(--redhat);
    display: block;
    border-bottom: 1px solid var(--lightpistagreen);
    margin: 0 0 2rem;
    padding: 0 0 1.5rem;
}
.c-biling-address-form .form-row label{
    display:block;
    font-size: 1.8rem;
    font-weight: 300;
    line-height:1em !important;
    color: var(--pistagreen);
    font-family: var(--inter);
    margin: 0 0 0.5rem;
}
.c-biling-address-form .form-row{
    margin-bottom: 2rem !important;
}

.c-biling-address-form .woocommerce-input-wrapper{
    width:100%;
}
.c-biling-address-form .woocommerce-input-wrapper input{
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    padding: 0 !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
}

.c-biling-address-form .select2-selection--single{
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
    border-radius: 0 !important;
    margin-top: 10px !important;
}


.c-biling-address-form .button{
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    border-radius: 3rem !important;
    padding: 1.2rem 3rem !important;
    color: var(--deepergreen) !important;
    border: 1px solid var(--deepergreen) !important;
    background-color: transparent !important;
    margin:2rem 0 0 !important;
}
.c-biling-address-form .button:hover{
    color: var(--white) !important;
    background-color: var(--deepergreen) !important;
}


@media (max-width: 767px){
    .c-biling-address-form h3 {
        font-size: 2.5rem;
    }
    .c-biling-address-form .form-row label {
        font-size: 1.5rem;
    }
    .c-biling-address-form .woocommerce-input-wrapper input {
        font-size: 1.5rem !important;
    }
}


@media screen and (min-width:992px) and (max-width:2000px) {
    .c-home-banner {
        height: calc(100vh - 92px);
        overflow: hidden;
    }
    .c-home-banner>img {
        height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}

.c-home-banner__caption {
    bottom: 65px;
    left: 0;
    position: absolute;
    z-index: 5;
}

.c-home-banner__caption big {
    font-size: 110px;
    color: #FFF;
    font-weight: 400;
    line-height: 1em;
    margin: 0;
}

.c-all-pointers {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.c-all-pointers ul>li {
    position: absolute;
    z-index: 9;
}

.c-all-pointers ul>li>a {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-all-pointers ul>li.active>a {
    -webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    transform: unset;
}

.pilow-pointer {
    top: 53%;
    left: 17%;
}

.lamp-pointer {
    top: 27%;
    left: 55%;
}

.sofa-bottom-pointer {
    top: 65%;
    left: 68%;
}

.sofa-side-pointer {
    top: 62%;
    left: 82%;
}

.c-tooltip {
    width: 244px;
    background: #FFF;
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    padding: 20px;
    display: none;
}

.c-tooltip.position-right {
    left: auto;
    right: calc(100% + 10px);
}

.c-tooltip p {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    font-family: var(--inter);
    margin: 0 0 14px;
}

.c-tooltip a {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    font-family: var(--inter);
    text-decoration: underline !important;
}


/* --- Home body start --- */

.c-banner-bottom {
    padding: 4rem 0;
}

.c-banner-bottom .container {
    max-width: 120rem !important;
}

.c-banner-bottom .c-bbottom-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-banner-bottom .c-bbottom-in p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0;
    line-height: 1.2;
}

.c-banner-bottom .c-bbottom-in img {
    margin-right: 1.5rem;
}

.c-banner-bottom-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-testimonial-panel {
    background: var(--ofwhite);
    padding: 12rem 0 10rem;
}

.c-testimonial-panel h2 {
    font-size: 5.5rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.1;
    margin: 0 0 3rem;
    display: block;
    text-align: center;
    font-family: var(--redhat);
}

.c-testimonial-panel p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepgreen);
    line-height: 1.2;
    margin: 0 0 2rem;
    text-align: center;
    font-family: var(--inter);
}

.c-testimonial-panel p img {
    display: inline-block;
    margin: 0 3rem 0 0;
}

.c-testimonial-panel p a {
    color: var(--deepgreen);
    text-decoration: underline !important;
}

.c-testimonial-panel p a:hover {
    text-decoration: none !important;
    color: var(--deepgreen);
}

.c-testimonial-slider-area {
    width: 100%;
    max-width: 83rem;
    margin: 6rem auto 0;
}

.c-image-text-panel {
    padding: 80px 0;
    background: rgba(173, 201, 195, 0.20);
}

.c-image-text-panel .container {
    max-width: 1195px !important;
}

.c-image-text-panel h5 {
    color: #ACC8C3;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--inter);
    margin: 0 0 25px;
}

.c-image-text-panel h2 {
    color: rgba(5, 44, 37, 0.66);
    font-size: 30px;
    font-weight: 400;
    max-width: 500px;
    font-family: var(--redhat);
    margin: 0 0 25px 0;
}


/* .c-testimonial-slider-area .c-testimonial-slider .c-each-testimonial-carosuel {
width: 100%;
max-width: 83rem;
margin: 6rem auto 0;
} */

.c-rating-star {
    margin: 0 0 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-rating-star img {
    margin: 0 0.5rem 0 0;
}

.c-testimonial-content {
    min-height: 31.1rem;
}

.c-testimonial-content h3 {
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 3rem;
    line-height: 1.1;
    font-family: var(--redhat);
}

.c-testimonial-content p {
    font-size: 2.2rem;
    font-weight: 200;
    color: var(--deepgreen);
    line-height: 1.6;
    margin: 0 0 3rem;
    text-align: left;
}

.c-testimonial-carosuel-item {
    position: relative;
    border-bottom: 0.1rem solid var(--pistagreen);
    margin: 0 0 2rem;
}

.c-testimonial-carosuel-item::before {
    content: '';
    position: absolute;
    border-top: 1.6rem solid var(--ofwhite);
    border-left: 1.3rem solid transparent;
    border-right: 1.3rem solid transparent;
    width: 1.5rem;
    height: 1.5rem;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.c-testimonial-carosuel-item::after {
    content: '';
    position: absolute;
    border-top: 1.6rem solid var(--deepgreen);
    border-left: 1.3rem solid transparent;
    border-right: 1.3rem solid transparent;
    width: 1.5rem;
    height: 1.5rem;
    bottom: -1.6rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.c-testimonial-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.c-testimonial-thumbs .c-each-testimonial-thumb {
    /* width: 8.6rem;
height: 8.6rem; */
    width: 118px;
    height: 118px;
    margin: 3rem 3rem 4.5rem;
    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;
}

.c-testimonial-thumbs .c-each-testimonial-thumb .c-authore-name {
    width: 66px;
    height: 66px;
    border: 1px solid var(--pistagreen);
    border-radius: 100%;
    text-align: center;
}

.c-testimonial-thumbs .c-each-testimonial-thumb .c-authore-name h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--pistagreen);
    font-family: var(--redhat);
    line-height: 6.6rem;
    width: 6.6rem;
    height: 6.6rem;
    overflow: hidden;
}

.c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in {
    position: relative;
    cursor: pointer;
}

.c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in .c-authore-designation {
    position: absolute;
    bottom: -8.5rem;
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--inter);
    color: var(--pistagreen);
    width: 300px;
    left: -95px;
    right: 0;
    margin: 0 auto;
    display: none;
    height: 8rem;
}

.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name {
    border-color: var(--deepgreen);
}

.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-designation,
.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name h3 {
    color: var(--deepgreen);
}

.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active,
.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name {
    width: 118px;
    height: 118px;
}

.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name h3 {
    font-size: 3.4rem;
    line-height: 11.8rem;
    width: 11.8rem;
    height: 11.8rem;
}

.c-testimonial-thumbs {
    height: 200px;
}

.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-testimonial-thumb-in .c-authore-designation {
    display: block;
}

.c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in::before {
    content: '';
    width: 4rem;
    height: 0.1rem;
    background: var(--pistagreen);
    position: absolute;
    top: 50%;
    right: -6rem;
}

.c-testimonial-slider-area .swiper-button-prev::after,
.c-testimonial-slider-area .swiper-button-next::after {
    color: var(--deepgreen);
}


/* news */

.c-news-panel {
    padding: 12rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: 52rem;
    background-position-x: 10%;
    background-position-y: 10%;
}

.c-news-panel .container {
    padding: 0 2rem;
}

.c-news-panel .row {
    margin: 0 -2rem;
}

.c-news-panel .row [class*="col-"] {
    padding: 0 2rem;
}

.c-news-panel .c-news-head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 5rem;
}

.c-news-panel .c-news-head h2 {
    font-size: 5.2rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0;
    line-height: 1.1;
    font-family: var(--redhat);
}

.c-news-panel .c-news-head .c-default-btn {
    padding: 1.3rem 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    border: 1px solid var(--deepgreen);
    border-radius: 4.4rem;
    background: transparent;
}

.c-news-panel .c-news-head .c-default-btn:hover {
    background: var(--deepgreen);
    color: var(--ofwhite);
}

.c-each-news figure {
    margin: 0;
    overflow: hidden;
}

.c-each-news figure img {
    width: 100%;
    /* -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; */
}


/* 
.c-each-news:hover figure img {
    width: 100%;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
} */

.c-each-news .c-news-info {
    margin: 3rem 0 0;
    padding: 0 1.5rem;
}

.c-each-news .c-news-info .c-news-category p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--pistagreen);
    margin: 0 0 1.5rem;
    font-family: var(--redhat);
}

.c-each-news .c-news-info .c-news-category p a {
    color: var(--pistagreen);
}

.c-each-news .c-news-info h4 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 1.5rem;
    line-height: 1.4;
    font-family: var(--redhat);
}

.c-each-news .c-news-info h4 a {
    color: var(--deepgreen);
}

.c-each-news .c-news-info h4 a:hover {
    text-decoration: underline !important;
}

.c-each-news .c-news-info .c-news-date p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--pistagreen);
    margin: 0 0 1.5rem;
    font-family: var(--redhat);
}

.c-each-news .c-news-info p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pistagreen);
    margin: 0 0 2rem;
    line-height: 1.4;
    font-family: var(--inter);
}

.c-each-news .c-news-info a.c-news-btn {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepgreen);
    text-decoration: underline !important;
}

.c-each-news .c-news-info a.c-news-btn:hover {
    text-decoration: none !important;
}


/* contact */

.c-contact-panel {
    background: var(--lpgreen);
    padding: 12rem 0;
    background-position-x: 5%;
    background-position-y: 5%;
    background-repeat: no-repeat;
    background-size: 35rem;
}

.c-contact-panel .container {
    padding: 0 2rem;
}

.c-contact-panel .row {
    margin: 0 -2rem;
}

.c-contact-panel .row [class*="col-"] {
    padding: 0 2rem;
}

.c-contact-panel .c-contact-info h2 {
    font-size: 4.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 1.2rem;
}

.c-contact-panel .c-contact-info p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--deepgreen);
    margin: 0;
    line-height: 1.4;
    width: 100%;
    max-width: 52rem;
    font-family: var(--inter);
}

.c-contact-form .input-fld {
    margin: 0 0 4rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c-contact-form .input-fld.c-sector-changes {
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease;
    height: 0;
    margin: 0;
    overflow-y: hidden;
}

.c-contact-form .input-fld.c-sector-changes.closed {
    height: 4rem;
    margin: 0 0 4rem;
}

.c-contact-form .input-fld p:first-of-type {
    margin-right: 3.5rem;
}

.c-contact-form .input-fld .form-control {
    font-size: 2.4rem;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.2;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    border-bottom: 0.1rem solid var(--deepgreen);
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 6.5rem;
    width: 100%;
}

.c-contact-form .input-fld.c-sector-select label {
    font-size: 2.4rem;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.2;
    padding: 1rem 0;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.c-contact-panel .c-contact-form .input-fld.c-sector-select label{
    border-bottom: 0.1rem solid var(--deepgreen);
}
.c-contact-form .input-fld.c-sector-select label small {
    font-size: 1.6rem;
    color: rgba(var(--rdeepgreen), 40%);
}

.c-contact-form .input-fld:nth-child(1) .form-control,
.c-contact-form .input-fld:nth-child(2) .form-control {
    padding-left: 3rem;
}

.c-contact-form .input-fld:nth-child(1) img,
.c-contact-form .input-fld:nth-child(2) img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.c-contact-form .input-fld p label {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 2.8rem;
}

.c-contact-form .input-fld p {
    margin: 0 0 1.5rem;
}

.c-contact-form span.wpcf7-list-item-label {
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 18px;
}
/*checkbox-start*/

.c-contact-form [type="radio"]:checked,
.c-contact-form [type="radio"]:not(:checked),
.c-contact-form [type="checkbox"]:checked,
.c-contact-form [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.c-contact-form [type="radio"]:checked+label,
.c-contact-form [type="radio"]:not(:checked)+label,
.c-contact-form [type="checkbox"]:checked+label,
.c-contact-form [type="checkbox"]:not(:checked)+label {
    position: relative;
    padding-left: 4.2rem;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--deepgreen);
}

.c-contact-form [type="radio"]:checked+label:before,
.c-contact-form [type="radio"]:not(:checked)+label:before,
.c-contact-form [type="checkbox"]:checked+label:before,
.c-contact-form [type="checkbox"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--deepgreen);
    border-radius: 100%;
    background: transparent;
    opacity: 0.4;
}

.c-contact-form [type="radio"]:checked+label:after,
.c-contact-form [type="radio"]:not(:checked)+label:after,
.c-contact-form [type="checkbox"]:checked+label:after,
.c-contact-form [type="checkbox"]:not(:checked)+label:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: var(--deepgreen);
    position: absolute;
    top: 1px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.c-contact-form [type="radio"]:not(:checked)+label:after,
.c-contact-form [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.c-contact-form [type="radio"]:checked+label:after .c-contact-form [type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*checkbox-end*/
.c-contact-form [type="radio"]:checked,
.c-contact-form [type="radio"]:not(:checked),
.c-contact-form [type="checkbox"]:checked,
.c-contact-form [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.c-contact-form [type="radio"]:checked+span,
.c-contact-form [type="radio"]:not(:checked)+span,
.c-contact-form [type="checkbox"]:checked+span,
.c-contact-form [type="checkbox"]:not(:checked)+span {
    position: relative;
    /*padding-left: 5.2rem;*/
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--deepgreen);
    padding: 0.4rem 0 0.4rem 5rem;
}

.c-contact-form [type="radio"]:checked+span:before,
.c-contact-form [type="radio"]:not(:checked)+span:before,
.c-contact-form [type="checkbox"]:checked+span:before,
.c-contact-form [type="checkbox"]:not(:checked)+span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--deepgreen);
    border-radius: 100%;
    background: transparent;
    opacity: 0.4;
}

.c-contact-form [type="radio"]:checked+span:after,
.c-contact-form [type="radio"]:not(:checked)+span:after,
.c-contact-form [type="checkbox"]:checked+span:after,
.c-contact-form [type="checkbox"]:not(:checked)+span:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: var(--deepgreen);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.c-contact-form [type="radio"]:not(:checked)+span:after,
.c-contact-form [type="checkbox"]:not(:checked)+span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.c-contact-form [type="radio"]:checked+span:after .c-contact-form [type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-contact-form .submit-fld input {
    padding: 1.3rem 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    border: 1px solid var(--deepgreen);
    border-radius: 4.4rem;
    background: transparent;
}

.c-contact-form .submit-fld input:hover {
    background: var(--deepgreen);
    color: var(--ofwhite);
}


/* supplier-panel */

.c-supplier-panel {
    padding: 10rem 0;
    background: var(--deepgreen);
    background-position-x: 48%;
    background-position-y: 5%;
    background-size: 24rem;
    background-repeat: no-repeat;
}

.c-supplier-panel .c-supplier-image {
    width: 105.5rem;
    float: right;
    padding-right: 7rem;
}

.c-supplier-panel .c-supplier-image img {
    width: 100%;
}

.c-supplier-panel .c-supplier-content {
    /* padding: 12rem 0 0; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.c-supplier-panel .c-supplier-content h2 {
    font-size: 5.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin: 0 0 4rem;
}

.c-supplier-panel .c-supplier-content p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 3rem;
    font-family: var(--inter);
}

.c-supplier-panel .c-supplier-content p:last-of-type {
    margin: 0;
}


/* about */

.c-about-panel {
    padding: 6rem 0 10rem;
    background-repeat: no-repeat;
    background-size: 18rem;
    background-position-x: 78%;
    background-position-y: 15%;
}

.c-about-panel [class*="col-"]:nth-child(1) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.c-about-panel .c-about-content {
    width: 100%;
    max-width: 55rem;
    /* padding: 10rem 0 0; */
}

.c-about-panel .c-about-content h2 {
    font-size: 5.2rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.3;
    margin: 0 0 4rem;
}

.c-about-panel .c-about-content p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepgreen);
    line-height: 1.5;
    margin: 0 0 5rem;
    font-family: var(--inter);
}

.c-about-panel .c-about-image {
    position: relative;
    height: 100%;
}

.c-about-panel .c-about-image figure:nth-child(1) {
    width: 100%;
    max-width: 34rem;
    /* float: left; */
    /* margin-top: calc(-17% + 1px); */
    margin-bottom: 0;
    margin-left: 8rem;
    z-index: 2;
}

.c-about-panel .c-about-image figure:nth-child(2) {
    width: 100%;
    max-width: 27.3rem;
    float: right;
    margin-top: calc(-30% + 1px);
    margin-bottom: 0;
    z-index: 1;
    margin-right: 5rem;
}

.c-about-panel .c-about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    /* max-width: 39rem;
height: 55rem; */
    max-width: 30rem;
    height: 42rem;
    background: var(--lpgreen);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.c-about-panel .c-about-img figure {
    width: 50rem;
    float: right;
}


/* product category */

.c-product-category-panel {
    padding: 11rem 0 4rem;
}

.c-product-category-panel.c-product-inner-list {
    padding: 11rem 0 3rem;
}

.c-product-category-panel h2 {
    font-size: 4.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 4rem;
    line-height: 1.2;
    text-align: center;
    display: block;
}

#myTab {
    position: relative;
    width: 100%;
    max-width: 50.8rem;
    margin: 0 auto 4rem;
    border-bottom: 0;
    /* border: 1px solid var(--lightgrey); */
    border-radius: 3.5rem;
    background: var(--lightergrey);
}

#myTab .taeb {
    padding: 0;
}

#myTab .taeb a {
    color: var(--deepgreen);
    font-size: 1.8rem;
    font-weight: 300;
    background: transparent;
    border: 0;
    padding: 1.9rem 1rem;
}

#myTab .taeb a.nav-link.active {
    color: var(--white);
}

#myTab .taeb a:hover {
    border-color: transparent;
}

.taeb-switch:after {
    content: "";
    position: absolute;
    /* width: 50%; */
    top: 0;
    -webkit-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -moz-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -ms-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -o-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    /* transition: left cubic-bezier(.88, -.35, .565, 1.35) .4s; */
    border-radius: 3.5rem;
    /* box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1); */
    background-color: var(--lpgreen);
    height: 100%;
    z-index: 0;
}

.taeb-switch.left:after {
    left: 0;
    width: 19.6rem;
}

.taeb-switch.right:after {
    left: 36.5%;
    /* right: 0; */
    width: 32.3rem;
}

.taeb-switch .taeb {
    display: inline-block;
    /* width: auto; */
    padding: 12px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
}

.taeb-switch .taeb:nth-child(1) {
    width: 19.6rem;
}

.taeb-switch .taeb:nth-child(2) {
    width: 30.4rem;
}

.taeb-switch .taeb.active {
    color: #ffffff;
}


/* .c-product-category-panel .tab-pane .row {
margin: 0 -2rem;
} */


/* .c-product-category-panel .tab-pane .row [class*="col-"] {
padding: 0 2rem;
margin: 0 0 6rem;
} */

.c-product-category-panel .row {
    margin: 0 -2rem;
}

.c-product-category-panel .row [class*="col-"] {
    padding: 0 2rem;
    margin: 0 0 6rem;
}

.c-product-category-panel.c-product-inner-list .row [class*="col-"] {
    padding: 0 2rem;
    margin: 0 0 8rem;
}

.c-each-category figure {
    text-align: center;
    margin: 0 0 1.5rem;
}

.c-each-category figure img {
    display: inline-block;
}

.c-each-category .c-category-info {
    min-height: 8rem;
    padding: 1rem 0;
    min-height: 8rem;
    /* border-bottom: 1px solid var(--deepgreen); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

.c-product-category-panel.c-product-inner-list .c-each-category .c-category-info {
    min-height: 9.5rem;
}

.c-each-category .c-category-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background: var(--lightgrey);
    transform-origin: 100% 0;
}

.c-each-category .c-category-info strong {
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0;
    color: var(--deepgreen);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}


/* .c-each-category .c-category-info strong a::after {
position: absolute;
width: 3rem;
height: 0.1rem;
content: '';
background: var(--pistagreen);
right: 3rem;
top: 50%;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.c-each-category .c-category-info:hover a::after {
right: 0;
opacity: 1;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
} */

.c-each-category:hover .c-category-info::after {
    animation: ani-LineLink 0.5s;
    animation-timing-function: ease-in-out;
}

@keyframes ani-LineLink {
    0% {
        transform: scaleX(1);
        transform-origin: 100% 0;
    }
    50% {
        transform: scaleX(0);
        transform-origin: 100% 0;
    }
    51% {
        transform: scaleX(0);
        transform-origin: 0 0;
    }
    100% {
        transform: scaleX(1);
        transform-origin: 0 0;
    }
}

.c-product-category-tab-panel {
    border-bottom: 1px solid rgba(var(--rdeepgreen), 10%);
    padding: 0 0 6rem;
}


/* liv-panel-sec */

.c-liv-panel-sec {
    background: var(--lfwhite);
    padding: 10rem 0 12rem;
}

.c-liv-panel-sec .row {
    margin: 0 -3rem;
}

.c-liv-panel-sec .row [class*="col-"] {
    padding: 0 3rem;
}

.c-each-live-panel h2 {
    font-size: 10rem;
    font-weight: 300;
    color: var(--lightwhite);
    font-family: var(--inter);
    line-height: 0.8;
    transition:all 0.3s ease-in-out;
    margin: 0;
}
.c-each-live-panel:hover h2{
    color:#DF5C16;
}
.c-liv-panel-sec .col-md-6:last-child .c-each-live-panel:hover h2{
    color:#009CA3;
}

.c-each-live-panel figure {
    margin: -1.5rem 0 3rem;
    overflow: hidden;
}

.c-each-live-panel figure img {
    width: 100%;
    /* -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; */
}


/* 
.c-each-live-panel:hover figure img {
    width: 100%;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
} */

.c-each-live-panel p {
    margin: 0 0 2rem;
}

.c-each-live-panel p small {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--pistagreen);
    line-height: 1.4;
}

.c-each-live-panel p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 3rem;
    font-family: var(--inter);
    color: var(--deepgreen);
}

.c-each-live-panel .c-live-content {
    min-height: 24rem;
}

.c-product-inner-list .c-product-category-tab-panel {
    border-bottom: 0;
    padding: 0 0 6rem;
}


/* --- Home body end --- */


/* product-details-start */

.c-breadcrumbs {
    padding: 3rem 0;
}

.c-breadcrumbs ol {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
    width: 100%;
}

.c-breadcrumbs ol li {
    position: relative;
    display: inline-block;
}

.c-breadcrumbs ol li+li {
    padding: 0 0 0 1.6rem;
}

.c-breadcrumbs ol li,
.c-breadcrumbs ol li a {
    font-size: 1.5rem;
    color: var(--pistagreen);
    line-height: 1.1;
    font-family: var(--inter);
    font-weight: 300;
}

.c-breadcrumbs ol li::before {
    content: '>';
    position: absolute;
    font-size: 1.5rem;
    color: var(--pistagreen);
    line-height: 1.1;
    font-family: var(--inter);
    font-weight: 300;
    top: 45%;
    left: 0.4rem;
    transform: translateY(-50%);
}

.c-breadcrumbs ol li:first-of-type:before {
    display: none;
}

.c-breadcrumbs ol li a:hover {
    color: var(--deepgreen);
}
.c-product-details-panel .c-product-details-img {
    position: -webkit-sticky;
    position: sticky;
    top: 156px;
}
.c-product-details-panel .c-product-details-img .c-product-image-slider {
    margin: 0 0 4rem;
}

.c-product-details-panel .c-product-details-img .c-product-image-slider .c-each-image img {
    width: 100%;
}


/* .c-product-details-panel .c-product-details-img .c-product-image-slider .c-each-image img {
width: 100%;
} */

.c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    outline: none;
    z-index: 2;
    width: 5rem;
    height: 5rem;
    font-size: 0;
    color: transparent;
    opacity: 0;
}

.c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow.slick-next {
    right: 2rem;
    background-image: url(../images/left-s-arrow.png);
    background-repeat: no-repeat;
    background-size: 1.8rem;
    background-position: center;
}

.c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow.slick-prev {
    left: 2rem;
    background-image: url(../images/right-s-arrow.png);
    background-repeat: no-repeat;
    background-size: 1.8rem;
    background-position: center;
}

.c-product-details-panel .c-product-details-img .c-product-image-slider:hover .slick-arrow {
    opacity: 1;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider {
    margin: 0 -1rem;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .thumbnail-image {
    padding: 0 1rem;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .thumbnail-image .thumbImg img {
    opacity: 0.7;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .thumbnail-image.slick-current .thumbImg img {
    opacity: 1;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider ul {
    text-align: center;
    margin: 6rem 0 0;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider ul li {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 0;
    margin: 0 0.5rem;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider ul li button {
    color: transparent;
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    background: var(--deepgreen);
    border: 0.1rem solid var(--lrgrey);
    outline: none;
    padding: 0;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider ul li.slick-active button {
    background: transparent;
}

.c-product-details-info {
    padding-left: 6rem;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .slick-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    outline: none;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0;
    color: transparent;
    /* opacity: 0;*/
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .slick-arrow.slick-next {
    right: -2.6rem;
    background-image: url(../images/left-s-arrow.png);
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
}

.c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .slick-arrow.slick-prev {
    left: -2.6rem;
    background-image: url(../images/right-s-arrow.png);
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: center;
}

.c-product-details-info h1 {
    /*font-size: 6rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 2rem;
    line-height: 1.2;*/
    font-size: 6rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 1.3rem;
    line-height: 1;
}

.c-product-details-info .c-price {
    display: inline-block;
    margin: 0 0 4rem;
}

.c-product-details-info .c-price h3 {
    display: inline-block;
    font-size: 3rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1;
    font-family: var(--redhat);
    margin: 0 3rem 0 0;
}

.c-product-details-info .c-price h3 span {
    font-size: 2rem;
    line-height: 1;
    margin-right: 0.2rem;
}

.c-product-details-info .c-price small {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--pistagreen);
}

.c-product-details-tab #c-product-details {
    border-bottom: 0;
}

.c-product-details-tab #c-product-details li a {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--black);
    padding: 1.4rem 3.2rem;
    border-radius: 3rem;
    background: transparent;
    border: 0;
    font-family: var(--inter);
}

.c-product-details-tab #c-product-details li a.active {
    background: var(--lightpistagreen);
}

.c-product-details-in {
    padding: 3rem 0 1.5rem;
}

.c-product-description ul li {
    font-size: 1.8rem;
    color: var(--dgrey);
    line-height: 1.7;
    margin: 0 0 2.5rem;
    font-family: var(--inter);
    padding: 0 0 0 3rem;
    position: relative;
    font-weight: 300;
}

.c-product-description ul li::before {
    content: '';
    position: absolute;
    background: var(--lpgreen);
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    top: 0.9rem;
    left: 0;
}

.c-s-sheet {
    margin: 0 0 3rem;
}

.c-s-sheet .c-spec-sheet-btn {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 300;
    font-family: var(--inter);
    padding: 0;
    box-shadow: none;
    outline: none;
    width: 15.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-s-sheet .c-spec-sheet-btn img {
    display: inline-block;
    /* margin: 0 0 0 2rem; */
    -webkit-transform: rotate( 0deg);
    -moz-transform: rotate( 0deg);
    -ms-transform: rotate( 0deg);
    -o-transform: rotate( 0deg);
    transform: rotate( 0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-s-sheet .c-spec-sheet-btn:focus {
    box-shadow: none;
}

.c-s-sheet .c-spec-sheet-btn.open img {
    -webkit-transform: rotate( -180deg);
    -moz-transform: rotate( -180deg);
    -ms-transform: rotate( -180deg);
    -o-transform: rotate( -180deg);
    transform: rotate( -180deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-s-sheet #c-spec-sheet {
    height: 0;
    overflow-y: hidden;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: ease;
}

.c-s-sheet #c-spec-sheet.slide {
    height: 7.5rem;
}

.c-s-sheet #c-spec-sheet p a {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--lrgrey);
}

.c-s-sheet #c-spec-sheet p:last-of-type {
    margin: 0;
}

.colors {
    margin: 0 0 4rem;
}

.colors ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.colors li {
    margin: 0 1rem 0 0;
    display: inline-block;
    width: 100%;
    max-width: 7rem;
}

.colors li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.colors li span.c-color-switch {
    display: inline-block;
    vertical-align: middle;
    height: 3.3rem;
    width: 3.3rem;
    margin: 0 0 1rem;
    border-radius: 50%;
    position: relative;
}

.colors li span.c-color-text {
    font-size: 1.4rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--lgrey);
}

.colors li a span.c-color-switch::before {
    position: absolute;
    width: 5.1rem;
    height: 5.1rem;
    content: '';
    border-radius: 50%;
    border: 0.1rem solid var(--pistagreen);
    z-index: -1;
    top: -0.9rem;
    left: -0.9rem;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.colors li a.active-color span.c-color-switch::before {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.colors label {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    text-align:center;
    font-family: var(--inter);
    color: var(--lgrey);
}

.colors input {
    opacity: 0;
}


/* .colors input[type="radio"]:checked+.swatch {
box-shadow: inset 0 0 0 2px white;
} */

.swatch {
    display: inline-block;
    vertical-align: middle;
    height: 3.3rem;
    width: 3.3rem;
    margin: 0 0 1rem;
     border:1px solid #f2f2f2; 
    border-radius: 50%;
    position: relative;
}


/*.colors input[type="radio"]:checked+.swatch::before {
    position: absolute;
    width: 5.1rem;
    height: 5.1rem;
    content: '';
    border-radius: 50%;
    border: 0.1rem solid var(--pistagreen);
    z-index: -1;
    top: -0.9rem;
    left: -0.9rem;
}*/

.colors label .swatch::before {
    position: absolute;
    width: 5.1rem;
    height: 5.1rem;
    content: '';
    border-radius: 50%;
    border: 0.1rem solid var(--pistagreen);
    z-index: -1;
    top: -0.9rem;
    left: -0.9rem;
    opacity: 0;
}

.colors label.active-color .swatch::before {
    opacity: 1;
}

body.compensate-for-scrollbar {
    padding-right: 0 !important;
}


/*12-08-2021*/

.c-breadcrumbs #primary {
    padding-bottom: 3rem;
}

.c-breadcrumbs.c-single-product-breadcrumbs {
    padding-bottom: 0;
}
.c-product-details-wpr-img-2 {
    padding: 0 1.5rem;
    margin-top:60px;
}

.c-product-details-wpr-img-2 img {
    margin: 0 auto;
}

.colors h4 {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 300;
    font-family: var(--inter);
    margin: 0 0 0.5rem;
}

.c-product-details-info p {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--black);
    line-height: 1.4;
    margin: 0 0 2rem;
}

.c-product-details-info p img {
    display: inline-block;
}

#c-single-product-cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.quantity {
    width: 7.5rem;
    height: 7.5rem;
    background: #F7F7F7;
    border-radius: 50%;
    position: relative;
    padding: 2.2rem 0;
}

.quantity input[type="number"] {
    border: 0;
    outline: none;
    background: transparent;
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepgreen);
    width: 100%;
    padding: 0 17px;
    text-align: center;
    margin-top: 0.3rem;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.quantity .sub {
    border: 0;
    outline: none;
    position: absolute;
    width: 1.5rem;
    height: 3rem;
    background: transparent url(http://178.128.42.155/wp-content/uploads/2022/04/qty-right.png) no-repeat center;
    background-size: 0.8rem;
    color: transparent;
    font-size: 0;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
     background-color:transparent;
}
.quantity .sub:hover{
         background-color:transparent;
}

.quantity .add {
    border: 0;
    outline: none;
    position: absolute;
    width: 1.5rem;
    height: 3rem;
    background: transparent url(http://178.128.42.155/wp-content/uploads/2022/04/qty-left.png) no-repeat center;
    background-size: 0.8rem;
    color: transparent;
    font-size: 0;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color:transparent;
}
.quantity .add:hover{
     background-color:transparent;
}
#c-single-product-cart .single_add_to_cart_button {
    font-size: 2rem;
    font-weight: 300;
    color: var(--black);
    font-family: var(--inter);
    border: 1px solid var(--black);
    outline: none;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    background: transparent;
    margin: 0 0 0 2.3rem;
}

#c-single-product-cart .single_add_to_cart_button:hover {
    background: var(--black);
    color: var(--white);
}


/* product-details-end */

.c-product-details-wpr-img {
    padding: 14rem 0 12rem;
}

.c-product-specification table tr td:first-of-type {
    width: 40%;
}

.c-product-specification table tr td:last-of-type {
    width: 60%;
}

.c-product-specification table tr td {
    padding: 3rem 0;
    vertical-align: top;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--lgrey);
    font-family: var(--inter);
    border-top: 0.1rem solid var(--lightpistagreen);
}

.c-product-specification table tr:first-of-type td {
    border-top: 0;
}

.c-product-specification table tr td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-product-specification table tr td ul li {
    font-size: 1.8rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--lgrey);
    font-family: var(--inter);
    padding: 0 0 0 4rem;
    margin: 0 0 1rem;
    background: url(../images/check.png) no-repeat 0 40%;
    background-size: 2rem;
}

.c-related-product-wpr {
    padding: 11rem 0 8rem;
}

.c-related-product-wpr h2 {
    font-size: 5.2rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.2;
    margin: 0 0 3rem;
    font-family: var(--redhat);
}


/*partha*/

.c-main-banner.c-main-banner--inner.no-overlay:after {
    display: none;
}

.c-main-banner.c-main-banner--inner big {
    font-size: 7rem;
}

.c-main-banner--inner .c-banner-content p {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 15px;
}

.c-main-banner--inner .c-banner-content {
    height: auto !important;
    min-height: 417px;
}

@media (max-width:1199px) {
    .c-main-banner.c-main-banner--inner big {
        font-size: 5rem;
    }
    .c-image-text-panel {
        padding: 40px 0;
    }
    .c-big-banner__caption big {
        font-size: 50px;
    }
    .c-image-text-panel h2 {
        font-size: 24px;
    }
}

@media (max-width:991px) {
    .c-image-text-panel h5 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .c-image-text-panel h2 {
        max-width: 100%;
    }
    .c-image-text-panel img {
        margin: 0 auto;
    }
}

@media (max-width:767px) {
    .c-main-banner.c-main-banner--inner big {
        font-size: 3rem;
    }
    .c-main-banner--inner .c-banner-content {
        min-height: 220px;
    }
    .c-big-banner__caption {
        bottom: 15px;
    }
    .c-big-banner__caption big {
        font-size: 30px;
    }
}

@media (max-width:575px) {
    .c-image-text-panel {
        padding: 20px 0;
    }
    .c-big-banner__caption big {
        font-size: 20px;
    }
    .c-image-text-panel h2 {
        font-size: 20px;
    }
    .c-tooltip {
        position: fixed;
        z-index: 999;
        top: 50%;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .c-all-pointers ul>li.active:before {
        content: "";
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
    }
    .c-contact-form .c-input-fld .checkbox-contact .wpcf7-form-control.wpcf7-checkbox {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item{
        margin-left: 0;
    }
    .c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item + .wpcf7-list-item {
        margin-top: 1.5rem;
    }
}

.c-breadcrumb {
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0;
    padding: 0 30px;
    margin: 0;
    z-index: 99;
}

.c-breadcrumb>li {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
    position: relative;
}
.c-breadcrumb>li a{
    color:#FFF;
}
.c-breadcrumb>li a:hover{
    color:var(--deepgreen);
}
.c-breadcrumb>li+li {
    padding-left: 15px;
    margin-left: 5px;
}

.c-breadcrumb>li+li:before {
    content: '>';
    position: absolute;
    left: 0;
    top: 1px;
    color: #FFF;
    font-size: 20px;
    line-height: 1em;
}

.c-banner-sub-content {
    background: #F5F4F0;
    padding: 80px 0;
}

.c-banner-sub-content h1 {
    color: #052C25;
    font-size: 70px;
    font-weight: 400;
    margin: 0 0 15px;
}

.c-banner-sub-content .container {
    max-width: 1285px !important;
}

.c-banner-sub-content p {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7em;
    margin: 0 0 15px;
}

.c-meet-team-heading {
    background: #FFF;
}

.c-meet-team-heading p {
    color: #052C25;
}

.c-meet-team-heading .container {
    max-width: 1364px !important;
}

@media (max-width:1199px) {
    .c-banner-sub-content {
        padding: 40px 0;
    }
}

.c-related-product-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1370px !important;
    border-bottom: #E3E3E3 1px solid;
}

.c-product-slider img {
    margin: 0 auto;
}

.c-product-slider h4 {
    font-size: 24px;
    font-weight: 400;
    color: #052C25;
    margin: 0;
}

.c-product-slider {
    padding: 0 50px;
}

.c-product-slider .slick-arrow {
    width: 28px;
    height: 54px;
    position: absolute;
    z-index: 99;
    top: 50%;
    border: none;
    background-color: transparent;
    font-size: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-product-slider .slick-next {
    right: 0;
    background-image: url('../images/r-arrow.png');
}

.c-product-slider .slick-prev {
    left: 0;
    background-image: url('../images/l-arrow.png');
}

.c-radio-switch {
    position: relative;
    display: inline-block;
}


/* .c-radio-switch input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
} */


/* .c-radio-switch label {
    width: 54px;
    height: 28px;
    position: relative;
    display: inline-block;
    background: #ACC8C3;
    border-radius: 30px;
    margin: 0 10px 0 0;
}

.c-radio-switch label:before {
    content: "";
    position: absolute;
    border-radius: 100%;
    left: 3px;
    top: 2px;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    background: #FFF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
} */

.c-in-stock img {
    margin-right: 5px;
}


/* .c-radio-switch label:after {
    display: none;
}

.c-radio-switch input:checked+label:before {
    left: 50%;
} */


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ */

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .c-radio-switch input[type=checkbox] {
        outline: none;
        position: relative;
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        cursor: pointer;
        height: 28px;
        background: var(--lpgreen);
        transition: background 0.3s ease, border-color 0.3s ease;
    }
    .c-radio-switch input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform 0.3s ease, opacity 0.2s ease, filter 0.3s ease;
    }
    .c-radio-switch input[type=checkbox]:checked {
        background: var(--lightgrey);
        /* border-color: var(--active); */
    }
    .c-radio-switch input[type=checkbox]:checked:after {
        filter: drop-shadow(0 1px 2px var(--shadow-inner));
        transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s;
    }
    .c-radio-switch input[type=checkbox]:disabled {
        cursor: not-allowed;
        opacity: 0.9;
        background: var(--white);
    }
    .c-radio-switch input[type=checkbox]:disabled:checked {
        background: var(--white);
    }
    .c-radio-switch input[type=checkbox]:not(.switch) {
        width: 21px;
    }
    .c-radio-switch input[type=checkbox]:not(.switch):after {
        opacity: 0;
    }
    .c-radio-switch input[type=checkbox]:not(.switch):checked:after {
        opacity: 1;
    }
    input[type=checkbox]:not(.switch) {
        border-radius: 6px;
    }
    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--white);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(20deg);
    }
    input[type=checkbox]:not(.switch):checked:after {
        transform: rotate(43deg);
    }
    input[type=checkbox].switch {
        width: 58px;
        border-radius: 28px;
        margin: 0 1rem 0 0;
    }
    input[type=checkbox].switch:after {
        left: 0.3rem;
        top: 0.2rem;
        border-radius: 50%;
        width: 2.4rem;
        height: 2.4rem;
        background: var(--white);
    }
    input[type=checkbox].switch:checked:after {
        /* background: var(--active-inner); */
        transform: translateX(2.8rem);
    }
    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ */

.c-in-stock p {
    color: #052C25;
    font-size: 14px;
    margin: 0;
}

.c-product-listing-panel .container {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1340px !important;
}

.c-product-tab-cat {
    display: inline-block;
    vertical-align: middle;
}

.c-product-tab-cat>li {
    display: inline-block;
    vertical-align: middle;
    padding: 9px 8px;
    border-radius: 30px;
    color: #052C25;
    font-size: 14px;
    font-weight: 300;
    background: #f5f6f6;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    margin: 10px 6px 5px 0;
}

.c-product-tab-cat>li:hover,
.c-product-tab-cat>li.active {
    background: #acc8c3;
    color: #FFF;
}

.c-sortby {
    width: 100%;
    max-width: 122px;
    height: 38px;
    border: #99A8A6 1px solid;
    border-radius: 30px;
    padding: 0 12px;
    color: #052C25;
    font-size: 14px;
    font-weight: 300;
}

.c-tab-body-section {
    width: 100%;
    margin-top: 40px;
}


/* .c-single-tab:not(:first-child) {
    display: none;
} */

.c-single-product {
    margin-bottom: 60px;
}

.c-single-product figure {
    position: relative;
    margin: 0 0 20px;
}

.c-single-product figure img {
    width: 100%;
}

.c-single-product .c-single-product__tag {
    width: 47px;
    height: 47px;
    position: absolute;
    left: 12px;
    top: 12px;
    line-height: 45px;
    text-align: center;
    background: #F5F6F6;
    border-radius: 100%;
}

.c-single-product .c-single-product__img {
    position: relative;
}

.c-single-product .c-single-product__img img+img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-product .c-single-product__tag img {
    width: auto;
    display: inline-block;
}

.c-single-product h4 {
    font-size: 30px;
    color: #052C25;
    font-weight: 400;
    min-height: 72px;
    margin: 0 0 15px;
}

.c-single-product p {
    font-size: 20px;
    color: #000000;
    font-weight: 300;
    margin: 0 0 10px;
}

.c-single-tab>h4 {
    color: #052C25;
    font-size: 20px;
    font-weight: 300;
    padding: 12px 20px;
    background: #f5f6f6;
    display: none;
    margin: 0;
}

.c-single-tab h4.active {
    background: #acc8c3;
    color: #FFF;
}

.c-cartbtn-grp {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.c-cartbtn-grp .btn {
    min-width: 149px;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
    line-height: 26px;
    color: #000000;
    font-weight: 300;
    background: #F5F6F6;
    padding: 13px 10px;
    margin: 0 10px;
    opacity: 0;
    box-shadow: none;
    outline: none;
}

.c-single-product:hover .btn {
    opacity: 1;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-product:hover .c-single-product__img img+img {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-product .btn:focus {
    box-shadow: none;
}

.c-cartbtn-grp .btn svg {
    margin-right: 10px;
}

.c-cartbtn-grp .btn:hover {
    background: #acc8c3;
    color: #FFF;
}

.c-color-palette>li {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    background: #756273;
    border-radius: 100%;
    margin-right: 10px;
}

@media(max-width:1199px) {
    .c-cartbtn-grp .btn {
        min-width: 135px;
        line-height: 26px;
        padding: 10px 10px;
        margin: 0 5px;
    }
    .c-single-product h4 {
        font-size: 24px;
        min-height: 60px;
        margin: 0 0 8px;
    }
    .c-single-product p {
        font-size: 17px;
        margin: 0 0 10px;
    }
}

@media(max-width:991px) {
    .c-related-product-section .container {
        padding-top: 25px;
        padding-bottom: 50px;
    }
    .c-product-slider h4 {
        font-size: 20px;
    }
    .c-product-tab-cat {
        display: none;
    }
    .c-single-tab>h4 {
        display: block;
        margin-bottom: 10px;
    }
    .c-single-tab {
        display: block !important;
        margin-bottom: 20px;
    }
    .c-single-tab .c-single-tab__wrapper {
        display: none;
    }
    .c-product-listing-panel .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .c-s-sheet #c-spec-sheet.slide {
        height: 10.5rem;
    }
    .c-s-sheet #c-spec-sheet p a {
        font-size: 1.6rem;
    }
}

@media(max-width:767px) {
    .c-single-product {
        margin-bottom: 40px;
    }
    .c-single-product__body {
        text-align: center;
    }
    .c-single-product h4 {
        font-size: 20px;
        min-height: 0;
    }
    .c-s-sheet #c-spec-sheet.slide {
        height: 5.5rem;
    }
}

@media(max-width:575px) {
    .c-sortby {
        margin-bottom: 15px;
    }
}


/*partha*/


/* c-liberta-info-panel */

.c-liberta-info-panel {
    padding: 10rem 0 0;
}

.c-liberta-info-panel .c-liberta-info-left {
    padding-right: 12rem;
}

.c-liberta-info-panel .c-liberta-info-left img {
    margin: 0 0 3.5rem;
}

.c-liberta-info-panel .c-liberta-info-left h3 {
    font-size: 3rem;
    font-weight: 400;
    color: var(--lighterblue);
    margin: 0 0 3rem;
    line-height: 1.1;
}

.c-liberta-info-panel .c-liberta-info-left p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--b3grey);
    line-height: 1.7;
    margin: 0 0 3rem;
    font-family: var(--inter);
}

.c-liberta-info-panel .c-liberta-info-left .c-default-btn.c-default-btn-blue {
    display: inline-block;
    background: var(--lighterblue);
    color: var(--white);
    padding: 1.3rem 3rem;
    border: 0;
}

.c-liberta-info-panel .c-liberta-info-left .c-default-btn.c-default-btn-blue:hover {
    background: var(--deepgreen);
    color: var(--white);
}

.c-liberta-info-panel .c-liberta-info-left .c-default-btn.c-default-btn-blue img {
    display: inline-block;
    margin: 0 0 0 1rem;
}

.c-liberta-info-right figure {
    text-align: center;
    position: relative;
    margin: 0;
}

.c-liberta-info-right figure img {
    display: inline-block;
}

.c-liberta-info-right figure a {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    /* margin: 0 auto; */
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 13rem;
}

.c-liberta-info-top-panel {
    padding: 22rem 0 6rem;
    background: var(--d1grey);
    margin-top: -12.5rem;
}

.c-liberta-info-top-panel h2,
.c-liberta-info-bottom-panel h2 {
    font-size: 5.2rem;
    font-weight: 400;
    color: var(--b3grey);
    margin: 0 0 5rem;
    line-height: 1.2;
    display: block;
    text-align: center;
}

.c-liberta-info-top-panel .row,
.c-liberta-info-bottom-panel .row {
    margin: 0 -3.5rem;
}

.c-liberta-info-top-panel .row [class*="col-"],
.c-liberta-info-bottom-panel .row [class*="col-"] {
    padding: 0 3.5rem;
    margin-bottom: 3rem;
}

.c-each-liberta-wpr figure {
    margin: 0;
}

.c-each-liberta-wpr figure img {
    width: 100%;
}

.c-each-liberta-wpr .c-each-liberta-details {
    padding: 4.5rem 0;
}

.c-each-liberta-wpr .c-each-liberta-details h4 {
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    margin: 0 0 3rem;
    line-height: 1.2;
}

.c-each-liberta-wpr .c-each-liberta-details p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--lgrey);
    line-height: 1.7;
    margin: 0 0 3rem;
    font-family: var(--inter);
    min-height: 12rem;
}

.c-each-liberta-wpr .c-each-liberta-details a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--lighterblue);
    width: 15rem;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    line-height: 1;
}

.c-each-liberta-wpr .c-each-liberta-details a::before {
    position: absolute;
    content: '';
    height: 0.1rem;
    width: 80%;
    background: var(--lighterblue);
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-each-liberta-wpr .c-each-liberta-details a:hover::before {
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-liberta-info-bottom-panel {
    padding: 10rem 0 4rem;
}

body.modal-open {
    padding-right: 0 !important;
}

.modal-backdrop {
    background-color: rgba(var(--rdeepgreen), 90%) !important;
}

.modal-backdrop.show {
    opacity: 1 !important;
}


/*  */

.c-product-modal .modal-body {
    padding: 60px 80px;
}

.c-product-modal .close {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 100%;
    background: var(--lightpistagreen);
    position: absolute;
    top: 2rem;
    right: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 9999;
}

.c-product-modal .close span {
    width: 4.5rem;
    height: 4.5rem;
    opacity: 1;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-product-modal .close:hover {
    opacity: 1 !important;
    transform: rotate(90deg);
}

.limit-items .items ul li {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepgreen);
    line-height: 1.5;
    margin: 0 0 1.5rem;
    font-family: var(--inter);
}

.c-product-details-inner ul li:last-child {
    display: block;
}

.limit-items .items li:nth-of-type(n+2) {
    display: none;
}

.limit-items #show-all:checked~.items li {
    display: list-item;
}

.limit-items #show-all~label[for='show-all'] {
    display: none;
}

.limit-items #show-all:checked~.text-hide {
    display: inline-block;
}

.limit-items #show-all:not(:checked)~.text-show {
    display: inline-block;
}

.limit-items {
    position: relative;
    padding-bottom: 3rem;
    font-family: var(--inter);
    margin: 0 0 5rem;
}

.limit-items #show-all {
    display: none;
}

.limit-items label[for='show-all'] {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    bottom: 0;
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.1;
    text-decoration: underline;
    padding: 0;
    cursor: pointer;
    /*text-transform: uppercase;*/
    color: #444;
    font-family: var(--inter);
}

.limit-items label[for='show-all']:hover {
    text-decoration: none;
}

.c-product-modal .c-product-details-info h1 {
    font-size: 4rem;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider ul {
    text-align: center;
    margin: 6rem 0 0;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider ul li {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 0;
    margin: 0 0.5rem;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider ul li button {
    color: transparent;
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    background: var(--deepgreen);
    border: 0.1rem solid var(--lrgrey);
    outline: none;
    padding: 0;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider ul li.slick-active button {
    background: transparent;
}

.c-product-details-wrapper .c-product-details-img.c-prosuct-image-slider {
    padding-right: 6.2rem;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider .thumbnail-image {
    padding: 0 1rem;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-thumb-slider {
    margin: 0 -1rem;
}

.c-product-details-wrapper .c-product-details-img .c-product-image-slider {
    margin: 0 0 1rem;
}

.c-team-list {
    background: rgba(209, 214, 218, 0.28);
    padding: 130px 0;
}

.c-team-list .row {
    margin: 0 -30px;
}

.c-team-list .row [class*="col-"] {
    padding: 0 30px;
}

.c-team-list .container,
.c-contact-body-panel .container,
.c-green-stripe .container,
.c-map-sec .container {
    max-width: 1364px !important;
}

.c-single-team-member {
    margin-bottom: 55px;
}

.c-single-team-member figure {
    margin: 0 0 25px;
}

.c-single-team-member figure img {
    width: 100%;
}

.c-single-team-member h3 {
    color: #052C25;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

.c-single-team-member h3 span {
    display: block;
    color: #99A8A6;
}

.c-single-team-member__social {
    position: absolute;
    top: 30px;
    left: 25px;
}

.c-single-team-member__social a {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    display: block;
    color: #052C25;
    font-size: 30px;
    background: #FFF;
    border-radius: 100%;
}

.c-single-team-member__social a:hover {
    background: #052C25;
    color: #FFF;
}

.c-green-stripe {
    background: #D2E1DF;
    padding: 50px 0;
}

.c-green-stripe h1 {
    color: #052C25;
    font-size: 70px;
    font-weight: 400;
    margin: 0;
}

.c-contact-body-panel {
    padding: 60px 0;
    background: #FFF;
}

.c-contact-form-area h4 {
    color: #052C25;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 15px;
}

.c-contact-form-area .link {
    color: #000000;
    font-size: 20px;
    font-family: var(--inter);
    font-weight: 300;
    text-decoration: underline !important;
}

.c-contact-form-area p {
    color: #052C25;
    font-size: 20px;
    font-family: var(--inter);
    font-weight: 300;
}

.c-social-icons a {
    width: 36px;
    height: 36px;
    text-align: center;
    color: #F1F2F2;
    line-height: 36px;
    font-size: 20px;
    background: #99A8A6;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 10px 0;
}

.c-social-icons a:hover {
    background: #F5F4F0;
    color: #052C25;
}

.c-contact-form-area .c-input-fld {
    width: 100%;
    position: relative;
}

.c-contact-form-area form {
    width: 100%;
    max-width: 548px;
    display: block;
    margin-left: auto;
}

.c-contact-form-area .form-control {
    height: 50px;
    border: none;
    color: #052C25;
    background: transparent;
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 300;
    border-bottom: #132B25 1px solid;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.c-contact-form-area .form-control:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-color: #132B25;
}

.c-contact-form-area .form-control:-internal-autofill-selected {
    background-color: transparent !important;
    color: #052C25 !important;
}

.c-contact-form-area textarea.form-control {
    border: #132B25 1px solid;
    border-radius: 3px;
    height: 16rem !important;
}

.c-contact-form-area sup {
    position: absolute;
    top: 15px;
    right: 0;
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 20px;
}

.c-contact-form-area .c-input-fld {
    margin-bottom: 30px;
}

.c-contact-form-area .label {
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 15px;
}

.c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 18px;
    /*margin: 0 22px 15px 0;*/
}

.c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item.first {
    margin: 0 0;
}

.c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item.last {
    margin: 0 0 0 2.2rem;
}


/*.c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item.first .wpcf7-list-item-label:before {
    top: -5px !important;
}

.c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item.first .wpcf7-list-item-label:after {
    top: 0 !important;
}
*/

.c-contact-form-area .btn {
    min-width: 230px;
    text-align: center;
    padding: 20px 10px;
    border: #052C25 1px solid;
    border-radius: 35px;
    font-size: 18px;
    color: #052C25;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--inter);
    outline: none;
}

.c-contact-form-area .btn:hover {
    background: #052C25;
    color: #FFF;
}

.c-contact-form-area .btn:focus {
    box-shadow: none;
}

.c-map-sec {
    background: #ACC8C3;
    padding: 80px 0;
}

.c-map-sec h2 {
    font-size: 60px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 30px;
}

.c-map-sec iframe {
    width: 100%;
    height: 806px;
    display: block;
}

.c-social-stripe-section {
    padding: 80px 0;
    background: #052C25;
}

.c-social-stripe-section .container {
    max-width: 1240px !important;
}

.c-social-stripe-section h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 25px;
}

.c-social-stripe-section p {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--inter);
    margin: 0 0 25px;
}

.c-social-stripe-section .c-social-icons a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 28px;
}

.c-brochure-book-section .container {
    max-width: 1380px !important;
}

.c-brochure-book-section {
    padding: 100px 0;
}

.c-brochure-book-section h2 {
    color: #052C25;
    font-size: 60px;
    line-height: 1.1em;
    font-weight: 400;
    max-width: 564px;
    margin: 0 0 20px;
}

.c-brochure-book-section p {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    max-width: 564px;
    font-family: var(--inter);
    margin: 0 0 40px;
}

.c-brochure-book-section .btn {
    min-width: 262px;
    color: #052C25;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--inter);
    border: #000000 1px solid;
    border-radius: 35px;
    padding: 22px 12px;
}

.c-brochure-book-section .btn:hover {
    background: #052C25;
    color: #FFF;
}

.c-our-aim-section {
    background: #D2E1DF;
    padding: 100px 0;
}

.c-our-aim-section .container {
    max-width: 1280px !important;
}

.c-our-aim-section h6 {
    color: #64807B;
    font-size: 18px;
    font-weight: 300;
    margin: 0 0 25px;
}

.c-our-aim-section h2 {
    width: 100%;
    max-width: 445px;
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    margin: 0;
}

.c-image-with-text {
    padding: 120px 0;
    margin-top: -200px;
}

.c-image-with-text h2 {
    color: #052C25;
    font-size: 60px;
    font-weight: 400;
    margin: 0 0 30px;
}

.c-image-with-text p {
    width: 100%;
    max-width: 479px;
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.5em;
    margin: 0 0 40px;
}

.c-image-with-text h5 {
    color: #052C25;
    font-size: 26px;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.5em;
    margin: 0 0 30px;
}

.c-image-with-text h5 a {
    color: #052C25;
}

.c-image-with-text__text-panel {
    padding: 0 15%;
}

.btn.c-primary-btn {
    min-width: 314px;
    text-align: center;
    color: #052C25;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--inter);
    border-radius: 35px;
    border: #052C25 1px solid;
    padding: 20px;
}

.btn.c-primary-btn:hover {
    background: #052C25;
    color: #FFF;
}

.c-interior-page-contact-form {
    background: #F5F4F0;
    padding: 100px 0;
}

.c-interior-page-contact-form h2 {
    color: #052C25;
    font-size: 60px;
    font-weight: 400;
    margin: 0 0 30px;
}

.c-brochures-stock-page h2 {
    color: #052C25;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 40px;
}

.c-brochures-stock-page p {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--inter);
    line-height: 1.6em;
    margin: 0;
}
/*coocky start*/
.c-faq-section.c-policy-page-content{
    background-color: #ffffff;
}
.c-brochures-stock-page.c-policy-page-content::before{
    display: none;
}
.c-brochures-stock-page.c-policy-page-content h2 {
    color: #252525;
    margin: 0 0 20px;
    font-size: 38px;
}

.c-brochures-stock-page.c-policy-page-content p {
    color: #252525;
    margin: 0 0 20px;
}
.c-brochures-stock-page.c-policy-page-content p a {
    color: #252525;
}
.c-brochures-stock-page.c-policy-page-content p a:hover {
    color: var(--deepgreen);
}
.c-brochures-stock-page.c-policy-page-content h3 {
    color: #252525;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 20px;
}
.c-brochures-stock-page.c-policy-page-content h4 {
    color: #252525;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 20px;
}
.c-brochures-stock-page.c-policy-page-content h5 {
    color: #252525;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 20px;
}
.c-brochures-stock-page.c-policy-page-content h6 {
    color: #252525;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 20px;
}
/*coocky end*/
.c-brochures-stock-page.c-brochures-stock-page .container {
    max-width: 1400px !important;
}

.c-flipbox-sec {
    padding: 50px 0;
}

.c-flipbox-sec .container {
    max-width: 1045px !important;
}

.c-flipbox-sec h2 {
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 30px;
}

.c-single-box {
    width: 100%;
    max-width: 314px;
    display: block;
    height: 349px;
    background: #F7F7F8;
    margin: 0 auto;
}

.c-about-banner-area {
    padding: 100px 0 300px;
}

.c-about-banner-area .container,
.c-about-banner-area__bottom .container {
    max-width: 1270px !important;
}

.c-about-banner-area h2 {
    color: #052C25;
    font-size: 60px;
    font-weight: 400;
    max-width: 430px;
    line-height: 1.2em;
    margin: 0 0 40px;
}

.c-about-banner-area p {
    color: #052C25;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
    font-family: var(--inter);
    max-width: 430px;
    margin-bottom: 30px;
}

.c-about-banner-area img:not(.path) {
    z-index: 1;
    position: relative;
}

.c-about-banner-area .path {
    position: absolute;
    bottom: -150px;
    left: -127px;
    opacity: 0.3;
}

.c-about-banner-area__bottom {
    background: #D2E1DF;
    padding: 40px 0 100px;
}

.c-about-banner-area__bottom .row {
    margin-top: -150px;
}

.c-about-banner-area__bottom__big-image-area {
    margin-top: -100px;
}

.c-about-banner-area__bottom p {
    color: #000000;
    font-size: 20px;
    font-family: var(--inter);
    font-weight: 300;
    line-height: 1.6em;
    margin: 0 0 30px;
}

.c-about-banner-area__bottom__big-image-area img {
    margin-bottom: 100px;
}

.c-video-section.c-video-section {
    padding: 100px 0;
}

.c-certification-section {
    padding: 80px 0;
}

.c-certification-section h4 {
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 30px;
}

.c-certification-section p {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-timeline-panel .container {
    max-width: 1015px !important;
}

.c-timeline-panel {
    padding: 100px 0;
    background: #f4f4f4;
}

.c-timeline-panel h3 {
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 25px;
}

.c-timeline-panel h4 {
    color: #052C25;
    font-size: 30px;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 25px;
}

.c-timeline-panel p {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
    font-family: var(--inter);
    margin: 0;
}

.c-may-month {
    padding-top: 300px;
    position: relative;
    margin-top: 30px;
}

.c-may-month img {
    margin: 0 auto;
}

.c-may-month:before {
    content: "";
    width: 1px;
    height: 290px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #6A7F7B;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
}

.c-may-month:after {
    content: "";
    width: 43px;
    height: 43px;
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #6A7F7B;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
}

.c-may-month figure,
.c-october-month figure {
    position: relative;
}

.c-may-month .c-floating-content,
.c-october-month .c-floating-content {
    width: 100%;
    max-width: 384px;
    position: absolute;
    right: -175px;
    top: 70%;
}

.c-october-month .c-floating-content {
    right: -110px;
}

.c-october-month {
    padding-top: 300px;
    position: relative;
    margin-top: 20px;
}

.c-october-month:before {
    content: "";
    width: 1px;
    height: 260px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #6A7F7B;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
}

.c-october-month:after {
    content: "";
    width: 19px;
    height: 19px;
    position: absolute;
    top: 260px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #6A7F7B;
    border-radius: 100%;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -o-transform: translateX(60px);
    transform: translateX(60px);
}

.c-october-month.last-timeline:after {
    width: 43px;
    height: 43px;
}

.c-october-month .down {
    top: 235px;
}


/*  */

.wpcf7-not-valid-tip {
    font-size: 1.8rem !important;
    margin-top: 0.5rem;
}

.wpcf7-response-output {
    font-size: 1.8rem;
    margin: 2rem 0 0 !important;
}

.c-short-content-area {
    background: #F5F4F0;
    padding: 60px 0;
}

.c-short-content-area .container{
    max-width: 800px !important;
}

.c-short-content-area p {
    color: #052C25;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
    font-family: var(--inter);
    margin: 0 0 24px 0;
}

.c-short-content-area p:last-child {
    margin: 0;
}

.c-content-body {
    padding: 80px 0;
}

.c-content-body .container {
    max-width: 1230px !important;
}

.c-content-body h3 {
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 25px;
}

.c-content-body p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
    font-family: var(--inter);
    margin-bottom: 20px;
}

.c-content-body ul {
    margin: 0 0 60px;
}

.c-content-body ul>li {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
    font-family: var(--inter);
    margin-bottom: 22px;
    padding-left: 30px;
    position: relative;
}

.c-content-body ul>li:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 100%;
    background: #ACC8C3;
}

.c-single-download-box {
    width: 100%;
    max-width: 415px;
    display: block;
    background: #FFFFFF;
    border: #B2C7C3 1px solid;
    padding: 30px 60px 30px 30px;
    margin: 0 0 30px;
}
.c-single-download-box p{
    margin:0;
}
.c-single-download-box .c-download-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-single-download-box .c-download--btn {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid #6A7F7B;
    width: 4rem;
    height: 4rem;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.c-single-download-box .c-download--btn span:nth-child(1) {
    width: 1rem;
    height: 1rem;
    border-left: 1px solid #6A7F7B;
    border-bottom: 1px solid #6A7F7B;
    display: inline-block;
    transform: rotate(-45deg);
    left: 14px;
    right: 14px;
    margin: auto;
    top: 16px;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* .c-single-download-box .c-download--btn span::before  */

.c-single-download-box .c-download--btn span:nth-child(2) {
    width: 1px;
    height: 1.7rem;
    background: #6A7F7B;
    /* content: ''; */
    position: absolute;
    /* transform: rotate(-45deg); */
    left: 1.9rem;
    right: 0;
    margin: 0;
    top: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-download-box .c-download--btn:hover {
    background: #6A7F7B;
}

.c-single-download-box .c-download--btn:hover span:nth-child(1) {
    top: 18px;
    border-left-color: #fff;
    border-bottom-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-download-box .c-download--btn:hover span:nth-child(2) {
    height: 2.2rem;
    top: 7px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-single-download-box h4 {
    font-family: var(--inter);
    font-size: 22px;
    font-weight: 300;
    color: #052C25;
    margin: 0 0 15px;
}

.c-single-download-box h6 {
    color: #707070;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.c-video-stipe {
    padding: 60px 0;
    background: #D2E1DF;
}

.c-video-stipe h2 {
    color: #052C25;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 35px;
}



.c-each-datasheet {
    min-height: 44.9rem;
    border: 0.1rem solid var(--pistagreen);
    padding: 3rem 3rem 0;
    /* display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column; */
}

.c-each-datasheet .c-datasheet-image {
    min-height: 40.4rem;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 0.1rem solid var(--pistagreen);
}

.c-each-datasheet .c-datasheet-info {
    position: relative;
    padding: 2.2rem 0;
    min-height: 22.5rem;
}

.c-each-datasheet .c-datasheet-info h4 {
    font-size: 3rem;
    font-weight: 200;
    color: var(--deepgreen);
    font-family: var(--inter);
    margin: 0 0 4.5rem;
    line-height: 1.2;
}

.c-each-datasheet .c-datasheet-info p {
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--lgrey);
    margin: 0 0 0.6rem;
    line-height: 1.2;
    font-family: var(--inter);
}


/* .c-each-datasheet .c-datasheet-info a.c-dwn-btn {
    position: absolute;
    bottom: 2.2rem;
    right: 0;
} */

.c-each-datasheet .c-datasheet-info a.c-dwn-btn {
    position: absolute;
    bottom: 2.2rem;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid #6A7F7B;
    width: 4rem;
    height: 4rem;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.c-each-datasheet .c-datasheet-info a.c-dwn-btn span:nth-child(1) {
    width: 1rem;
    height: 1rem;
    border-left: 1px solid #6A7F7B;
    border-bottom: 1px solid #6A7F7B;
    display: inline-block;
    transform: rotate(-45deg);
    left: 14px;
    right: 14px;
    margin: auto;
    top: 16px;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* .c-single-download-box .c-download--btn span::before  */

.c-each-datasheet .c-datasheet-info a.c-dwn-btn span:nth-child(2) {
    width: 1px;
    height: 1.7rem;
    background: #6A7F7B;
    /* content: ''; */
    position: absolute;
    /* transform: rotate(-45deg); */
    left: 1.9rem;
    right: 0;
    margin: 0;
    top: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-each-datasheet .c-datasheet-info a.c-dwn-btn:hover {
    background: #6A7F7B;
}

.c-each-datasheet .c-datasheet-info a.c-dwn-btn:hover span:nth-child(1) {
    top: 18px;
    border-left-color: #fff;
    border-bottom-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-each-datasheet .c-datasheet-info a.c-dwn-btn:hover span:nth-child(2) {
    height: 2.2rem;
    top: 7px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.c-searchpage-top-heading {
    padding: 4.5rem 0;
    background: var(--deepgreen);
}

.c-searchpage-top-heading h1 {
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.c-single-blog .sfsi_widget.sfsi_shortcode_container {
    width: 100%;
    margin: 0 0 15px !important;
}

.c-single-blog .sfsi_widget.sfsi_shortcode_container .sfsi_wicons {
    width: 25px !important;
    height: 25px !important;
    margin-left: 0 !important;
    margin-right: 15px !important;
}

.c-single-blog .sfsi_widget.sfsi_shortcode_container .sfsi_wicons .sficn img[title="Facebook"],
.c-single-blog .sfsi_widget.sfsi_shortcode_container .sfsi_wicons .sficn img[title="Twitter"],
.c-single-blog .sfsi_widget.sfsi_shortcode_container .sfsi_wicons .sficn img[title="Instagram"] {
    /*display: none;*/
    opacity: 0;
}


/*.c-single-blog .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt #sfsiid_facebook,*/

.c-single-blog .sfsi_widget .sfsi_wDiv .sfsi_wicons:nth-child(1) .inerCnt a.sficn {
    width: 25px;
    height: 25px;
    background-image: url(../images/facebook.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.c-single-blog .sfsi_widget .sfsi_wDiv .sfsi_wicons:nth-child(2) .inerCnt a.sficn {
    width: 25px;
    height: 25px;
    background-image: url(../images/twitter.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.c-single-blog .sfsi_widget .sfsi_wDiv .sfsi_wicons:nth-child(3) .inerCnt a.sficn {
    width: 25px;
    height: 25px;
    background-image: url(../images/instagram.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.c-brochures-stock-page .c-contact-form-area form .c-input-fld:nth-child(6) .form-control {
    border-bottom: 0;
}

.woocommerce-cart-form,
.woocommerce .cart-collaterals {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents {
    border: 0 !important;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead tr th {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    padding: 1rem;
    font-weight: 400;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td {
    border-top-color: var(--lightpistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-thumbnail a {
    width: 7rem;
    border: 1px solid var(--lightpistagreen);
    padding: 0.5rem;
    display: inherit;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-thumbnail a img {
    max-width: 7rem;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    padding: 1rem;
    font-weight: 300;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td a {
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td a:hover {
    color: var(--deepergreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-remove a.remove {
    text-decoration: underline;
    color: transparent !important;
    display: inherit;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-remove a.remove:hover {
    background-color: transparent !important;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-remove a.remove::after {
    content: "Remove";
    text-indent: 0;
    display: block;
    line-height: initial;
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 300;
    border-bottom: 1px solid var(--deepergreen);
    margin-top: -3rem;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-remove a.remove:hover::after {
    border-bottom: 0;
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon #coupon_code {
    width: 20rem;
    border: 0;
    font-size: 2rem;
    padding: 0;
    border-bottom: 1px solid var(--pistagreen);
    color: var(--pistagreen);
    font-family: var(--inter);
    font-weight: 300;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon button[value="Apply coupon"] {
    background: transparent;
    border: 0;
    outline: none;
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 300;
    margin-left: 3rem;
    padding: 0.8rem 0;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon #coupon_code::-webkit-input-placeholder {
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon #coupon_code::-moz-placeholder {
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon #coupon_code:-ms-input-placeholder {
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon #coupon_code:-moz-placeholder {
    color: var(--pistagreen);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.actions button[value="Update cart"] {
    font-size: 1.6rem;
    font-family: var(--inter);
    color: var(--deepergreen);
    padding: 1rem 2.4rem;
    border-radius: 3rem;
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.actions button[value="Update cart"]:hover {
    background-color: var(--deepergreen);
    color: var(--white);
}

.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.actions {
    padding-top: 5rem;
}

.woocommerce .cart-collaterals h2,
.woocommerce .cart-collaterals .cart_totals.calculated_shipping h2 {
    font-size: 2.2rem;
    font-family: var(--inter);
    color: var(--deepergreen);
    font-weight: 400;
    margin: 0 0 3rem;
}

.woocommerce .cart-collaterals .cart_totals.calculated_shipping .shop_table.shop_table_responsive {
    border: 0;
}

.woocommerce .cart-collaterals table {
    border: 0 !important;
}

.woocommerce .cart-collaterals table tr th {
    font-size: 1.8rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 400 !important;
    padding: 1.5rem 0;
}

.woocommerce .cart-collaterals table tr th span {
    font-size: 1.3rem;
}

.woocommerce .cart-collaterals table tr td {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 300;
    text-align: right;
    padding: 1.5rem;
}

.woocommerce .cart-collaterals table tr.order-total td {
    border-top-color: var(--lightpistagreen);
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button {
    font-size: 1.6rem;
    font-family: var(--inter);
    color: var(--deepergreen);
    padding: 1.4rem 3.2rem;
    border-radius: 3rem;
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
    float: right;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
    background-color: var(--deepergreen);
    color: var(--white);
}

.woocommerce .cart-collaterals .cart_totals.calculated_shipping {
    margin-top: 4rem;
}

.woocommerce .cart-collaterals .wc-proceed-to-checkout {
    margin-top: 3rem;
}

.woocommerce form.checkout.woocommerce-checkout #customer_details .form-row {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2rem;
}

.woocommerce form.checkout.woocommerce-checkout #customer_details h3 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    line-height: 1.2;
    font-family: var(--redhat);
    display: block;
    border-bottom: 1px solid var(--lightpistagreen);
    margin: 0 0 2rem;
    padding: 0 0 1.5rem;
}

.woocommerce form.checkout.woocommerce-checkout #customer_details label {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pistagreen);
    font-family: var(--inter);
    margin: 0 0 0.5rem;
}

.woocommerce form.checkout.woocommerce-checkout #customer_details label .required {
    color: var(--pistagreen);
}

.woocommerce form.checkout.woocommerce-checkout #customer_details .woocommerce-input-wrapper input {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    padding: 0 !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
}

.woocommerce form.checkout.woocommerce-checkout #customer_details .woocommerce-input-wrapper .select2-container--default .select2-selection--single {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
    border-radius: 0;
}

.woocommerce form.checkout.woocommerce-checkout {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/*.woocommerce form.checkout.woocommerce-checkout .row {
    margin: 0 2.5rem;
}
.woocommerce form.checkout.woocommerce-checkout .row .col-md-6 {
    padding: 0 2.5rem;
}*/

.woocommerce form.checkout.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .woocommerce-input-wrapper textarea {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    padding: 1.5rem 0;
    height: 14rem;
    border: 0;
    border-bottom: 1px solid var(--deepgreen) !important;
}

.woocommerce form.checkout.woocommerce-checkout #order_review {
    margin: 4rem 0 0;
}

.woocommerce form.checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
    border: 0;
}

.woocommerce form.checkout.woocommerce-checkout #order_review thead tr th {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 400;
    padding: 1.5rem 0;
}

.woocommerce form.checkout.woocommerce-checkout #order_review tbody tr td {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 300;
    padding: 1.5rem 0;
    border-top-color: var(--lightpistagreen);
}

.woocommerce form.checkout.woocommerce-checkout #order_review tfoot tr th {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 400;
    padding: 1.5rem 0;
    border-top-color: var(--lightpistagreen);
}

.woocommerce form.checkout.woocommerce-checkout #order_review tfoot tr td {
    font-size: 2rem;
    color: var(--deepergreen);
    font-family: var(--inter);
    font-weight: 400;
    padding: 1.5rem 0;
    border-top-color: var(--lightpistagreen);
}

.woocommerce form.checkout.woocommerce-checkout #order_review {}

.woocommerce form.checkout.woocommerce-checkout #order_review_heading {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    line-height: 1.2;
    font-family: var(--redhat);
    display: block;
    border-bottom: 1px solid var(--lightpistagreen);
    margin: 0 0 2rem;
    padding: 5rem 0 1.5rem;
}

.woocommerce form.checkout.woocommerce-checkout #payment {
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #B2C7C3;
}

.woocommerce form.checkout.woocommerce-checkout #payment .payment_box.payment_method_cod {
    background-color: var(--lighterpgreen);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--inter);
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
    border: 1em solid var(--lighterpgreen) !important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em;
}

.woocommerce form.checkout.woocommerce-checkout #payment label {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--inter);
    margin: 0 0 0.5rem;
}

.woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper p {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--inter);
    margin: 0;
}

.woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper p a {
    color: var(--pistagreen);
    text-decoration: underline;
}

.woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper p a:hover {
    color: var(--deepergreen);
}

.woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order button#place_order {
    /*margin-left: auto;*/
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    border-radius: 3rem;
    padding: 1.2rem 3rem;
    color: var(--deepergreen);
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    margin: 4rem auto 1rem;
}

.woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order button#place_order:hover {
    color: var(--white);
    background-color: var(--deepergreen);
}

.woocommerce .woocommerce-form-coupon-toggle {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
    background-color: transparent;
    border: 1px solid var(--pistagreen);
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a {
    color: var(--pistagreen);
    text-decoration: underline !important;
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a:hover {
    color: var(--deepergreen);
    text-decoration: none !important;
}

.woocommerce-info::before {
    color: var(--deepergreen) !important;
}

.c-product-cart-banner {
    background: var(--deepgreen);
    padding: 6.4rem 0;
}

.c-product-cart-banner h1 {
    font-size: 6rem;
    font-weight: 300;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    font-family: var(--rdeepgreen);
}

.woocommerce_cart_wpr {
    padding: 10rem 0;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product {
    width: 100%;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product thead tr th {
    font-size: 2rem;
    font-weight: 400;
    padding: 3rem 0;
    border: 0;
    font-family: var(--inter);
    color: var(--black);
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product--thumbnail {
    width: 10rem;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product--thumbnail a {
    width: 7rem;
    /*border: 1px solid var(--lightpistagreen);*/
    border: 1px solid rgba(153, 168, 166, 0.5);
    padding: 0.5rem;
    display: inherit;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td {
    border-top: 1px solid #99A8A6;
    padding: 4rem 0;
    vertical-align: top;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product--thumbnail a img {
    width: 100%;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-title span {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--black);
    display: block;
    margin: 0;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-title .product-meta {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--inter);
    color: var(--pistagreen);
    margin: 0 0 0.5rem;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-title .product-remove {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
    border-bottom: 2px solid var(--deepergreen);
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-availability,
.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-price,
.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-total,
.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-specification .product-color-name {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--black);
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-specification .product-color-wpr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-specification .product-color {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 100%;
    background: #C3C8CA;
    display: inline-block;
    margin-right: 1rem;
}

.woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-quantity .quantity {
    margin-top: -1.5rem
}

.c_woocommerce_cart_coupon,
.c_cart_collaterals {
    width: 100%;
}

.c_woocommerce_cart_coupon td td {
    border: 0 !important;
}

.c_woocommerce_cart_coupon label {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--black);
    margin-right: 2rem;
}

.c_woocommerce_cart_coupon input {
    width: 20rem;
    border: 0;
    font-size: 1.5rem;
    padding: 0;
    border-bottom: 1px solid var(--pistagreen);
    color: var(--pistagreen);
    font-family: var(--inter);
    font-weight: 300;
    padding: 0.5rem 0;
}

.c-product-total-panel {
    border-top: 1px solid #99A8A6;
    padding-top: 3rem;
    margin-top: 5rem;
}

.c_cart_collaterals tr {
    border-bottom: 1px solid #99A8A6;
}

.c_cart_collaterals .c-cart-subtotal th {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--inter);
    color: var(--black);
    padding: 2.5rem 0;
}

.c_cart_collaterals .c-cart-subtotal td {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--black);
    padding: 2.5rem 0;
}

.c_cart_collaterals .c-order-total th {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--inter);
    color: var(--black);
    padding: 2.5rem 0;
}

.c_cart_collaterals .c-order-total td {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--inter);
    color: var(--black);
    padding: 2.5rem 0;
    vertical-align: bottom;
}

.c-proceed-to-checkout .checkout-button{
    font-size: 1.6rem;
    font-family: var(--inter);
    color: var(--deepergreen);
    padding: 1.4rem 3.2rem;
    border-radius: 3rem;
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
    float: right;
    margin-top: 3rem;
}

.c-proceed-to-checkout .checkout-button:hover{
    background-color: var(--deepergreen);
    color: var(--white);
}

.c-interior-about-panel {
    background: var(--ofwhite);
}

.c-interior-about-panel .c-interior-about-inner {
    height: 100%;
}

.c-interior-about-panel .c-interior-about-inner .c-interior-about--in {
    max-width: 430px;
    width: 100%;
}

.c-interior-about-inner h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 3.5rem;
}

.c-interior-about-inner p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
    line-height: 1.6;
    margin: 0 0 2rem;
}

.c-interior-idea-panel {
    padding: 10rem 0;
    background-color: var(--deepergreen);
}

.c-interior-idea-right h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 3.5rem;
}

.c-interior-idea-right p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 3rem;
}

.c-interior-idea-right .c-default-btn {
    margin-top: 6rem;
}

.c-interior-idea-right .c-interior-idea-right-in {
    max-width: 65rem;
    padding-right: calc((100% / 12)*1.3);
}

.c-interior-peace-panel {
    padding: 12rem 0;
}

.c-interior-peace-panel h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 3.5rem;
}

.c-interior-peace-panel p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
    line-height: 1.6;
    margin: 0 0 2rem;
}

.c-interior-peace-panel .c-default-btn {
    margin-top: 6rem;
}

.c-interior-idea-panel .c-interior-idea-left {
    padding-right: 1.5rem;
}

.c-interior-idea-panel .c-interior-idea-slider .swiper-pagination {
    bottom: 3rem;
}

.c-interior-idea-panel .c-interior-idea-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    margin: 0 10px !important;
}

.c-interior-belive-panel {
    padding: 10rem 0 0;
}

.c-interior-belive-panel-img {
    max-width: 111.6rem;
    margin: 0 auto;
    padding: 9rem 0 10rem;
}

.c-interior-belive-panel h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepergreen);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 3.5rem;
}

.c-interior-belive-panel p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 62rem;
}

.c-interior-belive-strip {
    border-top: 0.06rem solid rgb(153, 168, 166, 45%);
    padding: 4.5rem 0;
}

.c-interior-belive-strip-in {
    max-width: 100rem;
    margin: 0 auto;
}

.c-interior-belive-strip-in .c-each-interior-belive p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
    line-height: 1.6;
    margin: 0 0 0 1.5rem;
}
.c-each-interior-belive{
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}
.c-each-interior-belive a{
    color: var(--deepergreen);
}
.c-each-interior-belive a:hover{
    color:#000;
}
.c-each-interior-belive img{
    margin-right:10px;
}

.woocommerce-notices-wrapper {
    max-width: 140rem;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
    padding: 1.5rem 3rem 1.5rem 6rem;
    /*background-color: var(--ofwhite);*/
    background-color: transparent;
    border: 1px solid var(--lightpistagreen) !important;
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepgreen);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin: 0;
    border-radius: 0 !important;
}

.woocommerce-notices-wrapper .woocommerce-message a {
    color: var(--deepgreen);
}

.woocommerce-notices-wrapper .woocommerce-message a.button {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--deepgreen);
    font-family: var(--inter);
    padding: 1.5rem 3rem;
    min-width: 15rem;
    border-radius: 3rem;
    border: 1px solid var(--deepgreen);
    background: transparent;
    text-align: center;
    margin-left: auto;
    text-transform: uppercase;
}

.woocommerce-notices-wrapper .woocommerce-message a.button:hover {
    background: var(--deepgreen);
    color: var(--white);
}

.woocommerce-notices-wrapper .woocommerce-message::before {
    top: 50%;
    left: 1.5em;
    transform: translate(0rem, -50%);
    color: var(--deepgreen) !important;
}

.checkout_coupon.woocommerce-form-coupon {
    max-width: 100rem;
    margin: 0 auto 3rem !important;
    padding: 1.5rem;
    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;
    /*flex-direction: column;*/
    border: 1px solid var(--pistagreen);
    border-radius: 0;
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
    width: 31rem;
    max-width: 30rem;
    margin-left: auto;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first input {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    padding: 0 !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last {
    width: 185px;
    margin-left: auto;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last button[type="submit"] {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    border-radius: 3rem;
    padding: 1.2rem 3rem;
    color: var(--deepergreen);
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    width: 18.5rem;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last button[type="submit"]:hover {
    background: var(--deepgreen);
    color: var(--white);
}

.woocommerce .woocommerce-order {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.woocommerce-error {
    max-width: 140rem;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
    background-color: transparent;
    border: 1px solid #b81c23;
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}

.cart-empty.woocommerce-info {
    max-width: 140rem;
    margin: 0 auto 5rem;
    padding: 2rem 6.5rem;
    background-color: transparent;
    border: 1px solid var(--deepergreen);
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}

.return-to-shop {
    text-align: center;
}

.return-to-shop a.button.wc-backward {
    font-size: 1.6rem;
    font-family: var(--inter);
    color: var(--deepergreen);
    padding: 1.4rem 3.2rem;
    border-radius: 3rem;
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
}

.return-to-shop a.button.wc-backward:hover {
    background-color: var(--deepergreen);
    color: var(--white);
}

.c-login-sec {
    background: var(--ofwhite);
    border-top: 1px solid var(--lighterpgreen);
    padding: 8rem 0 10rem;
    margin-bottom:0;
}

.c-login-sec .container {
    max-width: 1150px !important;
}

.c-login-sec h1 {
    font-size: 6rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--redhat);
    line-height: 1.2;
    margin: 0 0 4rem;
}

.c-login-sec p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--inter);
    line-height: 1.4;
    margin: 0 0 3rem;
}

.c-login-sec .login-form {
    padding-top: 4rem;
}

.c-login-sec .login-form .input-fld {
    position: relative;
}

.c-login-sec .login-form [class*="col-"]:first-child .input-fld::before {
    content: '';
    position: absolute;
    width: 1.9rem;
    height: 1.5rem;
    background: url(../images/email-2.png) no-repeat 0 0;
    background-size: 1.8rem;
    top: 1.8rem;
}

.c-login-sec .login-form [class*="col-"]:last-child .input-fld::before {
    content: '';
    position: absolute;
    width: 1.6rem;
    height: 2rem;
    background: url(../images/lock-2.png) no-repeat 0 0;
    background-size: 1.4rem;
    top: 1.2rem;
}

.c-login-sec .login-form .input-fld sup {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--deepergreen);
    position: absolute;
    right: 0;
    top: 30%;
}

.c-login-sec .login-form .input-fld .form-control {
    height: 50px;
    border: none;
    color: #052C25;
    background: transparent;
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 300;
    border-bottom: #132B25 1px solid;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    padding: 0.5rem 1rem 0.5rem 4rem;
}

.c-login-sec .login-form .c-frgotten-pas {
    text-align: right;
    margin: 1rem 0 2rem;
}

.c-login-sec .login-form .c-frgotten-pas a {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: var(--inter);
    color: #64807B;
    display: inline-block;
    text-decoration: underline !important;
}

.c-login-sec .login-form .c-frgotten-pas a:hover {
    color: var(--deepergreen);
}

.c-login-sec .login-form [type="radio"]:checked,
.c-login-sec .login-form [type="radio"]:not(:checked),
.c-login-sec .login-form [type="checkbox"]:checked,
.c-login-sec .login-form [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.c-login-sec .login-form [type="radio"]:checked+span,
.c-login-sec .login-form [type="radio"]:not(:checked)+span,
.c-login-sec .login-form [type="checkbox"]:checked+span,
.c-login-sec .login-form [type="checkbox"]:not(:checked)+span {
    position: relative;
    /*padding-left: 5.2rem;*/
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--deepgreen);
    padding: 0.4rem 0 0.4rem 5rem;
}

.c-login-sec .login-form [type="radio"]:checked+span:before,
.c-login-sec .login-form [type="radio"]:not(:checked)+span:before,
.c-login-sec .login-form [type="checkbox"]:checked+span:before,
.c-login-sec .login-form [type="checkbox"]:not(:checked)+span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--deepgreen);
    border-radius: 100%;
    background: transparent;
}

.c-login-sec .login-form [type="radio"]:checked+span:after,
.c-login-sec .login-form [type="radio"]:not(:checked)+span:after,
.c-login-sec .login-form [type="checkbox"]:checked+span:after,
.c-login-sec .login-form [type="checkbox"]:not(:checked)+span:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: var(--deepgreen);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.c-login-sec .login-form [type="radio"]:not(:checked)+span:after,
.c-login-sec .login-form [type="checkbox"]:not(:checked)+span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.c-login-sec .login-form [type="radio"]:checked+span:after .c-login-sec .login-form [type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-login-sec .login-form .submit-fld {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.c-login-sec .login-form .submit-fld p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--deepgreen);
    font-family: var(--inter);
    margin: 0;
}

.c-login-sec .login-form .submit-fld p a {
    color: var(--deepgreen);
    text-decoration: underline !important;
    text-transform: uppercase;
}

.c-login-sec .login-form .submit-fld p a:hover {
    text-decoration: none !important;
}

.c-login-sec .login-form .submit-fld .c-submit-btn {
    padding: 1.3rem 4.4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--deepgreen);
    border: 1px solid var(--deepgreen);
    border-radius: 4.4rem;
    background: transparent;
    display: inline-block;
    text-transform: uppercase;
    min-width: 23rem;
    margin-left: 5rem;
}

.c-signup-body-head .container {
    max-width: 170rem !important;
    padding: 0 3rem
}

.c-login-sec .login-form .submit-fld .c-submit-btn:hover {
    background: var(--deepgreen);
    color: var(--ofwhite);
}

.c-signup-body-head {
    padding: 6rem 0 5rem;
    background: var(--deepergreen);
}

.c-signup-body-head h1 {
    font-size: 7rem;
    font-weight: 300;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-align: center;
    font-family: var(--redhat);
}

.c-signup-body-head p {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.6;
    margin: 0 auto;
    color: var(--white);
    max-width: 63rem;
    text-align: center;
}

.c-signup-form-sec {
    padding: 12rem 0 25rem;
}

.c-signup-form-sec .c-signup-heading,
.c-signup-form-sec .c-password-heading {
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--redhat);
    line-height: 1.3;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid var(--lighterpgreen);
    margin: 0 0 5rem;
}

.c-signup-form-sec .input-fld {
    position: relative;
    margin: 0 0 6rem;
}

.c-signup-form-sec .input-fld .form-control {
    height: 50px;
    border: none;
    color: #052C25;
    background: transparent;
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 300;
    border-bottom: #132B25 1px solid;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

.c-signup-form-sec .input-fld sup {
    position: absolute;
    top: 15px;
    right: 0;
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 20px;
}

.c-signup-form-sec [type="radio"]:checked,
.c-signup-form-sec [type="radio"]:not(:checked),
.c-signup-form-sec [type="checkbox"]:checked,
.c-signup-form-sec [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.c-signup-form-sec [type="radio"]:checked+span,
.c-signup-form-sec [type="radio"]:not(:checked)+span,
.c-signup-form-sec [type="checkbox"]:checked+span,
.c-signup-form-sec [type="checkbox"]:not(:checked)+span {
    position: relative;
    /*padding-left: 5.2rem;*/
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--deepgreen);
    padding: 0.4rem 0 0.4rem 5rem;
}

.c-signup-form-sec [type="radio"]:checked+span:before,
.c-signup-form-sec [type="radio"]:not(:checked)+span:before,
.c-signup-form-sec [type="checkbox"]:checked+span:before,
.c-signup-form-sec [type="checkbox"]:not(:checked)+span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--deepgreen);
    border-radius: 100%;
    background: transparent;
}

.c-signup-form-sec [type="radio"]:checked+span:after,
.c-signup-form-sec [type="radio"]:not(:checked)+span:after,
.c-signup-form-sec [type="checkbox"]:checked+span:after,
.c-signup-form-sec [type="checkbox"]:not(:checked)+span:after {
    content: '';
    width: 1.8rem;
    height: 1.8rem;
    background: var(--deepgreen);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.c-signup-form-sec [type="radio"]:not(:checked)+span:after,
.c-signup-form-sec [type="checkbox"]:not(:checked)+span:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.c-signup-form-sec [type="radio"]:checked+span:after .c-signup-form-sec [type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-signup-form-sec span {
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 18px;
}

.c-signup-form-sec .last {
    margin: 0 0 0 2.2rem;
}

.c-signup-form-sec .input-fld .label {
    font-size: 2.2rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepgreen);
    padding: 0 0 0.5rem;
    border-bottom: #132B25 1px solid;
    margin: 0 0 2rem;
    display: block;
}

.c-terms-conditions .first span {
    font-size: 0;
}

.c-terms-conditions {
    display: flex;
    align-items: flex-start;
}

.c-terms-conditions p {
    color: #052C25;
    font-family: var(--inter);
    font-weight: 300;
    font-size: 18px;
    margin: 0;
    max-width: 62rem;
}
.c-terms-conditions p a{
    color:var(--deepgreen);
}
.c-terms-conditions p a:hover{
    color:#000;
}

.c-signup-form-sec .container [class*="col-"] {
    padding: 0 3rem;
}

.c-signup-form-sec .submit-fld .btn {
    min-width: 230px;
    text-align: center;
    padding: 20px 10px;
    border: #052C25 1px solid;
    border-radius: 35px;
    font-size: 18px;
    color: #052C25;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--inter);
    outline: none;
}

.c-signup-form-sec .submit-fld .btn:hover {
    background: #052C25;
    color: #FFF;
}

.c-contact-strip {
    padding: 7rem 0;
    background: var(--lpgreen);
}

.c-contact-strip h2 {
    font-size: 7rem;
    font-weight: 300;
    color: var(--deepergreen);
    margin: 0 0 1.5rem;
    line-height: 1.2;
    text-align: center;
    font-family: var(--redhat);
}

.c-contact-strip p {
    font-size: 3rem;
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.5;
    margin: 0 0 2rem;
    color: var(--deepgreen);
}

.c-contact-strip .c-banner-btn:hover {
    border-color: var(--deepgreen);
    color: var(--deepgreen);
}
.woocommerce .woocommerce-order .woocommerce-thankyou-order-received,
.woocommerce .woocommerce-order p {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--inter);
    color: var(--deepgreen);
    font-weight: 300;
}
.woocommerce .woocommerce-order .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li{
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--inter);
    color: var(--deepgreen);
    font-weight: 300;
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title{
    font-size: 3.5rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--redhat);
    color: var(--deepgreen);
    font-weight: 300;
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details{
    border: 0 !important;
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr th{
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--inter);
    color: var(--deepgreen);
    font-weight: 500;
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr td{
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--inter);
    color: var(--deepgreen);
    font-weight: 300;
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr td a {
    color: var(--pistagreen);
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr td a:hover {
    color: var(--deepgreen);
}
.woocommerce table.shop_table td {
    border-top: 1px solid var(--lighterpgreen);
}
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details thead tr th:nth-child(2),
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tbody tr td:nth-child(2),
.woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tfoot tr td{
    text-align: right;
}
.select2-container--open .select2-dropdown--below {
    border-top: 1px solid #aaa !important;
}
.woocommerce-form-login-toggle{
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.woocommerce-form-login-toggle .woocommerce-info{
    background-color: transparent;
    border: 1px solid var(--pistagreen);
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    color: var(--deepergreen);
}
.woocommerce-form-login-toggle .woocommerce-info a {
    color: var(--pistagreen);
    text-decoration: underline !important;
}
.woocommerce-form-login-toggle .woocommerce-info a:hover {
    color: var(--deepergreen);
    text-decoration: none !important;
}
.select2-container--default .select2-results>.select2-results__options li{
    font-size: 16px;
    /*color: #052c25;
    font-family: var(--inter);*/
}
/*.select2-container--default .select2-results>.select2-results__options li:hover{
    background-color: #052c25;
    color: #fff;
}*/
.woocommerce-form.woocommerce-form-login.login {
    max-width: 140rem;
    margin: 0 auto 30px;
    padding: 3rem 1.5rem 2rem;
}
.woocommerce-form.woocommerce-form-login.login p{
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 2rem;
    font-family: var(--inter);
    color: var(--deepgreen);
    font-weight: 300;
}
.woocommerce-form.woocommerce-form-login.login input {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    font-family: var(--inter) !important;
    color: var(--deepgreen) !important;
    padding: 0 !important;
    border: 0 !important;
    height: 4.7rem !important;
    border-bottom: 1px solid var(--deepgreen) !important;
}
.woocommerce-form.woocommerce-form-login.login .woocommerce-button.button.woocommerce-form-login__submit {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: var(--inter);
    border-radius: 3rem;
    padding: 1.2rem 3rem;
    color: var(--deepergreen);
    border: 1px solid var(--deepergreen);
    background-color: transparent;
    margin-left: auto;
}
.woocommerce-form.woocommerce-form-login.login .woocommerce-button.button.woocommerce-form-login__submit:hover {
    color: var(--white);
    background-color: var(--deepergreen);
}
.woocommerce-form.woocommerce-form-login.login .lost_password a {
    color: var(--pistagreen);
    text-decoration: underline !important;
}
.woocommerce-form.woocommerce-form-login.login .lost_password a:hover{
    color: var(--deepergreen);
    text-decoration: none !important;
}
.c-product-modal .c-product-details-info .cart{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.c-product-modal .c-product-details-info .single_add_to_cart_button {
    /*min-width: 230px;
    text-align: center;
    padding: 17px 10px;
    border: var(--deepgreen) 1px solid;
    border-radius: 35px;
    font-size: 18px;
    color: var(--deepgreen);
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--inter);
    outline: none;
    background: transparent;
    margin-left: 3rem;*/
    min-width: 175px;
    text-align: center;
    padding: 11px 10px;
    border: var(--deepgreen) 1px solid;
    border-radius: 35px;
    font-size: 16px;
    color: var(--deepgreen);
    font-weight: 500;
    /*text-transform: uppercase;*/
    font-family: var(--inter);
    outline: none;
    background: transparent;
    margin-left: 2rem;
}
.c-product-modal .c-product-details-info .single_add_to_cart_button:hover {
    background: var(--deepgreen);
    color: var(--white);
}
.c-product-modal .c-product-details-info .cart .quantity input {
    width: 75px;
}
.c-brochures-stock-page{
    position: relative;
}
.c-brochures-stock-page::before{
    content: '';
    position: absolute;
    width: 18.5vw;
    height: 18.5vw;
    border: 1px solid var(--pistagreen);
    top: -40px;
    left: 20px;
    z-index: 1;
    border-radius: 50%;
    opacity: 0.4;
}
.c-brochures-stock-page .container {
    position: relative;
    z-index: 2;
}
.c-image-text-panel p{
    font-size: 3rem;
    font-weight: 300;
    font-family: var(--redhat);
    color: var(--deepergreen);
    line-height: 1.5;
    margin: 0 0 3rem;
}
.wpim.wpim-3094 {
    width: 100%;
}
.wpim.wpim-3094 img {
    width: 100%;
}
.wpim.wpim-3094 .wpim-3094__c5 {
    /* top: 204px; */
    /* left: 183px; */
    top: 18%;
    left: 10%;
}

.wpim.wpim-3094 .wpim-3094__c11 {
    /* top: 547px; */
    /* left: 620px; */
    top: 58%;
    left: 33%;
}
.sip-point .sip-popup .sip-popup-title {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    font-family: var(--inter);
    /*width: 244px;*/
    padding: 20px;
    border-radius: 0 !important;
}
.sip-wrapper{
    width: 100%;
}
.sip-wrapper img {
    width: 100%;
}
.sip-point.sip-point-icon-text {
    width: 47px !important;
    height: 47px !important;
    border-radius: 100%;
    /*display: -ms-flexbox;*/
    /*display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;*/
    background: rgba(255, 255, 255, 0.3) !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /*-webkit-transform: rotate( 45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate( 45deg);*/
    box-shadow: none !important;
}
.sip-point.sip-point-icon-text::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 27%;
    /* right: 0; */
    /* bottom: 0; */
    width: 22px;
    height: 22px;
    margin: 0 auto;
    background-image: url(/wp-content/themes/furncare-child/images/cross-icon.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.sip-point.sip-point-icon-text:hover::before{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.sip-point.sip-point-icon-text > .sip-point-text{
    font-size: 0;
    color: transparent;
}
.sip-point .sip-popup.sip-popup-right .sip-popup-inner:before{
    display: none;
}
.sip-point .sip-popup .sip-popup-inner {
    position: relative;
    padding: 0 !important;
    border-radius: 0 !important;
    background-color: #fff;
    color: #333;
    box-shadow: none !important;
}
.sip-point .sip-popup.sip-popup-right {
    top: 97% !important;
    right: 10px;
    padding-left: 15px !important;
    transform: translate(calc(100% + 10px), -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/**/
#cookiePolicyModal .modal-body {
   padding: 5rem 4rem 5rem;
}
#cookiePolicyModal .modal-body .close {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 100%;
    background: var(--lightpistagreen);
    position: absolute;
    top:1rem;
    right:1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 9999;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

#cookiePolicyModal .modal-body .close span {
    width: 4.5rem;
    height: 4.5rem;
    opacity: 1;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cookiePolicyModal .modal-body .close:hover {
    opacity: 1 !important;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

#cookiePolicyModal .modal-body .btn {
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4.4rem;
    background: transparent;
    display: inline-block;
}

#cookiePolicyModal .modal-body .btn:hover {
    background: var(--white);
    color: var(--deepgreen);
}
#cookiePolicyModal .modal-body .btn.btn-primary{
    background: var(--white);
    color: var(--deepgreen);
}
#cookiePolicyModal .modal-body .btn.btn-primary:hover {
    color: var(--white);
    background-color: transparent;
}
#cookiePolicyModal .modal-body .btn.btn-primary{
    margin: 0 0 0 2rem;
}
#cookiePolicyModal .modal-body .c-policy-page-content h3{
    color: #fff;
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 1.5rem;
}

#cookiePolicyModal .modal-body p{
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--inter);
    line-height: 1.6em;
    color: #fff;
    margin: 0 0 1.5rem;
}
#cookiePolicyModal .modal-body p a{
    color:#bfc7c5;
}
#cookiePolicyModal .modal-body p a:hover{
    color:#FFF;
}

/*#cookiePolicyModal .modal-dialog .modal-content{
    background-color: rgba(5, 44, 37, 0.95);
}*/
#cookiePolicyModal {
    width: 100%;
   max-width: 117rem; 
   margin: 0 auto;
   background-color: rgba(5, 44, 37, 0.95);
   position: fixed;
   top: 50%;
   left: 0;
   right: 0;
   -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
   color: #fff;
   z-index: 999999;
}
#cookiePolicyModal hr {
    border-color: #FFF;
}

.woocommerce-MyAccount-orders.my_account_orders tbody tr td:last-of-type{
    text-align:left !important;
}

/* 
font-family: 'Inter', sans-serif;
font-family: 'Red Hat Display', sans-serif;
*/


/*====================================================== Responsive1 ========================================*/
/*====================================================== Responsive ========================================*/

@media only screen and (min-width: 1537px) {
    .modal-dialog {
        max-width: 134.7rem !important;
    }
    /*#cookiePolicyModal .modal-dialog {
        max-width: 75rem !important;
    }*/

}

@media only screen and (max-width: 1536px) and (min-width: 1367px) {
    .modal-dialog {
        max-width: 114rem !important;
        /* max-width: 134.7rem !important; */
    }
}

@media only screen and (max-width: 1367px) and (min-width: 1281px) {
    .modal-dialog {
        max-width: 104rem !important;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 992px) {
    .modal-dialog {
        max-width: 99.1rem !important;
    }
}

@media only screen and (max-width:1680px) {
    .c-supplier-panel .c-supplier-image {
        width: 94.5rem;
        padding-right: 7rem;
    }
    .c-home-banner__caption big {
        font-size: 80px;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 80rem;
    }
    .c-signup-body-head h1 {
        font-size: 5rem;
    }
    .c-signup-body-head p {
        font-size: 1.7rem;
    }
    .c-signup-form-sec .c-signup-heading,
    .c-signup-form-sec .c-password-heading {
        font-size: 3.2rem;
    }
}

@media only screen and (max-width:1600px) {
    .c-projects-panel .c-projects-img img {
        max-width: 76rem;
    }
    .c-image-with-text {
        padding: 50px 0;
    }
}

@media only screen and (max-width:1536px) {
    .c-supplier-panel .c-supplier-image {
        width: 86.5rem;
        padding-right: 7rem;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 72.8rem;
    }
    .c-image-with-text {
        margin-top: -100px;
    }
    .c-image-with-text__text-panel {
        padding: 0 5%;
    }
    .woocommerce {
        padding: 3rem 2rem !important;
    }
}

@media only screen and (max-width:1440px) {
    .c-supplier-panel .c-supplier-image {
        width: 82.5rem;
        padding-right: 5rem;
    }
    .c-big-banner__caption {
        bottom: 24%;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 68rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .slick-arrow.slick-next {
        right: 1.6rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-thumb-slider .slick-arrow.slick-prev {
        left: 1.6rem;
    }
    .c-searchpage-top-heading {
        padding: 3.5rem 0;
    }
    .c-searchpage-top-heading h1 {
        font-size: 3.2rem;
    }
    .c-interior-peace-panel .container {
        padding: 0 3rem;
    }
    .c-interior-idea-right .c-interior-idea-right-in {
        padding-left: calc((100% / 12)*0.3);
    }
    .c-brochures-stock-page.c-policy-page-content h2{
        font-size: 30px;
    }
    .c-brochures-stock-page.c-policy-page-content h3 {
        font-size: 28px;
    }
    .c-brochures-stock-page.c-policy-page-content h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width:1366px) {
    /* home-banner */
    .c-main-banner .c-banner-content {
        height: 76vh;
        padding: 0 0 3rem;
    }
    /* .c-main-banner .c-banner-content big {
    font-size: 5.5rem;
} */
    .c-main-banner {
        background-position: center;
    }
    /* home-banner */
    .c-cloting-btn {
        width: 20rem;
        height: 6rem;
        font-size: 1.8rem;
        top: 50%;
        left: auto;
        right: -7rem;
        line-height: 6rem;
    }
    /* home body start */
    .c-supplier-panel .c-supplier-image {
        width: 78.2rem;
        padding-right: 3rem;
    }
    .c-each-category .c-category-info strong {
        font-size: 2.4rem;
    }
    .c-each-category .c-category-info {
        min-height: 6rem;
    }
    .c-product-category-tab-panel {
        padding: 0 0 3rem;
    }
    .c-product-category-panel {
        padding: 8rem 0;
    }
    .c-about-panel {
        padding: 0 0 8em;
    }
    .c-each-live-panel h2 {
        font-size: 9rem;
    }
    .c-main-footer .offset-lg-3 {
        margin-left: 20%;
    }
    .c-banner-bottom {
        padding: 1.5rem 0;
    }
    .c-liv-panel-sec {
        padding: 8rem 0;
    }
    /* home body end */
    .c-product-details-info {
        /*padding-left: 3rem;*/
        padding-left: 0;
    }
    .c-product-modal .c-product-details-info .single_add_to_cart_button {
        min-width: 145px;
    }
    .c-product-details-tab #c-product-details  ul {
        width: 100%;
    }
    .c-product-details-tab #c-product-details  ul li {
        font-size: 1.8rem;
        color: var(--dgrey);
        line-height: 1.7;
        margin: 0 0 2.5rem;
        font-family: var(--inter);
        padding: 0 0 0 3rem;
        position: relative;
        font-weight: 300;
    }
    .c-product-details-tab #c-product-details  ul li::before{
        content: '';
        position: absolute;
        background: var(--lpgreen);
        width: 1rem;
        height: 1rem;
        border-radius: 100%;
        top: 0.9rem;
        left: 0;
    }
    .c-liberta-info-panel .c-liberta-info-left {
        padding-right: 10rem;
    }
    .c-liberta-info-top-panel {
        padding: 20rem 0 6rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details {
        padding: 2.5rem 0;
    }
    .c-product-modal .c-product-details-info h1 {
        font-size: 3.5rem;
    }
    .c-product-details-wrapper .c-product-details-img.c-prosuct-image-slider {
        padding-right: 0;
    }
    .c-product-modal .modal-body {
        padding: 50px 60px 40px;
    }
    .c-product-modal .close {
        right: 2rem;
    }
    .c-product-details-info .c-price h3 {
        font-size: 2.4rem;
    }
    .c-banner-sub-content h1 {
        font-size: 50px;
    }
    .c-team-list {
        padding: 60px 0;
    }
    .c-green-stripe {
        padding: 35px 0;
    }
    .c-green-stripe h1 {
        font-size: 50px;
    }
    .c-map-sec h2 {
        font-size: 35px;
    }
    .c-map-sec {
        padding: 40px 0;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 64.4rem;
    }
    .c-single-blog-in h1 {
        font-size: 4.5rem;
    }
    .c-single-blog-in ul.c-single-blog-authore {
        margin: 0 0 4rem;
    }
    .c-single-blog::before {
        min-height: 65rem;
    }
    .c-single-blog-recent-post-wpr h2 {
        font-size: 4.5rem;
    }
    .c-single-blog-recent-post-wpr {
        padding: 8rem 0 4rem;
    }
    .c-social-stripe-section h2 {
        font-size: 30px;
        margin: 0 0 15px;
    }
    .c-social-stripe-section p {
        font-size: 18px;
    }
    .c-social-stripe-section {
        padding: 40px 0;
    }
    .c-brochure-book-section {
        padding: 60px 0;
    }
    .c-brochure-book-section h2 {
        font-size: 42px;
    }
    .c-image-with-text h2 {
        font-size: 45px;
        margin: 0 0 16px;
    }
    .c-image-with-text h5 {
        font-size: 24px;
    }
    .c-image-with-text p {
        font-size: 18px;
    }
    .c-interior-page-contact-form h2 {
        font-size: 40px;
        margin: 0 0 18px;
    }
    .btn.c-primary-btn {
        min-width: 264px;
        font-size: 16px;
    }
    .c-interior-page-contact-form {
        padding: 60px 0;
    }
    .c-about-banner-area h2 {
        font-size: 40px;
        margin: 0 0 20px;
    }
    .c-about-banner-area {
        padding-top: 60px;
    }
    .c-video-section.c-video-section {
        padding: 60px 0;
    }
    .c-certification-section {
        padding: 40px 0;
    }
    .c-certification-section h4 {
        font-size: 34px;
    }
}

@media only screen and (max-width:1280px) {
    .c-supplier-panel .c-supplier-image {
        width: 71.7rem;
        padding-right: 3rem;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 60rem;
    }
    .c-blogpage-panel .c-each-blog .c-blog-info ul li {
        margin: 0 1.5rem 0 0;
    }
    .c-blogpage-panel .c-each-blog .c-blog-info ul li span {
        font-size: 1.6rem;
    }
    .c-timeline-panel {
        padding: 60px 0;
    }
    .c-timeline-panel h3 {
        font-size: 30px;
    }
    .c-timeline-panel p {
        font-size: 16px;
    }
    .c-may-month .c-floating-content,
    .c-october-month .c-floating-content {
        position: static;
        right: 0;
        top: 0;
        margin: 28px auto 0;
    }
    .c-signup-form-sec {
        padding: 6rem 0 10rem;
    }
    .c-signup-form-sec .input-fld .label {
        font-size: 1.8rem;
    }
    #c-single-product-cart .single_add_to_cart_button {
        font-size: 1.6rem;
        padding: 1.2rem 2rem;
    }
}

@media only screen and (max-width:1199px) {
    .c-supplier-panel .c-supplier-image {
        width: 67.7rem;
    }
    .c-news-panel {
        background-size: 32rem;
        background-position-x: 4%;
        background-position-y: 10%;
    }
    .c-home-banner__caption big {
        font-size: 60px;
    }
    .c-home-banner__caption {
        bottom: 30px;
    }
    .c-banner-sub-content h1 {
        font-size: 34px;
    }
    .c-single-team-member h3 {
        font-size: 20px;
    }
    .c-contact-form-area h4 {
        font-size: 24px;
    }
    .c-contact-form-area .link,
    .c-contact-form-area p,
    .c-contact-form-area .form-control {
        font-size: 16px;
    }
    .c-contact-form-area .label {
        font-size: 18px;
    }
    .c-contact-form-area .btn {
        min-width: 185px;
        padding: 15px 10px;
        font-size: 16px;
    }
    .c-social-stripe-section h2 {
        font-size: 24px;
    }
    .c-social-stripe-section p {
        font-size: 16px;
    }
    .c-social-stripe-section {
        padding: 30px 0;
    }
    .c-social-stripe-section .c-social-icons a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 20px;
    }
    .c-brochure-book-section h2 {
        font-size: 34px;
    }
    .c-brochure-book-section p {
        font-size: 16px;
        margin: 0 0 25px;
    }
    .c-brochure-book-section .btn {
        font-size: 16px;
        padding: 16px 12px;
    }
    .c-our-aim-section h2 {
        font-size: 28px;
    }
    .c-our-aim-section {
        padding: 40px 0;
    }
    .c-image-with-text h2 {
        font-size: 30px;
    }
    .c-image-with-text {
        padding: 25px 0;
    }
    .c-interior-page-contact-form h2 {
        font-size: 30px;
    }
    .c-interior-page-contact-form {
        padding: 30px 0;
    }
    .c-brochures-stock-page h2 {
        font-size: 45px;
        margin: 0 0 20px;
    }
    .c-flipbox-sec h2 {
        font-size: 30px;
    }
    .c-short-content-area {
        padding: 30px 0;
    }
    .c-short-content-area p,
    .c-content-body ul li{
        font-size: 16px;
    }
    .c-each-datasheet .c-datasheet-info h4 {
        font-size: 2.4rem;
    }
    /**/
    .c-brochures-stock-page.c-policy-page-content p{
        margin: 0 0 15px;
        font-size: 16px;
    }
    .c-brochures-stock-page.c-policy-page-content h2{
        font-size: 26px;
        margin: 0 0 15px;
    }
    .c-brochures-stock-page.c-policy-page-content h3 {
        font-size: 24px;
        margin: 0 0 15px;
    }
    .c-brochures-stock-page.c-policy-page-content h4 {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .c-brochures-stock-page.c-policy-page-content h5 ,
    .c-brochures-stock-page.c-policy-page-content h6 {
        font-size: 18px;
        margin: 0 0 15px;
    }

    .c-short-content-area {
        padding: 30px 0;
    }
    .c-short-content-area p {
        font-size: 16px;
    }
    .c-content-body,
    .c-video-stipe {
        padding: 40px 0;
    }
    .c-content-body h3,
    .c-video-stipe h2 {
        font-size: 26px;
    }
    .c-content-body ul>li,
    .c-content-body p {
        font-size: 16px;
    }
    .c-content-body ul>li:before {
        top: 7px;
    }
    .c-content-body ul {
        margin: 0 0 35px;
    }
    .c-single-download-box h4 {
        font-size: 18px;
    }
    .c-single-download-box {
        padding: 20px 60px 20px 20px;
    }
}

@media only screen and (max-width:1124px) {
    .c-supplier-panel .c-supplier-image {
        width: 64.5rem;
    }
    .c-supplier-panel .c-supplier-content {
        padding: 2rem 0 0;
    }
    .c-blogpage-panel .c-each-blog .c-blog-info h3 {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width:1099px) {
    .c-supplier-panel .c-supplier-image {
        width: 62.5rem;
    }
}

@media only screen and (max-width:1024px) {
    /* home banner */
    .c-main-banner .c-banner-content big {
        font-size: 4.5rem;
    }
    .c-main-banner .c-banner-content {
        height: 65vh;
        padding: 0 0 3rem;
    }
    .c-banner-btn {
        padding: 1rem 3.4rem;
        font-size: 1.8rem;
        margin: 0;
    }
    /* home banner */
    .c-banner-bottom {
        padding: 3rem 0;
    }
    .c-supplier-panel .c-supplier-image {
        width: 58rem;
        padding-right: 1rem;
    }
    .c-supplier-panel .c-supplier-content {
        padding: 0;
    }
    .c-supplier-panel .c-supplier-content h2 {
        font-size: 3.8rem;
    }
    .c-about-panel {
        padding: 6rem 0;
    }
    .c-product-category-panel .tab-pane .row {
        margin: 0 -1.5rem;
    }
    .c-product-category-panel .tab-pane .row [class*="col-"] {
        padding: 0 1.5rem;
        margin: 0 0 3rem;
    }
    .c-each-live-panel h2 {
        font-size: 6rem;
    }
    .c-liv-panel-sec {
        padding: 6rem 0;
    }
    .c-each-live-panel p {
        font-size: 1.6rem;
    }
    .c-product-category-panel.c-product-inner-list {
        padding: 8rem 0;
    }
    .c-product-category-panel.c-product-inner-list .row [class*="col-"] {
        margin: 0 0 6rem;
    }
    .c-product-details-info h1 {
        font-size: 4.5rem;
    }
    .c-product-details-info {
        padding-left: 1rem;
    }
    .c-product-description ul li {
        font-size: 1.6rem;
        margin: 0 0 1.5rem;
        padding: 0 0 0 2.5rem;
    }
    .c-product-details-wpr-img {
        padding: 10rem 0;
    }
    .c-related-product-wpr {
        padding: 8rem 0;
    }
    .c-related-product-wpr h2 {
        font-size: 4.2rem;
    }
    .c-liberta-info-right figure a {
        width: 8rem;
    }
    .c-liberta-info-panel .c-liberta-info-left {
        padding-right: 3rem;
    }
    .c-liberta-info-panel {
        padding: 8rem 0 0;
    }
    .c-liberta-info-top-panel {
        padding: 18rem 0 3rem;
    }
    .c-liberta-info-top-panel h2,
    .c-liberta-info-bottom-panel h2 {
        font-size: 4.2rem;
        margin: 0 0 4rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details h4 {
        font-size: 3rem;
        margin: 0 0 2rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details p {
        font-size: 1.6rem;
        margin: 0 0 3rem;
        min-height: 10rem;
    }
    .c-liberta-info-bottom-panel {
        padding: 6rem 0 8rem;
    }
    .c-product-modal .modal-body {
        padding: 30px 30px;
    }
    .c-product-details-wrapper .c-product-details-img.c-prosuct-image-slider {
        margin: 0 0 3rem;
    }
    .c-product-modal .c-product-details-info h1 {
        font-size: 3.1rem;
    }
    .c-product-details-info .c-price h3 {
        font-size: 2.2rem;
    }
    .limit-items .items ul li {
        font-size: 1.6rem;
    }
    .limit-items label[for='show-all'] {
        font-size: 1.6rem;
    }
    .limit-items {
        margin: 0 0 2rem;
    }
    .c-big-banner__caption {
        bottom: 14%;
    }
    .c-projects-panel {
        padding: 6.5rem 0 8.5rem;
    }
    .c-projects-panel h2 {
        font-size: 4.5rem;
        margin: 0 0 4.5rem;
    }
    .c-projects-panel .row [class*="col-"] {
        padding: 0 2rem;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 49.3rem;
    }
    .c-projects-info h3 {
        font-size: 2.4rem;
        margin: 0 0 2rem;
    }
    .c-projects-info p {
        font-size: 1.6rem;
        margin: 0 0 3rem;
    }
    .c-projects-info ul li span {
        font-size: 1.6rem;
    }
    .c-page-heading {
        font-size: 5rem;
        margin: 0 0 4rem;
    }
    .c-brochures-stock-page h2 {
        font-size: 30px;
    }
    .c-flipbox-sec {
        padding: 30px 0;
    }
    .c-flipbox-sec h2 {
        font-size: 24px;
    }
    .c-blogpage-panel.c-data-sheet-panel .row {
        margin: 0 -2rem;
    }
    .c-blogpage-panel.c-data-sheet-panel .row [class*="col-"] {
        padding: 0 2rem;
    }
    .c-each-datasheet .c-datasheet-info h4 {
        font-size: 2.4rem;
    }
    .c-interior-about-inner h2,
    .c-interior-idea-right h2,
    .c-interior-peace-panel h2,
    .c-interior-belive-panel h2 {
        font-size: 3rem;
        margin: 0 0 2.5rem;
    }
    .c-interior-about-inner p,
    .c-interior-belive-panel p {
        font-size: 1.6rem;
    }
    .c-interior-idea-right p,
    .c-interior-peace-panel p {
        font-size: 1.6rem;
        margin: 0 0 1.5rem;
    }
    .c-interior-idea-right .c-default-btn,
    .c-interior-peace-panel .c-default-btn {
        margin-top: 2rem;
    }
    .c-interior-idea-panel {
        padding: 6rem 0;
    }
    .c-interior-peace-panel {
        padding: 6rem 0;
    }
    .c-interior-belive-panel {
        padding: 6rem 0 0;
    }
    .c-interior-belive-panel-img {
        padding: 4rem 0 6rem;
    }
    .c-interior-belive-strip {
        padding: 3.5rem 0;
    }
}

@media only screen and (max-width:991px) {
    .c-main-banner .c-banner-content {
        height: 40rem;
        padding: 0 0 3rem;
    }
    .c-main-footer .offset-lg-3 {
        margin-left: 0;
    }
    .c-testimonial-panel {
        padding: 6rem 0;
    }
    .c-testimonial-panel h2 {
        font-size: 3.5rem;
        margin: 0 0 2rem;
    }
    .c-testimonial-content h3 {
        font-size: 2.8rem;
        margin: 0 0 2rem;
    }
    .c-testimonial-content p {
        font-size: 1.8rem;
    }
    .c-testimonial-slider-area .swiper-button-prev {
        left: -5rem;
    }
    .c-testimonial-slider-area .swiper-button-next {
        right: -5rem;
    }
    .c-testimonial-slider-area {
        max-width: 50rem;
        margin: 4rem auto 0;
    }
    .c-news-panel {
        padding: 6rem 0;
    }
    .c-news-panel .c-news-head h2 {
        font-size: 3.2rem;
    }
    .c-news-panel .c-news-head {
        margin: 0 0 3rem;
    }
    .c-each-news .c-news-info h4 {
        font-size: 2.2rem;
    }
    .c-news-panel .container {
        padding: 0 1.5rem;
    }
    .c-news-panel .row {
        margin: 0 -1.5rem;
    }
    .c-news-panel .row [class*="col-"] {
        padding: 0 1.5rem;
    }
    .c-each-news .c-news-info .c-news-category p,
    .c-each-news .c-news-info .c-news-date p,
    .c-each-news .c-news-info p {
        font-size: 1.6rem;
    }
    .c-contact-panel {
        padding: 6rem 0;
    }
    .c-contact-panel .c-contact-info h2 {
        font-size: 3.2rem;
    }
    .c-contact-panel .c-contact-info p {
        font-size: 1.8rem;
    }
    .c-contact-form .input-fld .form-control,
    .c-contact-form .input-fld.c-sector-select label {
        font-size: 1.8rem;
        height: 5rem;
    }
    .c-contact-form .input-fld.c-sector-changes.closed {
        margin: 0 0 2.5rem;
    }
    .c-contact-form .input-fld p label {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .c-contact-form [type="radio"]:checked+label:before,
    .c-contact-form [type="radio"]:not(:checked)+label:before {
        width: 2rem;
        height: 2rem;
    }
    .c-contact-form [type="radio"]:checked+label:after,
    .c-contact-form [type="radio"]:not(:checked)+label:after {
        width: 1.2rem;
        height: 1.2rem;
        top: 4px;
        left: 4px;
    }
    .c-contact-form [type="radio"]:checked+label,
    .c-contact-form [type="radio"]:not(:checked)+label {
        padding-left: 3.5rem;
    }
    .c-contact-form .input-fld {
        margin: 0 0 2.5rem;
        position: relative;
    }
    .c-contact-form .submit-fld input {
        padding: 0.9rem 4rem;
        font-size: 1.6rem;
        border-radius: 4.4rem;
    }
    .c-supplier-panel {
        padding: 6rem 0;
    }
    .c-supplier-panel .c-supplier-image {
        width: 56.2rem;
        padding-right: 0;
    }
    .c-supplier-panel .c-supplier-content p {
        font-size: 1.6rem;
    }
    .c-about-panel .c-about-image figure:nth-child(1) {
        width: 100%;
        max-width: 70%;
    }
    .c-about-panel .c-about-image figure:nth-child(2) {
        width: 100%;
        max-width: 70%;
        float: right;
        margin-top: calc(-10% + 1px);
    }
    .c-about-panel .c-about-image::after {
        max-width: 55%;
        max-height: 65%;
    }
    .c-about-panel .c-about-content h2 {
        font-size: 3.8rem;
        margin: 0 0 3rem;
    }
    .c-product-category-panel {
        padding: 6rem 0;
    }
    .c-each-category .c-category-info strong {
        font-size: 2rem;
    }
    .c-liberta-info-panel .c-liberta-info-left h3 {
        font-size: 2.6rem;
        margin: 0 0 2.2rem;
    }
    .c-liberta-info-top-panel {
        padding: 12rem 0 3rem;
        margin-top: -8.5rem;
    }
    .c-home-banner__caption big {
        font-size: 30px;
    }
    .c-home-banner__caption {
        bottom: 20px;
    }
    .c-all-pointers ul>li>a {
        width: 35px;
        height: 35px;
    }
    .c-all-pointers ul>li>a img {
        width: 15px;
    }
    .c-team-list {
        padding: 40px 0;
    }
    .c-green-stripe h1 {
        font-size: 30px;
    }
    .c-contact-body-panel {
        padding: 30px 0;
    }
    .c-contact-form-area form {
        max-width: 100%;
    }
    .c-map-sec h2 {
        font-size: 26px;
    }
    .c-blogpage-panel .row [class*="col-"] {
        padding: 0 2rem;
        margin-bottom: 6rem;
    }
    .c-blogpage-panel .row {
        margin: 0 -2rem;
    }
    .c-page-heading {
        font-size: 4rem !important;
        margin: 0px 0px 3rem !important;
    }
    .c-category-top {
        margin: 0 0 4rem;
    }
    .c-projects-panel h2 {
        font-size: 3.5rem;
        margin: 0 0 3.5rem;
    }
    .c-projects-panel {
        padding: 3.5rem 0 4.5rem;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 47.7rem;
    }
    .c-single-blog-in h1 {
        font-size: 3.8rem;
    }
    .c-our-aim-section {
        padding: 30px 0;
    }
    .c-our-aim-section h6 {
        text-align: center;
        font-size: 16px;
    }
    .c-our-aim-section h2 {
        font-size: 28px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }
    .c-our-aim-section img {
        margin: 0 auto;
    }
    .c-image-with-text {
        margin: 0;
    }
    .c-image-with-text img {
        margin: 0 auto 30px;
    }
    .c-image-with-text__text-panel {
        text-align: center;
        padding: 0 15px;
    }
    .c-image-with-text p {
        font-size: 16px;
        max-width: 100%;
    }
    .c-brochures-stock-page h2 {
        font-size: 26px;
    }
    .c-brochures-stock-page p {
        font-size: 16px;
    }
    .c-content-body h3, .c-video-stipe h2 {
        font-size: 20px;
    }
    /**/
    .c-brochures-stock-page.c-policy-page-content h3 {
        font-size: 24px;
    }
    .c-brochures-stock-page.c-policy-page-content h4 {
        font-size: 22px;
    }
    .c-brochures-stock-page.c-policy-page-content h5 {
        font-size: 20px;
    }
    .c-brochures-stock-page.c-policy-page-content h6 {
        font-size:18px;
    }
    .c-about-banner-area h2 {
        font-size: 30px;
        max-width: 100%;
    }
    .c-about-banner-area p {
        font-size: 16px;
        max-width: 100%;
    }
    .c-about-banner-area {
        padding: 30px 0 40px;
    }
    .c-about-banner-area__bottom .row,
    .c-about-banner-area__bottom__big-image-area {
        margin-top: 0;
    }
    .c-about-banner-area__bottom__big-image-area img {
        margin-bottom: 30px;
    }
    .c-about-banner-area__bottom p {
        font-size: 16px;
    }
    .c-about-banner-area__bottom {
        padding: 40px 0 20px;
    }
    .c-video-section.c-video-section {
        padding: 40px 0;
    }
    .c-video-section.c-video-section img {
        margin: 0 auto 20px;
    }
    .c-certification-section h4 {
        font-size: 26px;
    }
    .c-certification-section {
        padding: 18px 0;
    }
    .c-map-sec iframe {
        height: 400px;
    }
    .c-october-month .down {
        top: 0;
    }
    .c-timeline-panel {
        text-align: center;
    }
    .c-timeline-panel img {
        margin: 0 auto 20px;
    }
    .c-timeline-panel p {
        margin-bottom: 20px;
    }
    .c-october-month:before,
    .c-october-month:after,
    .c-may-month:before,
    .c-may-month:after {
        -webkit-transform: unset;
        -moz-transform: unset;
        -o-transform: unset;
        transform: unset;
    }
    .c-october-month.last-timeline .row {
        margin-top: 30px;
    }
    .c-timeline-panel h4 {
        font-size: 24px;
    }
    .c-blogpage-panel.c-data-sheet-panel .row [class*="col-"] {
        margin-bottom: 4rem !important;
    }
    .c-searchpage-top-heading h1 {
        font-size: 2.8rem;
    }
    .woocommerce form.checkout.woocommerce-checkout #customer_details h3 {
        font-size: 3rem;
    }
    .woocommerce form.checkout.woocommerce-checkout #order_review_heading {
        font-size: 3rem;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product thead {
        display: none;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td {
        border-top: 1px solid #99A8A6;
        padding: 2rem 0;
        vertical-align: top;
        display: block;
        text-align: right;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product--thumbnail {
        width: 100%;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product--thumbnail a {
        margin-left: auto;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-size: 1.8rem;
        font-weight: 600;
        font-family: var(--inter);
        color: var(--black);
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-specification .product-color-wpr {
        -ms-flex-pack: end;
        justify-content: end;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-quantity .quantity {
        margin-top: 0;
        margin-left: auto;
    }
    .c_cart_collaterals .c-cart-subtotal td,
    .c_cart_collaterals .c-order-total td {
        text-align: right;
    }
    .c-product-cart-banner h1 {
        font-size: 3rem;
    }
    .c-product-cart-banner {
        background: var(--deepgreen);
        padding: 3.4rem 0;
    }
    .woocommerce_cart_wpr {
        padding: 6rem 0;
    }
    .c_woocommerce_cart_coupon {
        margin-bottom: 2rem;
    }
    .c-interior-peace-panel .c-interior-peace-right img {
        width: 100%;
    }
    .c-login-sec h1 {
        font-size: 4rem;
        margin: 0 0 3rem;
    }
    .c-signup-form-sec .c-signup-heading,
    .c-signup-form-sec .c-password-heading {
        font-size: 2.8rem;
        margin: 0 0 3.5rem;
    }
    .c-signup-form-sec .input-fld {
        position: relative;
        margin: 0 0 4rem;
    }
    .c-signup-form-sec span {
        font-size: 16px;
    }
    .c-signup-form-sec .input-fld .form-control {
        height: 45px;
        font-size: 18px;
    }
    .c-terms-conditions p {
        font-size: 16px;
    }
    .c-signup-form-sec .container [class*="col-"] {
        padding: 0 1.5rem;
    }
    .c-signup-body-head h1 {
        font-size: 3.8rem;
    }
    .c-signup-body-head {
        padding: 3rem 0 2rem;
    }
    .c-signup-form-sec {
        padding: 5rem 0;
    }
    .c-contact-strip h2 {
        font-size: 5rem;
    }
    .c-contact-strip p {
        font-size: 2rem;
    }
    .c-contact-strip {
        padding: 3rem 0;
    }
    .c-contact-strip .c-banner-btn {
        margin: 0;
    }
    .woocommerce .woocommerce-order .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
        font-size: 1.3rem;
        line-height: 1.5;
        margin: 0 0 0;
    }
    .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
        font-size: 2.5rem;
        line-height: 1.5;
        margin: 0 0 1rem;
    }
    .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr th {
        font-size: 1.5rem;
    }
    .woocommerce .woocommerce-order .woocommerce-order-details .woocommerce-table.woocommerce-table--order-details tr td {
        font-size: 1.5rem;
    }
    .c-brochures-stock-page::before {
        width: 255px;
        height: 255px;
    }
    .c-image-text-panel p {
        font-size: 2.2rem;
    }
    #c-single-product-cart {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    #c-single-product-cart .single_add_to_cart_button{
        margin: 1.5rem 0 0 ;
    }
}

@media only screen and (max-width:960px) {
    .c-supplier-panel .c-supplier-image {
        width: 54.5rem;
    }
}

@media only screen and (max-width:880px) {
    .c-supplier-panel .c-supplier-image {
        width: 50.5rem;
    }
}

@media only screen and (max-width:840px) {
    .c-main-banner .c-banner-content {
        height: 37.5rem;
    }
    .c-supplier-panel .c-supplier-image {
        width: 47.5rem;
    }
}

@media only screen and (max-width:800px) {
    .c-supplier-panel .c-supplier-image {
        width: 45.2rem;
    }
}

@media only screen and (max-width:767px) {
    .c-main-banner .c-banner-content big {
        font-size: 3.5rem;
    }
    .c-cloting-btn {
        width: 16.5rem;
        height: 5rem;
        font-size: 1.6rem;
        top: 50%;
        left: auto;
        right: -5.8rem;
        line-height: 5rem;
    }
    /* home-body-start */
    .c-banner-bottom-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .c-banner-bottom .c-bbottom-in {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 1.5rem;
    }
    .c-banner-bottom .c-bbottom-in:nth-child(3),
    .c-banner-bottom .c-bbottom-in:nth-child(4) {
        padding-top: 1.5rem;
    }
    .c-testimonial-slider-area .swiper-button-prev,
    .c-testimonial-slider-area .swiper-button-next {
        display: none;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active,
    .c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name {
        width: 7rem;
        height: 7rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name h3 {
        font-size: 2rem;
        line-height: 7rem;
        height: 7rem;
        width: 7rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in .c-authore-designation {
        bottom: -2.5rem;
        font-size: 1.3rem;
        width: 190px;
        left: -55px;
        height: 2rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb .c-authore-name {
        width: 40px;
        height: 40px;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb .c-authore-name h3 {
        font-size: 1rem;
        line-height: 4rem;
        width: 4rem;
        height: 4rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb {
        width: 7rem;
        height: 7rem;
        margin: 2rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in::before {
        width: 3rem;
        right: -4.2rem;
    }
    /*.c-testimonial-thumbs .c-each-testimonial-thumb.swiper-slide-active .c-authore-name h3 {
        font-size: 3.8rem;
        line-height: 11.8rem;
    }*/
    .c-testimonial-thumbs {
        height: 12.5rem;
    }
    .c-testimonial-content {
        min-height: 25.1rem;
    }
    .c-testimonial-content p {
        font-size: 1.6rem;
    }
    .c-testimonial-content h3 {
        font-size: 2.2rem;
        margin: 0 0 1.5rem;
    }
    .c-testimonial-panel h2 {
        font-size: 2.8rem;
        margin: 0 0 2rem;
    }
    .c-testimonial-panel p img {
        max-width: 10rem;
    }
    .c-testimonial-panel p {
        font-size: 1.4rem;
    }
    .c-rating-star {
        margin: 0 0 2rem;
    }
    .c-rating-star img {
        /*max-width: 12rem;*/
        max-width: 2rem;
    }
    .c-testimonial-panel {
        padding: 3rem 0;
    }
    .c-news-panel {
        padding: 4rem 0;
    }
    .c-news-panel .row [class*="col-"]:nth-child(1),
    .c-news-panel .row [class*="col-"]:nth-child(2) {
        margin: 0 0 3rem;
    }
    .c-each-news .c-news-info {
        margin: 1.5rem 0 0;
    }
    .c-each-news .c-news-info h4 {
        font-size: 2rem;
    }
    .c-news-panel .c-news-head h2 {
        font-size: 2.6rem;
    }
    .c-news-panel .c-news-head .c-default-btn {
        padding: 1rem 3.5rem;
        font-size: 1.6rem;
    }
    .c-news-panel {
        background-size: 19rem;
        background-position-x: 2%;
        background-position-y: -1%;
    }
    .c-contact-panel {
        padding: 4rem 0;
    }
    .c-contact-panel .c-contact-info {
        margin: 0 0 3rem;
    }
    .c-contact-panel .c-contact-info h2 {
        font-size: 2.6rem;
    }
    .c-supplier-panel .c-supplier-image {
        width: 105%;
        padding-right: 2rem;
        margin-bottom: 4rem;
    }
    .c-supplier-panel .c-supplier-content h2 {
        font-size: 3.2rem;
        margin: 0 0 2.5rem;
    }
    .c-supplier-panel .c-supplier-content p {
        font-size: 1.6rem;
    }
    .c-supplier-panel {
        padding: 4rem 0;
    }
    .c-about-panel .c-about-image figure:nth-child(1) {
        max-width: 44.6rem;
        margin-left: 2rem;
    }
    .c-about-panel .c-about-image figure:nth-child(2) {
        max-width: 34.3rem;
        margin-top: calc(-16% + 1px);
    }
    .c-about-panel .c-about-image {
        margin: 7rem 0 0;
    }
    .c-about-panel .c-about-content {
        max-width: 100%;
        padding: 0;
    }
    .c-product-category-panel h2 {
        font-size: 3.8rem;
        margin: 0 0 3rem;
    }
    .c-each-live-panel .c-live-content {
        min-height: auto;
    }
    .c-liv-panel-sec .row [class*="col-"]:nth-child(1) {
        margin: 0 0 6rem;
    }
    .c-each-live-panel figure {
        margin: -1rem 0 2rem;
    }
    .c-liv-panel-sec {
        padding: 4rem 0;
    }
    /* home-body-end */
    .c-product-category-panel.c-product-inner-list {
        padding: 4rem 0;
    }
    .c-product-category-panel.c-product-inner-list .row [class*="col-"] {
        margin: 0 0 4rem;
    }
    .c-product-details-info {
        padding: 5rem 0 0;
    }
    .c-product-details-tab #c-product-details li a {
        font-size: 1.6rem;
        padding: 1.2rem 3.2rem;
    }
    .c-product-details-info h1 {
        font-size: 3.5rem;
    }
    .c-product-details-info .c-price h3 {
        font-size: 2.4rem;
    }
    .c-product-details-info .c-price {
        margin: 0 0 3rem;
    }
    .c-product-specification table tr td {
        padding: 2rem 0;
        font-size: 1.6rem;
    }
    .c-product-specification table tr td ul li {
        font-size: 1.6rem;
    }
    .c-product-details-wpr-img {
        padding: 8rem 0;
    }
    .c-related-product-wpr {
        padding: 6rem 0;
    }
    .c-related-product-wpr h2 {
        font-size: 3.4rem;
    }
    .c-s-sheet p {
        font-size: 1.6rem;
        margin: 0 0 1.2rem;
    }
    .c-s-sheet #c-spec-sheet p {
        margin: 0 0 1rem;
    }
    .c-s-sheet #c-spec-sheet p a {
        font-size: 1.6rem;
    }
    .colors h4 {
        font-size: 1.6rem;
    }
    .colors {
        margin: 0 0 2rem;
    }
    .cart .single_add_to_cart_button {
        font-size: 1.6rem;
        padding: 1rem 2.5em;
    }
    .c-liberta-info-panel .c-liberta-info-left {
        padding-right: 0;
        margin: 0 0 5rem;
    }
    .c-liberta-info-panel .c-liberta-info-left img {
        margin: 0 0 2rem;
        max-width: 20rem;
    }
    .c-liberta-info-panel .c-liberta-info-left p {
        font-size: 1.8rem;
    }
    .c-liberta-info-top-panel .container,
    .c-liberta-info-bottom-panel .container {
        padding: 0 3rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details p {
        min-height: auto;
    }
    .c-liberta-info-top-panel {
        padding: 10rem 0 3rem;
        margin-top: -7.5rem;
    }
    .c-liberta-info-top-panel h2,
    .c-liberta-info-bottom-panel h2 {
        font-size: 3.6rem;
        margin: 0 0 3rem;
    }
    .c-liberta-info-bottom-panel {
        padding: 4rem 0 6rem;
    }
    .c-liberta-info-panel .c-liberta-info-right {
        width: 100%;
        max-width: 84%;
        margin: 0 auto;
    }
    .c-liberta-info-panel {
        padding: 4rem 0 0;
    }
    .c-liberta-info-panel .c-liberta-info-left .c-default-btn.c-default-btn-blue {
        padding: 1.1rem 2.2rem;
    }
    .c-liberta-info-panel .c-liberta-info-left h3 {
        font-size: 2rem;
        margin: 0 0 1.5rem;
    }
    .c-big-banner__caption {
        bottom: 30px;
    }
    .c-single-team-member figure {
        margin: 0 0 15px;
    }
    .c-single-team-member {
        width: 100%;
        max-width: 398px;
        display: block;
        margin: 0 auto 20px;
    }
    .c-green-stripe h1 {
        font-size: 24px;
    }
    .c-contact-form-area h4 {
        font-size: 20px;
    }
    .c-blogpage-panel {
        padding: 3.5rem 0 1rem;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 106.6%;
        margin: 0 0 3rem;
    }
    .c-projects-info ul {
        margin: 0 0 2rem;
    }
    .c-blogpage-panel .c-each-blog figure,
    .c-blogpage-panel .c-each-blog .c-blog-info h3,
    .c-blogpage-panel .c-each-blog .c-blog-info ul {
        margin: 0 0 2rem;
    }
    .c-blogpage-panel .c-each-blog .c-blog-info p {
        margin: 0 0 3rem;
    }
    .c-single-blog::before {
        min-height: 50rem;
    }
    .c-single-blog-in {
        padding: 5rem 0;
    }
    .c-single-blog-in h1 {
        font-size: 2.8rem;
    }
    .c-single-blog-recent-post-wpr h2 {
        font-size: 2.8rem;
    }
    .c-brochure-book-section h2 {
        font-size: 24px;
    }
    .c-brochure-book-section p,
    .c-brochure-book-section h2 {
        max-width: 100%;
    }
    .c-brochure-book-section {
        padding: 30px 0 0;
    }
    .c-certification-section h4 {
        width: 100%;
    }
    .c-map-sec iframe {
        height: 200px;
    }
    .c-timeline-panel h3 {
        font-size: 26px;
    }
    .c-october-month {
        padding-top: 165px;
    }
    .c-october-month:before {
        height: 140px;
    }
    .c-october-month:after {
        top: 130px;
    }
    .c-may-month {
        padding-top: 120px;
    }
    .c-may-month:before {
        height: 110px;
    }
    .c-timeline-panel {
        padding: 40px 0;
    }
    .c-each-datasheet {
        min-height: 42.9rem;
        padding: 2rem 2rem 0;
    }
    .c-each-datasheet .c-datasheet-info h4 {
        font-size: 2.2rem;
    }
    .c-each-datasheet {
        min-height: auto;
    }
    .c-blogpage-panel {
        padding: 3.5rem 0px 1rem !important;
    }
    .c-searchpage-top-heading {
        padding: 3rem 0;
    }
    .c-searchpage-top-heading h1 {
        font-size: 2.4rem;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.product-quantity .quantity {
        margin-left: auto;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.actions {
        padding-top: 5rem;
        background: transparent;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.actions button[value="Update cart"] {
        width: 20rem;
        margin: 2rem auto 0;
    }
    .woocommerce .cart-collaterals .cart_totals.calculated_shipping {
        margin-top: 2rem;
    }
    .woocommerce .cart-collaterals .cart_totals.calculated_shipping .shop_table.shop_table_responsive tr.order-total td {
        background-color: transparent;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td {
        border: 0;
        border-top: var(--lightpistagreen) 1px solid;
    }
    .woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order button#place_order {
        width: 21rem;
    }
    .woocommerce form.checkout.woocommerce-checkout #customer_details h3 {
        font-size: 2.4rem;
    }
    .woocommerce form.checkout.woocommerce-checkout #order_review_heading {
        font-size: 2.4rem;
        margin: 0;
        padding: 2rem 0 1.5rem;
    }
    .woocommerce form.checkout.woocommerce-checkout #order_review thead tr th,
    .woocommerce form.checkout.woocommerce-checkout #order_review tbody tr td,
    .woocommerce form.checkout.woocommerce-checkout #order_review tfoot tr th,
    .woocommerce form.checkout.woocommerce-checkout #order_review tfoot tr td,
    .woocommerce form.checkout.woocommerce-checkout #payment label,
    .woocommerce form.checkout.woocommerce-checkout #payment .payment_box.payment_method_cod,
    .woocommerce form.checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-terms-and-conditions-wrapper p,
    .woocommerce form.checkout.woocommerce-checkout #customer_details .woocommerce-input-wrapper input,
    .woocommerce form.checkout.woocommerce-checkout #customer_details label,
    .woocommerce form.checkout.woocommerce-checkout #customer_details .woocommerce-input-wrapper .select2-container--default .select2-selection--single,
    .woocommerce form.checkout.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .woocommerce-input-wrapper textarea {
        font-size: 1.6rem !important;
    }
    .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
        font-size: 1.6rem;
    }
    .c-interior-about-panel .c-interior-about-inner {
        padding: 6rem 0 3rem;
    }
    .c-interior-about-inner h2,
    .c-interior-idea-right h2,
    .c-interior-peace-panel h2,
    .c-interior-belive-panel h2 {
        font-size: 2.6rem;
        margin: 0 0 2rem;
    }
    .c-interior-idea-panel .c-interior-idea-left {
        /* padding-right: 4.5rem; */
        padding: 0 5rem 3rem 0;
    }
    .c-interior-idea-right .c-interior-idea-right-in {
        padding: 0;
        max-width: 50rem;
    }
    .c-interior-peace-panel .c-interior-peace-left {
        padding-bottom: 5rem;
    }
    .c-interior-belive-panel {
        padding: 0;
    }
    .c-interior-belive-strip-in .c-each-interior-belive p {
        font-size: 1.8rem;
    }
    .cart-empty.woocommerce-info {
        padding: 2rem 2rem 2rem 6.5rem;
        font-size: 1.6rem;
    }
    .cart-empty.woocommerce-info {
        padding: 1.5rem 1.5rem 1.5rem 4.5rem;
        font-size: 1.3rem;
        margin: 0 auto 2rem;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.c-product-name::before,
    .shop_table.shop_table_responsive tbody tr.cart-subtotal td::before,
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.c-product-name-wpr::before {
        display: none;
    }
    .shop_table.shop_table_responsive tbody tr.cart-subtotal td>table.cart-subtotal-wpr td::before {
        display: block;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.c-product-name,
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.c-product-name-wpr {
        padding: 0;
        border: 0;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td.c-product-name-wpr>table tr td {
        padding: 8px 10px !important;
        background: transparent;
    }
    .shop_table.shop_table_responsive tbody tr.cart-subtotal td>table.cart-subtotal-wpr td,
    .order-total td {
        background: transparent;
    }
    .woocommerce table.shop_table_responsive tr td::before,
    .woocommerce-page table.shop_table_responsive tr td::before {
        font-size: 1.6rem;
        font-weight: 400 !important;
    }
    .c-login-sec {
        padding: 4rem 0 6rem;
        margin-bottom: 8rem;
    }
    .c-login-sec h1 {
        font-size: 3.2rem;
        margin: 0 0 2rem;
    }
    .c-login-sec p {
        font-size: 1.7rem;
        margin: 0 0 2rem;
    }
    .c-login-sec .login-form {
        padding-top: 2rem;
    }
    .c-login-sec .login-form .input-fld .form-control {
        height: 50px;
        font-size: 18px;
        padding: 0.5rem 1rem 0.5rem 3rem;
    }
    .c-login-sec .login-form [class*="col-"] {
        margin: 0 0 2rem;
    }
    .c-login-sec .login-form .c-frgotten-pas {
        margin: 0rem 0 2rem;
    }
    .c-login-sec .login-form .submit-fld p {
        font-size: 1.8rem;
    }
    .c-signup-body-head h1 {
        font-size: 2.8rem;
        margin: 0 0 2rem;
    }
    .c-signup-body-head p {
        font-size: 1.5rem;
    }
    .c-signup-body-head .container {
        padding: 0 1.5rem;
    }
    .c-contact-strip h2 {
        font-size: 3.2rem;
    }
    .c-contact-strip p {
        font-size: 1.6rem;
        margin: 0 0 1.5rem;
    }
    .c-contact-strip {
        padding: 1.5rem 0;
    }
    .woocommerce .woocommerce-order .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
        font-size: 1.3rem;
        line-height: 1.5;
        margin: 0 0 1.5rem;
        width: 50%;
    }
    .woocommerce ul.order_details li{
        border-right: 0 !important;
    }
    .woocommerce ul.order_details li:nth-child(3),
    .woocommerce ul.order_details li:nth-child(4) {
        border-top: 1px dashed #d3ced2 !important;
    }
    .woocommerce-form.woocommerce-form-login.login p {
        font-size: 1.6rem;
    }
    .woocommerce-form.woocommerce-form-login.login input {
        font-size: 1.6rem !important;
        height: 3.7rem !important;
    }
    .c-brochures-stock-page::before {
        width: 200px;
        height: 200px;
        top: -2%;
        left: 1.7%;
    }
    .c-image-text-panel p {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width:640px) {
    .c-about-panel .c-about-image figure:nth-child(1) {
        max-width: 36.6rem;
        margin-left: 0;
    }
    .c-about-panel .c-about-image::after {
        max-width: 70%;
        max-height: 50%;
    }
    .c-about-panel {
        background-position-y: 57%;
    }
    .c-about-panel .c-about-image figure:nth-child(2) {
        margin-right: 0;
    }
    .c-projects-panel .c-projects-img img {
        max-width: 108.6%;
    }
    .c-interior-belive-strip-in .c-each-interior-belive p {
        font-size: 1.6rem;
        margin: 0 0 0 0.5rem;
    }
}

@media only screen and (max-width:575px) {
    .c-home-banner {
        height: 287px;
    }
    .c-home-banner>img {
        position: absolute;
        top: 0;
        height: 100% !important;
        object-fit: cover;
    }
    .c-main-banner .c-banner-content big {
        font-size: 2.8rem;
    }
    .c-main-banner .c-banner-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .c-banner-btn {
        padding: 0.6rem 2rem;
        font-size: 1.5rem;
        margin: 2rem 0 0;
    }
    .c-main-banner .c-banner-content {
        height: 25rem;
    }
    .c-cloting-btn {
        width: 13rem;
        height: 4rem;
        font-size: 1.6rem;
        top: 84%;
        left: auto;
        right: -4.5rem;
        line-height: 4rem;
    }
    /* home bosy start */
    /* home bosy end */
    .c-banner-bottom .c-bbottom-in {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .c-banner-bottom .c-bbottom-in {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .c-banner-bottom {
        padding: 2rem 0;
    }
    .c-banner-bottom .c-bbottom-in:nth-child(2),
    .c-banner-bottom .c-bbottom-in:nth-child(3),
    .c-banner-bottom .c-bbottom-in:nth-child(4) {
        padding-top: 1.5rem;
    }
    .c-testimonial-panel h2 {
        font-size: 2.2rem;
        margin: 0 0 2rem;
    }
    .c-rating-star {
        margin: 0 0 1.5rem;
    }
    .c-testimonial-content h3 {
        font-size: 2rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb {
        width: 6rem;
        height: 6rem;
        margin: 1.5rem;
    }
    .c-testimonial-thumbs .c-each-testimonial-thumb .c-testimonial-thumb-in::before {
        width: 2rem;
        right: -3.2rem;
    }
    .c-contact-panel .c-contact-info p {
        font-size: 1.6rem;
    }
    .c-contact-form .input-fld .form-control {
        font-size: 1.6rem;
        height: 4.5rem;
    }
    .c-about-panel .c-about-content h2 {
        font-size: 3rem;
        margin: 0 0 2rem;
    }
    .c-about-panel .c-about-content p {
        margin: 0 0 4rem;
    }
    .c-default-btn {
        padding: 1rem 4.4rem;
        font-size: 1.6rem;
    }
    .c-about-panel {
        padding: 4rem 0 3rem;
    }
    #myTab {
        max-width: 30rem;
    }
    .taeb-switch .taeb:nth-child(1) {
        width: 30%;
    }
    #myTab .taeb a {
        font-size: 1.6rem;
        padding: 0.9rem 1rem;
    }
    .taeb-switch .taeb:nth-child(2) {
        width: 70%;
    }
    .taeb-switch.left:after {
        width: 30%;
    }
    .taeb-switch.right:after {
        left: 30%;
        /* right: 0; */
        width: 70%;
    }
    .c-product-category-panel h2 {
        font-size: 3rem;
    }
    .c-product-category-panel {
        padding: 4rem 0;
    }
    .c-product-category-panel.c-product-inner-list .row [class*="col-"] {
        margin: 0 0 3rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-slider {
        margin: 0 0 2rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-thumb-slider ul {
        margin: 3rem 0 0;
    }
    .c-product-details-info {
        padding: 4rem 0 0;
    }
    .c-product-details-info h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    .c-product-details-tab #c-product-details li a {
        padding: 1rem 3.2rem;
    }
    .c-product-details-wpr-img {
        padding: 6rem 0;
    }
    .c-product-specification table tr td {
        padding: 1.5rem 0;
        font-size: 1.5rem;
    }
    .c-product-specification table tr td ul li {
        font-size: 1.5rem;
        padding: 0 0 0 3rem;
        background: url(../images/check.png) no-repeat 0 50%;
        background-size: 1.8rem;
    }
    .c-product-details-info p {
        font-size: 1.4rem;
    }
    .c-s-sheet #c-spec-sheet p a {
        font-size: 1.4rem;
    }
    .c-related-product-wpr h2 {
        font-size: 2.4rem;
        margin: 0 0 2rem;
    }
    .c-liberta-info-top-panel h2,
    .c-liberta-info-bottom-panel h2 {
        font-size: 3rem;
        margin: 0 0 2rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details h4 {
        font-size: 2.4rem;
        margin: 0 0 1.5rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details {
        padding: 2rem 0 0;
    }
    .c-each-liberta-wpr .c-each-liberta-details p {
        margin: 0 0 1.5rem;
    }
    .c-liberta-info-top-panel .row [class*="col-"],
    .c-liberta-info-bottom-panel .row [class*="col-"] {
        padding: 0 2rem;
    }
    .c-liberta-info-top-panel .row,
    .c-liberta-info-bottom-panel .row {
        margin: 0 -2rem;
    }
    .c-liberta-info-top-panel .container,
    .c-liberta-info-bottom-panel .container {
        padding: 0 2rem;
    }
    .c-liberta-info-panel .c-liberta-info-left p {
        font-size: 1.6rem;
    }
    .c-liberta-info-right figure a {
        width: 6rem;
    }
    .c-product-modal .c-product-details-info h1 {
        font-size: 2.6rem;
    }
    .c-breadcrumb-panel {
        padding: 1rem 0;
    }
    .c-breadcrumb-panel .container {
        padding: 0 1.5rem;
    }
    .c-category-top {
        margin: 0 0 2rem;
    }
    .c-single-blog::before {
        min-height: 39rem;
    }
    .c-single-blog-in h1 {
        font-size: 2.4rem;
    }
    .c-single-blog-in ul.c-single-blog-authore {
        margin: 0 0 3rem;
    }
    .c-single-blog-in .c-blog-tag {
        margin: 3rem 0 2rem;
    }
    .c-single-blog-info-wpr p,
    .c-single-blog-info-wpr ul li{
        font-size: 1.6rem;
        margin: 0 0 2rem;
    }
    .c-single-blog-info-wpr iframe {
        min-height: 29rem;
        margin: 0 0 3rem;
    }
    .c-single-blog-in ul.c-single-blog-authore li span {
        font-size: 1.5rem;
    }
    .c-single-blog-in .c-blog-tag li a {
        padding: 0.6rem 2.4rem;
    }
    .c-s-sheet {
        margin: 0 0 1rem;
    }
    .c-related-product-wpr {
        padding: 4rem 0;
    }
    .c-contact-form-area .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item.last {
        margin: 1.5rem 0 0;
        display: block;
    }
    .c-contact-form span.wpcf7-list-item-label {
        font-size: 1.6rem;
        padding: 0.4rem 0 0.4rem 4.5rem;
    }
    .wpcf7-not-valid-tip {
        font-size: 1.6rem !important;
        margin-top: 0.5rem;
    }
    .wpcf7-response-output {
        font-size: 1.6rem;
        margin: 2rem 0 0 !important;
    }
    .c-each-datasheet .c-datasheet-info h4 {
        margin: 0 0 3.5rem;
    }
    .c-each-datasheet .c-datasheet-info {
        padding: 1.5rem 0;
    }
    .c-each-datasheet .c-datasheet-image {
        min-height: 20.5rem;
        padding-bottom: 3rem;
    }
    .c-meet-team-heading {
        padding: 30px 0;
    }
    .c-searchpage-top-heading {
        padding: 1.5rem 0;
    }
    .c-searchpage-top-heading h1 {
        font-size: 2rem;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td .coupon button[value="Apply coupon"] {
        margin-left: 0;
        margin-top: 2rem;
    }
    .woocommerce .cart-collaterals .wc-proceed-to-checkout {
        margin-top: 3rem;
        text-align: center;
    }
    .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button {
        float: none;
        margin: 0 auto;
        width: 26.5rem;
    }
    .woocommerce .cart-collaterals table tr td {
        font-size: 1.8rem;
        border: 0;
    }
    .woocommerce .cart-collaterals table tr.order-total td {
        border-top: 1px solid var(--lightpistagreen);
    }
    .woocommerce form .form-row.form-row-first {
        width: 100%;
    }
    .woocommerce form .form-row.form-row-last {
        width: 100%;
        float: left;
    }
    .woocommerce .cart-collaterals h2 {
        font-size: 1.8rem;
    }
    .c-product-cart-banner {
        padding: 1.4rem 0;
    }
    .c-product-cart-banner h1 {
        font-size: 2.4rem;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td::before {
        font-size: 1.6rem;
    }
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-title span,
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-availability,
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-price,
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-total,
    .woocommerce_cart_wpr table.c_woocommerce_cart_product tbody tr td.product-specification .product-color-name {
        font-size: 1.5rem;
    }
    .c_cart_collaterals .c-cart-subtotal th {
        font-size: 1.5rem;
    }
    .c-interior-about-inner h2,
    .c-interior-idea-right h2,
    .c-interior-peace-panel h2,
    .c-interior-belive-panel h2 {
        font-size: 2.2rem;
        margin: 0 0 1.5rem;
    }
    .c-interior-about-inner p,
    .c-interior-belive-panel p {
        font-size: 1.5rem;
    }
    .c-interior-about-panel .c-interior-about-inner {
        padding: 3rem 2rem 1rem;
    }
    .c-interior-idea-panel {
        padding: 4rem 0;
    }
    .c-interior-idea-panel .c-interior-idea-left {
        padding: 0 3rem 3rem 0;
    }
    .c-interior-idea-panel .c-interior-idea-right {
        padding: 0 2rem;
    }
    .c-interior-peace-panel {
        padding: 4rem 0;
    }
    .c-interior-idea-right p,
    .c-interior-peace-panel p {
        font-size: 1.5rem;
    }
    .c-interior-belive-panel-img {
        padding: 2rem 0 4rem;
    }
    .c-interior-belive-strip {
        padding: 2rem 0;
    }
    .c-interior-belive-strip-in .c-each-interior-belive p {
        margin: 0 0 0 1.5rem;
    }
    .c-interior-belive-strip-in .row [class*="col-"] {
        margin: 0 0 3rem;
    }
    .c-interior-belive-strip-in .row [class*="col-"]:last-child {
        margin: 0;
    }
    .c-interior-belive-strip-in .c-each-interior-belive {
        max-width: 20rem;
        margin: 0 auto;
    }
    .c-interior-idea-panel .c-interior-idea-slider .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 8px !important;
    }
    .c-interior-idea-panel .c-interior-idea-slider .swiper-pagination {
        bottom: 1rem;
    }
    .return-to-shop a.button.wc-backward {
        font-size: 1.3rem;
        padding: 1rem 3.2rem;
    }
    .c-login-sec .login-form .submit-fld .c-submit-btn {
        padding: 1.3rem 4.4rem;
        font-size: 1.6rem;
        margin-left: 0;
        min-width: auto;
    }
    .c-login-sec .login-form .submit-fld {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-login-sec .login-form .submit-fld p {
        font-size: 1.6rem;
        margin: 0 0 2rem;
    }
    .c-login-sec .login-form [type="radio"]:checked+span,
    .c-login-sec .login-form [type="radio"]:not(:checked)+span,
    .c-login-sec .login-form [type="checkbox"]:checked+span,
    .c-login-sec .login-form [type="checkbox"]:not(:checked)+span {
        padding: 0.4rem 0 0.4rem 4rem;
    }
    .c-signup-form-sec .c-signup-heading,
    .c-signup-form-sec .c-password-heading {
        font-size: 2.2rem;
        margin: 0 0 2.5rem;
    }
    .c-signup-form-sec .input-fld .form-control {
        height: 40px;
        font-size: 16px;
    }
    .c-signup-form-sec .input-fld {
        position: relative;
        margin: 0 0 2.5rem;
    }
    .woocommerce .woocommerce-order .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li:nth-child(1) {
        border-top: 0 !important;
    }
    .woocommerce .woocommerce-order .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
        width: 100%;
        border-top: 1px dashed #d3ced2 !important;
    }
    .woocommerce-form-login-toggle .woocommerce-info {
        font-size: 1.6rem;
    }
    .woocommerce-error, .woocommerce-info, .woocommerce-message {
        padding: 0.8em 0.5em 0.8em 2.5em;
    }
    .woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
        top: 0.8em;
        left: 0.8em;
    }
    .woocommerce {
        padding: 2rem 0.5rem !important;
    }
    .c-product-modal .c-product-details-info .cart {
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-product-modal .c-product-details-info .single_add_to_cart_button {
        min-width: 165px;
        padding: 12px 10px;
        font-size: 16px;
        margin-left: 0;
        margin-top: 3rem;
    }
}

@media only screen and (max-width:480px) {
    .c-home-banner__caption big {
        font-size: 24px;
    }
    .c-about-panel .c-about-image figure:nth-child(1) {
        max-width: 23rem;
    }
    .c-about-panel .c-about-image figure:nth-child(2) {
        max-width: 24rem;
    }
    .c-banner-bottom .c-bbottom-in p {
        font-size: 1.3rem;
    }
    .c-supplier-panel .c-supplier-image {
        padding-right: 1rem;
    }
    .c-signup-form-sec .checkbox-contact {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-signup-form-sec .last {
        margin: 1rem 0 0 0;
    }
    .c-signup-form-sec .submit-fld .btn {
        min-width: 200px;
        padding: 12px 10px;
        font-size: 16px;
    }
}

@media only screen and (max-width:420px) {}

@media only screen and (max-width:380px) {
    .c-news-panel .c-news-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .c-news-panel .c-news-head .c-default-btn {
        padding: 0.7rem 3.5rem;
        font-size: 1.6rem;
    }
    .c-news-panel .c-news-head h2 {
        font-size: 2.4rem;
        margin: 0 0 2rem;
    }
    .c-contact-panel .c-contact-info h2 {
        font-size: 2.2rem;
    }
    .c-about-panel .c-about-image figure:nth-child(2) {
        max-width: 18rem;
    }
    .c-about-panel .c-about-image figure:nth-child(1) {
        max-width: 20rem;
    }
    .c-about-panel .c-about-image {
        margin: 4rem 0 0;
    }
    .c-about-panel .c-about-content h2 {
        font-size: 2.6rem;
        margin: 0 0 2rem;
    }
    .c-about-panel .c-about-content p {
        font-size: 1.6rem;
        margin: 0 0 3rem;
    }
    .c-product-category-panel h2 {
        font-size: 2.4rem;
        margin: 0 0 2rem;
    }
    .c-each-category .c-category-info strong {
        font-size: 1.8rem;
    }
    .c-product-category-tab-panel {
        padding: 0;
    }
    .c-each-live-panel h2 {
        font-size: 5rem;
    }
    .c-product-details-tab #c-product-details li a {
        padding: 1rem 2.2rem;
    }
    .c-product-details-wpr-img {
        padding: 3rem 0;
    }
    .c-liberta-info-top-panel {
        padding: 7rem 0 3rem;
        margin-top: -5rem;
    }
    .c-each-liberta-wpr .c-each-liberta-details h4 {
        font-size: 2rem;
    }
    .c-liberta-info-panel .c-liberta-info-left img {
        max-width: 14rem;
    }
    .c-liberta-info-right figure a {
        width: 5rem;
    }
    .fancybox-slide--iframe .fancybox-content {
        width: 100%;
        height: 80%;
        max-width: calc(100% - 40px) !important;
        max-height: calc(100% - 88px);
    }
    .c-s-sheet #c-spec-sheet.slide {
        height: 8.5rem;
    }
    .c-contact-form .input-fld.c-sector-changes.closed {
        height: 8rem;
    }
    .c-projects-info ul li {
        margin: 0 1.5rem 0 0;
    }
    .c-single-blog-in h1 {
        font-size: 2rem;
    }
    .c-single-blog-info-wpr iframe {
        min-height: 18rem;
        margin: 0 0 2rem;
    }
    .c-blog-share label {
        margin: 0 2rem 0 0;
    }
    .c-blog-share {
        margin: 0 0 3rem;
    }
    .c-single-blog-recent-post-wpr h2 {
        font-size: 2.2rem;
        margin: 0 0 2rem;
    }
    .c_woocommerce_cart_coupon input {
        width: 100%;
    }
    .c-proceed-to-checkout .checkout-button {
        font-size: 1.4rem;
        padding: 1.2rem 2.8rem;
        border-radius: 3rem;
    }
    .woocommerce_cart_wpr {
        padding: 4rem 0;
    }
    .c-interior-idea-panel .c-interior-idea-left {
        padding: 0 1.5rem 2rem 0;
    }
    .c-interior-peace-panel .container {
        padding: 0 1.5rem;
    }
    .c-interior-idea-panel .c-interior-idea-right {
        padding: 0 1.5rem;
    }
    .c-interior-idea-right p,
    .c-interior-peace-panel p {
        font-size: 1.4rem;
    }
    .c-interior-about-inner p,
    .c-interior-belive-panel p {
        font-size: 1.4rem;
    }
    .c-login-sec h1 {
        font-size: 2.4rem;
        margin: 0 0 1.5rem;
    }
    .woocommerce-form.woocommerce-form-login.login .woocommerce-button.button.woocommerce-form-login__submit {
        font-size: 1.8rem;
        padding: 1rem 3rem;
        margin-left: 0;
        margin-top: 20px;
    }
    .woocommerce-form.woocommerce-form-login.login {
        padding: 1.5rem;
    }
}


/*  */

.c-breadcrumb-panel {
    background: var(--ofwhite);
    border-top: 1px solid rgba(var(--rlgrey), 26%);
    padding: 2rem 0;
}

.c-breadcrumb-panel .container {
    max-width: 170rem !important;
    padding: 0 3rem;
}

.c-breadcrumb-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.c-breadcrumb-panel ol li:first-of-type {
    padding-left: 0;
}

.c-breadcrumb-panel ol li {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--deepergreen);
    font-family: var(--inter);
    padding-left: 3.4rem;
    position: relative;
    line-height: 1.4;
}

.c-breadcrumb-panel ol li a {
    font-size: 1.3rem;
    color: var(--deepergreen);
}

.c-breadcrumb-panel ol li a:hover {
    color: var(--pistagreen);
}

.c-breadcrumb-panel ol li+li {
    background: url(../images/b-arrow.png) no-repeat;
    background-size: 0.6rem;
    background-position: 1.9rem center;
}

.c-blogpage-panel {
    padding: 6.5rem 0 1rem;
}

.c-blogpage-panel .container {
    max-width: 144.5rem !important;
    padding: 0 4rem;
}

.c-blogpage-panel .row {
    margin: 0 -4rem;
}

.c-page-heading {
    font-size: 7rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.5;
    margin: 0 0 6rem;
    display: block;
    text-align: center;
    border-bottom: 0.1rem solid rgba(var(--rlgrey), 10%);
}

.c-category-top {
    margin: 0 0 6rem;
    list-style: none;
    padding: 0;
}

.c-category-top li {
    display: inline-block;
    margin: 0 0.7rem 8px 0;
}

.c-category-top li a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--deepergreen);
    padding: 1.2rem 2.4rem;
    min-width: 12.4rem;
    border-radius: 3rem;
    background: rgba(var(--rlgrey), 12%);
    text-align: center;
}

.c-category-top li a:hover,
.c-category-top li.active a,
.c-category-top li:active a,
.c-category-top li:focus a {
    background: var(--deepgreen);
    color: var(--white);
}

.c-blogpage-panel .row [class*="col-"] {
    padding: 0 4rem;
    margin-bottom: 10rem;
}

.c-blogpage-panel .c-each-blog figure {
    margin: 0 0 4rem;
}

.c-blogpage-panel .c-each-blog figure img {
    width: 100%;
}
.fancybox__container{
    z-index:99999 !important;
}

.c-blogpage-panel .c-each-blog .c-blog-info p.c-category {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pistagreen);
    font-family: var(--inter);
    line-height: 1.4;
    margin: 0 0 1.8rem;
}

.c-blogpage-panel .c-each-blog .c-blog-info h3 {
    font-size: 3rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.4;
    margin: 0 0 3rem;
}

.c-blogpage-panel .c-each-blog .c-blog-info h3 a {
    color: var(--deepgreen);
}

.c-blogpage-panel .c-each-blog .c-blog-info h3 a:hover {
    color: var(--pistagreen);
}

.c-blogpage-panel .c-each-blog .c-blog-info ul {
    margin: 0 0 3rem;
    padding: 0;
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li {
    display: inline-block;
    margin: 0 3rem 0 0;
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li:last-of-type {
    margin: 0;
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--pistagreen);
    font-weight: 300;
    font-family: var(--inter);
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li span img {
    margin: 0 0.5rem 0 0;
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li span a {
    color: var(--pistagreen);
}

.c-blogpage-panel .c-each-blog .c-blog-info ul li span a:hover {
    color: var(--deepgreen);
}

.c-blogpage-panel .c-each-blog .c-blog-info p {
    font-size: 1.8rem;
    color: var(--lgrey);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.6;
    margin: 0 0 4rem;
}

.c-blogpage-panel .c-each-blog .c-blog-info .c-blog-btn {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deepgreen);
    font-family: var(--inter);
    line-height: 1.4;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid var(--deepgreen);
}

.c-blogpage-panel .c-each-blog .c-blog-info .c-blog-btn:hover {
    color: var(--pistagreen);
    border-bottom-color: var(--pistagreen);
}

.c-projects-panel {
    background: var(--lpgreen);
    padding: 10.5rem 0 15.5rem;
}

.c-projects-panel .container {
    max-width: 144.5rem !important;
    padding: 0 4rem;
}

.c-projects-panel .row [class*="col-"] {
    padding: 0 4rem;
}

.c-projects-panel h2 {
    font-size: 6rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.5;
    margin: 0 0 6rem;
    display: block;
    text-align: center;
}

.c-projects-panel .c-projects-img img {
    width: 92.7rem;
    max-width: 92.7rem;
    float: right;
}

.c-projects-info {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.c-projects-info h3 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.4;
    margin: 0 0 3rem;
}

.c-projects-info h3 a {
    color: var(--deepgreen);
}

.c-projects-info h3 a:hover {
    color: rgba(var(--rdeepgreen), 50%);
}

.c-projects-info ul {
    margin: 0 0 3rem;
    padding: 0;
}

.c-projects-info ul li {
    display: inline-block;
    margin: 0 3rem 0 0;
}

.c-projects-info ul li:last-of-type {
    margin: 0;
}

.c-projects-info ul li span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    color: rgba(var(--rlgrey), 70%);
    font-weight: 300;
    font-family: var(--inter);
}

.c-projects-info ul li span img {
    margin: 0 0.5rem 0 0;
}

.c-projects-info ul li span a {
    color: rgba(var(--rlgrey), 70%);
}

.c-projects-info ul li span a:hover {
    color: var(--deepgreen);
}

.c-projects-info p {
    font-size: 1.8rem;
    color: var(--deepgreen);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.7;
    margin: 0 0 4rem;
    max-width: 47rem;
}

.c-single-blog-in .container {
    max-width: 115rem !important;
}

.c-single-blog {
    position: relative;
}

.c-single-blog::before {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 75rem;
    background: var(--deepgreen);
    z-index: -1;
}

.c-single-blog .c-breadcrumb-panel {
    background: var(--ofwhite);
    border-top: none;
}

.c-single-blog-in {
    padding: 7rem 0;
}

.c-single-blog-in p.c-category {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--pistagreen);
    font-family: var(--inter);
    line-height: 1.4;
    margin: 0 0 1.8rem;
}

.c-single-blog-in h1 {
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 2rem;
    color: var(--white);
}

.c-single-blog-in ul.c-single-blog-authore {
    margin: 0 0 6rem;
    padding: 0;
}

.c-single-blog-in ul.c-single-blog-authore li {
    display: inline-block;
    margin: 0 3rem 0 0;
}

.c-single-blog-in ul.c-single-blog-authore li:last-of-type {
    margin: 0;
}

.c-single-blog-in ul.c-single-blog-authore li span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--pistagreen);
    font-weight: 300;
    font-family: var(--inter);
}

.c-single-blog-in ul.c-single-blog-authore li span img {
    margin: 0 0.5rem 0 0;
}

.c-single-blog-in ul.c-single-blog-authore li span a {
    color: var(--pistagreen);
}

.c-single-blog-in ul.c-single-blog-authore li span a:hover {
    color: var(--deepgreen);
}

.c-single-blog-info-wpr {
    max-width: 72.4rem;
    margin: 0 auto;
}

.c-single-blog-in .c-blog-tag {
    margin: 6rem 0 3rem;
    list-style: none;
    padding: 0;
}

.c-single-blog-in .c-blog-tag li {
    display: inline-block;
    margin: 0 0.7rem 0 0;
}

.c-single-blog-in .c-blog-tag li a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--deepergreen);
    padding: 1rem 3rem;
    border-radius: 3rem;
    background: rgba(var(--rlgrey), 12%);
    text-align: center;
}

.c-single-blog-in .c-blog-tag li a:hover,
.c-single-blog-in .c-blog-tag li.active a {
    background: var(--deepgreen);
    color: var(--white);
}

.c-single-blog-info-wpr p {
    font-size: 1.8rem;
    color: var(--deepgreen);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.6;
    margin: 0 0 3rem;
}
.c-single-blog-info-wpr ul li{
    font-size: 1.8rem;
    color: var(--deepgreen);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.6;
    margin: 0 0 2rem;
}
.c-single-blog-info-wpr p a,
.c-single-blog-info-wpr ul li a{
    color: var(--deepgreen);
}
.c-single-blog-info-wpr p a:hover,
.c-single-blog-info-wpr ul li a:hover{
    color:#000;
}
.c-single-blog-info-wpr iframe {
    width: 100%;
    min-height: 45rem;
    margin: 0 0 4rem;
}

.c-blog-share {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 4rem;
}

.c-blog-share label {
    font-size: 1.5rem;
    color: var(--pistagreen);
    margin: 0 3rem 0 0;
}

.c-blog-share ul {
    margin: 0;
}

.c-blog-share ul li {
    margin: 0 1rem 0 0;
    display: inline-block;
}

.c-single-blog-recent-post-wpr {
    padding: 15rem 0 4rem;
    border-top: 0.1rem solid rgba(var(--rdeepgreen), 40%);
    background-image: url(../images/hexagan.png);
    background-repeat: no-repeat;
    background-size: 52rem;
    background-position: 5% -2%;
}

.c-single-blog-recent-post-wpr h2 {
    font-size: 6rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.4;
    margin: 0 0 3rem;
    display: block;
}


/*.c-single-blog .c-breadcrumb-panel ol li,
.c-single-blog .c-breadcrumb-panel ol li a {
    color: var(--white);
}*/

.c-project-page-panel {
    padding: 9rem 0 10.5rem;
    background: var(--deepgreen);
}

.c-project-page-panel h1 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 5.5rem;
}

.c-project-page-panel .container {
    padding: 0 4.5rem;
}

.c-project-page-panel .container .row {
    margin: 0 -4.5rem 6rem;
}

.c-project-page-panel .container .row .col {
    padding: 0 4.5rem;
}

.c-project-page-panel .container .row .col:first-of-type img {
    width: 100%;
}

/*.c-project-page-panel .c-projects-info h3 {
    text-transform: uppercase;
}*/

.c-project-page-panel .c-projects-info h3,
.c-project-page-panel .c-projects-info h3 a {
    color: var(--white);
}

.c-project-page-panel .c-projects-info ul li span img {
    filter: white;
    /* IE */
    -webkit-filter: grayscale(1);
    /* Old WebKit */
    -webkit-filter: grayscale(100%);
    /* New WebKit */
    filter: grayscale(100%);
}

.c-project-page-panel .c-projects-info ul li span {
    color: var(--pistagreen);
}

.c-project-page-panel .c-projects-info p {
    color: var(--white);
}

.c-project-page-panel .c-default-btn {
    color: var(--white);
    border-color: var(--white);
}

.c-project-page-panel .c-default-btn:hover {
    background: var(--white);
    color: var(--deepgreen);
}

.c-case-studies-banner-heading {
    padding: 5.5rem 0 4.5rem;
    background: var(--deepgreen);
}

.c-case-studies-banner-heading h1 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.c-case-studies-banner-heading h1 span {
    color: var(--pistagreen);
}

.c-case-studies-banner-heading .container {
    max-width: 145rem;
}

.c-case-studies-about-wpr .container {
    max-width: 1400;
}

.c-case-studies-about-wpr {
    padding: 13rem 0;
    background: var(--lighterpgreen);
    position: relative;
}

.c-case-studies-about-wpr::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 23%;
    left: 0;
    background: var(--white);
}

.c-case-studies-about-row-top {
    margin-bottom: 5.5rem;
}

.c-case-studies-about-row-top h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--deepgreen);
    line-height: 1.2;
    display: block;
    text-align: right;
    margin: 0;
}

.c-case-studies-about-row-top p {
    font-size: 2rem;
    color: var(--deepgreen);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.7;
    margin: 0;
    max-width: 58rem;
}

.c-case-studies-about-row-bottom [class*="col-"]:last-of-type {
    padding-top: 11.5rem;
}

.c-case-studies-about-info-center {
    padding: 13rem 0 9rem;
}

.c-case-studies-about-info-center .c-case-studies-about-info-in {
    max-width: 62rem;
    margin: 0 auto;
    padding-left: 3.5rem;
    border-left: 0.1rem solid var(--pistagreen);
}

.c-case-studies-about-info-center .c-case-studies-about-info-in p {
    font-size: 2rem;
    color: var(--deepgreen);
    font-weight: 300;
    font-family: var(--inter);
    line-height: 1.7;
    margin: 0;
}


/* .c-case-studies-about-slider {
    padding-bottom: 5rem !important;
} */

.c-case-studies-about-slider .swiper-pagination {
    bottom: 0 !important;
}

.c-case-studies-about-slider .swiper-pagination.swiper-pagination-bullets>.swiper-pagination-bullet {
    margin: 0 1rem;
}

.c-case-studies-about-slider .swiper-pagination.swiper-pagination-bullets>.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--rdeepgreen), 80%);
}

.c-case-studies-about-slider .swiper-pagination.swiper-pagination-bullets>.swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area {
    max-width: 151rem;
    padding: 0 7rem;
    margin: 0 auto;
    position: relative;
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .c-case-studies-about-slider {
    padding: 7rem 0!important;
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-next::after,
.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-prev::after {
    color: var(--deepgreen);
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-next {
    right: -0.2rem;
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-prev {
    left: -0.2rem;
}

.c-case-studies-about-slider-panel .c-case-studies-about-slider-area .c-case-studies-about-slider .swiper-slide img {
    width: 100%;
}

@media only screen and (max-width: 1680px) {}

@media only screen and (max-width: 1536px) {
    .c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-next {
        right: 2.5rem;
    }
    .c-case-studies-about-slider-panel .c-case-studies-about-slider-area .swiper-button-prev {
        left: 2.5rem;
    }
}

@media only screen and (max-width: 1440px) {
    .c-case-studies-about-wpr {
        padding: 10rem 0;
    }
}

@media only screen and (max-width: 1336px) {}

@media only screen and (max-width: 1280px) {
    .c-project-page-panel .c-projects-info h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 1099px) {
    .c-project-page-panel .c-projects-info h3 {
        font-size: 2.4rem;
        margin: 0 0 2.5rem;
    }
    .c-project-page-panel .c-projects-info ul {
        margin: 0 0 2.5rem;
    }
    .c-project-page-panel .container .row .col {
        padding: 0 2.5rem;
    }
    .c-project-page-panel .container .row {
        margin: 0 -2.5rem 6rem;
    }
    .c-project-page-panel .container {
        padding: 0 2.5rem;
    }
    .c-project-page-panel {
        padding: 6rem 0 5.5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .c-case-studies-about-info-center {
        padding: 8rem 0 3rem;
    }
}

@media only screen and (max-width: 991px) {
    .c-project-page-panel h1 {
        font-size: 3rem;
        margin: 0 0 3.5rem;
    }
    .c-case-studies-about-row-bottom [class*="col-"]:last-of-type {
        padding-top: 4.5rem;
    }
    .c-case-studies-about-wpr {
        padding: 6rem 0;
    }
    .c-case-studies-banner-heading h1 {
        font-size: 3rem;
    }
    .c-case-studies-banner-heading {
        padding: 3.5rem 0;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content h3 {
        font-size: 2.8rem;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content p {
        font-size: 1.6rem;
        margin: 0 0 1.5rem;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content h5 {
        font-size: 2.4rem;
        margin: 0 0 1.5rem;
    }
    #cookiePolicyModal .modal-body .btn.btn-primary {
        margin: 0 0 0 1.5rem;
    }
    #cookiePolicyModal .modal-body .btn {
        padding: 1.1rem 2rem;
        font-size: 1.6rem;
        line-height: normal;
    }
    body.modal-open,
    #cookiePolicyModal{
        padding-right: 0 !important;
    }
    #cookiePolicyModal .modal-body .close {
        width: 3.5rem;
        height: 3.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media only screen and (max-width: 840px) {}

@media only screen and (max-width: 767px) {
    .c-project-page-panel {
        padding: 4rem 0 2.5rem;
    }
    .c-project-page-panel .container .row .col:first-of-type {
        margin-bottom: 3rem;
    }
    .c-case-studies-about-row-top h2 {
        font-size: 3rem;
        text-align: left;
        margin: 0 0 2rem;
    }
    .c-case-studies-about-row-top {
        margin-bottom: 3.5rem;
    }
    .c-case-studies-about-info-center {
        padding: 6rem 0 0rem;
    }
    .c-case-studies-banner-heading h1 {
        font-size: 2.6rem;
    }
    #cookiePolicyModal .modal-body {
        padding: 3rem 2rem;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content h3 {
        font-size: 2.4rem;
    }
    #cookiePolicyModal .modal-body .c-policy-page-contentp {
        font-weight: 300;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 640px) {}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 575px) {
    .c-project-page-panel h1 {
        font-size: 2.6rem;
        margin: 0 0 3rem;
    }
    .c-project-page-panel .c-projects-info h3 {
        font-size: 2.2rem;
        margin: 0 0 2rem;
    }
    .c-case-studies-about-wpr {
        padding: 4rem 0;
    }
    .c-case-studies-about-info-center {
        padding: 4rem 0 0rem;
    }
    .c-case-studies-about-slider-panel .c-case-studies-about-slider-area .c-case-studies-about-slider {
        padding: 4rem 0!important;
    }
    .c-case-studies-about-slider-panel .c-case-studies-about-slider-area {
        padding: 0 2rem;
    }
    .c-case-studies-banner-heading h1 {
        font-size: 2.2rem;
    }
    .c-case-studies-banner-heading {
        padding: 1.5rem 0;
    }
    .c-case-studies-about-info-center .c-case-studies-about-info-in {
        padding-left: 2.5rem;
    }
    .woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tbody tr td {
        font-size: 1.4rem;
        background: transparent;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content p {
        font-size: 1.4rem;
        margin: 0 0 1.2rem;
    }
    #cookiePolicyModal .modal-body .c-policy-page-content h3 {
        font-size: 2rem;
        margin: 0 0 1.2rem;
    }
    
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 420px) {}

@media only screen and (max-width: 380px) {}


/* sudipta */

.c-faq-content-area h1 {
    color: #052C25;
    font-size: 7rem;
    font-weight: 400;
    margin: 0 0 4rem;
}

.c-faq-content-area p {
    color: #052C25;
    font-size: 20px;
    font-family: var(--inter);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto 4rem;
    max-width: 60rem;
}

.c-faq-content-area p a {
    color: #052C25;
    text-decoration: underline !important;
}

.c-faq-content-area p a:hover {
    color: var(--pistagreen);
}

.c-faq-section {
    background-color: #c1d8d4;
    padding: 10rem 0;
}

.c-faq-section .container {
    max-width: 1120px !important;
}

.c-accordion-module__single {
    border-bottom: 1px solid var(--deepergreen);
}

.c-accordion-module__single h4 {
    color: var(--deepergreen);
    font-size: 3rem;
    font-weight: 400;
    padding: 25px 60px 25px 0;
    position: relative;
    cursor: pointer;
    margin: 0;
    line-height: 1.2;
}

.c-accordion-module__single h4::before {
    position: absolute;
    content: '';
    width: 4rem;
    height: 4rem;
    background: url(../images/plus.png) no-repeat;
    background-position: center;
    background-size: 4rem;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.c-accordion-module__single h4.active::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.c-accordion-module__body {
    display: none;
}

.c-accordion-module__body p {
    font-size: 2rem;
    font-weight: 300;
    color: var(--deepergreen);
    line-height: 1.5;
    font-family: var(--inter);
    margin: 0 0 3.5rem;
}

.c-accordion-module__body ul {
    margin: 0 0 2rem;
}

.c-accordion-module__body ul li {
    padding: 0 0 0.5rem 2rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--deepergreen);
    line-height: 1.5;
    font-family: var(--inter);
    position: relative;
}

.c-accordion-module__body ul li a {
    color: var(--deepergreen);
}

.c-accordion-module__body ul li a:hover {
    color: var(--deepergreen);
    text-decoration: underline !important;
}

.c-accordion-module__body ul li::before {
    content: '';
    position: absolute;
    top: 1.3rem;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    background: var(--deepergreen);
    border-radius: 100%;
}

@media (max-width: 1536px) {
    .c-faq-content-area h1 {
        font-size: 5rem;
    }
    .c-accordion-module__single h4 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1366px) {
    .c-faq-content-area h1 {
        font-size: 4.4rem;
        margin: 0 0 3.5rem;
    }
}

@media (max-width: 1280px) {
    .c-accordion-module__single h4 {
        font-size: 2.4rem;
    }
    .c-accordion-module__body p {
        font-size: 1.8rem;
        margin: 0 0 3rem;
    }
    .c-accordion-module__body ul li {
        font-size: 1.8rem;
    }
    .c-accordion-module__body {
        padding: 2rem 0 4rem;
    }
}

@media (max-width: 1024px) {
    .c-faq-content-area h1 {
        font-size: 3.4rem;
        margin: 0 0 3rem;
    }
    .c-faq-content-area p {
        font-size: 18px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 991px) {
    .c-accordion-module {
        padding: 0 2rem;
    }
    .c-faq-section {
        padding: 3rem 0;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow {
        opacity: 1;
    }
    .c-category-top {
        margin: 0px 0px 4rem;
    }
    .c-category-top li a {
        min-width: 11.6rem;
        margin-bottom: 10px;
        padding: 0.8rem 2.2rem;
    }
}

@media (max-width: 767px) {
    .c-faq-content-area h1 {
        font-size: 2.6rem;
        margin: 0 0 2rem;
    }
    .c-faq-content-area p {
        font-size: 16px;
    }
    .c-accordion-module__single h4 {
        font-size: 2rem;
        padding: 20px 60px 20px 0;
    }
    .c-accordion-module__body p {
        font-size: 1.6rem;
        margin: 0 0 1.5rem;
    }
    .c-accordion-module__body ul li {
        font-size: 1.6rem;
        padding: 0 0 0.5rem 1rem;
    }
    .c-accordion-module__body ul {
        margin: 0 0 1.5rem;
    }
    .c-accordion-module__body ul li::before {
        top: 1.1rem;
        width: 0.4rem;
        height: 0.4rem;
    }
    .c-accordion-module__body {
        padding: 1rem 0 3rem;
    }
    .c-accordion-module__single h4::before {
        width: 3rem;
        height: 3rem;
        background-size: 3rem;
    }
    .c-each-datasheet .c-datasheet-info {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .c-accordion-module__single h4 {
        font-size: 1.7rem;
        padding: 18px 30px 18px 0;
    }
    .c-accordion-module__body p,
    .c-accordion-module__body ul li {
        font-size: 1.4rem;
    }
    .c-faq-content-area h1 {
        font-size: 2.2rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow.slick-next {
        right: 1rem;
    }
    .c-product-details-panel .c-product-details-img .c-product-image-slider .slick-arrow.slick-prev {
        left: 1rem;
    }
}

@media (max-width: 375px) {
    .c-accordion-module {
        padding: 0;
    }
    #cookiePolicyModal .modal-body .btn {
        padding: 1rem 1.5rem;
        font-size: 1.4rem;
    }
}

/* remove div soc */

.sfsiplus_footerLnk {
    display: none!important;
}

/* additional custom css for products */

.woocommerce ul.products li.product .price {
    font-size: 20px;
    color: #000000;
    font-weight: 300;
    margin: 0 0 10px;
}

/* tab slider */

.eael-tabs-nav .eael-tab-item-trigger {
    padding: 0;
}

.eael-tabs-nav .eael-tab-item-trigger a {
    color: var(--deepgreen);
    font-size: 1.8rem;
    font-weight: 300;
    background: transparent;
    border: 0;
    padding: 1.9rem 1rem;
}

.eael-tabs-nav .eael-tab-item-trigger a.nav-link.active {
    color: var(--white);
}

.eael-tabs-nav .eael-tab-item-trigger a:hover {
    border-color: transparent;
}

.eael-tabs-nav ul:after {
    content: "";
    position: absolute;
    /* width: 50%; */
    top: 0;
    -webkit-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -moz-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -ms-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    -o-transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    transition: left cubic-bezier(0.76, 0.15, 0.68, 1.05) .4s;
    /* transition: left cubic-bezier(.88, -.35, .565, 1.35) .4s; */
    border-radius: 3.5rem;
    /* box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .1); */
    background-color: var(--lpgreen);
    height: 100%;
    z-index: 0;
}

.eael-tabs-nav ul.left:after {
    left: 0;
    width: 19.6rem;
}

.eael-tabs-nav ul.right:after {
    left: 36.5%;
    /* right: 0; */
    width: 32.3rem;
}

.eael-tabs-nav ul .eael-tab-item-trigger {
    display: inline-block;
    /* width: auto; */
    padding: 12px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
}

.eael-tabs-nav ul .eael-tab-item-trigger:nth-child(1) {
    width: 19.6rem;
}

.eael-tabs-nav ul .eael-tab-item-trigger:nth-child(2) {
    width: 30.4rem;
}

.eael-tabs-nav ul .eael-tab-item-trigger.active {
    color: #ffffff;
}

.eael-advance-tabs .eael-tabs-nav>ul {
    background: #F5F7F6;
    border-radius: 70px 70px 70px 70px;
    
}

.eael-tabs-nav {
    margin: auto;
    width: 50%;
    padding: 3rem;
}

/* cart page additional css */

.woocommerce .quantity .qty {
    border-style: none!important;
}

/* mega-menu-css */
.mega-menu-css, .mega-menu-css a {
    /*color: #000!important;*/
    font-size: 1.8rem;
}

.mega-menu-css a:hover {
    color: #052C25!important;
    font-size: 1.8rem;
}

.mega-menu-css h4, .mega-menu-css h4 a {
    color: #000!important;
    font-size: 2.5rem;
}

.mega-menu-css .jltma--advance-tab-nav li::before {
    border: none!important;
}

.mega-menu-css .jltma--advance-tab.three .jltma--advance-tab-nav {
    padding: 0;
    width: 15%;
    margin: auto 3rem;
}

.mega-menu-css .jltma--advance-tab.three .jltma--advance-tab-content {
    width: 100%;
}

.mega-menu-css .c-sector-menu__each .border-left {
    border-left: 2px solid #dee2e6!important;
}

.elementor-6974 .elementor-element.elementor-element-ceda691 .jltma--advance-tab .jltma--advance-tab-content {
    padding: 0;
}


/* Quantity button */

input.input-text.qty.text {
    background: none;
    width: 3rem;
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
}

.quantity {
    text-align: center;
    /* vertical-align: bottom; */
}

span.td-quantity-button.min, span.td-quantity-button.plus {
    vertical-align: middle;
    font-size: 20px;
    font-weight: 300;
    border: none!important;
    padding: 0;
    background: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

span.td-quantity-button.min:hover, span.td-quantity-button.plus:hover {
    cursor: pointer;
}


font-family: "Red Hat Display", Sans-serif;
font-size: 18px;
color: var( --e-global-color-primary );
background-color: #FFFFFF;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: var( --e-global-color-primary );
border-radius: 70.4px 70.4px 70.4px 70.4px;
padding: 18px 50px 18px 40px;

