/* reset css start */
:root {
    --font: 'Inter', sans-serif;
    --font-dosis: 'Dosis', sans-serif;
    --color-primary: #f70201;
    --color-primary-2: #02d8f5;
    --color-primary-3: #50ad06;
    --color-orange: #ff6a00;
    --color-primary-2-rgb: 2, 216, 245;
    --color-heading: #121416;
    --color-white: #fff;
    --color-black: #000;
    --color-red: #ff1b1b;
    --color-red-deep: #ea1b25;
    --color-primary-rgb: 255, 180, 27;
    --color-black-rgb: 0, 0, 0;
    --color-white-rgb: 250, 250, 250;
    --color-default: #5f5d5d;
    --color-gray: #f6f6f6;
    --color-gray-2: #f4f5f8;
    --color-border: #e5e5e5;
    --color-dark: #111;
    --color-dark-2: #080b17;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    font-size: 14px;
    padding: 0;
    margin: 0;
    font-weight: 400;
    position: relative;
    line-height: 29px;
    color: var(--color-default);
    background-color: var(--color-white);
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    margin: 0px;
    padding: 0px;
}
button {
    cursor: pointer;
}
*:focus {
    outline: none;
}
button {
    border: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
button:focus {
    outline: none;
}
a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
a:hover {
    color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
  line-height: 1.3;
  font-family: var(--font);
}
h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, form select:focus, textarea:focus {
    border-color: var(--color-primary);
}
button {
    border: 0;
}
table {
    width: 100%;
}
p, li, span {
    color: var(--color-default);
    margin-bottom: 0;
}
/* reset css end */

 @-webkit-keyframes spin {
	 0% {
		 transform: rotate(0deg);
	}
	 100% {
		 transform: rotate(360deg);
	}
}
 @keyframes spin {
	 0% {
		 transform: rotate(0deg);
	}
	 100% {
		 transform: rotate(360deg);
	}
}
 @-webkit-keyframes zoom {
	 0% {
		 -webkit-transform: scale(1);
		 -ms-transform: scale(1);
		 transform: scale(1);
	}
	 50% {
		 -webkit-transform: scale(1.05);
		 -ms-transform: scale(1.05);
		 transform: scale(1.05);
	}
	 100% {
		 -webkit-transform: scale(1.1);
		 -ms-transform: scale(1.1);
		 transform: scale(1.1);
	}
}
 @keyframes zoom {
	 0% {
		 -webkit-transform: scale(1.1);
		 -ms-transform: scale(1.1);
		 transform: scale(1.1);
	}
	 50% {
		 -webkit-transform: scale(1.05);
		 -ms-transform: scale(1.05);
		 transform: scale(1.05);
	}
	 100% {
		 -webkit-transform: scale(1);
		 -ms-transform: scale(1);
		 transform: scale(1);
	}
}
 @-webkit-keyframes shake {
	 0% {
		 -webkit-transform: rotate(7deg);
		 -ms-transform: rotate(7deg);
		 transform: rotate(7deg);
	}
	 50% {
		 -webkit-transform: rotate(0deg);
		 -ms-transform: rotate(0deg);
		 transform: rotate(0deg);
	}
	 100% {
		 -webkit-transform: rotate(7deg);
		 -ms-transform: rotate(7deg);
		 transform: rotate(7deg);
	}
}
 @keyframes shake {
	 0% {
		 -webkit-transform: rotate(7deg);
		 -ms-transform: rotate(7deg);
		 transform: rotate(7deg);
	}
	 50% {
		 -webkit-transform: rotate(0deg);
		 -ms-transform: rotate(0deg);
		 transform: rotate(0deg);
	}
	 100% {
		 -webkit-transform: rotate(7deg);
		 -ms-transform: rotate(7deg);
		 transform: rotate(7deg);
	}
}
 @-webkit-keyframes down {
	 0% {
		 -webkit-transform: translateY(5px);
		 -ms-transform: translateY(5px);
		 transform: translateY(5px);
	}
	 50% {
		 -webkit-transform: translateY(0px);
		 -ms-transform: translateY(0px);
		 transform: translateY(0px);
	}
	 100% {
		 -webkit-transform: translateY(5px);
		 -ms-transform: translateY(5px);
		 transform: translateY(5px);
	}
}
 @keyframes down {
	 0% {
		 -webkit-transform: translateY(5px);
		 -ms-transform: translateY(5px);
		 transform: translateY(5px);
	}
	 50% {
		 -webkit-transform: translateY(0px);
		 -ms-transform: translateY(0px);
		 transform: translateY(0px);
	}
	 100% {
		 -webkit-transform: translateY(5px);
		 -ms-transform: translateY(5px);
		 transform: translateY(5px);
	}
}

/*----------------------------------------*/
/* 18. preloder 
/*----------------------------------------*/
.myalert {
	position:fixed;
	top:20px;
	left:20px;
	width:400px;
    max-width: 90vw;
	z-index:9999999;
}

.myalert > div {
	position:relative;
	opacity:0;
	visibility:hidden;
	transform:translate(-100%,20px);
	transition:.4s;
}

.myalert > div.on {
	transform:translate(0,20px);
	opacity:1;
	visibility:visible;
}

.preloder_part {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background-color: var(--color-white);
}
.spinner {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
    top: 48%;
    position: absolute;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
    z-index: 99999;
}
.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--color-primary);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}
.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
   }
}
@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
   }
}
@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
   }
    50% {
        -webkit-transform: scale(1);
   }
}
@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
   }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
   }
}


/*----------------------------------------*/
/* 04. globel 
/*----------------------------------------*/
@media (min-width: 1024px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
   }
    .mxw_1530 {
        max-width: 1530px;
   }
    .mxw_1360 {
        max-width: 1360px;
   }
}
.tagcloud {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}
.tagcloud a {
    display: block;
    color: #77787b;
    background-color: #f6f6f6;
    min-height: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    padding: 0px 17px;
    margin: 7px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.tagcloud a:hover {
    color: #fff;
    background-color: var(--color-primary) !important;
}
.post-tags li {
    font-size: 15px;
    text-transform: capitalize;
    position: relative;
}
.post-tags li self:not(:first-child, :last-child) {
    margin-right: 11px;
    padding-right: 15px;
}
.post-tags li self:not(:first-child, :last-child)::before {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    content: "";
}
.post-tags li span {
    display: inline-block;
    background-color: var(--color-primary);
    padding: 0px 10px;
    line-height: 25px;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-right: 12px;
}
.post-tags li a {
    color: var(--color-black);
}
.post-tags li a:hover {
    color: var(--color-black);
}
.hamburger_menu .icon {
    font-size: 22px;
}
.hamburger_menu .icon span {
    color: var(--color-black);
}
.widget__post .tx-post:not(:last-child) {
    margin-bottom: 20px;
}
.widget__post .post-thumb {
    width: 100px;
    height: 84px;
    margin-right: 15px;
}
.widget__post .post-content {
    width: calc(100% - 115px);
}
.widget__post .post-title {
    font-size: 16px;
    font-weight: 500;
}
.widget__social li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget__social li:not(:last-child) {
    margin-bottom: 29px;
}
.widget__social li .icon {
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    color: var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 13px;
    font-size: 16px;
}
.widget__social li span {
    color: var(--color-black);
    font-size: 18px;
}
.widget__social li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-default);
    align-items: center;
    justify-content: center;
    width: 100px;
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.widget__social li a:hover {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary) !important;
    box-shadow: 0px 4px 11px rgba(255, 24, 78, 0.3);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}
.widget__social.style-2 li a:hover {
    background-color: var(--color-primary-2);
    border-color: var(--color-primary-2) !important;
    box-shadow: 0px 4px 11px rgba(41, 98, 255, 0.3);
}
.widget__twitter-feeds li {
    display: flex;
}
.widget__twitter-feeds li:not(:last-child) {
    margin-bottom: 25px;
}
.widget__twitter-feeds .icon {
    font-size: 24px;
    color: #0095e9;
    width: 24px;
    margin-right: 10px;
}
.widget__twitter-feeds .content {
    width: calc(100% - 34px);
    font-size: 14px;
    margin-top: -5px;
}
.widget__twitter-feeds span {
    font-size: 14px;
    color: #656a7d;
}
.widget__twitter-feeds .twitter-api {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 500;
    margin-right: 11px;
}
.widget__twitter-feeds p {
    font-size: 14px;
    color: #71737e;
    line-height: 21px;
    margin-bottom: 8px;
}
.widget__twitter-feeds p a {
    color: #585a6b;
    font-weight: 500;
}
.widget__twitter-feeds .date i {
    margin-right: 5px;
}
.post-meta li {
    position: relative;
}
.post-meta li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}
.post-meta li:not(:last-child)::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 10px;
    background-color: #c4c4c4;
    content: "";
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.post-meta li i {
    margin-right: 4px;
}
.post-meta .avatar img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
}
.post-meta--2 .post-meta__author {
    margin-right: 10px;
}
.post-meta--2 .post-meta__author .avatar img {
    width: 19px;
    height: 19px;
}
.post-meta--2 .date i {
    margin-right: 5px;
}
.tx-post:hover .post-thumb img {
    -webkit-transform: scale(1.02);
    transform: scale(1.03);
}
.tx-post .post-thumb {
    position: relative;
    overflow: hidden;
}
.tx-post .post-thumb img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tx-post .post-thumb::before {
    z-index: 1;
}
.tx-post .post-thumb.br-3 {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.tx-post .post-thumb.br-4 {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.tx-post .post-title a {
    color: var(--color-black);
}
.tx-post .post-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.tx-post .post-number.style-2 {
    background-color: var(--color-primary-2);
    width: 22px;
    height: 22px;
}
.tx-post .read-more a {
    color: var(--color-primary);
    font-size: 14px;
}
.tx-post .read-more a i {
    padding-left: 5px;
    font-size: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tx-post .read-more a:hover i {
    padding-left: 7px;
}
.tx-post .cat {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
}
.post-cat {
    background-color: var(--color-primary);
    padding: 1px 17px;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.6px;
}
.post-img .post-cat {
    position: absolute;
    top: 12px;
    left: 14px;
}
.mxw_175 {
    max-width: 175px;
}
.mxw_343 {
    max-width: 343px;
}
.mxw_216 {
    max-width: 216px;
}


/* global css start */
 .owl-carousel .owl-stage {
	 -webkit-transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important;
	 -o-transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important;
	 transition: all 0.8s cubic-bezier(0.65, 0.05, 0.18, 0.99) !important;
}
 .nice-select {
	 background-color: transparent;
	 height: 40px !important;
	 line-height: 40px !important;
	 min-height: 40px !important;
	 padding: 0 30px;
}
 .nice-select span {
	 color: var(--color-black);
}
 .nice-select .list {
	 box-shadow: 0.975px 7.94px 21px 0px rgba(239, 239, 239, 0.5);
}
 .nice-select .list li {
	 margin-right: 0 !important;
}
 .nice-select .list .option {
	 color: var(--color-black);
}
 .nice-select .list .option.selected, .nice-select .list .option:hover {
	 border: none !important;
}
/* global css end */
 .body_wrap {
	 overflow: hidden;
	 position: relative;
}
 main {
	 position: relative;
	 -webkit-transition: all 0.3s ease;
	 -o-transition: all 0.3s ease;
	 transition: all 0.3s ease;
	 z-index: 2;
	 background: var(--color-white);
}
 .bg_img {
	 background-position: center center;
	 background-size: cover;
	 background-repeat: no-repeat;
	 width: 100%;
	 height: 100%;
}
 .dark-bg {
	 background-color: var(--color-dark);
}
 .dark-bg-2 {
	 background-color: var(--color-dark-2);
}
 .footer-bg {
	 background-color: #04060a;
}
 .gray-bg {
	 background: var(--color-gray);
}
 .black-bg {
	 background: #000;
}
 .white {
	 color: var(--color-white);
}
 .pos-rel {
	 position: relative;
}
 .pos-absolute {
	 position: absolute;
}
 .f-right {
	 float: right;
}
 .border-effect a, .border-effect-2 a {
	 display: inline !important;
	 width: 100%;
	 background-repeat: no-repeat;
	 background-position-y: -2px;
	 background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
	 -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	 -o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	 transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	 background-size: 0 100%;
	 -webkit-backface-visibility: hidden;
	 backface-visibility: hidden;
}
 .border-effect a:hover, .border-effect-2 a:hover {
	 background-size: 100% 100%;
	 color: inherit;
}
 .border-effect-2 a {
	 background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
}
/* play btn animation */
 .popup-video {
	 position: absolute;
	 background: #fff;
	 color: var(--color-primary);
	 height: 80px;
	 width: 80px;
	 top: 50%;
	 left: 0;
	 right: 0;
	 margin: auto;
	 text-align: center;
	 font-size: 18px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 -webkit-transform: translateY(-50%);
	 -ms-transform: translateY(-50%);
	 transform: translateY(-50%);
	 border-radius: 50%;
	 -webkit-border-radius: 50%;
	 -moz-border-radius: 50%;
	 -ms-border-radius: 50%;
	 -o-border-radius: 50%;
	 z-index: 2;
}
 .popup-video--md {
	 height: 70px;
	 width: 70px;
	 font-size: 16px;
}
 .popup-video--sm {
	 height: 55px;
	 width: 55px;
	 font-size: 14px;
}
 .popup-video:hover {
	 color: var(--color-primary);
}
 .popup-video::before, .popup-video::after {
	 position: absolute;
	 content: "";
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 border-radius: 50%;
	 background-color: #fff;
	 opacity: 0.15;
	 z-index: -10;
}
 .popup-video::before {
	 z-index: -10;
	 -webkit-animation: inner-ripple 2000ms linear infinite;
	 -moz-animation: inner-ripple 2000ms linear infinite;
	 animation: inner-ripple 2000ms linear infinite;
}
 .popup-video::after {
	 z-index: -10;
	 -webkit-animation: outer-ripple 2000ms linear infinite;
	 -moz-animation: outer-ripple 2000ms linear infinite;
	 animation: outer-ripple 2000ms linear infinite;
}
/* animation */
 @keyframes outer-ripple {
	 0% {
		 transform: scale(1);
		 filter: alpha(opacity=50);
		 opacity: 0.5;
		 -webkit-transform: scale(1);
		 -moz-transform: scale(1);
		 -ms-transform: scale(1);
		 -o-transform: scale(1);
		 -webkit-filter: alpha(opacity=50);
	}
	 80% {
		 transform: scale(1.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(1.5);
		 -moz-transform: scale(1.5);
		 -ms-transform: scale(1.5);
		 -o-transform: scale(1.5);
	}
	 100% {
		 transform: scale(2.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(2.5);
		 -moz-transform: scale(2.5);
		 -ms-transform: scale(2.5);
		 -o-transform: scale(2.5);
	}
}
 @-webkit-keyframes outer-ripple {
	 0% {
		 transform: scale(1);
		 filter: alpha(opacity=50);
		 opacity: 0.5;
		 -webkit-transform: scale(1);
		 -moz-transform: scale(1);
		 -ms-transform: scale(1);
		 -o-transform: scale(1);
	}
	 80% {
		 transform: scale(2.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(2.5);
		 -moz-transform: scale(2.5);
		 -ms-transform: scale(2.5);
		 -o-transform: scale(2.5);
	}
	 100% {
		 transform: scale(3.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(3.5);
		 -moz-transform: scale(3.5);
		 -ms-transform: scale(3.5);
		 -o-transform: scale(3.5);
	}
}
 @-moz-keyframes outer-ripple {
	 0% {
		 transform: scale(1);
		 filter: alpha(opacity=50);
		 opacity: 0.5;
		 -webkit-transform: scale(1);
		 -moz-transform: scale(1);
		 -ms-transform: scale(1);
		 -o-transform: scale(1);
	}
	 80% {
		 transform: scale(2.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(2.5);
		 -moz-transform: scale(2.5);
		 -ms-transform: scale(2.5);
		 -o-transform: scale(2.5);
	}
	 100% {
		 transform: scale(3.5);
		 filter: alpha(opacity=0);
		 opacity: 0;
		 -webkit-transform: scale(3.5);
		 -moz-transform: scale(3.5);
		 -ms-transform: scale(3.5);
		 -o-transform: scale(3.5);
	}
}
/* order & unorder list reset - start */
 .ul_li, .ul_li_right, .ul_li_center, .ul_li_between {
	 margin: 0px;
	 padding: 0px;
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
}
 .ul_li > li, .ul_li_right > li, .ul_li_center > li, .ul_li_between > li {
	 float: left;
	 list-style: none;
	 display: inline-block;
}
 .ul_li {
	 justify-content: flex-start;
}
 .ul_li_center {
	 justify-content: center;
}
 .ul_li_right {
	 justify-content: flex-end;
}
 .ul_li_between {
	 justify-content: space-between;
}
 .ul_li_block {
	 margin: 0px;
	 padding: 0px;
	 display: block;
}
 .ul_li_block > li {
	 display: block;
	 list-style: none;
}
 .flex-1 {
	 flex: 1;
}
 .section-heading {
	 font-size: 18px;
	 font-weight: 500;
	 padding-bottom: 10px;
	 border-bottom: 1px solid var(--color-border);
	 text-transform: capitalize;
}
 .section-heading.fs-20 {
	 font-size: 20px;
}
 .section-heading.fs-16 {
	 font-size: 16px;
}
 .section-heading > span {
	 position: relative;
	 color: currentColor;
}
 .section-heading > span::before {
	 position: absolute;
	 bottom: -12px;
	 left: 0;
	 width: 100%;
	 content: "";
	 background-color: var(--color-primary);
	 height: 1px;
}
 .section-heading > span span {
	 color: var(--color-primary);
}
 .section-heading > span:nth-child(2)::before {
	 display: none;
}
 .section-heading.style-2 {
	 font-weight: 600;
}
 .section-heading.style-3 {
	 font-weight: 500;
}
 .section-heading.style-3 span {
	 position: relative;
	 color: currentColor;
}
 .section-heading.style-3 span::before {
	 background-color: var(--color-primary-3);
}
 .fs-13 {
	 font-size: 13px;
	 line-height: 20px;
}
 .color-black {
	 color: var(--color-black);
}
 .br-7 {
	 border-radius: 7px;
	 -webkit-border-radius: 7px;
	 -moz-border-radius: 7px;
	 -ms-border-radius: 7px;
	 -o-border-radius: 7px;
}
 .br-10 {
	 border-radius: 10px;
	 -webkit-border-radius: 10px;
	 -moz-border-radius: 10px;
	 -ms-border-radius: 10px;
	 -o-border-radius: 10px;
}
/*** newsletter-popup-area ***/
 .newsletter-popup-area-section {
	 width: 100%;
	 height: 100%;
	 background-color: rgba(0, 0, 0, .7);
	 position: fixed;
	 left: 0;
	 top: 0;
	 z-index: 9999;
	 -webkit-transition: opacity 0.1s ease-in-out, z-index 0.1s ease-in-out;
	 -o-transition: opacity 0.1s ease-in-out, z-index 0.1s ease-in-out;
	 transition: opacity 0.1s ease-in-out, z-index 0.1s ease-in-out;
	 opacity: 0;
	 visibility: hidden;
}
 @media (max-width: 991px) {
	 .newsletter-popup-area-section {
		 display: none;
	}
}
 .newsletter-popup-area-section .newsletter-popup-area {
	 width: 700px;
	 background-color: var(--color-white);
	 position: fixed;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 z-index: 100;
	 margin-top: 40px;
	 -webkit-transition: 0.3s;
	 -o-transition: 0.3s;
	 transition: 0.3s;
}
 .newsletter-popup-area-section .newsletter-popup-area .newsletter-popup-ineer {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 overflow: hidden;
}
 .newsletter-popup-area-section .newsletter-popup-area .img-holder {
	 width: 325px;
	 float: left;
}
 .newsletter-popup-area-section .newsletter-popup-area .details {
	 width: calc(100% - 325px);
	 float: left;
	 padding: 35px;
}
 .newsletter-popup-area-section .newsletter-popup-area h4 {
	 font-size: 24px;
	 margin: 0 0 0.5em;
}
 .newsletter-popup-area-section .newsletter-popup-area p {
	 font-size: 14px;
	 margin: 0 0 2em;
}
 .newsletter-popup-area-section .newsletter-popup-area form div {
	 position: relative;
}
 .newsletter-popup-area-section .newsletter-popup-area form div input[type="email"] {
	 font-size: 14px;
	 border: 1px solid #ddd;
	 height: 46px;
}
 .newsletter-popup-area-section .newsletter-popup-area form div input[type="email"]:focus {
	 border-color: #ddd;
}
 .newsletter-popup-area-section .newsletter-popup-area form div button {
	 background: var(--color-primary);
	 height: 46px;
	 line-height: 46px;
	 color: var(--color-white);
	 border: 0;
	 outline: 0;
	 padding: 0 25px;
	 position: absolute;
	 right: 0;
	 top: 0;
	 -webkit-transition: background 0.2s ease-in-out;
	 -ms-transition: background 0.2s ease-in-out;
	 transition: background 0.2s ease-in-out;
	 letter-spacing: 0;
}
 .newsletter-popup-area-section .newsletter-popup-area form div input[type="checkbox"] {
	 position: absolute;
	 opacity: 0;
	 cursor: pointer;
}
 .newsletter-popup-area-section .newsletter-popup-area form div .checkbox-holder {
	 margin-top: 25px;
	 padding-left: 20px;
	 position: relative;
	 cursor: pointer;
}
 .newsletter-popup-area-section .newsletter-popup-area form div .checkmark {
	 position: absolute;
	 top: 9px;
	 left: 0;
	 height: 12px;
	 width: 12px;
	 background-color: #c7c7c7;
	 border-radius: 50%;
}
 .newsletter-popup-area-section .newsletter-popup-area form div .checkbox-holder input:checked ~ .checkmark {
	 background-color: var(--color-primary);
}
 .newsletter-popup-area-section .newsletter-popup-area form div label {
	 font-size: 12px;
	 font-size: calc-rem-value(12);
}
 .newsletter-popup-area-section .newsletter-popup-area .newsletter-close-btn {
	 top: 5px;
	 right: 5px;
	 line-height: 1;
	 font-size: 24px;
	 position: absolute;
	 background: transparent;
	 color: #a5a6aa;
	 -webkit-transition: 0.3s;
	 -o-transition: 0.3s;
	 transition: 0.3s;
}
 .newsletter-popup-area-section .newsletter-popup-area .newsletter-close-btn:hover {
	 -webkit-transform: rotate(180deg);
	 -ms-transform: rotate(180deg);
	 transform: rotate(180deg);
}
 @media (max-width: 767px) {
	 .newsletter-popup-area-section .newsletter-popup-area .newsletter-close-btn {
		 right: 0;
	}
}
 .newsletter-popup-area-section .newsletter-popup-area .newsletter-close-btn:hover, .newsletter-popup-area-section .newsletter-popup-area .newsletter-close-btn:focus {
	 outline: none;
	 box-shadow: none;
}
 .active-newsletter-popup {
	 opacity: 1;
	 visibility: visible;
	 -webkit-transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
	 -o-transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
	 transition: opacity 1s ease-in-out, z-index 1s ease-in-out;
}
 .active-newsletter-popup .newsletter-popup-area {
	 margin-top: 0;
}
 .active-newsletter-popup, .activve-quick-view-single-product {
	 opacity: 1;
	 visibility: visible;
	 -webkit-transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
	 -o-transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
	 transition: opacity 0.2s ease-in-out, z-index 0.2s ease-in-out;
}
/*** cookies-area ***/
 .cookies-area {
	 background: var(--color-white);
	 max-width: 400px;
	 padding: 35px;
	 position: fixed;
	 bottom: 35px;
	 left: 35px;
	 z-index: 100;
	 -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
	 box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
	 -webkit-transition: 0.3s;
	 -o-transition: 0.3s;
	 transition: 0.3s;
}
 @media (max-width: 991px) {
	 .cookies-area {
		 max-width: 280px;
		 left: 15px;
		 bottom: 15px;
	}
}
 .cookies-area a:hover {
	 text-decoration: underline;
	 color: var(--color-primary);
}
 .cookies-area p a {
	 color: var(--color-heading);
}
 .cookies-area .read-more {
	 color: var(--color-heading);
	 text-decoration: underline;
}
 .cookies-area .cookie-btn {
	 margin-top: 15px;
	 border: 0;
	 outline: 0;
	 -webkit-transition: 0.2s;
	 -o-transition: 0.2s;
	 transition: 0.2s;
}
 .remove-cookies-area {
	 opacity: 0;
	 visibility: hidden;
}
 .pagination_wrap ul {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
	 margin: -5px;
	 list-style: none;
}
 .pagination_wrap ul li {
	 padding: 5px;
}
 .pagination_wrap ul li a {
	 height: 50px;
	 width: 50px;
	 line-height: 48px;
	 font-size: 16px;
	 font-weight: 500;
	 color: var(--color-black);
	 border: 1px solid var(--color-border);
	 text-align: center;
	 display: inline-block;
	 -webkit-transition: all 0.3s ease-out 0s;
	 -o-transition: all 0.3s ease-out 0s;
	 transition: all 0.3s ease-out 0s;
}
 .pagination_wrap ul li a:hover, .pagination_wrap ul li a.current_page {
	 background-color: var(--color-primary);
	 color: #fff;
	 border-color: var(--color-primary);
}
 .mr-none-60 {
	 margin-right: -60px;
}
 .ml-none-60 {
	 margin-left: -60px;
}
 .pb-8 {
	 padding-bottom: 8px;
}
 


.header {
    position: sticky;
    top: -54px;
    z-index: 3;
    background-color: #000;
}
.header.sticky {
    box-shadow: 2px 0 2px 1px rgba(0,0,0,.3);
}
@media (max-width: 1199px) {
    .header .add {
        max-width: 400px;
   }
}
.header__top-wrap {
    border: 1px solid var(--color-border);
    padding: 4px 0;
}
@media (max-width: 767px) {
    .header__top-wrap {
        display: none;
   }
}
@media (max-width: 767px) {
    .header__top {
        display: none;
   }
}
@media (max-width: 767px) {
    .header__top-left {
        justify-content: center;
   }
}
.header__top-left li {
    position: relative;
}
.header__top-left li:not(:last-child) {
    margin-right: 9px;
    padding-right: 11px;
}
.header__top-left li:not(:last-child)::before {
    position: absolute;
    top: 7px;
    right: 0;
    content: "";
    width: 1px;
    height: 17px;
    background-color: #ddd;
}
.header__top-left li span, .header__top-left li a, .header__top-left li i {
    color: var(--color-primary);
}
.header__top-left li i {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}
.header__middle {
    padding: 20px 0;
}
@media (max-width: 767px) {
    .header__middle {
        display: none;
   }
}
.header .uk-active {
    background-color: var(--color-white);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
    z-index: 99;
    padding: 10px 0;
}
.uk-active .header__category {
    display: none;
}
.header__logo {
    max-width: 180px;
}
@media (max-width: 1199px) {
    .header__logo {
        max-width: 160px;
   }
}
@media (max-width: 767px) {
    .header__logo {
        max-width: 140px;
   }
}
.header__wrap.uk-sticky .header__logo {
    display: none;
    max-width: 160px;
    margin-right: 90px;
}
@media (max-width: 991px) {
    .header__wrap.uk-sticky .header__logo {
        display: none !important;
   }
}
.header__wrap.uk-active .header__logo {
    display: block;
}
@media (max-width: 1199px) {
    .header__wrap.uk-active .header__logo {
        display: none;
   }
}
.header__top-middle .icon {
    margin-right: 5px;
}
@media (max-width: 991px) {
    .header__info {
        display: none;
   }
}
.header__info-item {
    position: relative;
}
.header__info-item:not(:last-child) {
    margin-right: 35px;
    padding-right: 35px;
}
@media (max-width: 1199px) {
    .header__info-item:not(:last-child) {
        margin-right: 10px;
        padding-right: 10px;
   }
}
.header__info-item:not(:last-child)::before {
    position: absolute;
    top: -8px;
    right: 0;
    width: 1px;
    height: 56px;
    background-color: var(--color-border);
    content: "";
}
.header__info-item .icon {
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.header__info-item .content {
    width: calc(100% - 39px);
}
.header__info-item .content h4 {
    font-size: 13px;
    color: #3e445a;
    font-weight: 600;
    line-height: 1;
}
.header__info-item .content span {
    font-size: 14px;
    color: #7f899d;
}
.header__icons .icon {
    margin-right: 16px;
    position: relative;
}

.header__icons .icon > a > i {
    font-size: 20px;
    vertical-align: middle;
    color: #f8f9fa;
}

.header__icons .icon .count {
    position: absolute;
    top: -2px;
    right: -10px;
    min-width: 17px;
    height: 17px;
    font-size: 11px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-primary);
}
.header__icons .icon.wishlist-icon {
    margin-right: 22px;
}
.header__icons .icon.shopping-bag {
    margin-right: 25px;
}
@media (max-width: 767px) {
    .header__icons .icon.shopping-bag {
        margin-right: 5px;
   }
}
.header__icons .icon.shopping-bag .count {
    background-color: #ff8a00;
}
.header__icons .user_menu_list {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-width: 280px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 20px;
    padding-bottom: 13px;
}
.header__icons .cart_btn {
    cursor: pointer;
}
.header__icons .account_links > a {
    font-size: 18px;
}

.header__icons .account_links > a * {
    transition: .3s;
}

.header__icons .account_links > :is(a:hover, a.active) * {
    color: #000;
}

@media (max-width: 767px) {
    .header__icons .shopping-info {
        display: none;
   }
}
.header__icons .shopping-info span {
    display: block;
    line-height: 20px;
    font-size: 13px;
}
.header__icons .shopping-info .items {
    color: #5f6871;
    font-weight: 500;
}
.header__icons .shopping-info .shopping-cart {
    color: #000e27;
}
@media (max-width: 767px) {
    .header__top-right {
        justify-content: center;
   }
}
.header__top-right > li {
    font-size: 15px;
    position: relative;
}
.header__top-right > li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}
.header__top-right > li:not(:last-child)::before {
    position: absolute;
    top: 7px;
    right: 0;
    content: "";
    width: 1px;
    height: 17px;
    background-color: #ddd;
}
.header__top-right > li a {
    color: inherit;
}
.header__top-right > li i {
    font-size: 12px;
    margin-right: 5px;
    color: #6d7079;
}
.header__top-right .date {
    color: #fff;
}
.header__top-right .date i {
    margin-right: 5px;
    font-size: 13px;
}
.header__language ul {
    list-style: none;
}
.header__language ul > li {
    position: relative;
}
.header__language ul .lang-btn {
    display: block;
    text-align: right;
    font-size: 16px;
}
.header__language ul .lang-btn img {
    margin-right: 4px;
}
.header__language ul .lang-btn i {
    font-size: 11px;
    padding-left: 2px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}
.header__language ul li:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.header__language ul li a {
    color: inherit;
}
.header__language .lang_sub_list {
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    top: 120%;
    transition: 0.3s;
    position: absolute;
    right: 0;
    z-index: 9;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.header__language .lang_sub_list ul > li {
    border-radius: 4px;
    overflow: hidden;
}
.header__language .lang_sub_list li a {
    display: block;
    padding-right: 29px;
    min-height: 37px;
    line-height: 37px;
    padding-left: 18px;
    font-size: 15px;
    font-weight: 500;
}
.header__language .lang_sub_list li a:hover {
    background: #f6f6f6;
}
.header__language .lang_sub_list li:not(:last-child) {
    border-bottom: 1px solid #ededed;
}
.header__language.style-2 {
    border: 1px solid var(--color-border);
    padding: 4px 17px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.header__lang {
    position: relative;
    margin-right: 20px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .header__lang {
        display: none;
   }
}
.header__lang::before {
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 20px;
    content: "";
    background-color: #dfdede;
}
.header__category {
    width: 243px;
    margin-right: 28px;
}
@media (max-width: 1199px) {
    .header__category {
        display: none;
   }
}
.header__category-nav {
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 10px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    width: 100%;
}
.header__category-nav:hover {
    color: var(--color-white);
}
.header__category-nav .bar {
    margin-right: 20px;
}
.header__category-nav i {
    margin-left: 25px;
    font-size: 10px;
}
.header__search {
    max-width: 255px;
    position: relative;
}

.header__search > input {
    padding: 5px 10px;
    max-height: 36px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .header__search {
        display: none;
   }
}
@media (max-width: 767px) {
    .header__search {
        display: none;
   }
}
.header__search input {
    height: 48px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    border: 1px solid var(--color-border);
    font-size: 15px;
}
.header__search button {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    color: #64698a;
}
.header__near .near_wrap {
    position: relative;
    color: #f8f9fa;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-right: 20px;
}
.header__near .near_wrap h5 {
    color: #f8f9fa;
}
.header__near .near_wrap:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    top: calc(50% - 5px);
    right: 0px;
}
.header__near .near_wrap  strong {
    white-space: nowrap;
}
.header__social {
    position: relative;
}
.header__social a {
    color: #f8f9fa;
    font-size: 16px;
}
.header__social a:not(:first-child) {
    margin-left: 20px;
}
.header__social a:hover {
    color: var(--color-primary);
}
@media (max-width: 1200px) {
    .header__social {
        display: none;
   }
}
.header__top-info-wrap.has-bg {
    background-color: var(--color-primary-3);
}
.header__top-info {
    padding: 7px 0;
    border-bottom: 1px solid #e5e5e5;
}
.header__top-info > ul > li {
    color: #fff;
    font-size: 14px;
    position: relative;
}
.header__top-info > ul > li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}
.header__top-info > ul > li:not(:last-child)::before {
    position: absolute;
    top: 9px;
    right: 0;
    width: 1px;
    height: 12px;
    background-color: #aaa;
    content: "";
}
.header__top-info > ul > li i {
    font-size: 13px;
    margin-right: 5px;
}
.header__search-box {
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 auto;
    max-width: 738px;
    min-width: auto;
    position: relative;
    width: 100%;
    background-color: #f3f3f3;
    height: 52px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .header__search-box {
        max-width: 500px;
   }
}
@media (max-width: 1199px) {
    .header__search-box {
        max-width: 450px;
   }
}
@media (max-width: 991px) {
    .header__search-box {
        margin-right: 0;
   }
}
@media (max-width: 767px) {
    .header__search-box {
        display: none;
   }
}
.header__search-box .select-box {
    min-width: 190px;
    position: relative;
}
.header__search-box .select-box::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 27px;
    background-color: #ccc;
    content: "";
}
.header__search-box .select-box select {
    font-size: 15px;
    border: 0;
    cursor: pointer;
    padding: 0 13px;
}
.header__search-box input {
    border: 0;
    font-size: 15px;
    background-color: #f3f3f3;
    height: 52px;
}
.header__search-box button {
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    background-color: var(--color-primary);
    font-size: 16px;
    color: var(--color-white);
}
.header__cat-wrap {
    background-color: #11100d;
    padding: 17px 0;
}
@media (max-width: 767px) {
    .header__cat-wrap {
        padding: 12px 0;
   }
}
.header__cat-wrap.uk-active {
    background-color: #11100d;
    padding: 15px 0;
}
.header__cat .hamburger_menu {
    margin-right: 33px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .header__cat .hamburger_menu {
        margin-right: 20px;
   }
}
@media (max-width: 1199px) {
    .header__cat .hamburger_menu {
        margin-right: 20px;
   }
}
.header__cat ul li {
    position: relative;
}
.header__cat ul li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .header__cat ul li:not(:last-child) {
        margin-right: 12px;
        padding-right: 12px;
   }
}
@media (max-width: 1199px) {
    .header__cat ul li:not(:last-child) {
        margin-right: 10px;
        padding-right: 10px;
   }
}
.header__cat ul li:not(:last-child)::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 14px;
    background-color: #d0cfcf;
    content: "";
}
.header__cat ul li a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.header__cat ul li a span {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199px) {
    .header__cat ul li a span {
        width: 15px;
        height: 15px;
   }
}
@media (max-width: 991px) {
    .header__cat .category {
        display: none;
   }
}
/* .header__style-one .hamburger_menu .icon span {
    color: var(--color-white);
} */
.header__style-two .header__top-wrap {
    border: 0;
    padding: 0;
}
@media (max-width: 767px) {
    .header__style-two, .header__style-three {
        padding: 10px 0;
   }
}
.header__style-two .header__top-right > li {
    font-size: 14px;
}
.header .header-date {
    font-size: 14px;
    color: #4d4d4d;
    font-weight: 500;
}
@media (max-width: 991px) {
    .header .header-date {
        display: none;
   }
}
.header .header-date i {
    color: var(--color-primary);
    font-size: 13px;
    margin-right: 6px;
}
.header__language.currency .lang-btn, .header__language.currency .lang_sub_list li a {
    font-size: 14px;
}
.header__style-two .header__icons .icon .count {
    background-color: var(--color-primary);
}
@media (max-width: 991px) {
    .header__style-two .header__icons, .header__style-three .header__icons {
        display: none;
   }
}
.header__style-three .header__top-info > ul > li > i, .header__style-three .header__top-info > ul > li > a > i {
    color: var(--color-primary);
}
.login-sign-btn {
    line-height: 1;
}
@media (max-width: 1199px) {
    .login-sign-btn {
        display: none;
   }
}
@media (max-width: 991px) {
    .login-sign-btn {
        display: block;
   }
}
.login-sign-btn a {
    padding: 13px 18px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

/* reset css start */
/*-- - Margin & Padding -----------------------------------------*/
/*-- Margin Top --*/
.mt-none-5 {
    margin-top: -5px;
}
.mt-none-10 {
    margin-top: -10px;
}
.mt-none-15 {
    margin-top: -15px;
}
.mt-none-20 {
    margin-top: -20px;
}
.mt-none-25 {
    margin-top: -25px;
}
.mt-none-30 {
    margin-top: -30px;
}
.mt-none-35 {
    margin-top: -35px;
}
.mt-none-40 {
    margin-top: -40px;
}
.mt-none-45 {
    margin-top: -45px;
}
.mt-none-50 {
    margin-top: -50px;
}
.mt-none-55 {
    margin-top: -55px;
}
.mt-none-60 {
    margin-top: -60px;
}
.mt-none-65 {
    margin-top: -65px;
}
.mt-none-70 {
    margin-top: -70px;
}
.mt-none-75 {
    margin-top: -75px;
}
.mt-none-80 {
    margin-top: -80px;
}
.mt-none-85 {
    margin-top: -85px;
}
.mt-none-90 {
    margin-top: -90px;
}
.mt-none-95 {
    margin-top: -95px;
}
.mt-none-100 {
    margin-top: -100px;
}
/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-45 {
    margin-top: 45px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-55 {
    margin-top: 55px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-65 {
    margin-top: 65px;
}
.mt-70 {
    margin-top: 70px;
}
.mt-75 {
    margin-top: 75px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-85 {
    margin-top: 85px;
}
.mt-90 {
    margin-top: 90px;
}
.mt-95 {
    margin-top: 95px;
}
.mt-100 {
    margin-top: 100px;
}
.mt-105 {
    margin-top: 105px;
}
.mt-110 {
    margin-top: 110px;
}
.mt-115 {
    margin-top: 115px;
}
.mt-120 {
    margin-top: 120px;
}
.mt-125 {
    margin-top: 125px;
}
.mt-130 {
    margin-top: 130px;
}
.mt-135 {
    margin-top: 135px;
}
.mt-140 {
    margin-top: 140px;
}
.mt-145 {
    margin-top: 145px;
}
.mt-150 {
    margin-top: 150px;
}
.mt-155 {
    margin-top: 155px;
}
.mt-160 {
    margin-top: 160px;
}
.mt-165 {
    margin-top: 165px;
}
.mt-170 {
    margin-top: 170px;
}
.mt-175 {
    margin-top: 175px;
}
.mt-180 {
    margin-top: 180px;
}
.mt-185 {
    margin-top: 185px;
}
.mt-190 {
    margin-top: 190px;
}
.mt-195 {
    margin-top: 195px;
}
.mt-200 {
    margin-top: 200px;
}
/*-- Margin Bottom --*/
.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-65 {
    margin-bottom: 65px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-75 {
    margin-bottom: 75px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-85 {
    margin-bottom: 85px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-95 {
    margin-bottom: 95px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mb-105 {
    margin-bottom: 105px;
}
.mb-110 {
    margin-bottom: 110px;
}
.mb-115 {
    margin-bottom: 115px;
}
.mb-120 {
    margin-bottom: 120px;
}
.mb-125 {
    margin-bottom: 125px;
}
.mb-130 {
    margin-bottom: 130px;
}
.mb-135 {
    margin-bottom: 135px;
}
.mb-140 {
    margin-bottom: 140px;
}
.mb-145 {
    margin-bottom: 145px;
}
.mb-150 {
    margin-bottom: 150px;
}
.mb-155 {
    margin-bottom: 155px;
}
.mb-160 {
    margin-bottom: 160px;
}
.mb-165 {
    margin-bottom: 165px;
}
.mb-170 {
    margin-bottom: 170px;
}
.mb-175 {
    margin-bottom: 175px;
}
.mb-180 {
    margin-bottom: 180px;
}
.mb-185 {
    margin-bottom: 185px;
}
.mb-190 {
    margin-bottom: 190px;
}
.mb-195 {
    margin-bottom: 195px;
}
.mb-200 {
    margin-bottom: 200px;
}
/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}
.ml-10 {
    margin-left: 10px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-20 {
    margin-left: 20px;
}
.ml-25 {
    margin-left: 25px;
}
.ml-30 {
    margin-left: 30px;
}
.ml-35 {
    margin-left: 35px;
}
.ml-40 {
    margin-left: 40px;
}
.ml-45 {
    margin-left: 45px;
}
.ml-50 {
    margin-left: 50px;
}
.ml-55 {
    margin-left: 55px;
}
.ml-60 {
    margin-left: 60px;
}
.ml-65 {
    margin-left: 65px;
}
.ml-70 {
    margin-left: 70px;
}
.ml-75 {
    margin-left: 75px;
}
.ml-80 {
    margin-left: 80px;
}
.ml-85 {
    margin-left: 85px;
}
.ml-90 {
    margin-left: 90px;
}
.ml-95 {
    margin-left: 95px;
}
.ml-100 {
    margin-left: 100px;
}
.ml-105 {
    margin-left: 105px;
}
.ml-110 {
    margin-left: 110px;
}
.ml-115 {
    margin-left: 115px;
}
.ml-120 {
    margin-left: 120px;
}
.ml-125 {
    margin-left: 125px;
}
.ml-130 {
    margin-left: 130px;
}
.ml-135 {
    margin-left: 135px;
}
.ml-140 {
    margin-left: 140px;
}
.ml-145 {
    margin-left: 145px;
}
.ml-150 {
    margin-left: 150px;
}
.ml-155 {
    margin-left: 155px;
}
.ml-160 {
    margin-left: 160px;
}
.ml-165 {
    margin-left: 165px;
}
.ml-170 {
    margin-left: 170px;
}
.ml-175 {
    margin-left: 175px;
}
.ml-180 {
    margin-left: 180px;
}
.ml-185 {
    margin-left: 185px;
}
.ml-190 {
    margin-left: 190px;
}
.ml-195 {
    margin-left: 195px;
}
.ml-200 {
    margin-left: 200px;
}
/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-15 {
    margin-right: 15px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-25 {
    margin-right: 25px;
}
.mr-30 {
    margin-right: 30px;
}
.mr-35 {
    margin-right: 35px;
}
.mr-40 {
    margin-right: 40px;
}
.mr-45 {
    margin-right: 45px;
}
.mr-50 {
    margin-right: 50px;
}
.mr-55 {
    margin-right: 55px;
}
.mr-60 {
    margin-right: 60px;
}
.mr-65 {
    margin-right: 65px;
}
.mr-70 {
    margin-right: 70px;
}
.mr-75 {
    margin-right: 75px;
}
.mr-80 {
    margin-right: 80px;
}
.mr-85 {
    margin-right: 85px;
}
.mr-90 {
    margin-right: 90px;
}
.mr-95 {
    margin-right: 95px;
}
.mr-100 {
    margin-right: 100px;
}
.mr-105 {
    margin-right: 105px;
}
.mr-110 {
    margin-right: 110px;
}
.mr-115 {
    margin-right: 115px;
}
.mr-120 {
    margin-right: 120px;
}
.mr-125 {
    margin-right: 125px;
}
.mr-130 {
    margin-right: 130px;
}
.mr-135 {
    margin-right: 135px;
}
.mr-140 {
    margin-right: 140px;
}
.mr-145 {
    margin-right: 145px;
}
.mr-150 {
    margin-right: 150px;
}
.mr-155 {
    margin-right: 155px;
}
.mr-160 {
    margin-right: 160px;
}
.mr-165 {
    margin-right: 165px;
}
.mr-170 {
    margin-right: 170px;
}
.mr-175 {
    margin-right: 175px;
}
.mr-180 {
    margin-right: 180px;
}
.mr-185 {
    margin-right: 185px;
}
.mr-190 {
    margin-right: 190px;
}
.mr-195 {
    margin-right: 195px;
}
.mr-200 {
    margin-right: 200px;
}
/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-55 {
    padding-top: 55px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-65 {
    padding-top: 65px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-75 {
    padding-top: 75px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-85 {
    padding-top: 85px;
}
.pt-90 {
    padding-top: 90px;
}
.pt-95 {
    padding-top: 95px;
}
.pt-100 {
    padding-top: 100px;
}
.pt-105 {
    padding-top: 105px;
}
.pt-110 {
    padding-top: 110px;
}
.pt-115 {
    padding-top: 115px;
}
.pt-120 {
    padding-top: 120px;
}
.pt-125 {
    padding-top: 125px;
}
.pt-130 {
    padding-top: 130px;
}
.pt-135 {
    padding-top: 135px;
}
.pt-140 {
    padding-top: 140px;
}
.pt-145 {
    padding-top: 145px;
}
.pt-150 {
    padding-top: 150px;
}
.pt-155 {
    padding-top: 155px;
}
.pt-160 {
    padding-top: 160px;
}
.pt-165 {
    padding-top: 165px;
}
.pt-170 {
    padding-top: 170px;
}
.pt-175 {
    padding-top: 175px;
}
.pt-180 {
    padding-top: 180px;
}
.pt-185 {
    padding-top: 185px;
}
.pt-190 {
    padding-top: 190px;
}
.pt-195 {
    padding-top: 195px;
}
.pt-200 {
    padding-top: 200px;
}
/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-25 {
    padding-bottom: 25px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-35 {
    padding-bottom: 35px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-45 {
    padding-bottom: 45px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-55 {
    padding-bottom: 55px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-65 {
    padding-bottom: 65px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pb-75 {
    padding-bottom: 75px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-85 {
    padding-bottom: 85px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-95 {
    padding-bottom: 95px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pb-105 {
    padding-bottom: 105px;
}
.pb-110 {
    padding-bottom: 110px;
}
.pb-115 {
    padding-bottom: 115px;
}
.pb-120 {
    padding-bottom: 120px;
}
.pb-125 {
    padding-bottom: 125px;
}
.pb-130 {
    padding-bottom: 130px;
}
.pb-135 {
    padding-bottom: 135px;
}
.pb-140 {
    padding-bottom: 140px;
}
.pb-145 {
    padding-bottom: 145px;
}
.pb-150 {
    padding-bottom: 150px;
}
.pb-155 {
    padding-bottom: 155px;
}
.pb-160 {
    padding-bottom: 160px;
}
.pb-165 {
    padding-bottom: 165px;
}
.pb-170 {
    padding-bottom: 170px;
}
.pb-175 {
    padding-bottom: 175px;
}
.pb-180 {
    padding-bottom: 180px;
}
.pb-185 {
    padding-bottom: 185px;
}
.pb-190 {
    padding-bottom: 190px;
}
.pb-195 {
    padding-bottom: 195px;
}
.pb-200 {
    padding-bottom: 200px;
}
/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-25 {
    padding-left: 25px;
}
.pl-30 {
    padding-left: 30px;
}
.pl-35 {
    padding-left: 35px;
}
.pl-40 {
    padding-left: 40px;
}
.pl-45 {
    padding-left: 45px;
}
.pl-50 {
    padding-left: 50px;
}
.pl-55 {
    padding-left: 55px;
}
.pl-60 {
    padding-left: 60px;
}
.pl-65 {
    padding-left: 65px;
}
.pl-70 {
    padding-left: 70px;
}
.pl-75 {
    padding-left: 75px;
}
.pl-80 {
    padding-left: 80px;
}
.pl-85 {
    padding-left: 85px;
}
.pl-90 {
    padding-left: 90px;
}
.pl-95 {
    padding-left: 95px;
}
.pl-100 {
    padding-left: 100px;
}
.pl-105 {
    padding-left: 105px;
}
.pl-110 {
    padding-left: 110px;
}
.pl-115 {
    padding-left: 115px;
}
.pl-120 {
    padding-left: 120px;
}
.pl-125 {
    padding-left: 125px;
}
.pl-130 {
    padding-left: 130px;
}
.pl-135 {
    padding-left: 135px;
}
.pl-140 {
    padding-left: 140px;
}
.pl-145 {
    padding-left: 145px;
}
.pl-150 {
    padding-left: 150px;
}
.pl-155 {
    padding-left: 155px;
}
.pl-160 {
    padding-left: 160px;
}
.pl-165 {
    padding-left: 165px;
}
.pl-170 {
    padding-left: 170px;
}
.pl-175 {
    padding-left: 175px;
}
.pl-180 {
    padding-left: 180px;
}
.pl-185 {
    padding-left: 185px;
}
.pl-190 {
    padding-left: 190px;
}
.pl-195 {
    padding-left: 195px;
}
.pl-200 {
    padding-left: 200px;
}
/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-25 {
    padding-right: 25px;
}
.pr-30 {
    padding-right: 30px;
}
.pr-35 {
    padding-right: 35px;
}
.pr-40 {
    padding-right: 40px;
}
.pr-45 {
    padding-right: 45px;
}
.pr-50 {
    padding-right: 50px;
}
.pr-55 {
    padding-right: 55px;
}
.pr-60 {
    padding-right: 60px;
}
.pr-65 {
    padding-right: 65px;
}
.pr-70 {
    padding-right: 70px;
}
.pr-75 {
    padding-right: 75px;
}
.pr-80 {
    padding-right: 80px;
}
.pr-85 {
    padding-right: 85px;
}
.pr-90 {
    padding-right: 90px;
}
.pr-95 {
    padding-right: 95px;
}
.pr-100 {
    padding-right: 100px;
}
.pr-105 {
    padding-right: 105px;
}
.pr-110 {
    padding-right: 110px;
}
.pr-115 {
    padding-right: 115px;
}
.pr-120 {
    padding-right: 120px;
}
.pr-125 {
    padding-right: 125px;
}
.pr-130 {
    padding-right: 130px;
}
.pr-135 {
    padding-right: 135px;
}
.pr-140 {
    padding-right: 140px;
}
.pr-145 {
    padding-right: 145px;
}
.pr-150 {
    padding-right: 150px;
}
.pr-155 {
    padding-right: 155px;
}
.pr-160 {
    padding-right: 160px;
}
.pr-165 {
    padding-right: 165px;
}
.pr-170 {
    padding-right: 170px;
}
.pr-175 {
    padding-right: 175px;
}
.pr-180 {
    padding-right: 180px;
}
.pr-185 {
    padding-right: 185px;
}
.pr-190 {
    padding-right: 190px;
}
.pr-195 {
    padding-right: 195px;
}
.pr-200 {
    padding-right: 200px;
}

/* Navigation css */
.main-menu {
    flex: 1;
}
.main-menu.navbar {
    position: static;
}
.main-menu__nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-menu__nav ul li {
    position: relative;
    padding: 8px 0;
}
.main-menu__nav ul li:not(:last-child) {
    margin-right: 45px;
}
@media (max-width: 1199px) {
    .main-menu__nav ul li:not(:last-child) {
        margin-right: 33px;
   }
}
.main-menu__nav ul li .submenu li {
    margin-right: 0 !important;
}
.main-menu__nav ul li a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #f8f9fa;
    position: relative;
}
.main-menu__nav ul li.menu-item-has-children > a::after {
    content: "\f142";
    font-size: 12px;
    font-family: "Font Awesome 5 Pro";
    transform: translateY(0px);
    display: inline-block;
    padding-left: 6px;
    font-weight: 400;
}
.main-menu__nav ul li:hover > a, .main-menu__nav ul li.active > a {
    color: var(--color-primary);
}
.main-menu__nav ul li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}
.main-menu__nav ul li .submenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    min-width: 215px;
    top: 115%;
    visibility: hidden;
    opacity: 0;
    background: var(--color-white);
    padding: 11px 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    z-index: 3;
    text-align: left;
    transform-origin: 50% 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    border-radius: 5px;
}
.main-menu__nav ul li .submenu li {
    padding: 0;
}
.main-menu__nav ul li .submenu li a {
    padding: 6px 25px;
}
.main-menu__nav ul li .submenu li:hover > a, .main-menu__nav ul li .submenu li.active > a {
    color: var(--color-primary);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.main-menu__nav ul li .submenu li.menu-item-has-children > a::after {
    position: absolute;
    top: 11px;
    right: 16px;
    line-height: 1;
    font-size: 13px;
    content: "\f105";
    letter-spacing: 1px;
}
.main-menu__nav ul li .submenu ul {
    left: 100%;
    top: 0px;
}
.main-menu__nav ul li.has-mega-menu {
    position: static;
}
.main-menu__nav ul li.has-mega-menu li {
    width: 100%;
}
.main-menu__nav ul li.has-mega-menu:hover > ul {
    top: 95%;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    transform: scaleY(100%);
}
.main-menu__nav ul li .mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    top: 100%;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    transform-origin: 50% 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}
.main-menu__nav ul li .mega-menu .mega-menu-content {
    max-width: 1335px;
    margin: 0 auto;
    padding: 30px;
    background: var(--color-white);
    padding-bottom: 0;
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e9ebe8;
}
.main-menu__nav ul li .mega-menu .mega-menu-content.mxw_1505 {
    max-width: 1505px;
}
.main-menu__nav ul li .mega-menu .mega-menu-content a {
    padding: 0;
}
.main-menu__nav ul li .mega-menu .mega-menu-content .col {
    margin-bottom: 30px;
}
.main-menu__nav ul li .mega-menu .mega-menu-content .demo-pic {
    border: 1px solid #e9ebe8;
    margin-bottom: 10px;
    position: relative;
    height: 300px;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .main-menu__nav ul li .mega-menu .mega-menu-content .demo-pic {
        height: 230px;
   }
}
.main-menu__nav ul li .mega-menu .mega-menu-content .demo-pic.coming-soon > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}
@media (max-width: 1199px) {
    .main-menu__nav ul li .mega-menu .mega-menu-content .demo-pic.coming-soon > span {
        font-size: 16px;
   }
}
.main-menu__nav ul li .mega-menu .mega-menu-content .demo-pic.coming-soon::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 12, 15, .8);
    content: "";
}
.main-menu__nav ul li .mega-menu h3 {
    font-size: 15px;
}
.main-menu ul li.menu-last ul.submenu {
    right: 0;
    left: auto;
}
.main-menu ul li.menu-last ul.submenu ul {
    right: auto;
    left: -100%;
}
.header__wrap.uk-active .main-menu__nav ul li.has-mega-menu:hover > ul {
    top: 91%;
}


.banner {
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .banner.pt-10 {
        padding-top: 0;
   }
}
.banner__main {
    width: calc(100% - 267px);
    position: relative;
    padding-left: 57px;
}
@media (max-width: 1200px) {
    .banner__main {
        padding-left: 30px;
   }
}
@media (max-width: 1199px) {
    .banner__main {
        width: 100%;
   }
}
@media (max-width: 767px) {
    .banner__main {
        padding: 50px 20px 0 20px;
   }
}
.banner__main .banner__ofer-box {
    top: 70px;
    left: 47%;
}
@media (max-width: 767px) {
    .banner__main .banner__ofer-box {
        left: auto;
   }
}
.banner__main .banner__ofer-box .offer-text {
    line-height: 17px;
}
.banner__main .banner__ofer-box .discount {
    font-size: 21px;
}
.banner__main .banner__ofer-box .discount > span {
    font-size: 12px;
}
.banner__height {
    min-height: 553px;
    background-color: #f7f7fd;
}
.banner__img {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .banner__img {
        max-width: 600px;
   }
}
@media (max-width: 991px) {
    .banner__img {
        max-width: 340px;
   }
}
@media (max-width: 767px) {
    .banner__img {
        position: inherit;
        margin-top: 23px;
        right: auto;
        left: 0;
   }
}
.banner__img-two {
    position: absolute;
    top: 50%;
    right: -100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .banner__img-two {
        right: -40px;
        max-width: 380px;
   }
}
@media (max-width: 991px) {
    .banner__img-two {
        position: unset;
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
   }
}
.banner__single {
    padding: 30px 45px;
    padding-top: 10px;
    padding-right: 30px;
    min-height: 350px;
    position: relative;
}
@media (max-width: 767px) {
    .banner__single {
        padding: 60px 25px;
   }
}
.banner__single .content {
    margin-top: 20px;
}
.banner__single .content > span {
    background-color: var(--color-primary);
    font-size: 12px;
    display: inline-block;
    font-weight: 600;
    color: var(--color-white);
    padding: 0 15px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    line-height: 26px;
}
.banner__single .content h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 12px;
}
.banner__single .content p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}
.banner__single .content a {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-heading);
    font-weight: 600;
}
.banner__single .content a i {
    padding-left: 6px;
}
.banner__single .content a:hover i::before {
    transform: translateX(170%);
}
.banner__single .content a i {
    font-size: 17px;
    line-height: 0;
    position: relative;
    overflow: hidden;
    text-shadow: -1.5em 0 0 currentColor;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.banner__single .content a i::before {
    transition: transform 0.4s;
    display: inline-block;
    line-height: 1;
}
.banner__single .thumb {
    margin-top: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner__single .thumb {
        max-width: 200px;
   }
}
@media (max-width: 1199px) {
    .banner__single .thumb {
        max-width: 200px;
   }
}
@media (max-width: 991px) {
    .banner__single .thumb {
        max-width: 300px;
   }
}
@media (max-width: 767px) {
    .banner__single .thumb {
        margin-top: 20px;
   }
}
.banner__single-offer {
    position: absolute;
    top: 14px;
    right: 220px;
}
@media (max-width: 1199px) {
    .banner__single-offer {
        right: 190px;
   }
}
@media (max-width: 767px) {
    .banner__single-offer {
        right: 5px;
   }
}
.banner__single-offer span {
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    line-height: 20px;
}
.banner__single-offer .offer {
    position: absolute;
    z-index: 1;
    top: 57%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 21px;
}
.banner__single-offer .offer span {
    font-size: 13px;
}
.banner__single.style-2 .banner__single-offer {
    top: auto;
    bottom: 20px;
    right: 270px;
}
@media (max-width: 1199px) {
    .banner__single.style-2 .banner__single-offer {
        right: 200px;
   }
}
@media (max-width: 767px) {
    .banner__single.style-2 .banner__single-offer {
        right: 5px;
        bottom: 100px;
        top: 5px;
        bottom: auto;
   }
}
.banner__single.style-2 .banner__single-offer span {
    color: var(--color-black);
}
.banner__style-2 {
    min-height: 732px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner__style-2 {
        min-height: 650px;
   }
}
@media (max-width: 1199px) {
    .banner__style-2 {
        min-height: 600px;
   }
}
.banner__style-2 > .shape {
    position: absolute;
    z-index: -1;
}
.banner__style-2 .shape1 {
    left: 0;
    top: 0;
}
.banner__style-2 .shape2 {
    left: 90px;
    bottom: 70px;
}
.banner__style-2 .banner__content {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}
.banner__style-2 .banner__content .subtitle {
    background-color: var(--color-primary-3);
}
.banner__style-2 .banner__content .title {
    color: var(--color-white);
    font-size: 44px;
}
@media (max-width: 767px) {
    .banner__style-2 .banner__content .title {
        font-size: 25px;
   }
}
.banner__style-2 .banner__content .price {
    color: var(--color-white);
}
.banner__style-2 .banner__content .price span {
    color: var(--color-primary-3);
}
.banner__style-3 {
    min-height: 732px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner__style-3 {
        min-height: 650px;
   }
}
@media (max-width: 1199px) {
    .banner__style-3 {
        min-height: 700px;
   }
}
@media (max-width: 991px) {
    .banner__style-3 {
        min-height: 1300px;
   }
}
.banner__style-3 .banner-wrap {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}
.banner__style-3 > .shape {
    position: absolute;
    z-index: -1;
}
.banner__style-3 .shape1 {
    left: 0;
    top: 0;
}
.banner__style-3 .shape2 {
    left: 90px;
    bottom: 70px;
}
.banner__content-wrap {
    padding-left: 45px;
}
@media (max-width: 991px) {
    .banner__content-wrap {
        padding-left: 0;
        margin-top: 30px;
   }
}
.banner__line-shape {
    position: absolute;
    left: 58%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 30px;
}
@media (max-width: 991px) {
    .banner__line-shape {
        display: none;
   }
}
.tx-banner .banner-01 {
    margin-right: 30px;
}
@media (max-width: 991px) {
    .tx-banner .banner-01 {
        margin-right: 15px;
   }
}
.add-banner {
    padding: 30px;
    position: relative;
}
.add-banner__h320 {
    height: 320px;
}
.add-banner__h440 {
    height: 440px;
}
.add-banner__h340 {
    height: 340px;
}
.add-banner__h460 {
    height: 460px;
}
.add-banner__h245 {
    height: 245px;
}
.add-banner__h450 {
    height: 450px;
}
.add-banner__h470 {
    height: 470px;
}
.add-banner__h475 {
    height: 475px;
}
.add-banner__h450 {
    height: 450px;
}
.add-banner__h444 {
    height: 444px;
}
.add-banner__h520 {
    height: 520px;
}
.add-banner__h555 {
    height: 555px;
}
.add-banner__h490 {
    height: 490px;
}
.add-banner__h530 {
    height: 530px;
}
.add-banner__h476 {
    height: 476px;
}
.add-banner__h407 {
    height: 407px;
}
.add-banner.p-30 {
    padding: 30px;
}
.add-banner > span, .add-banner__content > span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-red);
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.add-banner h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 35px;
}
.add-banner .upto-offer span {
    color: var(--color-red);
}
.add-banner .fw-500 {
    font-weight: 500;
}
.add-banner__2 > span {
    font-size: 12px;
    font-weight: 700;
    background-color: var(--color-primary);
    padding: 2px 18px;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 15px;
}
.add-banner__2 h2 {
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}
.add-banner__2 .thm-btn {
    font-size: 13px;
    padding: 12px 23px;
    padding-right: 40px;
}
.add-banner__2 .thm-btn i {
    right: 23px;
}
.add-banner__2 .upto-offer span {
    color: var(--color-primary);
}
.add-banner__text-box {
    position: absolute;
    top: 30%;
    right: 88px;
    font-size: 16px;
    font-weight: 700;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-direction: column;
    line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .add-banner__text-box {
        right: 40px;
   }
}
@media (max-width: 1199px) {
    .add-banner__text-box {
        right: 10px;
   }
}
.add-banner__text-box span {
    font-size: 14px;
    font-weight: 500;
    color: currentColor;
}
.add-banner__text-box--2 {
    width: 45px;
    height: 45px;
    font-size: 14px;
    top: 51%;
    right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .add-banner__text-box--2 {
        top: 43%;
        right: 14px;
   }
}
.add-banner__text-box--2 span {
    font-size: 12px;
}
.add-banner__3 {
    padding: 40px;
}
.add-banner__3 span {
    font-size: 14px;
    color: var(--color-primary);
    display: inline-block;
}
.add-banner__3 h3 {
    font-size: 20px;
    color: var(--color-black);
    line-height: 31px;
    font-weight: 600;
    margin-bottom: 10px;
}
.add-banner__3 .price {
    font-size: 19px;
    display: block;
    margin-bottom: 30px;
}
.add-banner__3 .upto-offer span {
    color: var(--color-primary);
}
.add-banner__btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
}
.add-banner.fd-column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.add-banner__3.fd-column {
    align-items: inherit;
}
.add-banner__img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.add-banner__4 {
    padding-top: 65px;
}
.add-banner__4 > span {
    color: var(--color-primary);
    margin-bottom: 10px;
}
.add-banner__4 h3 {
    font-size: 20px;
    color: var(--color-white);
    line-height: 33px;
    margin-bottom: 24px;
}
.add-banner__4 .price {
    display: block;
    font-size: 26px;
    color: var(--color-primary);
}
.add-banner.br-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .add-banner__wrap.mr-70 {
        margin-right: 50px;
   }
}
@media (max-width: 1199px) {
    .add-banner__wrap.mr-70 {
        margin-right: 0;
   }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .add-banner__wrap.ml-70 {
        margin-left: 50px;
   }
}
@media (max-width: 1199px) {
    .add-banner__wrap.ml-70 {
        margin-left: 0;
   }
}
@media (max-width: 1199px) {
    .add-banner__wrap.pr-90 {
        padding-right: 0;
   }
}
@media (max-width: 991px) {
    .add-banner__wrap {
        margin-left: 0 !important;
   }
}
.add__wrap {
    padding: 10px 0;
}
.add__text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.add__text > span {
    background-color: var(--color-white);
    padding: 4px 45px;
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    border: 1px solid #dcdcdc;
    font-size: 16px;
    color: var(--color-black);
}
.add__text > span span {
    color: var(--color-primary);
}
.offer-banner__item {
    height: 185px;
    padding: 20px 45px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.offer-banner__content span {
    color: var(--color-orange);
    font-size: 13px;
    display: inline-block;
    text-transform: uppercase;
}
.offer-banner__content h3 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.offer-banner__content .price {
    font-size: 14px;
    margin-bottom: 14px;
}
.offer-banner__content .price span {
    font-size: 16px;
    color: var(--color-orange);
    margin-left: 4px;
}
.offer-banner__content a {
    color: var(--color-black);
    font-weight: 600;
}
.offer-banner__side {
    background-color: #f5f5f5;
    min-height: 492px;
    padding: 40px 20px 30px;
}
.offer-banner__side span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-red);
    display: inline-block;
}
.offer-banner__side h3 {
    font-size: 20px;
    line-height: 33px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.offer-banner__side h4 {
    font-size: 26px;
    color: #ff8717;
    margin-bottom: 20px;
}
.offer-banner__img {
    max-width: 220px;
    position: relative;
    margin: auto;
    margin-top: 30px;
}
.vd-offer-banner__item {
    padding: 20px 30px;
    position: relative;
    min-height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
}
.vd-offer-banner__item.style-2 .vd-offer-banner__content h2 {
    text-transform: capitalize;
    color: var(--color-black);
    font-size: 18px;
}
.vd-offer-banner__item.style-2 .vd-offer-banner__content .product__price span {
    font-size: 16px;
}
.vd-offer-banner__item.style-2 .vd-offer-banner__content .product__price .old {
    color: #808080;
}
.vd-offer-banner__item.style-2 .vd-offer-banner__img {
    right: 0;
}
.vd-offer-banner__content {
    width: 70%;
}
.vd-offer-banner__content span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 500;
}
.vd-offer-banner__content h2 {
    font-size: 18px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.vd-offer-banner__content h3 {
    font-size: 14px;
    color: var(--color-white);
}
.vd-offer-banner__content h3 span {
    color: var(--color-primary);
    font-size: 16px;
    padding-left: 2px;
}
.vd-offer-banner__content a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
}
.vd-offer-banner__img {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .vd-offer-banner__img {
        max-width: 150px;
   }
}
@media (max-width: 991px) {
    .vd-offer-banner__img {
        max-width: 120px;
        right: 0;
   }
}
.vd-banner__single {
    min-height: 185px;
    padding: 20px 40px;
}
@media (max-width: 1199px) {
    .vd-banner__single {
        padding: 25px;
   }
}
.vd-banner__single .thumb {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
}
@media (max-width: 767px) {
    .vd-banner__single .thumb {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
   }
}
.vd-banner__single h2 {
    font-size: 20px;
    margin-bottom: 5px;
}
.vd-banner__single p {
    color: #949392;
}
@media (max-width: 1199px) {
    .vd-banner__single .thumb {
        max-width: 200px;
   }
}
@media (max-width: 767px) {
    .vd-banner__single .thumb {
        margin-top: 30px;
   }
}
.vd-banner__offer {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-red);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    right: 36%;
    bottom: 34px;
}
@media (max-width: 767px) {
    .vd-banner__offer {
        right: 20px;
        bottom: 40px;
   }
}
.vd-banner__offer span {
    color: var(--color-white);
    line-height: 1;
}
.vd-banner__single-two p {
    color: var(--color-primary);
}
.vd-banner__single-two .thumb {
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    .vd-banner__single-two .thumb {
        max-width: 140px;
   }
}
.vd-banner__single-two .thumb::before {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "";
    background-color: var(--color-white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 138px;
    height: 138px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.42;
}
.vd-banner__single-two .vd-banner__offer {
    background-color: var(--color-primary);
    top: 40px;
    bottom: auto;
}
@media (max-width: 767px) {
    .vd-banner__single-two .vd-banner__offer {
        top: auto;
        bottom: 40px;
        right: 20px;
   }
}
.vdx-banner__single {
    padding: 10px 30px;
    padding-right: 20px;
    min-height: 200px;
    position: relative;
}
@media (max-width: 991px) {
    .vdx-banner__single {
        min-height: 150px;
   }
}
.vdx-banner__content > span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 5px;
}
.vdx-banner__content h3 {
    font-size: 20px;
    text-transform: capitalize;
}
@media (max-width: 767px) {
    .vdx-banner__content h3 {
        font-size: 18px;
   }
}
.vdx-banner__content h3 span {
    color: var(--color-primary);
}
.vdx-banner__img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .vdx-banner__img {
        max-width: 180px;
   }
}
@media (max-width: 1199px) {
    .vdx-banner__img {
        max-width: 120px;
   }
}
@media (max-width: 991px) {
    .vdx-banner__img {
        max-width: 100px;
   }
}
.vdx-banner__single-one .vdx-banner__img {
    bottom: 0;
}
.vdx-banner__single-two .vdx-banner__content h3 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .vdx-banner__single-two .vdx-banner__content h3 {
        font-size: 15px;
   }
}
.vdx-banner__single-two .vdx-banner__img {
    right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .vdx-banner__single-two .vdx-banner__img {
        max-width: 250px;
   }
}
@media (max-width: 1199px) {
    .vdx-banner__single-two .vdx-banner__img {
        max-width: 180px;
        right: 0;
   }
}
@media (max-width: 991px) {
    .vdx-banner__single-two .vdx-banner__img {
        max-width: 100px;
   }
}
.rd-banner {
    position: relative;
    min-height: 456px;
    padding: 50px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
@media (max-width: 767px) {
    .rd-banner {
        padding: 30px;
   }
}
.rd-banner__content > span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 5px;
    display: inline-block;
}
.rd-banner__content h3 {
    font-size: 25px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 33px;
    margin-bottom: 20px;
}
.rd-banner__content p {
    font-size: 14px;
    color: #949392;
    font-weight: 600;
}
.rd-banner__content .upto-offer span {
    color: var(--color-red);
}
.rd-banner__content .price {
    margin-left: 40px;
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 500;
}
.rd-banner__img {
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 767px) {
    .rd-banner__img {
        position: unset;
        margin-top: 30px;
   }
}
.vd-banner__item {
    min-height: 194px;
    padding-left: 35px;
    position: relative;
}
@media (max-width: 767px) {
    .vd-banner__item {
        padding: 30px;
   }
}
.vd-banner__item .content > span {
    color: var(--color-primary);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.vd-banner__item .content h2 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.vd-banner__item .content h3 {
    font-size: 14px;
    color: var(--color-white);
}
.vd-banner__item .content h3 span {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
}
.vd-banner__item .content a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}
.vd-banner__item .image {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .vd-banner__item .image {
        right: 0;
        max-width: 150px;
   }
}
@media (max-width: 767px) {
    .vd-banner__item .image {
        position: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        margin-top: 20px;
   }
}
.vd-banner__offer-box {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    background-color: var(--color-primary);
    color: var(--color-white);
    right: 44%;
    bottom: 34px;
}
.vd-banner__offer-box span {
    font-size: 12px;
    color: currentColor;
}
.vd-banner__item-two .content > span {
    color: var(--color-red);
}
.vd-banner__item-two .content h2 {
    font-size: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .vd-banner__item-two .content h2 {
        font-size: 16px;
   }
}
.banner__wrap {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    min-height: 456px;
    padding: 30px 58px;
    position: relative;
}
@media (max-width: 991px) {
    .banner__wrap {
        padding: 30px 25px;
   }
}
.banner__wrap .banner-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30%;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner__wrap .banner-img {
        right: 24%;
   }
}
@media (max-width: 1199px) {
    .banner__wrap .banner-img {
        right: 23%;
        max-width: 300px;
   }
}
@media (max-width: 991px) {
    .banner__wrap .banner-img {
        max-width: 200px;
   }
}
@media (max-width: 767px) {
    .banner__wrap .banner-img {
        position: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
   }
}
.banner__wrap .banner-offer-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner__wrap .banner-offer-text {
        right: 0;
   }
}
@media (max-width: 1199px) {
    .banner__wrap .banner-offer-text {
        max-width: 200px;
        right: 0;
   }
}
@media (max-width: 991px) {
    .banner__wrap .banner-offer-text {
        top: auto;
        bottom: 0;
   }
}
@media (max-width: 767px) {
    .banner__wrap .banner-offer-text {
        position: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
   }
}
@media (max-width: 767px) {
    .banner__content {
        margin-bottom: 50px;
   }
}
.banner__content > span {
    color: var(--color-white);
    background-color: var(--color-primary);
    display: inline-block;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 14px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.banner__content h3 {
    color: var(--color-white);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .banner__content h3 {
        font-size: 30px;
   }
}
.banner__content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 22px;
}
.banner__content a {
    color: var(--color-white);
    font-size: 16px;
}
.banner__content a:hover {
    color: var(--color-white);
}
.banner__ofer-box {
    position: absolute;
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
    top: 55px;
    left: 34%;
}
@media (max-width: 767px) {
    .banner__ofer-box {
        left: auto;
        right: 2px;
   }
}
.banner__ofer-box::before {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--color-white);
    opacity: 0.31;
    content: "";
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 69px;
    height: 69px;
    animation: spin 12s infinite linear;
    -webkit-animation: spin 12s infinite linear;
}
.banner__ofer-box .offer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 20px;
}
.banner__ofer-box .offer-text span {
    font-size: 12px;
}
.banner__ofer-box span {
    color: currentColor;
}
.hero-banner__content .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    display: inline-block;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-banner__content .title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 17px;
}
@media (max-width: 1200px) {
    .hero-banner__content .title {
        font-size: 35px;
   }
}
@media (max-width: 767px) {
    .hero-banner__content .title {
        font-size: 25px;
   }
}
.hero-banner__content .content {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
    color: #949392;
    margin-bottom: 15px;
}
.hero-banner__content .price {
    font-size: 29px;
}
.hero-banner__content .price span {
    font-size: 33px;
    color: #ff6d1b;
}
.banner-product__item {
    padding: 20px 15px;
}
.banner-product__img {
    width: 150px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner-product__img {
        width: 110px;
        margin-right: 10px;
   }
}
@media (max-width: 1199px) {
    .banner-product__img {
        width: 100%;
        margin-right: 0;
   }
}
.banner-product__content {
    width: calc(100% - 180px);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .banner-product__content {
        width: calc(100% - 120px);
   }
}
@media (max-width: 1199px) {
    .banner-product__content {
        width: 100%;
        margin-top: 10px;
        text-align: center;
   }
}
@media (max-width: 1199px) {
    .banner-product__content .upto-offer {
        justify-content: center;
   }
}
.banner-product__content h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 13px;
    color: var(--color-black);
    font-weight: 400;
}
.banner-product__content h2 span {
    font-weight: 600;
    color: currentColor;
}
.banner-product__content a {
    color: var(--color-black);
    font-size: 12px;
}
.banner-product__content a i {
    color: var(--color-primary);
    padding-left: 4px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.banner-product__content a:hover i {
    padding-left: 6px;
}

.category-nav {
    position: relative;
    width: 243px;
    margin-right: 24px;
}
@media (max-width: 1199px) {
    .category-nav {
        display: none;
   }
}
.category-nav__list {
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.05);
    width: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 10px 0;
    padding-bottom: 13px;
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: calc(100% + 14px);
}
.category-nav__list li {
    position: relative;
    padding: 0 15px;
}
.category-nav__list li a {
    color: var(--color-default);
    font-size: 14px;
    padding: 10px 0;
    display: block;
}
.category-nav__list li a img {
    margin-right: 15px;
    width: 22px;
}
.category-nav__list li:hover > ul {
    left: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
.category-nav > ul ul {
    list-style: none;
}
.category-nav > ul ul li a {
    padding: 5px 0;
}
.category-nav > ul > li:hover > ul {
    left: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
.category-nav ul > li > a {
    position: relative;
}
.category-nav li.menu-item-has-children > a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    font-size: calc-rem-value(8);
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.category-nav li.menu-item-has-children.open > a:before {
    transform: rotate(90deg);
}
.category__slide .slick-arrow {
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #103178;
    font-size: 16px;
    cursor: pointer;
}
.category__slide .slick-arrow.slick-next {
    left: auto;
    right: -20px;
}
.category__item {
    margin: 0 15px;
}
.category__icon {
    width: 40px;
    height: 40px;
    margin: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.category__item:hover .category__icon {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}
.category__title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #55595e;
}
.vertical-menu-list {
    position: absolute;
    top: 56px;
    left: 0;
    z-index: 3;
    overflow: hidden;
}


.banner-slide__active {
    margin: -15px;
}
.banner-slide__active .slick-arrow {
    position: absolute;
    top: 50%;
    left: -30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #beb9b9;
    font-size: 18px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}
.banner-slide__active .slick-arrow:hover {
    color: #121416;
}
.banner-slide__active .slick-arrow.slick-next {
    left: auto;
    right: -30px;
}
.banner-slide__single {
    margin: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.banner-slide__item {
    min-height: 172px;
    padding: 15px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: #f1f1f5;
}
.banner-slide__img {
    width: 40%;
    margin-right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide__content {
    width: calc(100% - 45%);
}
.banner-slide__content .offer {
    font-size: 13px;
    color: var(--color-primary);
    font-family: var(--color-dosis);
    font-weight: 700;
    text-transform: uppercase;
}
.banner-slide__content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #121416;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.banner-slide__content .price {
    font-size: 14px;
    color: #131f35;
    font-weight: 400;
    margin-bottom: 13px;
}
.banner-slide__content .price span {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    margin-left: 4px;
}
.banner-slide__content a {
    color: var(--color-black);
    font-weight: 600;
}


.side-product__slide .owl-nav {
    position: absolute;
    top: -45px;
    right: 0;
    display: flex;
}
.side-product__slide .owl-nav div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: #d3caca;
    font-size: 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.side-product__slide .owl-nav div:hover {
    color: #615f5d;
}
.side-product__slide .owl-nav div.owl-next {
    margin-left: 20px;
}
.side-product__item {
    min-height: 145px;
    padding: 20px;
    position: relative;
}
.side-product__item:not(:last-child) {
    margin-bottom: 17px;
}
.side-product__content {
    width: 60%;
    margin-right: 5%;
}
.side-product__content .rating i {
    color: #ffc107;
    font-size: 10px;
}
.side-product__content .rating i:not(:last-child) {
    margin-right: 3px;
}
.side-product__content .rating i .fas {
    color: #d8d8d8;
}
.side-product__content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.side-product__content .price {
    font-weight: 600;
}
.side-product__content .price .new {
    color: var(--color-red);
}
.side-product__content .price .old {
    color: #8d8585;
    margin-left: 8px;
    text-decoration: line-through;
}
.side-product__img {
    text-align: right;
    width: calc(100% - 65%);
}
.side-product__img img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.side-product__item:hover .side-product__img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.side-product__offer {
    position: absolute;
    bottom: 30px;
    right: 90px;
    width: 38px;
    height: 38px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
    color: var(--color-white);
}
.side-product__offer span {
    color: currentColor;
    font-size: 10px;
}
.side-product__slide-item .side-product__item:nth-child(even) {
    flex-direction: row-reverse;
}
.side-product__slide-item .side-product__item:nth-child(even) .side-product__content {
    margin-right: 0;
    margin-left: 5%;
}
.side-product__slide-item .side-product__item:nth-child(even) .side-product__offer {
    left: 21px;
    bottom: 24px;
}
.side-product__slide-item .side-product__item:nth-child(3) .side-product__offer {
    background-color: #ffb801;
}
.vd-products {
    padding: 0 1px;
}
.product__nav {
    justify-content: flex-end;
    border: 0;
}
@media (max-width: 767px) {
    .product__nav {
        margin-top: 30px;
        justify-content: flex-start;
   }
}
.product__nav.rd-tab-nav {
    margin-right: 20%;
}
@media (max-width: 1199px) {
    .product__nav.rd-tab-nav {
        margin-right: 60px;
   }
}
@media (max-width: 991px) {
    .product__nav.rd-tab-nav {
        margin-top: 30px;
   }
}
.product__nav .nav-item:not(:last-child) {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .product__nav .nav-item:not(:last-child) {
        margin-right: 25px;
   }
}
@media (max-width: 991px) {
    .product__nav .nav-item:not(:last-child) {
        margin-right: 20px;
   }
}
.product__nav .nav-item .nav-link {
    font-size: 18px;
    color: #707070;
    padding: 0;
    border: 0;
    position: relative;
    font-family: var(--font-dosis);
    font-weight: 500;
    border-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1px 19px 4px;
}
@media (max-width: 767px) {
    .product__nav .nav-item .nav-link {
        font-size: 16px;
   }
}
.product__nav .nav-item .nav-link.active {
    background-color: var(--color-primary);
    color: #121416;
}
.product__nav.style-2 .nav-item:not(:last-child) {
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .product__nav.style-2 .nav-item:not(:last-child) {
        margin-right: 25px;
   }
}
@media (max-width: 991px) {
    .product__nav.style-2 .nav-item:not(:last-child) {
        margin-right: 20px;
   }
}
.product__nav.style-2 .nav-item .nav-link {
    font-size: 16px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 1px 19px 4px;
    padding: 0;
}
.product__nav.style-2 .nav-item .nav-link.active {
    background-color: transparent;
    color: var(--color-primary);
}
.product__nav-wrap {
    border-bottom: 1px solid var(--color-border);
    margin-top: -30px;
}
.product__nav-wrap .section-heading {
    border: 0;
    padding-bottom: 0;
    margin-top: 30px;
}
.product__nav-wrap .section-heading span:before {
    bottom: -7px;
}
.product__nav-wrap .product__nav {
    margin-top: 30px;
}
.product__nav-wrap.style-2 {
    padding-bottom: 8px;
}
.product__nav-wrap.style-2 .section-heading span:before {
    bottom: -12px;
}
.product__nav-wrap.style-3 .nav-item .nav-link {
    background-color: transparent;
    position: relative;
    z-index: 1;
}
.product__nav-wrap.style-3 .nav-item .nav-link::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    content: "";
    z-index: -1;
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    opacity: 0;
}
.product__nav-wrap.style-3 .nav-item .nav-link.active {
    color: var(--color-white);
}
.product__nav-wrap.style-3 .nav-item .nav-link.active::before {
    opacity: 1;
}
.product__item {
    padding: 33px 17px;
    position: relative;
    text-align: center;
    border-right: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    margin-top: -1px;
}
.product__item .badge-skew {
    top: 20px;
    left: 18px;
}
.product__item.style-2 {
    border: 1px solid var(--color-border);
    margin-top: -1px;
    margin-right: -1px;
    text-align: left;
    padding: 25px 17px;
}
.product__item.style-3 {
    border: 0;
    border-right: 1px solid var(--color-border);
    margin: 0;
    padding: 25px 17px 0;
}
.product__item.style-3 .product__img {
    padding-top: 20px;
    padding-bottom: 10px;
    height: 230px;
}
.product__item.style-3 .product__title {
    margin-bottom: 7px;
}
.product__review {
    margin-bottom: 4px;
}
.product__review > span {
    color: #98928e;
    font-size: 12px;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}
.product__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
    height: 60px;
    overflow: hidden;
}
.product__title a {
    color: #121416;
}
.product__img {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 190px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__img img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.product__img-h188 {
    height: 188px;
}
.product__item:hover .product__img img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.product__available {
    font-size: 13px;
    color: #9695a0;
    display: inline-block;
    margin-bottom: 2px;
}
.product__available span {
    color: var(--color-black);
    font-weight: 500;
}
.product__progress {
    height: 5px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 13px;
}
.product__progress .progress-bar {
    background-color: #63b820;
}
.product__progress.color-primary .progress-bar {
    background-color: var(--color-primary);
}
.product__progress.h-8 {
    height: 8px;
}
.product__progress.h-10 {
    height: 10px;
}
.product__progress.h-16 {
    height: 16px;
}
.product__progress.mb-0 {
    margin-bottom: 0;
}
.product__progress.mb-10 {
    margin-bottom: 10px;
}
.product__progress.mb-6 {
    margin-bottom: 6px;
}
.product__progress.mt-2 {
    margin-top: 2px !important;
}
.product__price {
    font-size: 14px;
}
.product__price span {
    display: inline-block;
}
.product__price .new {
    color: #e51a1a;
    font-weight: 500;
}
.product__price .old {
    color: #999797;
    text-decoration: line-through;
    margin-left: 10px;
}
.product__price .off {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 1px 8px;
    margin-left: 15px;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}
.product__wishlist {
    position: absolute;
    top: 14px;
    right: 17px;
    border: 1px solid #f2f2f2;
    background-color: var(--color-white);
    width: 40px;
    height: 40px;
    color: #121416;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.product__wishlist:hover {
    color: var(--color-white);
    background-color: #02d8f5;
    border-color: #02d8f5;
}
.product__action {
    position: absolute;
    right: 15px;
    top: 10px;
    list-style: none;
}
.product__action li {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.product__action li:not(:last-child) {
    margin-bottom: 15px;
}
.product__action li:nth-child(2) {
    transition-delay: 0.1s;
}
.product__action li:nth-child(3) {
    transition-delay: 0.2s;
}
.product__action li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #ededed;
    background-color: var(--color-white);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #949392;
}
.product__action li a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.product__action.br-5 li a {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.product__action.style-2 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    justify-content: center;
}
.product__action.style-2 li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 13px;
}
.product__action.style-2 li:nth-child(2) {
    transition-delay: 0.1s;
}
.product__action.style-2 li:nth-child(3) {
    transition-delay: 0.2s;
}
.product__item:hover .product__action li {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.product__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.product__badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-white);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
    top: 2px;
    left: 4px;
    position: relative;
    text-transform: uppercase;
}
.product__badge::before {
    position: absolute;
    top: 0;
    left: 0;
    border-top: 28px solid var(--color-primary);
    border-right: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 28px solid var(--color-primary);
    content: "";
    z-index: -1;
}
.product__action-wrap {
    position: absolute;
    top: 13px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product__action-wrap .plus-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, );
    color: var(--color-primary);
    font-size: 15px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.product__action2 {
    margin-top: 15px;
    list-style: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}
.product__action2 li:not(:last-child) {
    margin-bottom: 12px;
    font-size: 14px;
}
.product__action2 li a {
    color: #393939;
}
.product__item:hover .product__action2 {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.product__item:hover .plus-icon {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.product__slider-wrap {
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 25px 20px;
    padding-bottom: 45px;
}
.product__slider-wrap.bg-white {
    background-color: var(--color-white);
}
.product__slider-wrap .image {
    position: relative;
    max-width: 230px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.product__slider-wrap.pb-50 {
    padding-bottom: 50px;
}
.product__slider .offer {
    position: absolute;
    top: 60px;
    right: 15px;
    width: 38px;
    height: 38px;
    background-color: var(--color-red);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
    color: var(--color-white);
}
.product__slider .offer span {
    color: currentColor;
    font-size: 10px;
}
.product__slider-img {
    position: relative;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 170px;
    margin: auto;
    margin-bottom: auto;
    margin-bottom: 20px;
}
.product__slider-content {
    padding: 0 7px;
}
.product__slider-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.product__slider-content h3 a {
    color: currentColor;
}
.vd-tab-nav .nav-item:not(:last-child) {
    margin-right: 50px;
}
@media (max-width: 991px) {
    .vd-tab-nav .nav-item:not(:last-child) {
        margin-right: 20px;
   }
}
.vd-tab-nav .nav-item .nav-link {
    font-size: 15px;
}
.tx-arrow .slick-arrow {
    position: absolute;
    top: -46px;
    right: 0;
    cursor: pointer;
    color: #d3caca;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tx-arrow .slick-arrow:hover {
    color: #615f5d;
}
.tx-arrow .slick-arrow.slick-prev {
    margin-right: 20px;
}
.rating-star li:not(:last-child) {
    margin-right: 4px;
}
.rating-star li i {
    color: #ffc107;
    font-size: 10px;
}
.rating-star li i.far {
    color: #d8d8d8;
}
.rating-star.color-2 li:not(:last-child) {
    margin-right: 4px;
}
.rating-star.color-2 li i {
    color: var(--color-primary-3);
}
.product-category {
    padding: 40px 28px 50px 40px;
    background-color: #f8f7f5;
    background-size: cover;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .product-category {
        padding: 30px 25px;
   }
}
@media (max-width: 1199px) {
    .product-category {
        padding: 40px 20px 50px 20px;
   }
}
.product-category__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 46px;
}
.product-category ul li {
    position: relative;
}
.product-category ul li:not(:last-child) {
    margin-bottom: 32px;
}
.product-category ul li a {
    font-size: 17px;
    color: #232638;
    display: block;
}
@media (max-width: 1199px) {
    .product-category ul li a {
        font-size: 15px;
   }
}
.product-category ul li a:hover {
    color: var(--color-primary);
}
.product-category ul li a img {
    width: 25px;
    margin-right: 30px;
}
@media (max-width: 1199px) {
    .product-category ul li a img {
        margin-right: 15px;
   }
}
.product-category ul li.more-item a {
    text-align: center;
    color: var(--color-primary);
}
.product-category ul li.cat-item-has-children a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    font-size: calc-rem-value(8);
    position: absolute;
    right: 0px;
    top: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.product-category__two {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 35px 40px 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .product-category__two {
        padding: 35px 25px 40px;
   }
}
@media (max-width: 1199px) {
    .product-category__two {
        padding: 30px 20px;
   }
}
@media (max-width: 991px) {
    .product-category__two {
        margin-right: 0;
   }
}
.product-category__two ul li {
    position: relative;
}
.product-category__two ul li:not(:last-child) {
    margin-bottom: 32px;
}
.product-category__two ul li a {
    font-size: 16px;
    color: #232638;
    display: block;
}
.product-category__two ul li a:hover {
    color: var(--color-primary);
}
.product-category__two ul li.cat-item-has-children a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    font-size: calc-rem-value(8);
    position: absolute;
    right: 0px;
    top: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tx-products {
    margin-right: -60px;
}
@media (max-width: 991px) {
    .tx-products {
        margin-right: 0;
   }
}
.tx-product-style-02 {
    padding: 20px 25px;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
@media (max-width: 767px) {
    .tx-product-style-02 {
        padding: 20px 15px;
   }
}
.countdown .single {
    text-align: center;
}
.countdown .single:not(:last-child) {
    margin-right: 17px;
}
.countdown .single h1 {
    font-size: 11px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
}
.countdown .single p {
    font-size: 11px;
    font-weight: 500;
    color: #929292;
    text-transform: uppercase;
}
.countdown.style-2 .single h1 {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-border);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.countdown.style-2 .single h1:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}
.countdown.style-3 .single h1 {
    background-color: transparent;
    border: 1px solid var(--color-border);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.countdown.style-3 .single:hover h1 {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.countdown__black .single h1 {
    background-color: var(--color-black);
}
.mr-none-15 {
    margin-right: -15px;
}
.feature-product__single {
    padding: 20px 13px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.feature-product__product {
    margin-bottom: 9px;
}
.feature-product__product .image {
    width: 70px;
    margin-right: 15px;
}
.feature-product__product .content {
    width: calc(100% - 85px);
}
.feature-product__product .title {
    font-size: 13px;
    margin-bottom: 5px;
}
.feature-product__product .title a {
    color: currentColor;
}
.feature-product__single2 {
    border: 1px solid var(--color-border);
    padding: 20px;
}
.feature-product__single2 .title {
    font-size: 18px;
    margin-bottom: 6px;
}
.feature-product__single2 .title a {
    color: currentColor;
}
.myslide_img {
    height: 56.60%;
}
.myslide_img > img {
    aspect-ratio: 546/441;
    height: 100%;
}
.tx-sidebar {
    padding-left: 65px;
}
@media (max-width: 1199px) {
    .tx-sidebar {
        padding-left: 20px;
   }
}
@media (max-width: 991px) {
    .tx-sidebar {
        padding-left: 0;
   }
}
.tx-widget {
    padding: 20px;
    border: 1px solid var(--color-border);
}
.tx-widget__product-item:not(:last-child) {
    margin-bottom: 26px;
}
.tx-widget__product-item .thumb {
    width: 60px;
    margin-right: 20px;
}
.tx-widget__product-item .content {
    width: calc(100% - 80px);
}
.tx-widget__product-item .content h3 {
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    margin-bottom: 7px;
}
.tx-widget__product-item .content h3 a {
    color: currentColor;
}
.tx-widget__product-item.style-2:not(:last-child) {
    margin-bottom: 45px;
}
@media (max-width: 1199px) {
    .tx-widget__wrap.pr-90 {
        padding-right: 0;
   }
}
.tx-product .thumb img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tx-product:hover .thumb img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.feedback__slider-nav .slick-arrow {
    display: flex;
}
.feedback__content-item {
    text-align: center;
}
.feedback__img {
    width: 44px;
    height: 44px;
}
.tx-tab-product-wrap {
    position: relative;
    padding-top: 80px;
}
.tx-tab-product-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 23%);
    z-index: -1;
    background: url(../img/bg/bg.jpg) no-repeat;
    background-size: auto;
    background-size: auto;
    background-size: cover;
    content: "";
}
.tx-tab-product {
    padding: 25px 23px;
    background-color: var(--color-white);
}
.tab-product-col {
    padding-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tab-product-col {
        padding-right: 15px;
   }
}
@media (max-width: 1199px) {
    .tab-product-col {
        padding-right: 15px;
   }
}
.cat-product__wrap {
    padding: 30px;
    padding-top: 15px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.cat-product__slide {
    margin: -15px;
}
.cat-product__slide .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -36px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    cursor: pointer;
}
.cat-product__slide .slick-arrow.slick-next {
    left: auto;
    right: -36px;
}
.cat-product__item {
    background-color: #f0f4fa;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 60px 20px 40px;
    position: relative;
    margin: 15px;
}
.cat-product__item.bg2 {
    background-color: #fcf2e7;
}
.cat-product__item.bg3 {
    background-color: #edf3ff;
}
.cat-product__item.bg4 {
    background-color: #e5efe8;
}
.cat-product__item.bg5 {
    background-color: #f6f6f6;
}
.cat-product__item .thumb {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
}
.cat-product__item .content .title {
    font-size: 18px;
}
.cat-product__item .content .title a {
    color: currentColor;
}
.cat-product__item .content span {
    color: var(--color-red);
    font-size: 14px;
    font-weight: 500;
}
.cat-product__item .product__action {
    top: 45%;
}
.tab-product__slide {
    padding-top: 30px;
    padding-bottom: 30px;
}
.tab-product__item {
    padding: 30px 20px 0;
    position: relative;
}
.tab-product__item::before {
    top: 0;
    right: 0;
    width: 1px;
    content: "";
    height: 100%;
    position: absolute;
    background-color: var(--color-border);
}
@media (max-width: 767px) {
    .tab-product__item::before {
        display: none;
   }
}
.tab-product__item .thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    position: relative;
}
.tab-product__item .content .title {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 3px;
    font-weight: 500;
    height: 60px;
}
.tab-product__item .content .title a {
    color: currentColor;
}
.tab-product__item .badge-skew {
    top: 0;
}
.tab-product__item .price {
    color: var(--color-red);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.tab-product__item .price .old-price {
    color: #929397;
    text-decoration: line-through;
}
.tab-product__slide2 .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -23px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    cursor: pointer;
}
.tab-product__slide2 .slick-arrow.slick-next {
    left: auto;
    right: -23px;
}
.badge-default {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 12px 4px;
    font-size: 11px;
    font-weight: 600;
    background-color: var(--color-primary);
    display: inline-block;
    line-height: 1;
    color: var(--color-white);
    border-radius: 26px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
    text-transform: uppercase;
}
.badge-skew {
    font-size: 11px;
    font-weight: 600;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    left: 14px;
    z-index: 1;
    padding: 4px 12px 5px;
    display: inline-block;
    line-height: 1;
    color: var(--color-white);
}
.badge-skew::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transform: skew(-10deg);
    -ms-transform: skew(-10deg);
    transform: skew(-10deg);
}
.badge-skew.color2::before {
    background-color: #004c71;
}
.badge-skew.color3::before {
    background-color: #e707a6;
}
.badge-skew.color4::before {
    background-color: #2296d5;
}
.badge-skew.color5::before {
    background-color: #93b200;
}
.badge-skew.color6::before {
    background-color: var(--color-primary-3);
}
.tx-product__item {
    position: relative;
}
.tx-product__item .thumb {
    background-color: #f6f6f6;
    height: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tx-product__item .content {
    padding: 20px 15px;
    border: 1px solid var(--color-border);
    border-top: 0;
}
.tx-product__item .content h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 23px;
}
.tx-product__item .content h2 a {
    color: currentColor;
}
.tx-product__item .badge {
    position: absolute;
    top: 12px;
    left: 7px;
}
.tx-product__item .badge span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 500;
}
.tx-product__item .product__action li a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.tx-product__item:hover .product__action li {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.tx-product:hover .product__action li {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.trending-product {
    padding: 25px;
    border: 1px solid var(--color-border);
}
.tx-offer-product {
    padding: 30px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 2px solid var(--color-primary-3);
}
@media (max-width: 767px) {
    .tx-offer-product {
        padding: 25px 15px;
   }
}
@media (max-width: 767px) {
    .offer-product {
        margin-left: 0;
   }
}
.tab_has_slider > .tab-pane {
    height: 0;
    display: block;
    visibility: hidden;
}
.tab_has_slider > .tab-pane.show, .tab_has_slider > .tab-pane.active {
    height: auto;
    visibility: visible;
}
.vd-product-slide-wrap {
    padding: 40px 0;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary-3);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.vd-product-slide-wrap.style-2 {
    border-color: var(--color-primary);
}
.recent-product__nav .nav-item:not(:last-child) {
    margin-right: 45px;
}
.recent-product__nav .nav-item .nav-link {
    font-size: 16px;
    padding: 0;
}
.recent-product__nav .nav-item .nav-link::before, .recent-product__nav .nav-item .nav-link::after {
    display: none;
}
.recent-product__nav .nav-item .nav-link.active {
    color: var(--color-primary);
    background-color: transparent;
}
.recent-product__nav.style-2 .nav-item .nav-link.active {
    color: var(--color-primary);
}
.recent-product__item {
    border: 1px solid var(--color-border);
    padding: 20px 7px;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}
.recent-product__item .thumb {
    width: 90px;
    margin-right: 20px;
}
.recent-product__content {
    width: calc(100% - 110px);
}
.recent-product__content h3 {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 10px;
}
.recent-product__content h3 a {
    color: currentColor;
}
.vd-offer-product__item {
    padding: 0 25px;
    background-color: #f0f0ef;
    min-height: 147px;
}
@media (max-width: 767px) {
    .vd-offer-product__item {
        padding: 0 13px;
   }
}
.vd-offer-product__img {
    width: 130px;
    margin-right: 45px;
}
@media (max-width: 1199px) {
    .vd-offer-product__img {
        margin-right: 5px;
   }
}
.vd-offer-product__content {
    width: calc(100% - 175px);
}
@media (max-width: 1199px) {
    .vd-offer-product__content {
        width: calc(100% - 135px);
   }
}
.vd-offer-product__content span {
    font-size: 13px;
    font-weight: 600;
    color: #ff7715;
    text-transform: uppercase;
    display: inline-block;
}
.vd-offer-product__content h2 {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.vd-offer-product__content h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}
.vd-offer-product__content h3 span {
    font-size: 16px;
    color: #ff7715;
    font-weight: 600;
}
.vd-offer-product__content a {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 600;
}
.weekly-product__wrap {
    padding: 30px;
    padding-top: 73px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-left: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .weekly-product__wrap {
        margin-left: -50px;
   }
}
@media (max-width: 1199px) {
    .weekly-product__wrap {
        margin-left: 0;
   }
}
.weekly-product__content p {
    font-size: 13px;
    line-height: 23px;
    color: #949392;
    margin-bottom: 20px;
}
.weekly-product__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}
.weekly-product__price span {
    display: inline-block;
}
.weekly-product__price span:not(:last-child) {
    margin-right: 10px;
}
.weekly-product__price .new {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
}
.weekly-product__price .old {
    font-size: 14px;
    color: #808080;
    font-weight: 400;
    text-decoration: line-through;
}
.weekly-product__price .off {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 1px 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.weekly-product__deal {
    font-size: 13px;
}
.weekly-product__img {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 1199px) {
    .weekly-product__img {
        max-width: 180px;
   }
}
@media (max-width: 991px) {
    .weekly-product__img {
        position: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
   }
}
.weekly-product__nav {
    border: 0;
    z-index: 2;
    position: relative;
    margin: -10px;
    margin-top: 30px;
}
.weekly-product__nav .nav-item {
    margin: 10px;
}
.weekly-product__nav .nav-item .nav-link {
    border: 1px solid var(--color-border);
    width: 128px;
    height: 98px;
    padding: 10px 20px;
    background-color: #f9f8fb;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .weekly-product__nav .nav-item .nav-link {
        width: 110px;
   }
}
@media (max-width: 1199px) {
    .weekly-product__nav .nav-item .nav-link {
        width: 90px;
        height: 90px;
        padding: 15px;
   }
}
@media (max-width: 991px) {
    .weekly-product__nav .nav-item .nav-link {
        width: 70px;
        height: 70px;
        padding: 10px;
   }
}
.weekly-product__nav .nav-item .nav-link.active {
    background-color: var(--color-white);
}
.weekly-product__slide .tx-widget__product-item:not(:last-child) {
    margin-bottom: 27px;
}
.weekly-product__slide.tx-arrow .slick-arrow {
    top: -67px;
    right: -25px;
}
.rd-slide-products {
    padding: 30px;
    border: 1px solid var(--color-primary);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.rd-product__slide-item .product__item:nth-child(2) {
    padding-bottom: 0;
}
.rd-product__item.has-border {
    border-right: 1px solid var(--color-border);
    padding-right: 20px;
}
.rd-product__middle {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 33px;
    border: 1px solid var(--color-primary);
}
.rd-product__middle .product__available {
    font-size: 14px;
}
.rd-product__middle .content .title {
    font-size: 16px;
    color: var(--color-heading);
}
.rd-product__middle .content .title a {
    color: currentColor;
}
.rd-product__middle .img {
    padding: 40px 30px;
}
.rd-product__single {
    padding: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
@media (max-width: 1199px) {
    .rd-product__single {
        padding: 20px 15px;
   }
}
.rd-product__single .tab-content {
    width: 40%;
    margin-right: 5%;
}
.rd-product__single .content {
    width: calc(100% - 45%);
}
.rd-product__single .content .title {
    font-size: 14px;
    color: var(--color-heading);
    margin-bottom: 7px;
}
.rd-product__single .content .title a {
    color: currentColor;
}
.rd-product__single .mf-nav .nav-item:not(:last-child) {
    margin-right: 7px;
}
.rd-product__single .mf-nav .nav-item .nav-link {
    width: 34px;
    height: 31px;
    border: 1px solid #f0ecec;
    background-color: var(--color-white);
    padding: 0;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
@media (max-width: 1199px) {
    .rd-product__single .mf-nav .nav-item .nav-link {
        width: 20px;
        height: 20px;
   }
}
.rd-product__single .mf-nav .nav-item .nav-link.active {
    border-color: var(--color-primary);
}
.rd-img-nav {
    border: 0;
    margin-top: 30px;
}
.rd-img-nav .nav-item:not(:last-child) {
    margin-right: 15px;
}
.rd-img-nav .nav-item .nav-link {
    width: 62px;
    height: 56px;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.rd-img-nav .nav-item .nav-link.active {
    border-color: var(--color-primary);
}
.tx-product .product__img img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tx-product:hover .product__img img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.hot-deal__item .thumb {
    padding: 15px 50px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-monthly__item {
    border: 1px solid #e7e7e7;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding: 30px 30px;
    position: relative;
}
.rd-monthly__item .title {
    font-size: 14px;
    color: var(--color-heading);
    margin-bottom: 20px;
}
.rd-monthly__item .title a {
    color: currentColor;
}
.rd-monthly__item .image {
    padding-bottom: 20px;
}
.rd-monthly__item .badge {
    background-color: var(--color-primary);
    font-size: 11px;
    color: var(--color-white);
    padding: 6px 15px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    position: absolute;
    top: 13px;
    left: 10px;
    text-transform: uppercase;
}
.product-cat__images {
    width: 50%;
    padding-right: 30px;
}
@media (max-width: 767px) {
    .product-cat__images {
        width: 100%;
        padding-right: 0;
   }
}
.product-cat__content {
    width: 50%;
}
@media (max-width: 767px) {
    .product-cat__content {
        width: 100%;
        margin-top: 20px;
   }
}
.product-cat__content .title {
    font-size: 16px;
    color: var(--color-heading);
    margin-bottom: 20px;
    text-transform: capitalize;
}
.product-cat__content ul li:not(:last-child) {
    margin-bottom: 12px;
}
.product-cat__content ul li a {
    font-size: 14px;
    color: #232638;
}
.product-cat__content ul li a:hover {
    color: var(--color-primary);
}
.product-cat__item {
    display: flex;
    flex-wrap: wrap;
}
.product-cat__item-two .product-cat__images {
    width: 45%;
    padding-right: 15px;
}
@media (max-width: 1199px) {
    .product-cat__item-two .product-cat__images {
        width: 100%;
        padding-right: 0;
   }
}
.product-cat__item-two .product-cat__content {
    width: 55%;
}
@media (max-width: 1199px) {
    .product-cat__item-two .product-cat__content {
        width: 100%;
   }
}
.product-cat__nav {
    border: 0;
    margin-top: 10px;
}
.product-cat__nav .nav-item {
    margin-top: 10px;
}
.product-cat__nav .nav-item:not(:last-child) {
    margin-right: 12px;
}
.product-cat__nav .nav-item .nav-link {
    width: 41px;
    height: 41px;
    border: 1px solid #e7e7e7;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-cat__nav .nav-item .nav-link.active {
    border-color: var(--color-primary);
}
.product-cat__number {
    position: absolute;
    top: 14px;
    left: -2px;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-white);
}
.product-cat__nav-two .nav-item .nav-link {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    padding: 8px;
}
.product-cat__wrap {
    padding: 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 1px solid #e7e7e7;
}
.rd-category__list {
    background-color: #f5f5f5;
    border: 1px solid #eaeaea;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 32px 45px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
@media (max-width: 767px) {
    .rd-category__list {
        padding: 25px;
   }
}
.rd-category__list li.title {
    font-size: 16px;
    color: #121416;
    font-weight: 600;
    margin-bottom: 17px;
}
.rd-category__list li:not(:last-child) {
    margin-bottom: 14px;
}
.rd-category__list li a {
    color: #232638;
    font-size: 14px;
    text-transform: capitalize;
}
.rd-category__list li a:hover {
    color: var(--color-primary);
}
.hot-deal__slide-wrap {
    border: 1px solid var(--color-primary);
    padding: 35px 30px 66px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.hot-deal__slide-wrap.style-2 {
    padding: 30px;
    border-width: 2px;
}
.hot-deal__slide-wrap.style-2 .hot-deal__item .thumb {
    padding-left: 15px;
    padding-right: 15px;
}
.hot-deal__item .title {
    font-size: 18px;
    color: var(--color-heading);
}
.hot-deal__item .title a {
    color: currentColor;
}
.rd-tab-product__slide {
    padding-top: 26px;
    padding-bottom: 26px;
}
.rd-tab-product__slide .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    color: var(--color-primary);
    cursor: pointer;
}
.rd-tab-product__slide .slick-arrow.slick-next {
    left: auto;
    right: -40px;
}
.rd-products {
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
}
.rd-products__wrap {
    margin-left: -90px;
}
@media (max-width: 1199px) {
    .rd-products__wrap {
        margin-left: 0;
   }
}
.rd-products__nav {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
    margin-top: -20px;
}
.rd-products__nav .section-heading {
    border: 0;
    padding-bottom: 0;
    margin-top: 20px;
}
.rd-products__nav .section-heading span:before {
    bottom: -12px;
}
.rd-products__nav .nav-tabs {
    border: 0;
    margin-top: 20px;
}
.rd-products__nav .nav-tabs .nav-item:not(:first-child) {
    margin-left: 50px;
}
@media (max-width: 991px) {
    .rd-products__nav .nav-tabs .nav-item:not(:first-child) {
        margin-left: 25px;
   }
}
@media (max-width: 767px) {
    .rd-products__nav .nav-tabs .nav-item:not(:first-child) {
        margin-left: 15px;
   }
}
.rd-products__nav .nav-tabs .nav-item .nav-link {
    border: 0;
    padding: 0;
    font-size: 16px;
    color: #707070;
    font-weight: 500;
    position: relative;
}
.rd-products__nav .nav-tabs .nav-item .nav-link::before {
    position: absolute;
    bottom: -8px;
    width: 100%;
    background-color: var(--color-primary);
    height: 1px;
    content: "";
    opacity: 0;
}
.rd-products__nav .nav-tabs .nav-item .nav-link::after {
    position: absolute;
    bottom: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid var(--color-primary);
    content: "";
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.rd-products__nav .nav-tabs .nav-item .nav-link.active {
    color: #121416;
}
.rd-products__nav .nav-tabs .nav-item .nav-link.active::before, .rd-products__nav .nav-tabs .nav-item .nav-link.active::after {
    opacity: 1;
}
@media (max-width: 767px) {
    .rd-products__nav .nav-tabs .nav-item .nav-link::before, .rd-products__nav .nav-tabs .nav-item .nav-link::after {
        display: none;
   }
}
.tx-product-style-01 {
    margin-left: -90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .tx-product-style-01 {
        margin-left: 0;
   }
}
@media (max-width: 1199px) {
    .tx-product-style-01 {
        margin-left: 0;
   }
}
.col-1-of-5 {
    width: 20%;
}
@media (max-width: 1199px) {
    .col-1-of-5 {
        width: 33.33%;
   }
}
@media (max-width: 991px) {
    .col-1-of-5 {
        width: 50%;
   }
}
@media (max-width: 767px) {
    .col-1-of-5 {
        width: 100%;
   }
}
.rd-side__product {
    padding: 30px;
    border: 1px solid var(--color-primary);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.rd-side__product .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-heading);
}
.rd-side__product .title a {
    color: currentColor;
}
.rd-side__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 0 50px;
}
.rd-side__nav {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.rd-side__nav .nav-item {
    margin-top: 10px;
}
.rd-side__nav .nav-item:not(:last-child) {
    margin-right: 12px;
}
.rd-side__nav .nav-item .nav-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    padding: 10px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-side__nav .nav-item .nav-link.active {
    border: 1px solid var(--color-primary);
}
.rd-product__slide-two .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 36%;
    left: -50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    color: var(--color-primary);
    cursor: pointer;
}
.rd-product__slide-two .slick-arrow.slick-next {
    left: auto;
    right: -50px;
}
.rd-product__slide-wrap {
    padding: 30px;
    padding-top: 25px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background-color: var(--color-white);
}
.rd-product__bg {
    position: relative;
}
.rd-product__bg::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f6f6f6;
    content: "";
    width: 100%;
    height: 50%;
    z-index: -1;
}
.rd-parts__wrap {
    margin-left: -60px;
}
@media (max-width: 991px) {
    .rd-parts__wrap {
        margin-left: 0;
   }
}
.rd-parts__products [class^="col-"]:nth-child(5) .product__item, .rd-parts__products [class^="col-"]:nth-child(10) .product__item {
    border-right: 0;
}
@media (max-width: 1199px) {
    .rd-parts__products [class^="col-"]:nth-child(3) .product__item, .rd-parts__products [class^="col-"]:nth-child(6) .product__item, .rd-parts__products [class^="col-"]:nth-child(9) .product__item {
        border-right: 0;
   }
}
@media (max-width: 1199px) and (max-width: 1199px) {
    .rd-parts__products [class^="col-"]:nth-child(5) .product__item, .rd-parts__products [class^="col-"]:nth-child(10) .product__item {
        border-right: 1px solid var(--color-border);
   }
}
@media (max-width: 767px) {
    .rd-parts__products .product__item {
        border-right: 0;
   }
}
.rd-product-category__wrap {
    padding: 37px 45px;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-right: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .rd-product-category__wrap {
        margin-right: -50px;
   }
}
@media (max-width: 1199px) {
    .rd-product-category__wrap {
        margin-right: 0;
   }
}
@media (max-width: 767px) {
    .rd-product-category__wrap {
        padding: 30px 25px;
   }
}
.rd-category__left {
    padding-right: 70px;
}
@media (max-width: 991px) {
    .rd-category__left {
        padding-right: 0;
   }
}
.ml-none-70 {
    margin-left: -70px;
}
.rd-product-wrap {
    margin-right: -65px;
}
@media (max-width: 1199px) {
    .rd-product-wrap {
        margin-right: -20px;
   }
}


/*----------------------------------------*/
/* 09. news 
/*----------------------------------------*/
.news__thumb {
    overflow: hidden;
}
.news__thumb img {
    width: 100%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.news__item:hover .news__thumb img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.news__meta {
    margin-bottom: 5px;
}
.news__content {
    border: 1px solid var(--color-border);
    border-top: 0;
    padding: 20px;
}
.news__content p {
    font-size: 14px;
    line-height: 23px;
}
.news__title {
    font-size: 16px;
}
.news__title a {
    color: currentColor;
}
.news__meta-author {
    margin-right: 10px;
}
.news__meta-author .avatar {
    margin-right: 7px;
    width: 20px;
    height: 20px;
}
.news__meta-author .avatar img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.news__meta-author span {
    color: #201616;
    font-size: 15px;
}
.news__meta-date {
    color: #989090;
    font-size: 14px;
}
.news__meta-date i {
    font-size: 12px;
    margin-right: 5px;
}
.news__btn {
    color: var(--color-heading);
    margin-top: 10px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
}
.news__slide {
    margin-left: -10px;
    margin-right: -10px;
}
.news__slide .slick-arrow {
    right: 10px;
}
.news__item {
    margin: 0 10px;
    position: relative;
}
.news__cat {
    position: absolute;
    top: 12px;
    left: 10px;
    font-weight: 600;
    font-size: 13px;
    background-color: var(--color-primary);
    display: inline-block;
    line-height: 1.2;
    padding: 4px 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: var(--color-white);
    text-transform: uppercase;
}
.news__cat.color-2 {
    background-color: #f10505;
}
.news__cat.color-3 {
    background-color: #fa5d05;
}
.news__cat.color-4 {
    background-color: #00c036;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .blog-post-wrap {
        margin-right: 65px;
   }
}
@media (max-width: 991px) {
    .blog-post-wrap {
        margin-right: 0;
   }
}
.tx-post-item .post-thumb {
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.tx-post-item .post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-primary);
    padding: 2px 20px;
    padding-top: 4px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.tx-post-item .post-date span {
    color: currentColor;
    margin-top: -10px;
    display: inline-block;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}
.tx-post-item .post-title {
    font-size: 34px;
}
@media (max-width: 767px) {
    .tx-post-item .post-title {
        font-size: 22px;
   }
}
.tx-post-item .post-title a {
    color: currentColor;
}
.tx-post-item .post-meta {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}
.tx-post-item .post-meta .year {
    color: var(--color-primary);
}
.tx-post-item .post-meta .post-meta__author .avatar img {
    background-color: var(--color-primary);
}
.tx-post-item p {
    font-size: 15px;
}
.blog-sidebar {
    padding: 30px 20px;
    border: 1px solid var(--color-border);
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .blog-sidebar {
        margin-left: -60px;
   }
}
@media (max-width: 991px) {
    .blog-sidebar {
        margin-left: 0;
   }
}
@media (max-width: 767px) {
    .blog-sidebar {
        padding: 20px;
   }
}
.blog-sidebar .widget {
    padding: 0;
    border: 0;
}
.blog-sidebar .widget:first-child {
    margin-top: 0;
}
.widget-post .tx-post:not(:last-child) {
    margin-bottom: 20px;
}
.widget-post .post-thumb {
    width: 100px;
    height: 84px;
    margin-right: 15px;
}
.widget-post .post-content {
    width: calc(100% - 115px);
}
.widget-post .post-title {
    font-size: 16px;
    font-weight: 500;
}
.post-share li:not(:first-child) {
    margin-left: 13px;
}
.post-share li a {
    font-size: 14px;
    color: rgba(0, 1, 0, );
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.post-details h2 {
    font-size: 38px;
    margin-bottom: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .post-details h2 {
        font-size: 30px;
   }
}
@media (max-width: 1199px) {
    .post-details h2 {
        font-size: 26px;
   }
}
@media (max-width: 767px) {
    .post-details h2 {
        font-size: 20px;
   }
}
.post-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .post-details h3 {
        font-size: 28px;
   }
}
@media (max-width: 1199px) {
    .post-details h3 {
        font-size: 24px;
   }
}
@media (max-width: 767px) {
    .post-details h3 {
        font-size: 17px;
   }
}
.post-details h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
@media (max-width: 1199px) {
    .post-details h4 {
        font-size: 18px;
   }
}
@media (max-width: 767px) {
    .post-details h4 {
        font-size: 17px;
   }
}
.post-details .post-meta__author .year {
    color: var(--color-primary);
}
.post-details p {
    font-size: 18px;
    line-height: 32px;
}
.post-details p:not(:last-child) {
    margin-bottom: 20px;
}
blockquote {
    background-color: #f4f6f8;
    padding: 40px;
    border-left: 3px solid var(--color-primary);
    padding-right: 150px;
    font-size: 24px;
    font-weight: 500;
    line-height: 43px;
    color: var(--color-black);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 1199px) {
    blockquote {
        font-size: 18px;
        line-height: 30px;
        padding-right: 120px;
   }
}
@media (max-width: 767px) {
    blockquote {
        font-size: 17px;
        padding: 30px;
   }
}
blockquote .quote {
    position: absolute;
    right: 40px;
    bottom: 34px;
    z-index: -1;
}
@media (max-width: 1199px) {
    blockquote .quote {
        width: 60px;
   }
}
@media (max-width: 767px) {
    blockquote .quote {
        width: 50px;
   }
}
blockquote span {
    font-size: 16px;
    color: #332d2d;
    padding-left: 30px;
    position: relative;
    display: block;
}
@media (max-width: 767px) {
    blockquote span {
        font-size: 15px;
        margin-top: 10px;
   }
}
blockquote span::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    content: "";
}
.post-list li {
    font-size: 16px;
    padding-left: 35px;
    position: relative;
}
.post-list li:not(:last-child) {
    margin-bottom: 25px;
}
.post-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    font-size: 12px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, );
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.post-list li:hover::before {
    color: #fff;
    background-color: var(--color-primary);
}
.post-list__style-2 li {
    padding-left: 30px;
    position: relative;
}
.post-list__style-2 li:not(:last-child) {
    margin-bottom: 20px;
}
.post-list__style-2 li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    background-color: var(--color-primary);
}
.video span {
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: #807a7a;
    margin-top: 20px;
    display: block;
    font-weight: 500;
}
.post-img .post-cat {
    position: absolute;
    top: 12px;
    left: 14px;
}
.post-tags-share {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.post-tags-share .title {
    font-size: 25px;
    font-weight: 500;
    margin-right: 20px;
    margin-top: 10px;
}
.post-tags-share .tags ul {
    margin-top: 10px;
}
.post-tags-share .tags ul li {
    margin-top: 10px;
}
.post-tags-share .tags ul li:not(:last-child) {
    margin-right: 16px;
}
.post-tags-share .tags ul li a {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 25px;
    display: inline-block;
    border: 1px solid var(--color-border);
    color: var(--color-default);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #949392;
}
.post-tags-share .tags ul li a:hover {
    color: #fff;
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}
.post-tags-share .social-share ul {
    margin-top: 10px;
}
.post-tags-share .social-share ul li:not(:last-child) {
    margin-right: 12px;
}
.post-tags-share .social-share ul li a {
    width: 45px;
    height: 38px;
    background-color: #f2f6f7;
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.post-tags-share .social-share ul li a:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.post-nav {
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.post-nav::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    background-color: var(--color-border);
    width: 1px;
    height: 66px;
}
@media (max-width: 1199px) {
    .post-nav::before {
        display: none;
   }
}
.post-nav__item {
    padding: 0 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .post-nav__item {
        padding: 0 65px;
   }
}
@media (max-width: 767px) {
    .post-nav__item {
        padding: 0;
   }
}
.post-nav__item .post-thumb {
    width: 85px;
    height: 85px;
    margin-right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.post-nav__item .post-content {
    width: calc(100% - 100px);
}
@media (max-width: 767px) {
    .post-nav__item .post-content {
        width: 100%;
        margin-top: 15px;
   }
}
.post-nav__item .post-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}
.post-nav__link {
    width: 56px;
    height: 36px;
    display: flex;
    color: var(--color-primary);
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    background: rgba(191, 170, 175, 0.11);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.post-nav__link:hover {
    color: #fff;
    background-color: var(--color-primary);
}
@media (max-width: 767px) {
    .post-nav__link {
        display: none;
   }
}
.right-post .post-nav__link {
    left: auto;
    right: 15px;
}
@media (max-width: 1199px) {
    .left-post .post-nav__item {
        padding-right: 0;
   }
}
@media (max-width: 1199px) {
    .right-post .post-nav__item {
        padding-left: 0;
   }
}
@media (max-width: 767px) {
    .right-post .post-nav__item {
        margin-top: 30px;
   }
}
/* comment css */
.post-comments {
    padding-bottom: 55px;
}
.post-comments .title {
    font-size: 26px;
    margin-bottom: 25;
    font-weight: 500;
}
.latest__comments .comments-box {
    border-top: 1px solid var(--color-border-2);
    padding: 30px 0;
}
.latest__comments .comments-text {
    overflow: hidden;
}
.latest__comments .comments-avatar {
    border-radius: 50%;
    float: left;
}
@media (max-width: 767px) {
    .latest__comments .comments-avatar {
        float: none;
        margin-bottom: 10px;
   }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__comments .comments-avatar {
        float: left;
        margin-bottom: 0px;
   }
}
.latest__comments .comments-avatar img {
    border-radius: 50%;
    width: 100px !important;
    margin-right: 30px;
}
.latest__comments li:last-child .comments-box {
    padding-bottom: 0px;
}
.latest__comments li:first-child .comments-box {
    border-top: 0;
    padding-top: 0;
}
.latest__comments li.children {
    margin-left: 100px;
}
@media (max-width: 767px) {
    .latest__comments li.children {
        margin-left: 0px;
   }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .latest__comments li.children {
        margin-left: 50px;
   }
}
.latest__comments .avatar-name {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}
.latest__comments .avatar-name h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 500;
}
.latest__comments .avatar-name span {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-default);
}
.latest__comments .reply {
    color: var(--color-black);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 1;
    position: absolute;
    right: 0;
    margin-top: 0;
    top: 0;
    text-decoration: none;
}
.latest__comments .reply i {
    margin-right: 5px;
}
.latest__comments .reply:hover {
    color: var(--color-primary);
}
.latest__comments--2 p {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-black);
}
.comments-form .title {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 500;
}
.comments-form .form input, .comments-form .form textarea {
    height: 60px;
    margin-bottom: 20px;
    padding: 0 30px;
    width: 100%;
    font-size: 15px;
    color: var(--color-black);
    border-radius: 0px;
    background-color: #f8f8fb;
}
.comments-form .form textarea {
    padding: 20px 30px;
    height: 150px;
}
.comments-form__btn button {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.meta-bottom-border {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}
.post-details .post-tags a {
    color: var(--color-default);
}
.post-details .post-tags a:hover {
    color: var(--color-black);
}
.has-dropcap:first-child::first-letter {
    font-size: 47px;
    line-height: 0.8;
    color: var(--color-primary);
    font-weight: 600;
    float: left;
    padding: 5px 10px;
    padding-left: 0;
    vertical-align: top;
    text-transform: uppercase;
}




/* cart sidebar */
.cart_sidebar {
    padding-bottom: 50px;
}
.cart_sidebar .heading_title {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f6f6f6;
    font-weight: 700;
}
.cart_item {
    display: flex;
    position: relative;
    align-items: center;
    padding-right: 25px;
}
.cart_item:not(:last-child) {
    margin-bottom: 20px;
}
.cart_item .item_image {
    display: block;
    min-width: 60px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
    width: 60px;
    padding: 5px;
}
.cart_item .item_title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}
.cart_item .item_price {
    line-height: 1;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ff8e28;
    text-align: right;
}
.cart_item .remove_btn {
    top: 10px;
    right: 0px;
    color: #ed366a;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 19px;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.cart_sidebar .total_price {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    padding: 10px 0px;
    margin-bottom: 20px;
    align-items: center;
    color: #1e1d23;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    justify-content: space-between;
}
.cart_sidebar .btns_group {
    margin: -5px;
}
.cart_sidebar .btns_group li {
    width: 50%;
    padding: 5px;
}
.cart_sidebar .btns_group li a {
    font-size: 12px;
    padding: 13px 24px;
}
.cart_sidebar {
    top: 0;
    width: 300px;
    right: -320px;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    padding: 50px 20px;
    overflow-y: scroll;
    scrollbar-width: none;
    background-color: #fff;
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.29);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cart_sidebar .mCustomScrollBox {
    overflow: visible !important;
}
.cart_sidebar.active {
    right: 0px;
}
.cart_sidebar .cart_close_btn {
    top: 15px;
    right: 20px;
    line-height: 1;
    font-size: 24px;
    position: absolute;
    background: transparent;
    color: #a5a6aa;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cart_sidebar .cart_close_btn:hover {
    transform: rotate(180deg);
}


/*----------------------------------------*/
/* 14. footer 
/*----------------------------------------*/
.footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #000;
}
.footer__info li {
    font-size: 16px;
    color: #6d7484;
    display: flex;
    align-items: center;
}
.footer__info li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__info li i {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-right: 11px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 15px;
}
.footer__widget p {
    color: #949392;
}
.footer__widget .title {
    font-size: 22px;
    margin-bottom: 28px;
}
.footer__widget ul {
    list-style: none;
}
.footer__widget ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__widget ul li a {
    color: #929292;
}
.footer__widget ul li a:hover {
    color: var(--color-primary);
}
.footer__widget .category li a {
    position: relative;
    padding-left: 12px;
}
.footer__widget .category li a::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #c4c4c4;
    content: "";
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer__widget .category li a:hover::before {
    background-color: var(--color-primary);
}

.footer__widget .quick-links > li {
    line-height: 1;
}

.footer__widget .quick-links * {
    color: #f8f9fa;
}

@media (max-width: 1199px) {
    .footer__widget:nth-child(4) {
        padding-left: 40px;
   }
}
@media (max-width: 991px) {
    .footer__widget:nth-child(4) {
        padding-left: 15px;
   }
}
@media (max-width: 1199px) {
    .footer .apps-img .app {
        max-width: 110px;
   }
}
.footer__post .post-thumb {
    width: 77px;
    margin-right: 13px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.footer__post .post-thumb img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer__post .post-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__post .post-date {
    font-size: 13px;
    margin-bottom: 5px;
    color: #949392;
}
.footer__post .post-date i {
    color: var(--color-primary);
    font-style: 12px;
    margin-right: 5px;
}
.footer__post .post-content {
    width: calc(100% - 90px);
}
.footer__post .post-title {
    font-size: 16px;
    font-weight: 500;
    color: #929292;
}
.footer__post .post-title a {
    color: currentColor;
}
.footer__post-item:hover .post-thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.footer__post .footer__post-item:not(:last-child) {
    margin-bottom: 25px;
}
.footer__bottom {
    border-top: 1px solid #ffebd8;
    padding: 30px 0;
    padding-top: 15px;
}
.footer__copyright {
    font-size: 18px;
}
.footer__copyright a {
    color: var(--color-primary);
}
.footer__social {
    display: flex;
    flex: 1;
    justify-content: center;
}
.footer__social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 13px;
    color: #6a7695;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.01);
}
.footer__social a:not(:last-child) {
    margin-right: 15px;
}
.footer__social a:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.footer__style-two .footer__widget .title, .footer__style-two .newslater__two .title {
    color: var(--color-white);
}
.footer__style-two .newslater__two p {
    color: #8a8b90;
}
.footer__style-two .newslater__border, .footer__style-two .footer__bottom {
    border-color: rgba(0, 0, 0, );
}
.footer__style-two .footer__copyright {
    color: #fff;
}
.footer__style-two .newslater__form {
    box-shadow: none;
}
.footer__style-two .newslater__form input {
    background: #1d1817;
    color: var(--color-white);
}
.footer__style-two .footer__social a {
    background-color: #1d1817;
    color: var(--color-white);
}
.footer__style-two .footer__social a:hover {
    background-color: var(--color-primary);
}
.footer__style-three .footer__widget .title {
    color: var(--color-white);
}
.footer__style-three .newslater__two p {
    color: #8a8b90;
}
.footer__style-three .newslater__border, .footer__style-three .footer__bottom {
    border-color: rgba(0, 0, 0, );
}
.footer__style-three .footer__copyright {
    color: #fff;
}
.footer__style-three .footer__social a {
    background-color: #1d1817;
    color: var(--color-white);
}
.footer__style-three .footer__social a:hover {
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .header__cat-wrap {
        padding: 12px 0;
    }
}


/*----------------------------------------*/
/* 14. footer 
/*----------------------------------------*/
.footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.footer__info li {
    font-size: 16px;
    color: #6d7484;
    display: flex;
    align-items: center;
}
.footer__info li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__info li i {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-right: 11px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 15px;
}
.footer__widget p {
    color: #949392;
}
.footer__widget .title {
    font-size: 22px;
    margin-bottom: 28px;
}
.footer__widget ul {
    list-style: none;
}
.footer__widget ul li:not(:last-child) {
    margin-bottom: 10px;
}
.footer__widget ul li a {
    color: #929292;
}
.footer__widget ul li a:hover {
    color: var(--color-primary);
}
.footer__widget .category li a {
    position: relative;
    padding-left: 12px;
}
.footer__widget .category li a::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #c4c4c4;
    content: "";
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer__widget .category li a:hover::before {
    background-color: var(--color-primary);
}

.footer__post .post-thumb {
    width: 77px;
    margin-right: 13px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.footer__post .post-thumb img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer__post .post-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__post .post-date {
    font-size: 13px;
    margin-bottom: 5px;
    color: #949392;
}
.footer__post .post-date i {
    color: var(--color-primary);
    font-style: 12px;
    margin-right: 5px;
}
.footer__post .post-content {
    width: calc(100% - 90px);
}
.footer__post .post-title {
    font-size: 16px;
    font-weight: 500;
    color: #929292;
}
.footer__post .post-title a {
    color: currentColor;
}
.footer__post-item:hover .post-thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.footer__post .footer__post-item:not(:last-child) {
    margin-bottom: 25px;
}
.footer__bottom {
    border-top: 1px solid #ffebd8;
    padding: 30px 0;
    padding-top: 15px;
}
.footer__copyright {
    font-size: 18px;
}
.footer__copyright a {
    color: var(--color-primary);
}
.footer__social {
    display: flex;
    flex: 1;
    justify-content: center;
}
.footer__social a {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 13px;
    color: #6a7695;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.01);
}
.footer__social a:not(:last-child) {
    margin-right: 15px;
}
.footer__social a:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.footer__style-two .footer__widget .title, .footer__style-two .newslater__two .title {
    color: var(--color-white);
}
.footer__style-two .newslater__two p {
    color: #8a8b90;
}
.footer__style-two .newslater__border, .footer__style-two .footer__bottom {
    border-color: rgba(0, 0, 0, );
}
.footer__style-two .footer__copyright {
    color: #fff;
}
.footer__style-two .newslater__form {
    box-shadow: none;
}
.footer__style-two .newslater__form input {
    background: #1d1817;
    color: var(--color-white);
}
.footer__style-two .footer__social a {
    background-color: #1d1817;
    color: var(--color-white);
}
.footer__style-two .footer__social a:hover {
    background-color: var(--color-primary);
}
.footer__style-three .footer__widget .title {
    color: var(--color-white);
}
.footer__style-three .newslater__two p {
    color: #8a8b90;
}
.footer__style-three .newslater__border, .footer__style-three .footer__bottom {
    border-color: rgba(0, 0, 0, );
}
.footer__style-three .footer__copyright {
    color: #fff;
}
.footer__style-three .footer__social a {
    background-color: #1d1817;
    color: var(--color-white);
}
.footer__style-three .footer__social a:hover {
    background-color: var(--color-primary);
}

@media (max-width: 767px) {
    .featured {
        padding-top: 0;
   }
}
.featured__item {
    background-color: #e7e7f2;
    position: relative;
}
.featured__shape {
    position: absolute;
    left: 40%;
    top: 80px;
    animation: animationFramesTwo 35s alternate infinite linear;
    -webkit-animation: animationFramesTwo 35s alternate infinite linear;
}
.featured__content > span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 5px;
}
.featured__content h2 {
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 50px;
    margin-bottom: 4px;
}
@media (max-width: 767px) {
    .featured__content h2 {
        font-size: 24px;
        line-height: 34px;
   }
}
.featured__content p {
    font-size: 14px;
    font-weight: 600;
    color: #949392;
}
.featured__content .price {
    font-size: 26px;
    font-weight: 500;
    margin-left: 30px;
    color: var(--color-primary);
}
.firstslide {
    position: relative;
    background-image: var(--url);
    background-size: cover;
    isolation: isolate;
}
.firstslide:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-overlay, '#000');
    opacity: calc(var(--bg-opacity) / 100);
    z-index: -1;
}

.featured__big {
    min-height: 505px;
    padding: 50px 80px;
    padding-right: 10px;
    
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .featured__big {
        padding: 50px;
   }
}
@media (max-width: 1199px) {
    .featured__big {
        padding: 40px;
        min-height: 520px;
   }
}
@media (max-width: 767px) {
    .featured__big {
        background-position: 0%;
        min-height: 400px;
        padding: 30px 20px;
   }
}
.featured__offer-item {
    min-height: 268px;
    padding: 30px;
}
.featured__offer-item .offer-save {
    font-size: 12px;
    color: var(--color-black);
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 3px;
}
.featured__offer-item h3 {
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.featured__offer-item a {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 600;
}
.featured__offer-item:nth-child(2) .upto-offer span {
    color: var(--color-black);
}
.featured__offer-item.style-2 .offer-save {
    color: #ff7a00;
}
.featured__offer-item.style-3 .new {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    padding: 0px 12px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: var(--color-primary);
    display: inline-block;
    line-height: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.featured__offer-item.style-3 h3 {
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 14px;
}
.featured__offer-item.style-3 .upto-offer span {
    color: var(--color-red) !important;
}
.featured__offer-item.style-3 .upto-offer .upto {
    font-size: 22px;
    font-weight: 500;
}
.featured__offer-item.style-3 .upto-offer .offer-no {
    font-size: 32px;
}
.featured__h560 {
    height: 563px;
}
@media (max-width: 1199px) {
    .featured__h560 {
        height: 520px;
   }
}
.featured__h530 {
    min-height: 530px;
}
.featured__h247 {
    min-height: 247px;
}
.featured__style2 {
    background-color: var(--color-white);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid var(--color-primary-3);
}
@media (max-width: 767px) {
    .featured__style2 {
        padding-top: 40px;
   }
}
@media (max-width: 767px) {
    .featured__style3 {
        padding-top: 40px;
   }
}
.featured__img {
    position: absolute;
    right: 0;
    bottom: 45px;
    text-align: right;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .featured__img {
        max-width: 500px;
   }
}
@media (max-width: 1199px) {
    .featured__img {
        max-width: 400px;
   }
}
@media (max-width: 767px) {
    .featured__img {
        position: unset;
   }
}
[class^="col-"]:nth-child(2) > .featured__offer-item .upto-offer span {
    color: var(--color-black);
}
[class^="col-"]:nth-child(2) > .featured__offer-item.style-2 .offer-save {
    color: #ff7a00;
}
[class^="col-"]:nth-child(2) > .featured__offer-item.style-2 .offer-save {
    color: var(--color-primary-3);
}
[class^="col-"]:nth-child(2) > .featured__offer-item.style-2 .upto-offer span {
    color: var(--color-primary-3);
}
.upto-offer span {
    display: inline-block;
    color: #f88317;
}
.upto-offer .upto {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    margin-right: 10px;
}
.upto-offer .offer-no {
    font-size: 30px;
    position: relative;
    font-weight: 700;
}
.upto-offer .offer-no span {
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    top: -8px;
    right: -16px;
}

.wishlist_table {
    border: 1px solid var(--color-border);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
}

.wishlist_table {
    text-align: center;
    margin: 100px 0;
}

.wishlist_table td {
    border-top: 1px solid var(--color-border);
}

.wishlist_table th {
    text-align: left;
}

.wishlist_table :is(th, td) {
    font-size: 15px;
    font-size: 1rem;
    padding: 17px 19px 15px;
}

.wishlist_table :is(th, td) span {
    color: var(--color-default);
    margin-bottom: 0;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
   }
    100% {
        transform: rotate(360deg);
   }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
   }
    100% {
        transform: rotate(360deg);
   }
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
   }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
   }
    100% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
   }
}
@keyframes zoom {
    0% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
   }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
   }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
   }
}
@-webkit-keyframes shake {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
   }
    50% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
   }
}
@keyframes shake {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
   }
    50% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
   }
    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
   }
}
@-webkit-keyframes down {
    0% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
   }
    50% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
   }
    100% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
   }
}
@keyframes down {
    0% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
   }
    50% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
   }
    100% {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
   }
}

.widget-category > ul input {
    margin-right: 4px;
}

.widget-category > ul a {
    position: relative;
    display: inline-block;
    width: calc(100% - 22px);
    color: #000;
}

.widget-brands > ul input {
    margin-right: 4px;
}

.widget-brands > ul a {
    position: relative;
    display: inline-block;
    width: calc(100% - 22px);
    color: #000;
}


.shop-sidebar .filters {
    max-height: 500px;
    overflow-x: hidden;
}

.widget-brands .brand-list {
    max-height: 500px;
    overflow: auto;
}

.widget-category .menu-item-has-children > div > a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    font-size: calc-rem-value(8);
    position: absolute;
    right: 0;
    top: 9px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.widget-category > ul ul {
    padding-left: 24px;
}

.widget-category li.open > div > a:after {
    transform: rotate(90deg);
}