  /*------------------------------------------
   * 01. Google Fonts
  --------------------------------------------*/
  @import url('..//fonts/Poppins.css');
  @import url('..//fonts/Montserrat.css');
  @import url('../fonts/Courgette.css');
  @import url('../fonts/Jost.css');
  @import url('..//fonts/Urbanist.css');
  @import url('https://fonts.googleapis.com/css2?family=Cairo&family=El+Messiri&family=PT+Sans:wght@700&family=Roboto:wght@500&family=Sofia+Sans:wght@300;500&display=swap');  
  @import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Arabic:wght@100..800&display=swap');
  /*------------------------------------------
   * 02. Basic Styles
  --------------------------------------------*/
  *,
  ::before,
  ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html {
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
  }

  
  body {
    font-size: 13px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #322C33;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }
  [dir="rtl"] body{
       font-family: "Playpen Sans Arabic", cursive;
  }
  /* Theme Color */

:root {
	
	/* #f2be00 in decimal RGB */
	/* --main-color: #19c8fa; */
    --main-color: #111;
  /* #0c2d62 in decimal RGB */
  --main-color-two: #0293D7;
  
  /* #f2be00 in decimal RGBA */
  --main-color-two-rgba:
	rgb(242,190,0,0.90);
  
  /* #ffffff in decimal RGB */
  --white-color:
	rgb(255,255,255);
  
  /* #ffffff in decimal RGBA */
  --white-color-opicity:
	rgba(255,255,255,0.80);
  
  /* #ffffff in decimal RGBA */
  --white-color-opicity-two:
	rgba(255,255,255,0.20);
  
  /* #000000 in decimal RGB */
  --black-color:
	rgb(0,0,0);
  
  /* #ffffff in decimal RGBA Two */
  --black-color-opicity:
	rgba(0,0,0,0.80);
  
  /* #555555 in decimal RGB */
  --text-color:
	rgb(85,85,85);
  
  /* #00162b Heading Color in decimal RGB */
  --heading-color:
	rgb(0,22,43);
  
  /* #f4f4f4 Grey Color in decimal RGB */
  --heading-color:
	rgb(244,244,244);
}
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  nav,
  section,
  summary {
    display: block;
  }
  
  audio,
  canvas,
  video {
    display: inline-block;
  }
  
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  [hidden] {
    display: none;
  }
  
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #cdcfd3;
  }
  
  input,
  textarea {
    padding: 10px 18px;
  }
  
  iframe {
    border: 0;
    width: 100%;
    height: 100%;
  }
  
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: right center;
    background-image: url(../images/arrow-select.png) !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    line-height: 1.2;
    text-indent: 0.01px;
    text-overflow: '';
    cursor: pointer;
    padding: 8px 28px 8px 15px;
  }
  
  a {
    color: #555555;
    text-decoration: none;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  a:focus {
    outline: none;
  }
  
  a:active,
  a:hover {
    color: #000000;
    outline: 0;
  }
  
  a:hover,
  a:focus {
    opacity: 0.8;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  p {
    margin: 0 0 24px;
  }
  
  pre {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  blockquote,
  q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
  }
  
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: "";
    content: none;
  }
  
  blockquote {
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    margin: 24px 40px;
  }
  
  blockquote blockquote {
    margin-inline-end: 0;
  }
  
  blockquote cite,
  blockquote small {
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
  }
  
  blockquote em,
  blockquote i {
    font-style: normal;
    font-weight: 300;
  }
  
  blockquote strong,
  blockquote b {
    font-weight: 400;
  }
  
  img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  ol,
  ul {
    padding: 0;
    margin: 0;
  }
  
  ul {
    list-style: none;
  }
  
  .list-items {
    margin-inline-start: 15px;
    margin-bottom: 25px;
  }
  
  .hide {
    display: none !important;
  }
  
  .border-bottom {
    border-bottom: 1px solid #f5f5f5 !important;
  }
  
  /*------------------------------------------
   * 03. Typography
  --------------------------------------------*/
  h1 a,
  .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  address,
  p,
  pre,
  blockquote,
  dl,
  dd,
  menu,
  ol,
  ul,
  table,
  caption,
  hr {
    margin: 0;
    margin-bottom: 15px;
  }
  
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    color: var(--main-color);
    margin: 0 0 9px;
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: 'Cairo', sans-serif;
  }
  
  h1,
  .h1 {
    font-size: 29px;
  }
  
  h2,
  .h2 {
    font-size: 22px;
  }
  
  h3,
  .h3 {
    font-size: 19px;
  }
  
  h4,
  .h4 {
    font-size: 17px;
  }
  
  h5,
  .h5 {
    font-size: 14px;
  }
  
  h6,
  .h6 {
    font-size: 12px;
  }
  
  p {
    margin: 0 0 25px;
  }
  
  p:last-child {
    margin-bottom: 0;
  }
  
  hr {
    margin: 20px 0;
    border: 0;
    border-bottom: 1px solid #e8e9eb;
    opacity: 1;
  }
  
  input,
  button,
  select,
  textarea,
  .form-control {
    background: transparent;
    border: 1px solid #e8e9eb;
    transition: all 0.4s ease-out 0s;
    color: #333333;
    border-radius: 0;
  }
  
  input:focus,
  input:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .form-control:focus {
    background-color: #ffffff;
    border-color: #cdcfd3;
    outline: none;
    box-shadow: none;
  }
  
  input,
  select,
  .nice-select,
  textarea,
  .form-control {
    width: 100%;
    font-size: 13px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
  }
  
  textarea.form-control {
    min-height: 80px;
  }
  
  input,
  select,
  .nice-select {
    height: 40px;
    padding: 0 15px;
  }
  
  .nice-select {
    padding: 0 25px 0 15px;
    display: flex;
    align-items: center;
  }
  
  .nice-select:after {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: -2px 0 0;
    border-bottom: none;
    border-inline-start: 4px solid transparent;
    border-inline-end: 4px solid transparent;
    border-top: 5px solid #000000;
    display: inline-block;
    transform: none;
  }
  
  .nice-select.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    inset-inline-end: 13px;
    margin: -4px 0 0;
  }
  
  input[type="checkbox"],
  input[type="radio"] {
    width: auto;
    height: auto;
  }
  
  input[type="checkbox"]:focus,
  input[type="radio"]:focus {
    outline: 0;
    box-shadow: none;
  }
  
  ::placeholder {
    color: #858585;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: #858585;
  }
  
  ::-ms-input-placeholder {
    color: #858585;
  }
  
  input:-moz-placeholder,
  textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  
  /* Utilities */
  .hidden {
    display: none;
  }
  
  .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .visually-hidden,
  .icon__fallback-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  
  .label--hidden {
    position: absolute;
    height: 0;
    width: 0;
    margin-bottom: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
  
  .poss_relative {
    position: relative;
  }
  
  .poss_absolute {
    position: absolute;
  }
  
  .visuallyhidden.focusable:active,
  .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
  }
  
  .invisible {
    visibility: hidden;
  }
  
  .clearfix:before,
  .clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  
  .clearfix:after {
    clear: both;
  }
  
  /* Text specialized */
  .text-italic {
    font-style: italic;
  }
  
  .text-normal {
    font-style: normal;
  }
  
  .text-underline {
    text-decoration: underline;
  }
  
  .transform-none {
    text-transform: inherit !important;
  }
  
  /* Font specialized */

  
  .heading-font {
    font-family: "Montserrat", sans-serif !important;
  }
  
  .font15 {
    font-size: 15px;
  }
  
  .font18 {
    font-size: 18px;
  }
  
  .font20 {
    font-size: 20px;
  }
  
  .list--inline {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
  }
  
  .list--inline li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  
  .table> :not(:last-child)> :last-child>* {
    border-bottom-color: inherit;
  }
  
  th {
    font-family: "Montserrat", Helvetica, Tahoma, Arial, serif;
    font-weight: 700;
  }
  
  .display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0 !important;
  }
  
  .display-table-cell {
    float: none;
    display: table-cell;
    vertical-align: middle;
  }
  
  /*----------------------------------------
    04. Container
  ------------------------------------------*/
  .container {
    max-width: 1200px;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
  
  .container-fluid {
    padding: 0 65px;
  }
  
  .container-fluid:before,
  .container-fluid:after {
    content: '';
    clear: both;
    display: block;
  }
  
  .main-content {
    min-height: 500px;
  }
  
  .grid {
    *zoom: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-inline-start: -30px;
  }
  
  .grid__item {
    float: left;
    padding-inline-start: 30px;
    padding-inline-end: 0;
    width: 100%;
  }
 [dir="rtl"] .grid__item {
    float: right;
   
  }
  
  .grid--no-gutters>.grid__item {
    padding-inline-start: 0;
  }
  
  /*----------------------------------------
    05. Button
  ------------------------------------------*/
  .btn,
  .payment-button button {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 8px 20px 8px;
    background-color: var(--main-color);
    color: #eee;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
    white-space: normal;
    font-size: 14px;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .btn:hover,
  .btn:focus,
  .payment-button button:hover,
  .payment-button button:focus {
    background-color: var(--main-color);
    color: #ffffff;
    border-color: var(--main-color);
    text-decoration: none;
  }
  
  .btn--large {
    padding: 0 25px;
    height: 42px;
  }
  
  .btn--small {
    padding: 8px 10px !important;
    font-size: 0.92308em !important;
    line-height: 1;
  }
  
  .btn--secondary {
    background-color: #ededed;
    color: #000000;
    border: 1px solid #000000;
  }
  
  .border-btn-1 {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    opacity: 1;
  }
  
  .border-btn-1:hover,
  .border-btn-1:focus {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
  }
  
  .border-btn-2 {
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
  }
  
  .border-btn-2:hover,
  .border-btn-2:focus {
    color: #ffffff;
    background-color: var(--main-color);
    border-color: var(--main-color);
    opacity: 1;
  }
  .view-btn{
    position: relative;
    height: 50px;
    margin-top: 20px;
  }
  .border-btn-2.view-more{
    position: relative;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: 20px auto;
    width: 150px;
    font-size: 15px !important;
    background-color: #000;
    color: #fff;
  }
  .border-btn-2.view-more:hover{
    background-color: transparent;
    color: #000;
    border-color: #000;
  }
  .btn--link {
    background-color: transparent;
    border: 1px solid transparent;
    margin: 0;
    color: #000000;
    text-align: start;
    text-decoration: none;
    outline: none !important;
    box-shadow: none !important;
  }
  
  .btn--link:hover,
  .btn--link:focus {
    opacity: 0.8;
    text-decoration: none;
  }
  
  .btn-check:focus+.btn,
  .btn:focus {
    outline: 0;
    box-shadow: none;
  }
  
  button.close {
    background-color: transparent;
    padding: 0;
    border: 0;
    opacity: .5;
    -webkit-appearance: none;
  }
  
  .alert {
    padding: 0.6rem 0.6rem;
    border-radius: 0rem;
  }
  
  .alert .icon {
    font-size: 20px;
    vertical-align: sub;
  }
  
  .text-content p {
    margin-bottom: 10px;
  }
  
  .text-content h3 {
    margin-top: 20px;
    color: var(--main-color);
  }
  
  .text-content .list-items li {
    margin-bottom: 5px;
  }
  
  /* Custom Radio */
  .customRadio {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 10px;
  }
  
  .customRadio input[type="radio"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    display: none;
  }
  
  .customRadio input[type="radio"]+label {
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
  }
  
  .customRadio input[type="radio"]+label:before {
    content: '';
    background: #ffffff;
    border: 1px solid #d0d0d0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
  }
  
  .customRadio input[type="radio"]+label:after {
    content: '';
    background: #63386d;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    inset-inline-start: 5px;
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
    transition: transform 0.3s linear, opacity 0.3s linear;
  }
  
  .customRadio input[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  /* Custom Checkbox */
  .customCheckbox {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
  
  .customCheckbox input[type="checkbox"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    display: none;
  }
  
  .customCheckbox input[type="checkbox"]+label {
    position: relative;
    padding: 0 0 0 30px;
    margin-bottom: 0;
    cursor: pointer;
  }
  
  .customCheckbox input[type="checkbox"]+label:before {
    content: '';
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
  }
  
  .customCheckbox input[type="checkbox"]+label:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #63386d #63386d;
    width: 12px;
    height: 7px;
    position: absolute;
    top: 5px;
    inset-inline-start: 5px;
    opacity: 0;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
    transition: transform 0.3s linear, opacity 0.3s linear;
  }
  
  .customCheckbox input[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    color: #63386d;
  }
  
  /*----------------------------------------
    Flex Class
  ------------------------------------------*/
  /* display flex/wrap */
  .d-flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  /* display flex/wrap/align center */
  .d-flex-align-center {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  /* display flex/wrap/align center/justify center; */
  .d-flex-justify-align-center {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  /*----------------------------------------
    MFP Popup
  ------------------------------------------*/
  .mfpbox {
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
  }
  
  .mfpbox .mfp-close {
    inset-inline-end: 0;
    opacity: 1;
    top: 0;
    color: #333;
    line-height: 30px;
    height: 30px;
    width: 30px
  }
  
  .mfp-zoom-in .mfp-with-anim,
  .modal.fade .modal-dialog {
    opacity: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
  }
  
  .mfp-zoom-in.mfp-ready .mfp-with-anim,
  .modal.show .modal-dialog {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
  }
  
  .mfp-zoom-in.mfp-removing .mfp-with-anim {
    opacity: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
  }
  
  .modal-dialog {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .modal-dialog .btn-close {
    padding: 0;
    position: absolute;
    inset-inline-end: 25px;
    z-index: 3;
    border: none;
    outline: none;
    box-shadow: none;
  }
  
  /* Blur-up lazyload */
  .blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  .blur-up.lazyloaded.about-img{
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
}
  .blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
    -webkit-transition: filter 400ms, -webkit-filter 400ms;
  }
  
  .blur-up {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: filter 400ms, -webkit-filter 400ms;
    -webkit-transition: filter 400ms, -webkit-filter 400ms;
  }
  
  /* Tooltip */
  .tooltip>.tooltip-inner {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.4px;
    font-weight: 400;
    padding-inline-start: 8px;
    padding-inline-end: 8px;
    text-shadow: none;
    height: auto;
    text-transform: uppercase;
    border-radius: 0;
  }
  
  /* Magnific Popup */
  .magnific-popup {
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    max-width: 800px;
    width: 95%;
    margin: 40px auto;
    transition: 1s all;
    -webkit-transition: 1s all;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  .magnific-popup .mfp-close {
    font-family: inherit;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    z-index: 99;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: #000000;
    opacity: 1 !important;
    text-shadow: none;
    color: #ffffff;
    font-size: 24px;
  }
  
  .magnific-popup .mfp-close:hover {
    background-color: #555555;
  }
  
  /*----------------------------------------
    06. Pre Loader
  ------------------------------------------*/
  #pre-loader {
    background-color: var(--main-color);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    margin-top: 0px;
    top: 0px;
    inset-inline-start: 0px;
    bottom: 0px;
    overflow: hidden !important;
    inset-inline-end: 0px;
    z-index: 999999;
  }
  
  #pre-loader img {
    text-align: center;
    inset-inline-start: 0;
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 99;
    margin: 0 auto;
  }
  
/****************************************Start breadcrumb*********************************************/ 
.breadcrumb-area {
  background-image: url(../images/slideshow-banners/3.webp);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
  padding: 100px 0;
  position: relative;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area {
      padding: 101px 0 85px; } }
  @media (max-width: 767px) {
    .breadcrumb-area {
      padding: 101px 0 85px; } }
  .breadcrumb-area::before {
    position: absolute;
    content: '';
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    background-color: #00000096;
    }

.breadcrumb-item {
  text-align: center; }
  .breadcrumb-item .title {
    color: #fff;
    font-size: 40px;
    lg: linear-gradient();
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .breadcrumb-item .title {
        font-size: 30px;
        line-height: 40px; } }
  .breadcrumb-item nav {
    display: inline-block; }
    .breadcrumb-item nav ol li a {
      color: #fff;
      
      font-weight: 600;
      text-transform: uppercase;
      }
.breadcrumb-item nav ol li.active{color: #fff ;opacity: 0.7;    padding-inline-start: 0.5rem;
    padding-inline-end: 0;}
    .breadcrumb-item nav ol li + .breadcrumb-item::before {
      color: #fff;
      padding-inline-end: 0.5rem;
    padding-inline-start: 0;}
    [dir="rtl"] .breadcrumb-item nav ol li + .breadcrumb-item::before{
        float: right;
    }
/****************************************End breadcrumb*********************************************/ 
  
  /*----------------------------------------
   * 0.8. Section
  ------------------------------------------*/
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid#eee;
  }
  .section-all{
      padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  
  .pb-section {
    padding-bottom: 30px;
  }
  
  .pt-section {
    padding-top: 30px;
  }
  
  .no-pt-section {
    padding-top: 0;
  }
  
  .no-pb-section {
    padding-bottom: 0;
  }
  
  .section-header h2 {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
  }
  
  .section-header p {
    font-size: 13px;
    line-height: 1.3;
  }
  
  /*----------------------------------------
   09. Promotional Bar
  ------------------------------------------*/
  /* .promotional-bar {
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    background-color: #333;
    color: #ffffff;
  }
  
  .promotional-bar a {
    color: #ffffff;
    text-decoration: none;
    padding: 0 0 2px;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 0 0 4px;
  }
  
  .promotional-bar .close {
    text-shadow: none;
    color: #ffffff;
    opacity: 1;
    font-size: 18px;
    margin: 2px 0 0;
  }
  
  .promotional-bar .close:hover {
    color: #f5f5f5;
  } */
  
  /*----------------------------------------
    10. Header Style
  ------------------------------------------*/
  .promotion-header {
    color: #df1a0b;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 35px;
    background-color: #fff0ef;
    text-align: center;
    position: relative;
    z-index: 5;
  }
  
  .closeHeader {
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    inset-inline-end: 40px;
    top: 8px;
    height: 25px;
    width: 25px;
    line-height: 22px;
    color: #df1a0b;
  }
  
  .top-header {
    color: var(--main-color);
    line-height: 16px;
    padding-top: 9px;
    padding-bottom: 9px;
    background: var(--white-color);
    min-height: 38px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .top-header a {
    color: #ffffff;
  }
  
  .top-header p,
  .top-header a,
  .top-header select,
  .top-header .fa,
  .top-header span.selected-currency,
  .top-header .language-dd {
    color: var(--main-color);
    font-size: 12px;
    display: inline;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.05em;
    vertical-align: middle;
    text-transform: uppercase;
    line-height: normal;
  }
  
  .top-header a:hover {
    text-decoration: underline;
  }
  
  .top-header .phone-no a:hover {
    text-decoration: none;
  }
  
  .top-header .phone-no .icon {
    font-size: 16px;
  }
  
  .top-header .social-icons {
    margin: 0 -5px;
  }
  
  .top-header .social-icons li {
    padding: 0 5px;
  }
  
  .top-header .social-icons li a:hover {
    text-decoration: none;
  }
  
  .top-header .social-icons li .icon {
    font-size: 16px;
    color: var(--main-color);
    height: auto;
    vertical-align: middle;
  }
  
  .top-header .right-action a {
    text-decoration: none;
  }
  
  .top-header .right-action .icon {
    font-size: 17px;
  }
  
  .top-header .picker {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-inline-end: 10px;
  }
  
  .top-header .nice-select {
    color: var(--main-color);
    font-size: 12px;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: normal;
    background: transparent;
    border: none;
    height: auto;
    padding: 0 12px 0 0;
  }
  
  .top-header .nice-select:after {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: -2px 0 0;
    inset-inline-end: 0;
    border-bottom: none;
    border-inline-start: 4px solid transparent;
    border-inline-end: 4px solid transparent;
    border-top: 5px solid #ffffff;
    display: inline-block;
    transform: none;
  }
  
  .top-header .nice-select.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    margin: -4px 4px 0 0;
  }
  
  .top-header .nice-select .list {
    width: auto;
  }
  
  @media (min-width:990px) {
    .top-header .picker .nice-select .list {
      top: 120%;
      opacity: 0;
      visibility: hidden;
      pointer-events: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }
  
    .top-header .picker:hover .nice-select .list {
      top: 100%;
      top: 100%;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
  
    .top-header .picker:hover .nice-select:after,
    .top-header .picker:hover .nice-select.open:after {
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
      margin: -4px 2px 0 0;
    }
  
    .top-header .nice-select.open:after {
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      margin: -2px 2px 0 0;
    }
  }
  
  .top-header .user-menu .an {
    font-size: 19px;
    cursor: pointer;
  }
  
  .top-header .list-inline {
    margin: 0;
    list-style: none;
  }
  
  .top-header .list-inline>li {
    display: inline-block;
    padding-inline-end: 5px;
    padding-inline-start: 5px;
    text-transform: uppercase;
  }
  
  .logo {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
  }
  .logo img{
    height: 90px;
    object-fit: contain;
  }
  .stickyNav {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    inset-inline-start: 0;
    background-color: #000;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .stickyNav li a{
    color: var(--white-color) !important;
  }
  .stickyNav .right-action .icon{
    color: var(--white-color);
  }
  .stickyNav .top-header {
    display: none !important;
  }
  
  .stickyNav .header-wrap {
    position: relative;
    z-index: 1;
  }
  
  .stickyNav .logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .right-action .icon {
    font-size: 21px;
  }
  
  .right-action .user-menu .icon {
    font-size: 26px;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .right-action>.item {
    position: relative;
    margin-inline-start: 20px;
  }
  
  .right-action>.item:first-child {
    margin-inline-start: 0;
  }
  
  .user-menu-dropdown .user-menu {
    cursor: pointer;
    color: var(--main-color);
  }
  
  .user-menu-dropdown .user-menu:hover {
    color: #555555;
    text-decoration: none;
  }
  
  .user-menu-dropdown .customer-links {
    border: 1px solid #e8e9eb;
    z-index: 222;
    padding: 10px;
    position: absolute;
    inset-inline-end: -30px;
    margin: 0;
    top: 35px;
    background: #ffffff;
  }
  
  .user-menu-dropdown .customer-links li {
    display: block;
    padding: 0 15px;
    text-align: start;
  }
  
  .user-menu-dropdown .customer-links li a {
    text-transform: uppercase;
    color: #555555;
  }
  
  .site-header-wishlist .wishlist-trigger {
    color: var(--main-color);
    border: 0;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
  }
  
  .site-header-wish-count {
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    top: 0px;
    inset-inline-end: -10px;
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .site-header__cart {
    color: var(--main-color);
    text-decoration: none;
  }
  
  .site-header__cart:hover {
    color: #555555;
    text-decoration: none;
  }
  
  .site-header__cart-count {
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    top: -5px;
    inset-inline-end: -10px;
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  #header-cart {
    width: 320px;
    margin-top: 8px;
    display: none;
    background-color: #ffffff;
    border: 1px solid #e8e9eb;
    position: absolute;
    top: 100%;
    inset-inline-end: -5px;
    z-index: 555;
    border-radius: 0;
  }
  
  #header-cart:after {
    content: '';
    position: absolute;
    bottom: 100%;
    inset-inline-end: 4px;
    border: solid transparent;
    height: 0;
    width: 0;
    border-color: rgba(221, 221, 221, 0);
    border-bottom-color: #e8e9eb;
    border-width: 8px;
    margin-inline-start: -8px;
  }
  
  #header-cart hr {
    margin: 20px 0
  }
  
  #header-cart .btn {
    color: #ffffff;
    margin: 0 2% 0 0;
    width: 48%;
    padding: 10px;
  }
  
  #header-cart .btn:nth-of-type(2n) {
    margin-inline-end: 0;
  }
  
  #header-cart #cart-title {
    text-align: start;
    margin-bottom: 0;
  }
  
  #header-cart #cart-title strong {
    color: #000000;
  }
  
  #header-cart .variant-cart {
    color: #777;
    font-size: 11px;
  }
  
  .block-cart .wrapQtyBtn {
    display: block;
    float: none;
    margin: 8px 0;
  }
  
  .block-cart .wrapQtyBtn .label {
    float: left;
    line-height: 25px;
    padding-inline-end: 5px;
  }
 [dir="rtl"] .block-cart .wrapQtyBtn .label {
    float: right;
   
  }
  
  .block-cart .qtyField .product-form__input {
    font-size: 14px;
    height: 25px;
    max-width: 70px;
    padding: 0 22px;
    text-align: center;
    border: 1px solid #cdcfd3;
    outline: none;
  }
  
  .block-cart .qtyField .qtyBtn {
    font-size: 11px;
    width: 20px;
    height: 25px;
    line-height: 19px;
    display: inline-block;
    padding: 3px;
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    border: 1px solid #dcdcdc;
  }
  
  .block-cart .qtyField .qtyBtn.plus {
    inset-inline-start: auto;
    inset-inline-end: 0;
  }
  
  .block-cart .qtyField a .an {
    font-size: 12px;
    line-height: 10px;
  }
  
  .block-cart .priceRow {
    margin-top: 0;
    color: #000000;
  }
  
  .mini-products-list {
    padding: 15px 15px 0;
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
    margin: 0;
  }
  
  .mini-products-list+.mini-products-list {
    padding-top: 0;
  }
  
  .mini-products-list li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: normal;
    display: block;
    border-bottom: solid 1px #eee;
  }
  
  .mini-products-list li:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .mini-products-list li:before,
  .mini-products-list li:after {
    content: '';
    clear: both;
    display: block;
  }
  
  .mini-products-list li .product-image {
    width: 25%;
    float: left;
  }
  
  .mini-products-list li .pro-img {
    float: left;
    width: 30%;
  }
[dir="rtl"] .mini-products-list li .product-image {
    float: right;
  }
  
[dir="rtl"] .mini-products-list li .pro-img {
    float: right;
  }
  
  .mini-products-list li .pName {
    color: #000000;
    font-size: 13px;
    white-space: normal;
    text-decoration: none;
    display: block;
    line-height: normal;
    margin-inline-end: 40px;
    margin-bottom: 0;
  }
  
  .mini-products-list li .pName:hover {
    color: #222222;
  }
  
  .mini-products-list li .product-details {
    float: left;
    width: 75%;
    padding-inline-start: 15px;
    text-align: start;
  }
  [dir="rtl"] .mini-products-list li .product-details {
    float: right
  }
  
  .mini-products-list li .remove {
    color: #5c5c5c;
    float: right;
    font-size: 16px;
    padding: 0 0 0 7px;
    margin-top: -3px;
    text-decoration: none;
  }
  [dir="rtl"] .mini-products-list li .remove {
    float: left;
  }
  
  .mini-products-list li .remove:hover {
    color: #000000;
  }
  
  .mini-products-list li .priceRow {
    margin: 10px 0 0;
  }
  
  .mini-products-list li .priceRow .prodMulti {
    display: inline-block;
    font-size: 10px;
  }
  
  .mini-products-list li .priceRow .product-price {
    display: inline-block;
  }
  
  .mini-products-list li .qtyField {
    display: block;
    max-width: inherit;
    border: none;
    float: left;
    max-width: 70px;
    position: relative;
  }
 [dir="rtl"] .mini-products-list li .qtyField {

    float: right;
  }
  
  .mini-products-list li .qtyField a {
    display: none;
  }
  
  .mini-products-list li .qtyField span {
    display: inline-block;
    padding: 0;
    border: 0;
  }
  
  .minicart-action .total-in {
    color: #000000;
    margin: 10px 0;
    padding: 8px 10px;
    border-top: 1px solid #e8e9eb;
    border-bottom: 1px solid #e8e9eb;
    text-align: start;
    display: inline-block;
    width: 100%;
  }
  
  .minicart-action .total-in .item {
    float: right;
    font-size: 16px;
    line-height: 1.2;
  }
  [dir="rtl"] .minicart-action .total-in .item {
    float: left;

  }
  
  .minicart-action .total-in label {
    float: left;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
  }
  [dir="rtl"] .minicart-action .total-in label {
    float: right;
  }
  
  .minicart-action .total-in .label {
    text-transform: uppercase;
    margin: 0;
    display: inline-block;
    width: 100%;
    line-height: normal;
  }
  
  .search {
    padding: 20px;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: auto;
    background: none;
    color: #333;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    -webkit-transform-origin: top center;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  }
  
  .search--opened {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
  }
  
  .site-header__search .search-trigger {
    background: transparent;
    color: var(--main-color);
    border: 0;
    cursor: pointer;
    padding: 0;
  }
  
  .site-header__search .search-trigger:hover {
    color: #555555;
  }
  
  .search .search__form {
    position: relative;
    z-index: 5;
    padding: 10px 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
  }
  
  .search .search__input {
    width: 100%;
    border: 0;
    font-size: 20px;
    padding: 14px 40px;
    height: auto;
    margin: 0;
  }
  
  .search .search__button {
    border: 0;
    font-size: 25px;
  }
  
  .search .go-btn {
    position: absolute;
    inset-inline-start: 15px;
    top: 17px;
    font-size: 25px;
    vertical-align: middle;
    padding: 0;
  }
  
  .search .go-btn .icon {
    font-size: 30px;
  }
  
  .search .close-btn {
    position: absolute;
    inset-inline-end: 15px;
    top: 20px;
    font-size: 25px;
    line-height: normal;
    display: block;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  
  .search-model:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 99;
    -webkit-transition: all .45s cubic-bezier(.29, .63, .44, 1);
    transition: all .45s cubic-bezier(.29, .63, .44, 1);
  }
  
  .search-bar-inline .search__input {
    color: #444;
    padding: 10px 30px 10px 10px;
    margin: 0;
    border-radius: 3px;
    border-color: #a8a8a8;
  }
  
  .search-bar-inline .search__button {
    position: absolute;
    top: 9px;
    inset-inline-end: 9px;
    padding: 0;
    border: none;
  }
  
  .search-bar-inline .search__button .an {
    font-size: 20px;
  }
  
  .classicHeader:not(.stickyNav) .search-bar-inline .search__input {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
  
  .classicHeader:not(.stickyNav) .search-bar-inline .search__input:focus {
    border-color: #e3e3e3;
  }
  
  .classicHeader:not(.stickyNav) .search-bar-inline .search__button,
  .classicHeader:not(.stickyNav) .search-bar-inline .search__input::placeholder {
    color: #ffffff;
  }
  
  #siteNav {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  
  #siteNav.right {
    text-align: end;
  }
  
  #siteNav.left {
    text-align: start;
  }
  
  #siteNav.center {
    text-align: center;
    justify-content: center;
  }
  
  #AccessibleNav {
    padding-inline-start: 0;
  }
  
  .mobile-nav-wrapper,
  .site-header__logo.mobileview {
    display: none;
  }
  .product-name p{
    height: 60px;
    overflow: hidden;
  }
  @media (min-width:990px) {
    #siteNav a {
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      display: block;
      opacity: 1;
      -webkit-font-smoothing: antialiased;
      letter-spacing: 0.04em;
      position: relative;
    }
  
    #siteNav>li {
      display: inline-block;
      text-align: start;
    }
  
    #siteNav>li>a {
      color: #fff;
      padding: 0 18px;
      text-transform: uppercase;
      position: relative;
      line-height: 40px;
    }
  
    #siteNav>li>a .navLbl {
      white-space: nowrap;
      color: var(--main-color);
      background-color: var(--white-color);
      font-size: 10px;
      font-weight: 400;
      line-height: normal;
      display: inline-block;
      padding: 0 5px;
      border-radius: 0;
      position: absolute;
      top: -9px;
      inset-inline-start: 50%;
    }
  
    #siteNav>li>a .navLbl:after {
      content: " ";
      display: block;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: var(--white-color);
      border-left-color: var(--white-color);
      position: absolute;
      bottom: -4px;
      inset-inline-start: 0;
    }
  
    #siteNav>li>a .navLbl.new {
      background-color: #83cc52;
    }
  
    #siteNav>li>a .navLbl.new:after {
      border-top-color: #83cc52;
      border-left-color: #83cc52;
    }
  
    #siteNav>li>a .navLbl.hurryup {
      background-color: #94c442;
    }
  
    #siteNav>li>a .navLbl.hurryup:after {
      border-top-color: #94c442;
      border-left-color: #94c442;
    }
  
    #siteNav.nolinkbg {
      margin: 0 -18px;
    }
  
    #siteNav.medium>li a {
      font-weight: 600;
    }
  
    #siteNav.hidearrow>li>a .an {
      display: none;
    }
  
    #siteNav>li>a .an {
      font-size: 11px;
      font-weight: bold;
      margin-top: -3px;
    }
  
    #siteNav>li>a:hover:hover,
    #siteNav>li>a:hover {
      color: var(--white-color);
      opacity: 0.7;
    }
  
    #siteNav>li .megamenu {
      opacity: 0;
      visibility: hidden;
      padding: 25px 25px 0;
      width: 100%;
      position: absolute;
      top: 59px;
      inset-inline-start: 0;
      z-index: 999;
      background-color: #ffffff;
      box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.3);
      -webkit-box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.3);
      pointer-events: none;
      -ms-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      border: 1px solid #eee;
      max-height: 600px;
      overflow: auto;
    }
  
    #siteNav>li .megamenu ul {
      padding: 0;
      list-style: none;
    }
  
    #siteNav>li:hover>.megamenu {
      top: 40px;
      opacity: 1;
      visibility: visible;
      pointer-events: visible;
    }
  
    #siteNav>li .megamenu li.lvl-1 {
      margin-bottom: 25px;
    }
  
    #siteNav>li .megamenu li.lvl-1 a.lvl-1,
    #siteNav .product-menu .site-nav.lvl-1 {
      color: var(--main-color);
      font-size: 13px;
      text-transform: uppercase;
      padding: 0 0 8px;
      font-weight: 600;
    }
  
    #siteNav>li .megamenu li.lvl-1 li .site-nav {
      color: #000000;
      padding: 3px 0;
      font-weight: 400;
    }
  
    #siteNav>li .megamenu li.lvl-1 li .site-nav:hover {
      color: #000000;
    }
  
    #siteNav>li .megamenu li.lvl-1 li .site-nav:before {
      content: "";
      display: inline-block;
      width: 0px;
      height: 2px;
      vertical-align: middle;
      background-color: #000000;
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }
    #siteNav>li .megamenu li.lvl-1 a{
      color: #000 !important;
    }
    #siteNav>li ul.dropdown li a{
      color: #000 !important;
    }
    #siteNav>li .megamenu li.lvl-1 li .site-nav:hover:before {
      width: 5px;
      margin-inline-end: 3px;
    }
  
    #siteNav>li .megamenu.style4 {
      background-repeat: no-repeat;
      background-size: auto 100%;
    }
  
    #siteNav>li .megamenu .imageCol {
      padding-bottom: 25px;
    }
  
    #siteNav>li ul.dropdown li a .an {
      font-size: 14px;
      position: absolute;
      inset-inline-end: 10px;
      top: 13px;
    }
  
    #siteNav a .lbl {
      color: #ffffff;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1;
      text-transform: uppercase;
      display: inline-block;
      padding: 2px 4px;
      border-radius: 3px;
      background-color: #f00;
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      position: relative;
      vertical-align: middle;
    }
  
    #siteNav a .lbl:after {
      content: " ";
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      bottom: 3px;
      inset-inline-start: -7px;
      border: 4px solid transparent;
      border-right-color: transparent;
      border-right-color: #f00;
    }
  
    #siteNav a .lbl.nm_label3 {
      background-color: #fb6c3e;
    }
  
    #siteNav a .lbl.nm_label1 {
      background-color: #01bad4;
    }
  
    #siteNav a .lbl.nm_label3:after {
      border-right-color: #fb6c3e;
    }
  
    #siteNav a .lbl.nm_label1:after {
      border-right-color: #01bad4;
    }
  
    #siteNav>li.dropdown {
      position: relative;
    }
  
    #siteNav>li .dropdown,
    #siteNav>li .dropdown ul {
      list-style: none;
      border: 1px solid #eeeeee;
      opacity: 0;
      visibility: hidden;
      width: 220px;
      position: absolute;
      top: 59px;
      inset-inline-start: 0;
      z-index: 999;
      box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.3);
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      padding: 0;
    }
  
    #siteNav>li:hover>.dropdown,
    #siteNav>li .dropdown li:hover>ul {
      top: 40px;
      opacity: 1;
      visibility: visible;
    }
  
    #siteNav>li ul.dropdown li {
      border-top: 1px solid #eeeeee;
      position: relative;
    }
  
    #siteNav>li ul.dropdown li:first-child {
      border: 0;
    }
  
    #siteNav>li ul.dropdown li a {
      color: #000000;
      font-weight: 400;
      padding: 8px 12px;
      background-color: #ffffff;
    }
  
    #siteNav>li ul.dropdown li a:hover {
      color: #fff !important;
      background-color: var(--main-color);
      padding-inline-start: 17px;
    }
  
    #siteNav>li ul.dropdown li ul {
      top: 20px;
      inset-inline-start: 100%;
    }
  
    #siteNav>li ul.dropdown li:hover>ul {
      top: 0;
    }
  
    /* Megamenu Product */
    #siteNav .product-menu {
      margin-bottom: 25px;
    }
  
    #siteNav .grid-products .product-image img {
      margin: 8px 0 10px;
      max-height: 215px;
    }
  
    #siteNav .grid-products .product-name a {
      line-height: 20px;
      font-weight: 500;
      text-transform: capitalize;
      font-size: 13px;
      letter-spacing: 0.5px;
      color: #000000;
    }
 
    #siteNav .grid-products .product-price span {
      color: #555555;
      font-weight: 500;
      margin-top: 5px;
      display: block;
    }
  
    /* Megamenu Brand */
    #siteNav .menu-brand-logo {
      width: 50%;
      float: left;
      padding-inline-end: 10px;
    }
    [dir="rtl"] #siteNav .menu-brand-logo {
      float: right;
    }
  
    #siteNav .menu-brand-logo a {
      display: block;
      margin-bottom: 10px;
      border: 1px solid #ddd;
    }
  
    #siteNav .menu-brand-logo a:hover {
      border-color: #000000;
    }
  
    #siteNav .menu-brand-logo a img {
      display: inline-block;
      vertical-align: middle;
    }
  
    /* Megamenu Bg image */
    #siteNav>li .megamenu.megabgfull {
      background-image: url('../images/megamenu/megamenu-bg-full.jpg');
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: 100% 100%;
      padding-inline-end: 20%;
    }
  
  }
  
  .header-content-wrapper {
    width: 100%;
    padding: 15px 0;
  }
  .text-start.card{
    padding: 20px;
    border: 0;
  }
  /*----------------------------------------
   * 11. Homepage Slideshow
  ------------------------------------------*/
  #page-content.slider{
    padding: 0 !important; 
  }
  .slideshow-wrapper {
    position: relative;
  }
  
  .slideshow .slide {
    position: relative;
  }
  
  .slideshow .wrap-caption>* {
    position: relative;
    z-index: 2;
  }
  
  .slideshow .wrap-caption.center {
    max-width: 1200px;
  }
  
  .slideshow .wrap-caption.right {
    float: right;
    max-width: 65%;
    margin-inline-end: -5%;
  }
  [dir="rtl"] .slideshow .wrap-caption.right {
    float: left;

  }
  
  .slideshow .wrap-caption.left {
    float: left;
    max-width: 65%;
    margin-inline-start: -5%;
  }
  [dir="rtl"] .slideshow .wrap-caption.left {
    float: right;
  }
  
  .slideshow .wrap-caption {
    position: relative;
    display: inline-block;
    padding: 30px;
  }
  
  .slideshow .wrap-caption:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
  }
  
  .slideshow .wrap-caption.bgbox:after {
    opacity: 0.2;
    background-color: #000000;
    border: 4px double #ffffff;
  }
  
  .slideshow__text-content {
    text-align: center;
    margin-top: 30px;
    position: absolute;
    width: 100%;
    top: 50%;
    -ms-transform: translateY(-40%);
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -webkit-transition: all 0.5s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -ms-transition: all 0.5s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    z-index: 3;
  }
  
  .slideshow__text-content.bottom {
    top: inherit;
    bottom: 10%;
    -ms-transform: translateY(10%);
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  
  .slideshow__text-content.top {
    top: 10%;
    -ms-transform: translateY(10%);
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  
  .slick-active .slideshow__text-content.bottom {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  .slick-active .slideshow__text-content.top {
    -ms-transform: translateY(-5%);
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  
  .slick-active .slideshow__text-content,
  .no-js .slideshow__text-content {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
  }
  
  .slideshow .mega-small-title {
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
    margin: 0 0 8px;
  }
  
  .slideshow .slideshow__title {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 65px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 1px 1px 7px rgba(0, 0, 0, 0);
  }
  
  .slideshow .slideshow__subtitle {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
    display: block;
  }
  
  .slideshow .black-text .mega-small-title,
  .slideshow .black-text .slideshow__title,
  .slideshow .black-text .slideshow__subtitle {
    color: #28242c;
  }
  
  .slideshow__text-wrap {
    height: 100%;
  }
  
  .slick-active .slideshow__image.img-animate {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  .slideshow__image.img-animate {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .slideshow__overlay:before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    opacity: 0.5;
    z-index: 3;
  }
  
  .slideshow__overlay.bottom:before {
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  }
  
  .slideshow__overlay.center:before {
    background-color: #000000;
    opacity: .7;
  }
  
  .slideshow .slick-slide img {
    width: 100%;
  }
  
  .slideshow .slick-prev,
  .slideshow .slick-next {
    line-height: normal;
    font-size: 0px;
    padding: 0;
    border: 0;
    position: absolute;
    z-index: 4;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    -ms-transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
    border-radius: 50px !important;
  }
  
  .slideshow .slick-prev {
    inset-inline-start: 30px;
  }
  
  .slideshow .slick-next {
    inset-inline-end: 30px;
  }
  
  .slideshow .slick-next:before {
    content: "\f105";
    font-family: "annimex-icons";
    color: #000000;
  }
  
  .slideshow .slick-prev:before {
    content: "\f104";
    font-family: "annimex-icons";
    color: #000000;
  }
  
  .slideshow .slick-prev:before,
  .slideshow .slick-next:before {
    font-size: 24px;
    line-height: 1;
  }
  
  .slideshow .slick-prev:hover,
  .slideshow .slick-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  }
  
  .slideshow:hover .slick-prev,
  .slideshow:hover .slick-next {
    opacity: 1;
  }
  
  .slideshow .btn {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
  }
  
  .slideshow .btn:hover,
  .slideshow .btn:focus {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
  }
  
  .slideshow .black-text .btn {
    color: #28242c;
    background-color: transparent;
    border: 2px solid #28242c;
  }
  
  .slideshow .black-text .btn:hover,
  .slideshow .black-text .btn:focus {
    color: #fff;
    background-color: #28242c;
    border-color: #28242c;
  }
  
  .slideshow .slideshow--large .slick-slide img {
    height: 750px;
    object-fit: cover;
    object-position: top;
  }
  
  .slideshow .slideshow--medium .slick-slide img {
    height: 650px;
    object-fit: cover;
    object-position: top;
  }
  
  .slideshow .text-shadow .mega-small-title,
  .slideshow .text-shadow .slideshow__title,
  .slideshow .text-shadow .slideshow__subtitle {
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  }
  
  .slideshow .wrap-caption .medium-title {
    font-size: 50px;
  }
  
  .slideshow .wrap-caption .medium-subtitle {
    font-size: 18px;
    text-transform: uppercase;
  }
  
  .slideshow img.mobile-hide {
    display: none;
  }
  
  /*----------------------------------------
   * End Homepage Slideshow
  ------------------------------------------*/
  
  /*----------------------------------------
   * 12. Products With Tab Slider
  ------------------------------------------*/
  .tab-slider-product{
    background-image: url(../images/about/1657265343_13-animeshka-org-p-white-paper-background-foni-13.webp);
    background-position: center;
    background-size: cover;
  }
  .tab-slider-product .tabs {
    border: 0;
    text-align: center;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tab-slider-product .tabs>li {
    float: none;
    display: inline-block;
    margin: 0 15px;
    cursor: pointer;
  }
  
  .tab-slider-product .tabs>li {
    background: none !important;
    border: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    padding-top: 0;
  }
  
  .tab-slider-product .tabs>li.active {
    color: var(--main-color);
  }
  
  .tab-slider-product .tabs li:hover,
  .tab-slider-product .tabs li:focus {
    color: var(--main-color);
    opacity: 1;
    text-decoration: none;
  }
  
  .tab-slider-product .tab_container {
    clear: both;
    width: 100%;
    background: #ffffff;
  }
  
  .tab-slider-product .tab_content {
    display: none;
  }
  
  .tab-slider-product .tab_drawer_heading {
    display: none;
  }
  
  .tabs-listing.style2 .tabs>li {
    padding: 3px 12px;
    font-size: 13px;
    margin: 0 3px;
  }
  
  .tabs-listing.style2 .tabs>li.active {
    color: #fff;
    background-color: var(--main-color) !important;
  }
  
  .tabs-listing.style3 .tabs>li {
    color: #000;
    font-size: 13px;
    letter-spacing: 0.02em;
    margin: 0 12px;
    position: relative;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .tabs-listing.style3 .tabs>li:after {
    width: 0;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    bottom: -6px;
    inset-inline-start: 0;
    z-index: 1;
    background: var(--main-color);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
  }
  
  .tabs-listing.style3 .tabs>li.active:after {
    width: 100%;
  }
  
  .tabs-listing.style3 .tabs>li:hover:after {
    width: 100%;
    opacity: 1;
  }
  
  .tabs-listing.style3 .tabs>li.active,
  .tabs-listing.style3 .tabs>li:hover {
    color: var(--main-color);
    background-color: transparent;
  }
  
  /*----------------------------------------
   * 13. Product Grid
  ------------------------------------------*/
  .grid-products a {
    text-decoration: none !important;
  }
  
  @media only screen and (min-width: 992px) {
  
    .shop-grid-5 .grid-products .item.col-xl-2,
    .col-grid-5 .col-xl-2 {
      -ms-flex: 0 0 20%;
      -webkit-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
      width: 20%;
    }
  }
  
  @media only screen and (min-width: 1540px) {
    .shop-grid-7 .grid-products .item.col-lg-2 {
      -ms-flex: 0 0 14.2222%;
      -webkit-flex: 0 0 14.2222%;
      flex: 0 0 14.2222%;
      max-width: 14.2222%;
      width: 14.2222%;
    }
  }
  
.item .product-image .showVariantImg img {
    opacity: 0;
    visibility: hidden;
  }
  
.item .product-image .showVariantImg .variantImg {
    visibility: visible;
    opacity: 1;
  }
  
.item .product-image {
    position: relative;
    overflow: hidden;
    margin: 0 auto 15px;
  }
  
.item .product-image>a {
    display: block;
    white-space: nowrap;
    opacity: 1;
  }
  
.item .product-image img {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    vertical-align: middle;
    -ms-transition: all ease-out 0.4s;
    -webkit-transition: all ease-out 0.4s;
    transition: all ease-out 0.4s;
  }
  
 .item .product-image .hover {
    visibility: hidden;
    opacity: 0;
    inset-inline-start: 50%;
    top: 50%;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
[dir="rtl"] .item .product-image .hover {
    -ms-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
.item .product-image:hover .primary {
    opacity: 0;
  }
  
.item .product-image:hover .hover:not(.variantImg) {
    opacity: 1;
    visibility: visible;
  }
  
  .grid-view_image:hover .primary {
    opacity: 0;
    visibility: hidden;
  }
  
  .grid-view_image:hover .hover:not(.variantImg) {
    opacity: 1;
    visibility: visible;
  }
  
  .grid-view-item.style2 .grid-view-item__link {
    position: relative;
    overflow: hidden;
    margin: 0 auto 15px;
  }
  
  .grid-view-item.style2 .grid-view-item__link {
    display: block;
    white-space: nowrap;
    opacity: 1;
  }
  
  .grid-view-item.style2 .grid-view-item__image {
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    vertical-align: middle;
    -ms-transition: all ease-out 0.4s;
    -webkit-transition: all ease-out 0.4s;
    transition: all ease-out 0.4s;
  }
  
  .grid-view-item.style2 .grid-view-item__link .hover {
    visibility: hidden;
    opacity: 0;
    inset-inline-start: 50%;
    top: 50%;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  [dir="rtl"] .grid-view-item.style2 .grid-view-item__link .hover {
    
    -ms-transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  .grid-view-item.style2 .grid-view-item__link:hover .primary {
    opacity: 0 !important;
    visibility: hidden;
  }
  
  .grid-view-item.style2 .grid-view-item__link:hover .hover:not(.variantImg) {
    opacity: 1;
    visibility: visible;
  }
  
  .grid-view-item.style2 .hoverDetails {
    width: 100%;
    padding: 0 10px;
    opacity: 0;
    position: absolute;
    top: 40%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: 0 auto;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  
  .grid-view-item.style2 .grid-view-item__link,
  .grid-view-item.style2 .grid-view_image {
    margin-bottom: 0;
  }
  
  .grid-view-item.style2 .grid-view-item__link .hover {
    opacity: 0 !important;
    visibility: hidden;
  }
  
  .grid-view-item.style2:hover .grid-view-item__link .hover {
    opacity: 0.2 !important;
    visibility: visible;
  }
  
  .grid-view-item.style2:hover .hoverDetails {
    opacity: 1;
    top: 50%;
  }
  
  .grid-view-item.style2:hover .button-set {
    opacity: 1;
    bottom: 10px;
  }
  
  .grid-view-item.style2 .quickview-btn,
  .grid-view-item.style2 .variants.add,
  .grid-view-item.style2 .wishlist-btn,
  .grid-view-item.style2 .wishlist,
  .grid-view-item.style2 .compare-btn {
    margin: 0 1px;
  }
  
  .grid-view-item.style2 .button-set a.quick-view,
  .grid-view-item.style2 .button-set a.wishlist,
  .grid-view-item.style2 .button-set a.cartIcon,
  .grid-view-item.style2 .button-set .add-to-compare,
  .grid-view-item.style2 .button-set .soldout {
    height: 32px;
    width: 32px;
    padding: 0;
    justify-content: center;
  }
  
  .grid-view_image {
    position: relative;
    overflow: hidden;
    margin: 0 auto 15px;
  }
  
  .grid-products.style3 .item .product-name {
    margin-bottom: 10px;
  }
  
  .grid-products.style3 .item .product-image {
    margin: 0 auto;
  }
  
  .grid-view_image .product-image>a:after {
    content: "";
    display: inline-block;
    width: 0px;
    height: 100%;
    vertical-align: middle;
  }
  
  .slick-prev,
  .slick-next {
    position: absolute;
    z-index: 9;
    display: block;
    height: 20px;
    width: 20px;
    line-height: normal;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    opacity: 1;
  }
  
  .slick-prev {
    inset-inline-start: -25px;
  }
  
  .slick-next {
    inset-inline-end: -25px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    font-family: "annimex-icons";
    font-size: 22px;
    line-height: 1;
    color: #000000;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .slick-prev:before {
    content: "\f104";
  }
  
  .slick-next:before {
    content: "\f105";
  }
  
  .productSlider:hover .slick-arrow,
  .productPageSlider:hover .slick-arrow,
  .productSlider-style1:hover .slick-arrow,
  .productSlider-style2:hover .slick-arrow,
  .productSlider-style2:hover .slick-arrow,
  .productSlider-fullwidth:hover .slick-arrow {
    opacity: 1;
  }
  
  .grid-products .slick-arrow {
    margin-top: -30px;
  }
  
  .grid-products .slick-slider .item {
    padding-inline-end: 15px;
    padding-inline-start: 15px;
    margin-bottom: 0;
  }
  
  .grid-products-hover-btn .slick-slider .item {
    margin-bottom: 0;
  }
  
  .grid-products-hover-btn .slick-arrow {
    opacity: 0;
  }
  
  .grid-products-hover-btn:hover .slick-arrow {
    opacity: 1;
  }
  
  .sidebar .grid-products-hover-btn .slick-arrow {
    height: 32px;
    width: 32px;
    border-radius: 4px;
  }
  
  .sidebar .grid-products-hover-btn .slick-arrow:before {
    font-size: 18px;
  }
  
  .sidebar .grid-products-hover-btn:hover .slick-arrow {
    background-color: #ffffff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  }
  
  .productPageSlider .slick-arrow {
    margin-top: -40px;
  }
  
  .grid-products .slick-slider .slick-list {
    margin: 0 -15px;
  }
  
  .product-labels {
    position: absolute;
    inset-inline-end: 5px;
    top: 5px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .product-labels.rectangular .lbl {
    border-radius: 0;
  }
  
  .product-labels.radius .lbl {
    border-radius: 3px;
  }
  
  .product-labels .lbl {
    display: block;
    white-space: nowrap;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 0px 6px 0px 6px;
    line-height: 19px;
    text-transform: uppercase;
    text-align: center;
    height: 20px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }
  
  .product-labels .on-sale {
    inset-inline-end: 5px;
    background: #ef2727;
  }
  
  .product-labels .pr-label1 {
    inset-inline-start: 5px;
    background: #83cc52;
  }
  
  .product-labels .pr-label2 {
    inset-inline-start: 5px;
    background: #e9a400;
  }
  
  .product-labels .pr-label3 {
    inset-inline-start: 5px;
    background: #f5a100;
  }
  
  .product-labels.rounded .lbl,
  .sold-out.rounded {
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    white-space: nowrap;
    word-break: break-all;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    min-height: 45px;
    min-width: 45px;
  }
  
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 0.5;
  }
  
  .sold-out {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px 2px 6px;
    line-height: normal;
    border-radius: 0;
    position: absolute;
    top: 5px;
    inset-inline-start: 5px;
    z-index: 3;
    background: #ff708e;
  }
  
  .sold-out span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Product Button Style 1 */
  .button-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    bottom: -70px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  
  .grid-products .item:hover .button-set {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
  }
  
  /* Product Button Style 2 */
  .button-set.style2 {
    flex-direction: column;
    bottom: 10px;
    inset-inline-start: -20%;
    width: auto;
    -ms-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
  }
  
  .grid-products .item:hover .button-set.style2 {
    inset-inline-start: 10px;
    bottom: 10px;
  }
  
  /* Product Button Style 3 */
  .button-set.style3 .btn {
    border-radius: 4px;
  }
  
  .btnicontext {
    margin-top: 14px;
  }
  
  .btnicontext .btn {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    font-size: 13px;
    border-radius: 4px;
    padding: 5px 14px 5px;
  }
  
  .btnicontext .btn:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
  }
  
  .btnicontext .btn .icon {
    display: none;
    font-size: 16px;
    margin-inline-end: 5px;
  }
  
  .btnicontext .soldOutBtn {
    background-color: #f20000;
    border-color: #f20000;
  }
  
  .soldOutBtn,
  .soldOutBtn:focus {
    background-color: #f20000;
    border-color: #f20000;
  }
  
  .soldOutBtn:hover {
    background-color: #d51414;
    border-color: #d51414;
  }
  
  /* Product Button Style 4 */
  .button-set.style4 {
    margin-top: 14px;
    position: static;
  }
  
  /* Product Button Style 5 */
  @media only screen and (min-width: 992px) {
    .button-set.style5 {
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      bottom: auto;
      -webkit-transition: all .3s ease 0s;
      transition: all .3s ease 0s;
    }
  
    .grid-products .item:hover .button-set.style5 {
      bottom: auto;
    }
  
    .button-set.style5>div {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all .7s;
      transition: all .7s;
    }
  
    .grid-products .item:hover .button-set.style5>div {
      opacity: 1;
      visibility: visible;
    }
  
    .button-set.style5>div:nth-child(1) {
      -webkit-transition-delay: .15s;
      transition-delay: .15s;
    }
  
    .button-set.style5>div:nth-child(2) {
      -webkit-transition-delay: .3s;
      transition-delay: .3s;
    }
  
    .button-set.style5>div:nth-child(3) {
      -webkit-transition-delay: .45s;
      transition-delay: .45s;
    }
  
    .button-set.style5>div:nth-child(4) {
      -webkit-transition-delay: .5s;
      transition-delay: .5s;
    }
  }
  
  /* Product Button Style 6 */
  .button-set.style6 {
    flex-direction: column;
    bottom: 40px;
    inset-inline-end: -20%;
    width: auto;
    -ms-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
  }
  
  .grid-products .item:hover .button-set.style6 {
    inset-inline-end: 3px;
    bottom: 40px;
  }
  
  .btnicontext.style6 {
    position: absolute;
    bottom: -20%;
    width: 100%;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  
  .grid-products .item:hover .btnicontext.style6 {
    bottom: 0px;
  }
  
  .btnicontext.style6 .btn {
    border-radius: 0;
    padding: 7px 14px 7px;
    width: 100%;
  }
  
  /* Product Button Style 7 */
  .button-set.style7 .btn {
    border-radius: 4px;
  }
  
  @media only screen and (min-width: 992px) {
    .button-set.style7 {
      flex-direction: column;
      width: auto;
      position: absolute;
      top: auto;
      inset-inline-start: auto;
      bottom: 10px;
      inset-inline-end: 10px;
    }
  
    .grid-products .item:hover .button-set {
      bottom: 10px;
    }
  
    .button-set.style7>div {
      opacity: 0;
      visibility: hidden;
      opacity: 0;
      -webkit-transform: translateY(3px);
      transform: translateY(3px);
      transition: all .5s ease 0s;
    }
  
    .grid-products .item:hover .button-set.style7>div {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    .button-set.style7>div:nth-child(1) {
      -webkit-transition-delay: .1s;
      transition-delay: .1s;
    }
  
    .button-set.style7>div:nth-child(2) {
      -webkit-transition-delay: .2s;
      transition-delay: .2s;
    }
  
    .button-set.style7>div:nth-child(3) {
      -webkit-transition-delay: .3s;
      transition-delay: .3s;
    }
  
    .button-set.style7>div:nth-child(4) {
      -webkit-transition-delay: .4s;
      transition-delay: .4s;
    }
  }
  
  .quickview-btn,
  .variants.add,
  .wishlist-btn,
  .wishlist,
  .compare-btn {
    display: inline-block;
    margin: 2px;
    vertical-align: middle;
  }
  
  a.quick-view,
  a.wishlist,
  a.cartIcon,
  a.add-to-compare,
  .btn.soldout {
    color: #ffffff;
    background-color: var(--main-color);
    font-size: 18px;
    border: 0;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
  a.quick-view:hover,
  a.wishlist:hover,
  a.cartIcon:hover,
  .variants.add button:hover,
  a.add-to-compare:hover,
  .btn.soldout:hover {
    color: #222222;
    background-color: #eeeeee;
    opacity: 1;
  }
  
  .infolinks .wishlist {
    background: none !important;
    color: #000 !important;
    width: auto;
    font-size: 13px;
    text-align: start;
    line-height: inherit;
    height: auto;
    text-decoration: none;
    margin-bottom: 0;
    margin-inline-end: 15px;
    display: inline-block;
  }
  
  .infolinks .wishlist:hover {
    color: #555 !important;
  }
  
  .infolinks .wishlist .icon {
    font-size: 18px;
  }
  
  .button-style2,
  .button-style2 .variants.add {
    position: static;
    opacity: 1;
  }
  
  .button-style2 .btn-style2 {
    display: block;
    float: left;
    width: 25%;
  }
  [dir="rtl"] .button-style2 .btn-style2 {
    float: right;
  }
  
  .button-style2 .cartIcon,
  .button-style2 .quick-view-popup,
  .button-style2 .wishlist,
  .button-style2 .compare {
    color: #ffffff;
    background-color: #000000;
    border-inline-end: 1px solid #ffffff;
  }
  
  .button-style2 .compare {
    border-inline-end: 0;
  }
  
  .button-style2 .wishlist,
  .button-style2 .compare {
    width: 100%;
  }
  
  .button-style2 .variants.add button {
    color: #ffffff;
    background-color: #000000;
  }
  
  .grid-products .item {
    margin: 0 0 30px;
    text-align: center;
  }
  
  .tab_container .grid-products .item {
    margin-bottom: 0;
  }
  
 .item .product-name {
    line-height: 20px;
    color: var(--main-color);
  }
  
.item .product-name a {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.5px;
  }
  
.item .product-name a:hover {
    opacity: 0.8;
  }
  
.item .grid-view-item__vendor {
    color: #555555;
    margin-top: 4px;
    margin-bottom: -4px;
    text-transform: none;
  }
  
.item .product-price {
    margin: 4px 0 5px;
    color: #555555;
    font-size: 15px;
    font-weight: 500;
  }
  
  .product-price .old-price {
    color: #555555;
    font-size: 12px;
    opacity: 0.8;
    text-decoration: line-through;
  }
  
  .product-price .old-price+.price {
    padding-inline-start: 5px;
    color: #ed1313 !important;
    letter-spacing: normal;
  }
  
  .product-price .price {
    color: #555555;
  }
  
  .product-price__sale,
  .product__price--sale {
    color: #63386d !important;
  }
  
  .product-review {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .product-review .an {
    font-size: 16px;
    color: #ff9500;
    margin: 0 1px;
  }
  
.item .swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 14px 0 0;
    list-style: none;
    padding: 0;
  }
  
.item .swatches li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    margin: 0 3px;
    cursor: pointer;
    border: 1px solid #ddd;
  }
  
.item .swatches li:hover {
    border-color: #000000;
  }
  
.item .swatches li img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  
.item .swatches li.circle,
.item .swatches li.circle label,
.item .swatches li.circle img {
    border-radius: 50%;
  }
  
.item .swatches li.square img {
    border-radius: 0;
  }
  
.item .swatches li.radius img {
    border-radius: 4px;
  }
  
.item .swatches li.rounded,
.item .swatches li.rounded img {
    border-radius: 50% !important;
  }
  
.item .swatches li.radius {
    border-radius: 5px !important;
  }
  
.item .swatches li.medium {
    height: 25px;
    width: 25px;
    padding: 0;
  }
  
.item .swatches li.large {
    height: 35px;
    width: 35px;
    padding: 0;
  }
  
.item .swatches li.navy {
    background-color: navy;
  }
  
.item .swatches li.green {
    background-color: green;
  }
  
.item .swatches li.gray {
    background-color: gray;
  }
  
.item .swatches li.aqua {
    background-color: aqua;
  }
  
.item .swatches li.orange {
    background-color: orange;
  }
  
.item .swatches li.purple {
    background-color: purple;
  }
  
.item .swatches li.teal {
    background-color: teal;
  }
  
  .grid-products .item .swatches li.black {
    background-color: black;
  }
  
  .grid-products .item .swatches li.red {
    background-color: red;
  }
  
  .grid-products .item .swatches li.yellow {
    background-color: yellow;
  }
  
  .grid-products .item .swatches li.darkgreen {
    background-color: darkgreen;
  }
  
  .grid-products .item .swatches li.maroon {
    background-color: maroon;
  }
  
  .swatch .tooltip-label {
    z-index: 2;
    -ms-transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: #000000;
    color: #ffffff;
    border-radius: 3px;
    padding: 0 6px;
    white-space: nowrap;
    font-size: 11px;
    top: -38px;
    bottom: auto;
    transform: translateX(-50%);
  }
  
  .swatch:hover .tooltip-label {
    opacity: 1;
    top: -28px;
    visibility: visible;
  }
  
  .swatch .tooltip-label:before {
    content: "";
    border: 5px solid transparent;
    border-top: 5px solid #000000;
    position: absolute;
    bottom: -10px;
    inset-inline-start: 50%;
    margin-inline-start: -5px;
  }
  .content-box .text br{
      display: none;
  }
  .content-box .text p {
    margin: 0 0 5px;
}
  .grid-view-item__title {
    color: #000000;
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0;
    display: block;
  }
  
  .grid-view-item__meta {
    margin: 5px 0;
  }
  
  .product-price__price {
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
  }
  
  .product-price__price .old-price {
    color: #555555;
    font-size: 13px;
    opacity: 0.8;
    text-decoration: line-through;
    padding-inline-end: 10px;
  }
  
  .grid-products-hover-btn a.quick-view,
  .grid-products-hover-btn a.wishlist,
  .grid-products-hover-btn .variants.add button,
  .grid-products-hover-btn a.cartIcon,
  .grid-products-hover-btn a.add-to-compare {
    color: #ffffff;
    background-color: var(--main-color);
  }
  
  .grid-products-hover-btn a.quick-view:hover,
  .grid-products-hover-btn a.wishlist:hover,
  .grid-products-hover-btn .variants.add button:hover,
  .grid-products-hover-btn a.cartIcon:hover,
  .grid-products-hover-btn a.add-to-compare:hover,
  .grid-products-hover-btn a.quick-view:focus,
  .grid-products-hover-btn a.wishlist:focus,
  .grid-products-hover-btn .variants.add button:focus,
  .grid-products-hover-btn a.cartIcon:focus,
  .grid-products-hover-btn a.add-to-compare:focus {
    color: #ffffff;
    background-color: #333;
  }
  
  .grid-products-hover-gry a.quick-view,
  .grid-products-hover-gry a.wishlist,
  .grid-products-hover-gry .variants.add button,
  .grid-products-hover-gry a.cartIcon,
  .grid-products-hover-gry a.add-to-compare {
    color: #ffffff;
    background-color: #555555;
  }
  
  .brand-name a {
    color: #555555;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  /*----------------------------------------
   * End Grid Product
  ------------------------------------------*/
  
  /*----------------------------------------
   * Filter Drawer Sidebar
  ------------------------------------------*/
  .shop-sidebar-drawer .filterbar {
    width: 250px;
    height: 100%;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    inset-inline-start: -255px;
    z-index: 99;
    -ms-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .shop-sidebar-drawer .filterbar .sidebar_tags {
    background-color: #ffffff;
    padding: 20px;
    height: 100%;
    overflow: auto;
  }
  
  .shop-sidebar-drawer .filterbar .sidebar_widget:not(.filterBox),
  .shop-sidebar-drawer .filterbar .static-banner-block {
    display: none;
  }
  
  .shop-sidebar-drawer .filterbar.active {
    inset-inline-start: 0;
  }
  
  .shop-sidebar-drawer .filterbar.active .closeFilter {
    color: #ffffff;
    font-size: 15px;
    line-height: 28px;
    height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 15px;
    inset-inline-start: 100%;
    background-color: #000000;
    box-shadow: 0 0 5px #ddd;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  
  .shop-sidebar-drawer .sidebar.filterbar.active .filterBox {
    padding: 0;
    border: none;
  }
  
  .shop-sidebar-drawer .filterbar.active .closeFilter:after {
    content: '';
    background: #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: -1;
    cursor: crosshair;
    opacity: .5;
  }
  
  .filterbar .sidebar_tags {
    position: relative;
    z-index: 9;
    background: #ffffff;
  }
  
  .filterbar.active .closeFilter:after {
    content: '';
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: -1;
  }
  
  .sidebar .shop-sidebar-products.slick-slider,
  .sidebar .shop-sidebar-products.slick-slider .slick-list {
    margin-inline-start: 0px;
    margin-inline-end: 0px;
  }
  
  .sidebar .shop-sidebar-products.slick-slider .slick-list .item {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
  }
  [dir="rtl"] .slick-slider{
      direction: ltr;
  }
  /*----------------------------------------
   * End Filter Drawer Sidebar
  ------------------------------------------*/
  
  /*----------------------------------------
   * 14. Collection Box Slider
  ------------------------------------------*/

  .collection-grids {
    margin-top: -30px;
  }
  
  .collection-grids .item {
    padding-top: 30px;
  }
  
  .collection-grid-item {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .collection-box{
    border-top: 1px solid #eee
  }
  .collection-box .container-fluid {
    padding: 0;
  }
  
  .collection-box-style1 .container-fluid {
    padding: 0 55px;
  }
  
  .collection-box .collection-grid-item img {
    margin: 0 auto;
    width: 100%;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 233px;
  }
  
  .collection-box .collection-grid-item:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .collection-box .collection-grid-item__title-wrapper {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
  }
  
  .collection-box .collection-grid-item__title-wrapper .title-wrapper {
    margin-top: 27px;
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  /*[dir="rtl"] .collection-box .collection-grid-item__title-wrapper .title-wrapper {*/

  /*  -ms-transform: translate(50%, -50%);*/
  /*  -webkit-transform: translate(50%, -50%);*/
  /*  transform: translate(50%, -50%);*/
  /*}*/
  .locations-section .maps iframe{
      height: 450px !important;
  }
  .collection-box .collection-grid-item__title {
    text-transform: uppercase;
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    width: auto;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .collection-box .collection-grid-item__title span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 5px 0 0;
  }
  
  .collection-box .btn--secondary {
    margin-top: 14px;
    -ms-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    display: inline-flex;
  }
  
  .collection-box .collection-grid-item__title-wrapper:hover {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
  }
  
  .collection-box .collection-grid-item__title-wrapper:hover .title-wrapper {
    margin-top: 0;
  }
  
  .collection-box .collection-grid-item__title-wrapper:hover .btn {
    opacity: 1;
    visibility: visible;
  }
  
  .collection-box-style1 .collection-grid-item__title-wrapper {
    top: 50%;
    bottom: auto;
  }
  
  .collection-box-style1 .collection-grid-item__title.btn--secondary:hover {
    background-color: #000000;
    color: #ffffff;
    border: 0;
  }
  
  .collection-box .slick-arrow {
    opacity: 0;
    visibility: hidden;
    width: 30px;
    height: 30px;
  }
  
  .collection-box:hover .slick-arrow {
    color: #000000;
    opacity: 1;
    visibility: visible;
  }
  
  .collection-box .slick-prev {
    inset-inline-start: 10px;
  }
  
  .collection-box .slick-next {
    inset-inline-end: 10px;
  }
  
  .collection-grid-3item .slick-slide,
  .collection-grid-4item .slick-slide {
    padding: 1px;
  }
  
  @media only screen and (min-width: 992px) {
  
    .collection-grid-3item.slick-slide,
    .collection-grid-4item.slick-slider .slick-list {
      margin: -1px;
    }
  }
  [dir="ltr"] .slick-slide{
      float: right;
  }
  [dir="ltr"] .slick-list{
      /* direction: rtl; */
  }
  /*----------------------------------------
   * End Collection Box Slider
  ------------------------------------------*/
  
  /*----------------------------------------
   * 15. Brands Logo Slider
  ------------------------------------------*/

  /* .logo-bar__item:hover {
    opacity: 0.6;
  }
  
  .logo-bar .slick-arrow {
    -ms-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .logo-bar:hover .slick-arrow {
    color: #000000;
    opacity: 1;
  }
  
  .logo-bar .slick-prev {
    inset-inline-start: -15px;
  }
  
  .logo-bar .slick-next {
    inset-inline-end: -15px;
  }
  
  .logo-bar .slick-slide img {
    margin: 0 auto;
  }*/
  .logo-section{
    background-image: url(../images/about/l-intro-1602599789.webp);
    position: relative;
  }
  .logo-section::before{
    content: " ";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    background-color: #000000;
    opacity: 0.7;
    z-index: 1;
  }
  .logo-section .logo-bar .slick-list {
    margin-inline-start: -5px;
    margin-inline-end: -5px;
  }
  
  .logo-section .logo-bar .slick-list .logo-bar__item {
    padding-inline-start: 5px;
    padding-inline-end: 5px;
  }
  
  /*----------------------------------------
   * End Brands Logo Slider
  ------------------------------------------*/
  
  /*----------------------------------------
   * 16. Latest Blog Post
  ------------------------------------------*/
  .latest-blog{
    background-image: url(../images/about/Light-Gray-Backgrounds-Wallpapers_29.webp);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
  .latest-blog .wrap-blog {
    display: table;
  }
  
  
  .latest-blog .wrap-blog .article__grid-image,
  .latest-blog .wrap-blog .article__grid-meta {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
  
  .latest-blog .wrap-blog .article__grid-meta {
    width: 55%;
  }
  
  .latest-blog .wrap-blog .wrap-blog-inner {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin-inline-start: -30px;
    position: relative;
  }
  
  .latest-blog .article__grid-image {
    display: block;
    clear: both;
    margin-bottom: 18px;
  }
  
  .latest-blog .article__title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .latest-blog .article__title a{
      color: var(--main-color);
  }
  
  .latest-blog .article__date {
    font-size: 12px;
    color: #666;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .latest-blog .rte-setting {
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .latest-blog .article__grid-excerpt {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .blog-item{
    margin: 20px 0;
  }
  /*----------------------------------------
   * End Latest Blog Post
  ------------------------------------------*/
  
  /*----------------------------------------
   * 17. Store Feature
  ------------------------------------------*/
  .store-info h5,
  .store-info .h5 {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 600;
  }
  
  .store-info li {
    padding: 15px;
    text-align: center;
  }
  
  .store-info li+li {
    border-inline-start: 1px dotted #c1c1c1;
  }
  
  .store-info .icon {
    color: var(--main-color);
    font-size: 50px;
    vertical-align: middle;
    display: block;
    margin-bottom: 20px;
  }
  
  .store-info .inner-wrap {
    background: #eeeeee;
    padding: 15px;
  }
  
  .store-feature.style2 .store-info li {
    background: #f5f5f5;
    width: 100%;
    padding: 15px;
  }
  
  .store-feature.style3 .store-info {
    background-color: #f5f5f5;
  }
  
  .store-feature.style3 .store-info li {
    padding: 20px 0;
    margin-bottom: 0;
    border: 0;
  }
  
  .store-feature.style3 .store-info .icon {
    margin: 0;
  }
  
  /*----------------------------------------
   * End Store Feature
  ------------------------------------------*/
  
  /*----------------------------------------
   * 18. Shop Pages
  ------------------------------------------*/


  .template-collection .collection-header {
    margin-bottom: 30px;
    background: #f5f5f5;
  }
  
  .collection-hero {
    position: relative;
    overflow: hidden;
  }
  
  .collection-hero__image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    opacity: 1;
  }
  
  .collection-hero__title-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    background-color: #000000;
    opacity: 0.4;
  }
  
  .collection-hero__title {
    font-size: 1.84615em;
    position: absolute;
    color: #ffffff;
    width: 100%;
    text-align: center;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 50%;
    text-transform: uppercase;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .collection-description {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .category-slider-header {
    margin-bottom: 20px;
  }
  
  .category-slideshow {
    margin-bottom: 10px
  }
  
  .sidebar .sidebar_widget {
    margin-bottom: 20px;
    clear: both;
    width: 100%;
  }
  
  .sidebar h2,
  .sidebar .h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .sidebar .sidebar_widget .widget-content ul li {
    list-style: none;
    padding: 2px 0;
    font-size: 13px;
  }
  
  .sidebar .sidebar_widget .widget-content ul li.active a {
    font-weight: bold;
  }
  
  .sidebar .filterBox {
    border: 1px solid #ddd;
    padding: 15px;
  }
  
  .sidebar .filterBox h2 {
    margin: 0;
  }
  
  .sidebar .filterBox .widget-content {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
  }
  
  .sidebar .filterBox .widget-content.price-filter {
    padding-top: 20px;
  }
  
  .sidebar .sidebar_categories,
  .sidebar .widget-vendors {
    margin: -4px 0 0;
  }
  
  .sidebar .sidebar_widget .widget-content .widget-vendors li {
    padding: 0;
  }
  
  .shop-sidebar-drawer .sidebar .filterBox .filter-color .swacth-btn {
    height: 22px;
    width: 33px;
  }
  
  .shop-sidebar-drawer .sidebar .filterBox.size-swacthes .widget-content .swacth-btn {
    width: 32px;
    height: 32px;
    line-height: 30px;
  }
  
  .filterBox.size-swacthes .widget-content .swacth-btn {
    margin: 0 5px 5px 0;
    line-height: 32px;
    border: 1px solid #cdcfd3;
  }
  
  .filterBox.size-swacthes .widget-content .swacth-btn.checked {
    border-color: #000000;
  }
  
  .filterBox ul:not(.filter-color) {
    list-style: none;
  }
  
  .filterBox ul:not(.filter-color) li {
    padding: 3px 0;
  }
  
  .filterBox ul:not(.filter-color) input[type="checkbox"] {
    width: 20px;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 1em;
    opacity: 0;
  }
  
  .filterBox ul:not(.filter-color) input[type="checkbox"]+label {
    display: inline-block;
    margin-inline-start: -25px;
    line-height: 1.5em;
    cursor: pointer;
    margin-bottom: 0;
  }
  
  .filterBox ul:not(.filter-color) li label {
    font-weight: 400;
    font-size: 12px;
  }
  
  .filterBox ul:not(.filter-color) input[type="checkbox"]+label>span {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0.25em 0.5em 0.25em 0.25em;
    border: 1px solid #d0d0d0;
    vertical-align: bottom;
  }
  
  .filterBox ul:not(.filter-color) input[type="checkbox"]:checked+label>span:before {
    content: "";
    display: block;
    color: #000000;
    text-align: center;
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #333333 #333333;
    width: 8px;
    height: 5px;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    position: absolute;
    top: 2px;
    inset-inline-start: 2px;
  }
  
  .filterBox .filter-color {
    display: table;
    list-style: none;
    width: 100%;
  }
  
  .filterBox .filter-color .swacth-btn {
    display: block;
    float: left;
    margin-bottom: 5px;
    position: relative;
    height: 24px;
    width: 34px;
    border: 1px solid transparent;
    background-color: #f8f8f8;
    border-radius: 3px;
    margin-inline-end: 5px;
    text-align: center;
    font-size: 10px;
    line-height: 21px;
    color: #000000;
    cursor: pointer;
  }
 [dir="rtl"] .filterBox .filter-color .swacth-btn {
    float: right;
    
  }
  
  .filterBox .filter-color .swacth-btn.checked {
    border-width: 1px;
    border-color: #000000;
  }
  
  .size-swacthes .swacth-list .swacth-btn:after,
  .filterBox .filter-color .swacth-btn:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #000000 #000000;
    width: 12px;
    height: 7px;
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: -5px auto auto;
    opacity: 0;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
    transition: transform 0.3s linear, opacity 0.3s linear;
  }
  
  .size-swacthes .swacth-list .swacth-btn.checked:after,
  .filterBox .filter-color .swacth-btn.checked:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    color: #6d6d6d;
    z-index: 2;
  }
  
  .size-swacthes .swacth-list .swacth-btn.checked:before,
  .filterBox .filter-color .swacth-btn.checked:before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .filterBox .filter-color .black {
    background-color: #000000;
  }
  
  .filterBox .filter-color .white {
    background-color: #ffffff;
    border: 1px solid #ddd;
  }
  
  .filterBox .filter-color .red {
    background-color: #fe0000;
  }
  
  .filterBox .filter-color .blue {
    background-color: #0000fe;
  }
  
  .filterBox .filter-color .pink {
    background-color: #ffc1cc;
  }
  
  .filterBox .filter-color .gray {
    background-color: #818181;
  }
  
  .filterBox .filter-color .green {
    background-color: #027b02;
  }
  
  .filterBox .filter-color .orange {
    background-color: #fca300;
  }
  
  .filterBox .filter-color .yellow {
    background-color: #f9f900;
  }
  
  .filterBox .filter-color .blueinfinity {
    background-color: #8A2BE2;
  }
  
  .filterBox .filter-color .brown {
    background-color: #A52A2A;
  }
  
  .filterBox .filter-color .darkGoldenRod {
    background-color: #B8860B;
  }
  
  .filterBox .filter-color .darkGreen {
    background-color: #006400;
  }
  
  .filterBox .filter-color .darkRed {
    background-color: #8B0000;
  }
  
  .filterBox .filter-color .dimGrey {
    background-color: #696969;
  }
  
  .filterBox .filter-color .khaki {
    background-color: #F0E68C;
  }
  
  .filterBox .filter-color .brown {
    background-color: #a62929;
  }
  
  .filterBox .filter-color .aqua {
    background-color: #05fdfd;
  }
  
  .filterBox .filter-color .tops-maroon {
    background: url('../images/product-images/variant1.jpg') no-repeat center center/cover;
  }
  
  .filterBox .filter-color .shirt-lightPink {
    background: url('../images/product-images/variant3.jpg') no-repeat center center/cover;
  }
  
  .filterBox .filter-color .shirt-blueinfinity {
    background: url('../images/product-images/variant3-4.jpg') no-repeat center center/cover;
  }
  
  .filterBox .filter-color .jacket-khaki {
    background: url('../images/product-images/variant6.jpg') no-repeat center center/cover;
  }
  
  .filterBox .filter-color .bag-green {
    background: url('../images/product-images/variant16.jpg') no-repeat center center/cover;
  }
  
  .filterBox .filter-color .shirt-light {
    background: url('../images/product-images/variant11.jpg') no-repeat center center/cover;
  }
  
  
  .filterBox .filter-color .tops-maroon, .filterBox .filter-color .shirt-lightPink,
  .filterBox .filter-color .shirt-blueinfinity, .filterBox .filter-color .jacket-khaki,
  .filterBox .filter-color .bag-green, .filterBox .filter-color .shirt-light { background:url('../images/swatches/color-img1.jpg') no-repeat center center/cover; }
 
  
  .sidebar .sidebar_widget.categories .sub-level {
    position: relative;
  }
  
  .sidebar .sidebar_widget.categories .sub-level>a:after {
    content: "\f067";
    font-family: 'annimex-icons';
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    position: absolute;
    inset-inline-end: 0;
    top: 8px;
  }
  
  .sidebar .sidebar_widget.categories .sub-level>a.active:after {
    content: "\f068";
    font-family: 'annimex-icons';
    display: inline-block;
  }
  
  .sidebar .sidebar_widget.categories .sub-level ul {
    margin-inline-start: 15px;
    margin-bottom: 0;
    display: none;
  }
  
  .sidebar .sidebar_widget.categories li a {
    display: block;
  }
  
  .filter-widget .widget-title {
    position: relative;
    cursor: pointer;
  }
  
  .filter-widget .widget-title:after {
    content: "\f106";
    font-family: 'annimex-icons';
    display: inline-block;
    position: absolute;
    inset-inline-end: 0;
    top: 2px;
    font-size: 13px;
    line-height: 13px;
  }
  
  .filter-widget .widget-title.active:after {
    content: "\f107";
    font-family: 'annimex-icons';
    display: inline-block;
  }
  

   
  /* Size Swacthes */


  .size-swacthes .swacth-list ul {
    margin-inline-start: 0;
  }
  
  .size-swacthes .swacth-list li {
    float: left;
    display: block;
  }
  [dir="rtl"] .size-swacthes .swacth-list li {
    float: right;
  }
  
  .size-swacthes .swacth-list .swacth-btn {
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
    width: 34px;
    height: 34px;
    line-height: 32px;
  }
  
  /* Price Range */
  
  .price-filter input[type="text"] {
    height: 30px;
    padding: 0 10px;
    text-align: center;
    font-size: 12px;
    width: 100px;
  }
  
  #slider-range.ui-slider-horizontal {
    background: #e9e9e9;
    border: none;
    border-radius: 0;
    height: 3px;
    margin-bottom: 20px;
  }
  
  #slider-range .ui-slider-handle {
    background: #ffffff;
    border: 2px solid #000000;
    height: 10px;
    outline: none;
    top: -4px;
    width: 10px;
    border-radius: 50%;
    cursor: w-resize;
    margin-inline-start: -1px;
  }
  
  #slider-range.ui-slider-horizontal .ui-slider-range {
    background: #777;
    border: 0;
  }
  
  #slider-range.ui-slider-horizontal .ui-slider-range~.ui-slider-range {
    background: #000000;
  } 
  
  /* Color Swatches */

  .grid-products .item .swatches li label {
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid transparent;
    width: 100%;
    height: 100%;
  }
  
  .grid-products .item .swatches li.rounded label {
    border-radius: 50% !important;
  }
  
  .grid-products .item .swatches li.radius label {
    border-radius: 5px !important;
  }
  
  .grid-products .item .swatches li input[type="radio"] {
    display: none;
  }
  
  .grid-products .item .swatches.color-style li .black {
    background-color: #000000;
  }
  
  .grid-products .item .swatches.color-style li .white {
    background-color: #ffffff;
  }
  
  .grid-products .item .swatches.color-style li .red {
    background-color: #fe0000;
  }
  
  .grid-products .item .swatches.color-style li .blue {
    background-color: #0000fe;
  }
  
  .grid-products .item .swatches li.rounded {
    width: 25px;
    height: 25px;
    border-radius: 50% !important;
  }
  
  .grid-products .item .swatches li.small {
    width: 18px;
    height: 18px;
  }
  
  .grid-products .item .swatches li.rounded input[type="radio"]+label,
  .grid-products .item .swatches li.rounded input[type="radio"]:checked+label {
    border-radius: 50% !important;
  }
  
  .grid-products .item .swatches li.radius input[type="radio"]+label,
  .grid-products .item .swatches li.radius input[type="radio"]:checked+label {
    border-radius: 5px !important;
  }
  
  /* List Sidebar Products */
  
  .list-sidebar-products {
    margin-top: 0;
  }
  
  .list-sidebar-products:before,
  .list-sidebar-products:after,
  .sidebar .sidebar_widget:before,
  .sidebar .sidebar_widget:after {
    content: '';
    clear: both;
    display: block;
  }
  
  .list-sidebar-products .grid__item {
    margin-bottom: 5px;
  }
  
  .list-sidebar-products .article__date {
    color: #888;
  }
  
  .mini-list-item {
    margin-bottom: 10px;
  }
  
  .mini-list-item:before,
  .mini-list-item:after {
    content: '';
    clear: both;
    display: block;
  }
  
  .mini-list-item .grid-view-item__link,
  .mini-list-item .mini-view_image img {
    width: 70px;
    display: block;
  }
  
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
  }
  
  .product-tags li {
    border-radius: 0;
    display: inline-block;
    border: 1px solid #e8e9eb;
    margin-bottom: 5px;
    margin-inline-end: 6px;
    line-height: 15px;
  }
  
  .product-tags li a {
    display: block;
    padding: 5px 10px;
    font-size: 11px;
    text-decoration: none;
  }
  
  .product-tags li:hover {
    background-color: #efefef;
    text-decoration: none;
  }
  
  /* End List Sidebar Products */
  
  /* Tags */

  /* .tags-clouds ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .tags-clouds li {
    display: inline-block;
    margin-bottom: 4px;
    margin-inline-end: 6px;
  }
  
  .tags-clouds li a {
    color: #000000;
    display: block;
    border: 1px solid #ddd;
    padding: 5px 9px;
    text-transform: uppercase;
    list-style: none;
    font-size: 12px;
    line-height: 1.5;
  }
  
  .tags-clouds li a:hover {
    background-color: #efefef;
    text-decoration: none;
  } */
  
  /* Grid Sliderbar Products */
  
  /* .grid-sidebar-products .grid-products-hover-btn .slick-prev {
    inset-inline-start: 0;
  }
  
  .grid-sidebar-products .grid-products-hover-btn .slick-next {
    inset-inline-end: 0;
  } */
  
  /* End Grid Sliderbar Products */
  
 .filters-toolbar-wrapper {
    border: 0;
    margin: 0 0 20px 0;
  }
  
  .filters-toolbar-wrapper .change-view {
    cursor: pointer;
    font-size: 26px;
    line-height: 0;
    width: 30px;
    height: 30px;
    text-decoration: none;
    background: none;
    opacity: 0.6;
    border: 0;
    padding: 5px;
    color: #000000;
  }
  
  .filters-toolbar-wrapper .change-view--active {
    opacity: 1;
  }
  
  .filters-toolbar-wrapper .change-view .icon {
    margin-top: -3px;
    margin-inline-start: -3px;
  }
  
  .filters-toolbar__product-count {
    color: var(--main-color);
    font-size: 0.92308em;
    line-height: 35px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .filters-toolbar-wrapper select {
    width: auto;
    font-size: 12px;
    border: 1px solid #eee;
  }
  
  .filters-toolbar__input {
    background-color: #ffffff;
    border: 0 solid transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 35px;
    margin-inline-start: auto;
    opacity: 1;
    -ms-transition: all ease-out 0.15s;
    -webkit-transition: all ease-out 0.15s;
    transition: all ease-out 0.15s;
  }
  
  .filters-toolbar__item .nice-select {
    padding: 0 25px 0 15px;
  }
  
  .filters-toolbar__item .nice-select .list {
    min-width: 140px;
    inset-inline-start: auto;
    inset-inline-end: 0;
  }
  
  .filters-toolbar-wrapper .btn-filter {
    cursor: pointer;
    font-size: 26px;
    line-height: 0;
    width: 30px;
    height: 30px;
    background: none;
    border: 0;
    opacity: 0.6;
    display: inline-block;
    padding: 5px;
  }
  
  .filters-toolbar-wrapper .btn-filter:before {
    margin-inline-start: -3px;
  }
  
  .infinitpaginOuter {
    clear: both;
    padding: 15px 0 30px;
    text-align: center;
  }
  
  .loadMore {
    color: #fff !important;
  }
  
  .pagination {
    width: 100%;
    text-align: center;
    list-style: none;
    font-size: 1.15385em;
    padding: 20px 0;
  }
  
  .pagination ul {
    display: block;
    margin: 0 auto;
  }
  
  .pagination li {
    display: inline-block;
  }
  
  .pagination li.active a {
    border: 2px solid #636871;
    color: #555555;
  }
  
  .pagination li:hover a {
    border-color: #555555;
    color: #555555;
  }
  
  .pagination li a {
    font-size: 13px;
    color: #a2a2a2;
    height: 35px;
    width: 35px;
    line-height: 31px;
    display: inline-block;
    border: 2px solid #e8e9eb;
    vertical-align: middle;
    text-decoration: none;
  }
  
  .pagination li a i {
    line-height: 31px;
    font-size: 18px;
    vertical-align: baseline;
  }


  /* Countdown Timer On listing */
  .grid-products .item:hover .saleTime {
    display: none
  }
  
  
  /* Search results form */

  .search-results-form .input-group .form-control {
    height: 40px;
  }
  
  /* Swatches Checkmark */
  .swatches li {
    position: relative;
  }
  
  .swatches li.active {
    box-shadow: 0 0 0 1px #000000;
  }
  
  .swatches li:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #000000 #000000;
    width: 12px;
    height: 7px;
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: -5px auto auto;
    opacity: 0;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
    transition: transform 0.3s linear, opacity 0.3s linear;
  }
  
  .swatches li.active:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    color: #6d6d6d;
    z-index: 2;
  }
  
  .swatches li.active:before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .swatches li.active.color:not(.color.white):after {
    border-color: transparent transparent #ffffff #ffffff;
  }
  
  .swatches li.rounded.active:before {
    border-radius: 50%;
  }
  
  .swatches li.radius.active:before {
    border-radius: 5px;
  }
  
  .swatches li.circle.active:before {
    border-radius: 50%;
  }
  
  .grid-products .item .swatches li.active {
    border-color: #000000;
  }
  
  /*----------------------------------------
   * End Product Listview
  ------------------------------------------*/
  
  /*----------------------------------------
   * 20. Product Detail Page
  ------------------------------------------*/
  .product-single-1 .product-details-img .product-zoom-right {
    width: 100%;
    padding-inline-start: 0px;
  }
  
  .product-details-img:before,
  .product-details-img:after {
    content: '';
    clear: both;
    display: block;
  }
  
  .product-details-img .product-thumb {
    display: inline-block;
    padding: 0;
    width: 16%;
    margin: 0;
    float: left;
    padding-inline-end: 1px;
  }
  [dir="rtl"] .product-details-img .product-thumb {
    float: right;
  }
  
  .product-details-img .product-thumb-1 {
    display: block;
    padding: 0;
    width: 100%;
    margin: 0;
    float: left;
  }
  
  .product-details-img .product-zoom-right {
    display: inline-block;
    position: relative;
    width: 84%;
    float: left;
    padding-inline-start: 7px;
  }
  [dir="rtl"] .product-details-img .product-thumb-1 {
    
    float: right;
  }
  
  [dir="rtl"] .product-details-img .product-zoom-right {
   
    float: right;
    
  }
  
  .product-details-img .product-thumb .slick-arrow {
    top: auto;
    background: #ffffff;
    border-radius: 3px;
    padding: 0 5px;
    opacity: 0;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .product-details-img:hover .product-thumb .slick-arrow {
    opacity: 1;
  }
  
  .product-details-img .product-thumb .slick-prev {
    top: 5px;
    inset-inline-start: 50%;
    margin-inline-start: -12px;
  }
  
  .product-details-img .product-thumb .slick-next {
    bottom: -10px;
    inset-inline-start: 50%;
    inset-inline-end: auto;
    margin-inline-start: -12px;
  }
  
  .product-thumb a.slick-slide {
    opacity: .6;
    -ms-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  
  .product-thumb a.slick-slide.active,
  .product-thumb a.slick-slide:hover {
    opacity: 1;
  }
  
  .product-details-img .product-dec-slider-2 .slick-list {
    margin: -3px 0;
  }
  
  .product-details-img .product-dec-slider-2 div.slick-slide {
    padding: 3px 0;
    cursor: pointer;
    border: none;
  }
  
  .product-details-img .product-dec-slider-2 .slick-arrow {
    width: auto;
  }
  
  .product-details-img .product-dec-slider-2 .slick-prev:before {
    content: "\f106";
    font-family: "annimex-icons";
    font-size: 15px;
    font-weight: 700;
  }
  
  .product-details-img .product-dec-slider-2 .slick-next:before {
    content: "\f107";
    font-family: "annimex-icons";
    font-size: 15px;
    font-weight: 700;
  }
    
  .product-details-img.product-single__photos.bottom .product-thumb .slick-arrow {
    background: transparent;
    padding: 4px;
    width: 30px;
    height: 30px;
  }
  
  .product-details-img.product-single__photos.bottom .product-thumb .slick-arrow:hover {
    background: #ffffff;
  }
  
  .product-details-img.product-single__photos.bottom .product-thumb .slick-next {
    inset-inline-end: 0;
    top: 50%;
    inset-inline-start: inherit;
  }
  
  .product-details-img.product-single__photos.bottom .product-thumb .slick-prev {
    inset-inline-start: 15px;
    top: 50%;
    bottom: 0;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.rounded {
    border-radius: 50% !important;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.rectangle {
    border-radius: 7px !important;
  }
  
  .product-buttons {
    position: absolute;
    inset-inline-end: 10px;
    bottom: 10px;
    z-index: 5;
  }
  
  .product-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    height: 36px;
    width: 36px;
    text-align: center;
    margin-top: 5px;
    clear: both;
    border-radius: 3px;
    padding: 0;
    background: #000000;
    color: #ffffff;
    opacity: 0.9;
  }
  
  .product-buttons .btn .icon {
    margin: 2px 0 0 2px;
  }
  
  .product-template__container .product-single {
    margin-bottom: 20px;
  }
  
  .product-template__container .product-single__meta {
    position: relative;
    margin-bottom: 20px;
  }
  
  h1.product-single__title,
  .product-single__title.h1 {
    color: #000000;
    font-size: 23px;
    margin-bottom: 10px;
    padding-inline-end: 60px;
    text-transform: uppercase;
  }
  
  .product-template__container .product-nav {
    position: absolute;
    inset-inline-end: 0;
    top: 2px;
  }
  
  .product-template__container .product-nav .prev,
  .product-template__container .product-nav .next {
    font-size: 20px;
    display: block;
    line-height: 22px;
    text-align: center;
    height: 20px;
    width: 20px;
    padding: 0;
    color: #000000;
    float: left;
  }
  
  .product-template__container .product-nav .next {
    float: right;
  }
  [dir="rtl"] .product-template__container .product-nav .prev,
  [dir="rtl"] .product-template__container .product-nav .next {
    float: right;
  }
  
  [dir="rtl"] .product-template__container .product-nav .next {
    float: left;
  }
  
  .product-template__container .product__policies {
    margin-top: -5px;
    font-size: 13px;
  }
  
  .product-template__container .prInfoRow {
    margin-bottom: 5px;
  }
  
  .product-template__container .prInfoRow>div {
    display: inline-block;
    margin-inline-end: 5%;
  }
  
  .product-template__container .prInfoRow .instock {
    color: #447900;
  }
  
  .product-template__container .prInfoRow .spr-badge-caption {
    color: #424242;
    padding-inline-start: 5px;
  }
  
  .product-template__container .prInfoRow a:hover {
    text-decoration: none;
  }
  
  .product-single__price .product-price__price {
    font-size: 1.46154em;
    padding-inline-start: 3px;
  }
  
  .product-single .product-single__meta .saleTime {
    position: static;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  
  .product-single .product-single__meta .saleTime .count-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: inherit;
  }
  
  .product-single .product-single__meta .saleTime .time-count {
    font-size: 20px;
    min-width: inherit;
  }
  
  .product-single .product-single__meta .saleTime span>span {
    text-align: start;
    padding: 0 6px 0 0;
  }
  
  .product-single .product-single__meta .saleTime span>span span {
    font-size: 13px;
    margin: 0;
    line-height: normal;
    min-width: inherit;
  }
  
  
  .product-single__price {
    display: inline-block;
    margin-inline-end: 10px;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  @-webkit-keyframes blinker {
    from {
      opacity: 1.0;
    }
  
    to {
      opacity: 0.0;
    }
  }
  
  @keyframes blinker {
    from {
      opacity: 1.0;
    }
  
    to {
      opacity: 0.0;
    }
  }
  
  .product-description ul,
  .product-single__description ul {
    margin-inline-start: 0;
  }
  
  .product-single__description ul {
    text-align: start;
  }
  
  .product-description ul li,
  .product-single__description ul li {
    position: relative;
    margin-inline-start: 15px;
    list-style: disc;
  }
  
  
  .rte {
    color: #555555;
    margin-bottom: 18px;
  }
  
  div.rte {
      /* height: 75px; */
      /* overflow: hidden; */
  }
  .rte li {
    margin-bottom: 4px;
    list-style: inherit;
  }
  
  .rte h1,
  .rte .h1,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .rte h1:first-child,
  .rte .h1:first-child,
  .rte h2:first-child,
  .rte .h2:first-child,
  .rte h3:first-child,
  .rte .h3:first-child,
  .rte h4:first-child,
  .rte .h4:first-child,
  .rte h5:first-child,
  .rte .h5:first-child,
  .rte h6:first-child,
  .rte .h6:first-child {
    margin-top: 0
  }
  
  .rte:last-child {
    margin-bottom: 0;
  }
  
  .product-template__container #quantity_message {
    text-align: start;
    padding: 0;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #f05e5e;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .product-template__container #quantity_message .items {
    font-weight: 700;
  }
  
  .product-form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    width: auto;
    margin: 0 -5px -10px;
  }
  
  .product-form-border {
    border-top: 1px dotted #a0a0a0;
    border-bottom: 1px dotted #a0a0a0;
    padding: 10px 0 10px;
    margin: 15px 0 15px;
  }
  
  .product-form .swatch {
    margin-bottom: 10px;
  }
  
  .product-form .swatch .product-form__item {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  
  .product-form__item {
    -webkit-flex: 1 1 200px;
    -moz-flex: 1 1 200px;
    -ms-flex: 1 1 200px;
    flex: 1 1 200px;
    margin-bottom: 10px;
    padding: 5px;
  }
  
  .product-form .swatch label {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 5px;
  }
  
  .product-template__container label .slVariant {
    font-weight: 700;
  }
  
  .product-form .swatch .swatch-element {
    display: inline-block;
    margin-inline-end: 8px;
    cursor: pointer;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.color.medium {
    width: 40px;
    height: 40px;
  }
  
  .product-form .swatch .swatchInput:checked+.swatchLbl {
    border: 2px solid #111111;
    box-shadow: none;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.color {
    position: relative;
    width: 30px;
    padding: 0;
    height: 30px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100% auto;
    cursor: pointer;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.large {
    width: 50px;
    height: 50px;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl.large:not(.color) {
    line-height: 36px;
  }
  
  .product-form .swatch .swatchInput+.swatchLbl {
    position: relative;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
    display: inline-block;
    margin: 0;
    min-width: 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    background-color: #f9f9f9;
    padding: 0 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px #ddd;
    border-radius: 0;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
  }
  
  .product-form .swatch .swatchInput {
    display: none;
  }
  
  .product-form .swatch input[type="radio"]+label:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #000000 #000000;
    width: 12px;
    height: 7px;
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    z-index: 2;
    margin: -5px auto auto;
    opacity: 0;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    -webkit-transition: transform 0.3s linear, opacity 0.3s linear;
    transition: transform 0.3s linear, opacity 0.3s linear;
  }
  
  .product-form .swatch input[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-45deg);
    transform: scale(1) rotate(-45deg);
    color: #6d6d6d;
  }
  
  .product-form .swatch input[type="radio"]:checked+label:before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .product-form .swatch label a {
    font-size: 12px;
    margin-inline-start: 90px;
    font-weight: 500;
    text-transform: none;
  }
  
  .product-form .swatch label a .icon {
    font-size: 17px;
  }
  
  .product-template__container .product-action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 15px;
    padding: 0 5px;
  }
  
  .product-template__container .product-form__item--quantity {
    width: 90px;
    padding-inline-end: 10px;
  }
  
  .wrapQtyBtn {
    float: left;
  }
  [dir="rtl"] .wrapQtyBtn {
    float: right;
  }
  
  .qtyField {
    position: relative;
    max-width: 80px;
    border: 1px solid #dcdcdc;
  }
  
  .qtyField .qty {
    font-size: 16px;
    padding: 5px 30px 5px 6px;
    width: 80px;
    text-align: center;
    height: 45px;
    margin: 0;
    border: 0 none;
  }
  
  .qtyField a {
    background-color: #f5f5f5;
    color: #000000;
    border-inline-start: 1px solid #dcdcdc;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 25px;
    height: 50%;
    text-align: center;
    text-decoration: none;
  }
  
  .qtyField a .an {
    font-size: 15px;
    line-height: 24px;
  }
  
  .qtyField a.minus {
    top: 50%;
    border-top: 1px solid #dcdcdc;
  }
  
 


  .product-template__container .product-form__item--submit,
  .product-template__container .payment-button {
    flex: 1;
    width: auto;
    overflow: hidden;
  }
  
  .product-template__container .product-form__item--submit .btn,
  .product-template__container .payment-button button {
    font-size: 16px;
    width: 100%;
    padding: 6px 15px;
    min-height: 47px;
  }
  
  .product-template__container .shareRow {
    padding: 10px 0 20px;
  }
  
  .product-template__container .shareRow .wishlist {
    background: none !important;
    color: #000 !important;
    text-transform: capitalize;
    width: auto;
    font-size: 13px;
    text-align: start;
    line-height: inherit;
    height: auto;
    text-decoration: none;
  }
  
  .product-template__container .shareRow .wishlist span {
    display: inline;
    padding-inline-start: 5px;
    letter-spacing: 0.02em;
  }
  
  .product-template__container .shareRow .wishlist .icon {
    font-size: 18px;
  }
  
  .product-template__container .shareRow .medium-up--one-third {
    width: max-content;
  }
  
  .social-sharing .btn {
    color: #555555;
    padding: 0 5px !important;
    margin-bottom: 0;
    background: none !important;
    border: 0;
    letter-spacing: normal;
    text-transform: capitalize;
  }
  
  .social-sharing {
    margin: 0 -5px;
  }
  
  .social-sharing .an {
    vertical-align: middle;
    padding-inline-end: 5px;
    font-size: 18px;
  }
  
  .social-sharing .an-facebook {
    color: #1f519b;
  }
  
  .social-sharing .an-twitter {
    color: #27aae1;
  }
  
  .social-sharing .an-google-plus-g {
    color: #DD4B39;
  }
  
  .social-sharing .an-youtube {
    color: #ce332d;
  }
  
  .social-sharing .an-pinterest-p {
    color: #be1e2d;
  }
  
  .social-sharing .an-instagram {
    color: #4270a3;
  }
  
  .social-sharing .an-envelope {
    color: #B23121;
    margin-top: -4px;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: inline-block;
    margin-bottom: .5rem;
  } 

  .template-product .tabs-listing .product-tabs {
    border-bottom: 1px solid #e8e9eb;
    width: 100%;
    margin-bottom: 0;
  }
  
  .template-product .tabs-listing .product-tabs li {
    float: none;
    display: inline-block;
    cursor: pointer;
  }
  
  .template-product .tabs-listing .product-tabs a {
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    letter-spacing: 1px;
    display: block;
    border: none;
    padding: 15px 25px;
    background: none !important;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    outline: none;
    color: #2e2d2d;
    text-decoration: none;
  }
  
  .template-product .product-tabs li.active a,
  .template-product .product-tabs li.active a:focus {
    text-decoration: none;
    border: 0;
    color: #000000;
    border-bottom: 1px solid #000000;
    opacity: 1;
  }
  
  .acor-ttl.active {
    border-bottom: 1px solid #000000;
  }
  
  .acor-ttl {
    display: block;
    padding: 15px 0;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #e8e9eb;
    margin: 0;
    font-size: 12px;
    cursor: pointer;
  } 
  
  .template-product .tabs-listing .tab-container {
    padding: 30px 0;
    text-align: start;
    margin-bottom: 30px !important;
  }
  
  .tab-container .tab-content {
    display: none;
  }
  
  .template-product .prstyle2 .tabs-listing .acor-ttl:before {
    position: absolute;
    inset-inline-end: 0px;
    top: 15px;
    content: "\f107";
    font-family: "annimex-icons";
    font-size: 13px;
    font-weight: 700;
  }
  
  .template-product .prstyle2 .tabs-listing .acor-ttl.active:before {
    content: "\f106";
    color: #000000;
  }
  
  .related-product {
    margin: 50px 0 30px;
  }
  
  /*----------------------------------------
   * 22. CMS Page
  ------------------------------------------*/
  .hiring-strategies{
      padding: 50px 0;
  }
  @media only screen and (min-width: 992px) {
    #page-content {
      min-height: 400px;
      padding: 50px 0;
    }
  }
  #page-content .addressFooter .icon {
    color: #000 !important;
    font-size: 18px;
  }
  .contact-template .map-section {
    margin-bottom: 0;
    overflow: hidden;
    height: 100%;
    margin: 0 20px;
  }
  
  .contact-template .map-section .container {
    position: relative;
    height: 100%;
  }
  
  .contact-template .map-section__overlay {
    inset-inline-start: auto;
    width: 300px;
    padding: 20px;
    display: inline-block;
    text-align: center;
    z-index: 3;
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    transform: translateY(-135%);
    -webkit-transform: translateY(-135%);
    margin-top: 0;
    background: rgba(255, 255, 255, 0.8);
  }
  
  .contact-template .map-section__overlay-wrapper {
    position: static;
    text-align: start;
    height: 100%;
  }
  
 
  
  .contact-template .btn--secondary {
    background-color: #ededed;
    color: #000000;
    border: 1px solid #000000;
  }
  
  .contact-form textarea {
    height: 120px;
  }
  
  /* Lookbook Style 4 */
  .lookbook4 .caption {
    background: #000000;
    position: absolute;
    bottom: -110px;
    top: auto;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: 0;
    padding: 12px 10px;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  
  .lookbook4 .grid-lookbook:hover .caption {
    bottom: 0;
  }
  
  .lookbook4 h2 {
    font-size: 15px;
    margin: 0;
  }
  
  @media only screen and (min-width: 1199px) {
    .lookbook-page-full .lookbook .col-12 {
      width: 20%;
    }
  } 
  

  /*----------------------------------------
   * About Us Page
  ------------------------------------------*/

  .aboutus-style1 #page-content .container-fluid {
    max-width: 100%;
    padding: 0;
  }
  
  .aboutus-style1 #footer {
    margin-top: 0;
  }
  
  .team-items .team-item:hover img {
    opacity: 0.8;
  }
  
  .social-url.pt-2 a {
    margin: 0 5px;
    text-decoration: none;
    font-size: 16px;
    line-height: normal;
  }
  
  .ab-full-section-bg {
    background: url(../images/about/about-us-image4.jpg) no-repeat right top #f9f9f9;
    padding: 130px 0;
  }
  
  .count-to {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1;
    color: #63386d;
  }
  
  .team-style2 .team-img {
    position: relative;
    overflow: hidden
  }
  
  .team-style2 .team-img .social-url {
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    position: absolute;
    bottom: 0px;
    width: 100%;
  }
  
  .team-style2 .team-img .social-url a {
    margin: 0 2px;
  }
  
  @media only screen and (min-width: 992px) {
    .team-style2 .team-img .social-url {
      background-color: transparent;
      position: absolute;
      bottom: 10px;
      inset-inline-start: -20%;
      width: auto;
      -webkit-transition: all .5s ease 0s;
      transition: all .5s ease 0s;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
    }
  
    .team-style2 .team-item:hover .social-url {
      opacity: 1;
      visibility: visible;
      inset-inline-start: 10px;
    }
  
    .team-style2 .team-img .social-url a {
      margin: 1px;
      text-decoration: none;
      font-size: 16px;
      line-height: normal;
      color: #ffffff;
      background-color: #000000;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .team-style2 .team-img .social-url a:hover {
      color: #000000;
      background-color: #fb7e66;
    }
  }
  .about .card{
      padding: 20px;
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
      border:0;
  }
    .about .card p{
        height: 140px;
        overflow: hidden;
    }
  /*----------------------------------------
   * Contact Us Page
  ------------------------------------------*/
  .contact-us-page .section-header {
    margin-bottom: 0;
  }
  
  .contact-us-page .map-section {
    margin-bottom: 0;
    overflow: hidden;
    height: 100%;
  }
  
  .contact-us-page .map-section iframe {
    display: block;
  }
  
  .contact-us-page .formFeilds,
  .contact-us-page .contact-details {
    width: 100%;
  }
  
  .contact-us-page .map-section .container {
    position: relative;
    height: 100%;
  }
  
  .contact-us-page .map-section__overlay {
    inset-inline-start: auto;
    width: 300px;
    padding: 20px;
    display: inline-block;
    text-align: center;
    z-index: 3;
    position: absolute;
    inset-inline-start: 30px;
    top: 0;
    transform: translateY(-135%);
    -webkit-transform: translateY(-135%);
    margin-top: 0;
    background: rgba(255, 255, 255, 0.8);
  }
  
  .contact-us-page .map-section__overlay-wrapper {
    position: static;
    text-align: start;
    height: 100%;
  }
  
  .contact-us-page .btn--secondary {
    background-color: #ededed;
    color: #000000;
    border: 1px solid #000000;
  }
  
  /* Contact Us Style 2 */
  .contact-us-page2 .contact-form-in {
    padding: 30px;
    background: #f8f8f8;
    color: #111111;
  }
  
  .contact-us-page2 .contact-form-in .input-text,
  .contact-us-page2 .contact-form-in textarea {
    background-color: #ffffff;
  }
  
  .contact-us-page2 .contact-details {
    background-color: #ffffff;
    padding: 0;
  }
  /* .row.g-0.contact-home{
    border-top: 1px solid#eeeeee !important;
  } */
    .cont-form{
       padding-bottom: 20px !important; 
    }
  .cont-form .contact-form.formFeilds{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px;
    
  }
  
  .cont-form h2{
    margin-bottom: 20px;
  }
  .mailsendbtn {
    display: inline-block;
    position: relative;
  }
  
  .mailsendbtn .loading {
    display: none;
    position: absolute;
    inset-inline-end: -40px;
    top: 6px;
    width: 28px;
    height: 28px;
    box-shadow: 0 0 3px #999;
    text-align: center;
  }
  
  .error_msg {
    display: block;
    color: #ff4141;
  }
  
  /*----------------------------------------
   * Brands Page
  ------------------------------------------*/
  .letter-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background-color: #efefef;
    padding: 10px 20px;
    margin: 20px 0;
  }
  .featured-brands-logo .slick-prev:before,.featured-brands-logo .slick-next:before{
    color: #fff;
  }
  .brands-list .brands-row {
    margin-top: -10px;
    z-index: 9;
  }
  
  .brands-list .brands-logo {
    padding-top: 10px;
  }
  
  .brands-list .brands-logo a {
    display: block;
  }
  
  .brands-list .brands-logo a:hover {
    border-color: #000;
  }
  
  .brands-search .alphaBets {
    background-color: #efefef;
    padding: 10px;
  }
  
  .brands-search .alphaBets .listing {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .brands-search .alphaBets .listing li {
    display: inline-block;
    margin: 0 10px 0 0;
  }
  
  .brands-search .alphaBets .listing li .alpha {
    border: 0;
    background-color: #fff;
    padding: 3px 11px;
    border: 1px solid transparent;
  }
  
  .brands-search .alphaBets .listing li .alpha.active {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
  }
  
  .brands-search .alphaBets .listing li .alpha:not(.active):hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
  }
  
  .brands-search-logo {
    border: 4px solid #efefef;
    padding: 15px;
    margin-bottom: 40px;
  }
  
  .featured-brands-logo .brands-row .slick-list {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  
  .featured-brands-logo .brands-list .brands-logo {
    padding-inline-start: 10px;
    padding-inline-end: 10px;
  }
  
  /*----------------------------------------
   * End Pages
  ------------------------------------------*/
  
  /*----------------------------------------
   * Quick View Popup
  ------------------------------------------*/


  .quickview-popup .product-single__description {
    border-bottom: 1px solid #e8e9eb;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .quickview-popup .model-close-btn {
    position: absolute;
    top: -35px;
    inset-inline-end: -35px;
    z-index: 99;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 27px;
    border-radius: 50%;
    background-color: #000000;
    opacity: 1 !important;
    text-shadow: none;
    color: #ffffff;
    font-size: 15px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 1px #555;
    text-decoration: none;
  }
  
  .quickview-popup .slick-prev {
    inset-inline-start: 0px;
  }
  
  .quickview-popup .slick-next {
    inset-inline-end: 0px;
  }
  
  .quickview-popup .slick-arrow:before {
    font-size: 18px;
  }
  
  .quickview-popup .slick-arrow {
    height: 30px;
    width: 30px;
    border-radius: 4px;
  }
  
  .quickview-popup .slick-arrow:hover {
    background-color: #ffffff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  }
  
  .quickview-popup .product-form__item--submit .product-form__cart-submit {
    padding: 0 25px;
    width: auto;
  }
  
  .quickview-popup .wishlist-btn {
    vertical-align: top;
    display: inline-block;
    margin: 0;
    padding-inline-start: 5px;
  }
  
  .quickview-popup .wishlist-btn .wishlist {
    height: 47px;
    line-height: 47px;
    padding: 0 18px;
    width: auto;
    font-size: 22px;
    text-decoration: none;
  }
  
  .quickview-popup .product-thumb-lists .slick-list {
    margin-inline-start: -5px;
  }
  
  .quickview-popup .product-thumb-lists .item {
    cursor: pointer;
    padding-inline-start: 5px;
  }
  
  .quickview-popup .product-thumb-lists .item img {
    border: 1px solid transparent;
  }
  
  .quickview-popup .product-thumb-lists .slick-current .item img {
    border-color: #000000;
  }
  
  .quickview-popup .product-template__container .shareRow {
    padding: 10px 0 0;
  }
  
  .modal-open {
    padding-inline-end: 0 !important;
  }
  
  .modal-open .modal {
    padding-inline-end: 0 !important;
  }
  
  /*----------------------------------------
   * End Quick View Popup
  ------------------------------------------*/
  
  /*----------------------------------------
   * Add to Cart Popup
  ------------------------------------------*/
  .addtocart-popup.magnific-popup {
    width: 92%;
    max-width: 440px;
  }
  
  .addtocart-popup h4,
  .wishlist-popup h4 {
    font-weight: 500;
    font-size: 15px;
    color: #30ba00;
    margin: 0 0 15px;
  }
  
  .addtocart-popup .pro-name,
  .wishlist-popup .pro-name {
    font-size: 14px;
  }
  
  .addtocart-popup .pro-cz {
    font-size: 12px;
    color: #888;
  }
  
  .addtocart-popup .pro-img,
  .wishlist-popup .pro-img {
    float: left;
    margin: 0;
    width: 25%;
  }
  
  .addtocart-popup .pro-details,
  .wishlist-popup .pro-details {
    float: left;
    text-align: start;
    width: 75%;
    padding-inline-start: 20px;
  }
  [dir="rtl"] .addtocart-popup .pro-img,
  [dir="rtl"] .wishlist-popup .pro-img {
    float: right;
    
  }
  
  [dir="rtl"] .addtocart-popup .pro-details,
  [dir="rtl"] .wishlist-popup .pro-details {
    float: right;
   
  }
  
  .addtocart-popup .addcart-total {
    border-top: 1px dotted #ddd;
    margin: 5px 0 0;
    padding: 5px 0;
  }
  
  .addtocart-popup .button-action .btn {
    font-size: 12px;
    padding: 4px 10px;
    margin: 0 5px 0 0;
  }
  
  .addtocart-popup .button-action .btn:hover {
    background-color: #eee;
    color: #222222;
    border-color: #eee;
  }
  
  /*----------------------------------------
   * Wishlist Popup
  ------------------------------------------*/
  .wishlist-popup.magnific-popup {
    width: 92%;
    max-width: 350px;
  }
  
  .wishlist-popup .button-action .btn {
    font-size: 12px;
    padding: 4px 10px;
    width: 100%;
  }
  
  /*----------------------------------------
   * Minicart Drawer
  ------------------------------------------*/
  .minicart-right-drawer.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 350px;
    max-width: 100%;
    height: 100%;
    z-index: 1024;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }
  
  .minicart-right-drawer.right .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
    overflow-y: auto;
  }
  
  .minicart-right-drawer.right.fade .modal-dialog {
    inset-inline-end: -350px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
  }
  
  .minicart-right-drawer.right.fade.show .modal-dialog {
    inset-inline-end: 0;
  }
  
  .minicart-right-drawer .minicart-header {
    padding: 10px 20px;
    border-bottom: 1px solid #dcdcdc;
    margin: 0 0 15px;
  }
  
  .minicart-right-drawer .minicart-header button.close {
    float: right;
    font-size: 22px;
    line-height: 1.1;
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    opacity: 0.5;
  }
 [dir="rtl"] .minicart-right-drawer .minicart-header button.close {
    float: left;
   
  }
  
  .minicart-right-drawer .minicart-header button.close:hover {
    opacity: 1;
  }
  
  .minicart-right-drawer .modal-title {
    font-size: 17px;
    font-weight: bold;
    text-align: start;
    margin: 0;
  }
  
  .minicart-right-drawer .minicart-body {
    height: calc(100% - 265px);
    overflow-x: auto;
    padding: 0 20px;
  }
  
  .minicart-right-drawer .minicart-body .empty-cart {
    display: none;
    font-size: 14px;
    padding: 20px 0 20px;
    text-align: center;
  }
  
  .minicart-right-drawer .minicart-footer {
    background-color: #ffffff;
    padding: 0 20px 20px 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  
  .minicart-right-drawer .minicart-footer .total-in {
    font-size: 14px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    padding: 10px 0;
    margin-bottom: 15px;
  }
  
  .minicart-right-drawer .minicart-footer .total-in p {
    padding: 0;
  }
  
  .minicart-right-drawer .mini-products-list {
    padding: 0;
    max-height: 100%;
    overflow: hidden;
  }
  
  /*----------------------------------------
   * Cookie Meassage
  ------------------------------------------*/
  #cookie-message {
    text-align: center;
    position: fixed;
    top: auto;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    margin: 0;
    z-index: 99;
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    border-radius: 0;
    border: none;
  }
  
  #cookie-message p {
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
  }
  
  #cookie-message .cookie-action {
    display: inline-block;
    margin: 0 0 0 5px;
  }
  
  #cookie-message .cookie-action a {
    color: #ffffff;
    padding: 5px 10px;
    background-color: #4d4d4d;
    text-transform: uppercase;
    margin-inline-end: 5px;
    text-decoration: none;
  }
  
  #cookie-message .cookie-action .cookie-info {
    color: #ffffff;
    padding: 5px 10px;
    background-color: #222222;
  }
  
  #cookie-message .cookie-action a:hover,
  #cookie-message .cookie-action .cookie-info:hover {
    color: #ffffff;
  }
  
  /*----------------------------------------
   * Product Suggestion
  ------------------------------------------*/

  
  /*----------------------------------------
   * Promotional Top Popup
  ------------------------------------------*/
  .notification-bar {
    text-align: center;
    position: relative;
    z-index: 5;
    background-color: var(--main-color);
  }
  
  .notification-bar__message {
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
    padding: 10px 30px;
    display: block;
  }
  
  .notification-bar__message:hover,
  .notification-bar__message:active,
  .notification-bar__message:focus,
  .notification-bar__message:focus-within {
    color: #ffffff;
    text-decoration: none;
  }
  
  .close-announcement {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    inset-inline-end: 40px;
    top: 8px;
    height: 25px;
    width: 25px;
    line-height: 22px;
    color: #ffffff;
  }
  
  /*----------------------------------------
   * End Promotional Top Popup
  ------------------------------------------*/
  
  
  /*----------------------------------------
    End Image Banners
  ------------------------------------------*/
  
  /*----------------------------------------
   * 24. Custom Content
  ------------------------------------------*/
  .custom-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    margin-bottom: -30px;
  }
  
  .custom-item {
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 30px;
  }
  
  .align-center {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
    text-align: center;
  }
  
  .custom-item-inner {
    position: relative;
    display: inline-block;
    text-align: center;
    max-width: 100%;
  }
  
  .custom-item-inner .h3 {
    text-transform: uppercase;
    color: var(--main-color);
  }
  
  .custom-item-inner p,
  .custom-item-inner .rte-setting {
    margin-bottom: 20px;
  }
  
  .custom-image {
    max-height: 530px;
  }
  
  .custom-content-style1 .mb-4 {
    margin-bottom: 30px !important;
  }
  
  .custom-item.grid-products .row {
    margin-bottom: -30px;
  }
  
  /*----------------------------------------
   * End Custom Content
  ------------------------------------------*/
  

  /*----------------------------------------
   * Product Single Homepage
  ------------------------------------------*/
  .product-single .product-single__meta {
    position: relative;
  }
  
  .product-single .product-featured-img {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .product-single .grid_item-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .product-single .product-single__title {
    text-transform: capitalize;
    font-size: 25px;
    margin-bottom: 5px;
    padding-inline-end: 45px;
    color: var(--main-color);
  }
  
  /*----------------------------------------
   * End Product Single Homepage
  ------------------------------------------*/
  
  /*----------------------------------------
   * 26. Testimonial Slider
  ------------------------------------------*/

 
  
  /*----------------------------------------
   * End Testimonial Slider Homepage
  ------------------------------------------*/
  
  /*----------------------------------------
   * 27. Hero Banners
  ------------------------------------------*/
  .hero-background{
    padding: 0;
  }
  .hero {
    position: relative;
    height: 475px;
    display: table;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: scroll;
  }
  
  .hero__inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 35px 0;
    color: #000000;
    z-index: 2;
    text-align: center;
  }
  
  .hero__inner span {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
    color: var(--white-color);
  }
  
  .hero[data-stellar-background-ratio] {
    background-attachment: fixed;
  }
  
  .hero--full {
    height: 100vh;
  }
  
  .hero--large {
    height: 750px;
  }
  
  .hero--medium {
    height: 650px;
  }
  
  .hero__overlay:before {
    content: " ";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    background-color: #000000;
    opacity: 0.4;
    z-index: 1;
  }
  
  .hero__overlay .wrap-text:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 1;
  }
  
  .hero.bgbox .wrap-text:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 1;
    background-color: #000000;
    border: 4px double #ffffff;
    opacity: 0.2;
  }
  
  .hero__inner .wrap-text {
    position: relative;
    display: inline-block;
    padding: 30px;
  }
  
  .hero__inner .wrap-text>* {
    position: relative;
    z-index: 2;
  }
  
  .hero__inner .center {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero .mega-small-title {
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
    margin: 0 0 8px;
  }
  
  .hero .text-large .mega-title {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
  
  .hero .text-large .h1.mega-title {
    color: #ffffff;
    font-size: 65px;
  }
  
  .hero .text-large .mega-subtitle {
    color: #ffffff;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
  }
  
  .hero .text-medium .mega-title {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .hero .text-medium .mega-subtitle {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
  }
  
  .hero .text-small .mega-title {
    font-size: 25px;
    font-weight: 700;
  }
  
  .hero .text-small .mega-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .hero .mega-subtitle {
    margin-bottom: 25px;
  }
  
  .hero .font-bold .mega-title {
    font-weight: 700;
  }
  
  .hero__inner .border-btn-1 {
    border-width: 2px;
  }
  
  .text-shadow {
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  }
  
  .hero__inner .left {
    float: left;
    max-width: 65%;
    margin-inline-start: -5%;
  }
  [dir="rtl"] .hero__inner .left {
    float: right;

  }
  
  .hero__inner .right {
    float: right;
    max-width: 65%;
    margin-inline-end: -5%;
  }
  [dir="rtl"] .hero__inner .right {
    float: left;
  }
  
  .hero.background-parallax,
  .background-parallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  /*----------------------------------------
   * End Hero Banners
  ------------------------------------------*/
  
  /*----------------------------------------
   * 28. Newsletter Cookie Popup
  ------------------------------------------*/
  #modalOverly {
    height: auto !important;
    position: fixed;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  }
  
  #popup-container {
    display: none;
    max-width: 700px;
    position: fixed;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 50%;
    background: #fafafa;
    margin: 20px auto;
    z-index: 444;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  }
  
  #popup-window {
    position: relative;
  }
  
  #popup-container .row-cell.first {
    width: 65%;
    text-align: center
  }
  
  #popup-container .row-cell.last {
    width: 35%;
    text-align: end
  }
  
  #popup-container .closepopup {
    display: block;
    color: #ffffff;
    font-size: 13px;
    height: 30px;
    line-height: 17px;
    padding: 5px;
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 30px;
    z-index: 333;
  }
  
  #popup-container .closepopup:hover {
    opacity: 0.8
  }
  
  #popup-container .width40 {
    width: 40%
  }
  
  #popup-container .width60 {
    width: 60%
  }
  
  .newsletter-left {
    padding: 40px 30px
  }
  
  .newsletter-left h1,
  .newsletter-left .h1 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #000000;
    letter-spacing: normal;
  }
  
  .newsletter-left h2 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #000000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .newsletter-left .input-group__field {
    border-inline-end: 1px solid #e8e9eb
  }
  
  .newsletter-left .input-group {
    display: block;
    margin: 0 auto 20px;
    position: relative;
    width: 100%
  }
  
  .newsletter-left .input-group input {
    background-color: #ffffff;
    padding: 0 20px;
    width: 100%;
    margin: 0 0 10px 0;
  }
  
  .newsletter-left .social-icons li {
    display: inline-block;
    margin: 0 5px;
    padding: 0 8px;
    list-style: none;
  }
  
  .newsletter-left .social-icons a {
    border-radius: 50%;
    color: #141515;
    display: inline-block;
    font-size: 18px;
    height: 30px;
    line-height: 20px;
    padding: 5px;
    text-align: center;
    width: 30px;
    text-decoration: none;
  }
  
  .newsletter-left .social {
    margin: 10px 0 0
  }
  
  .newsletter-left .social li {
    display: inline-block;
    margin: 0 5px;
    list-style: none
  }
  
  .newsletter-left .social a {
    border-radius: 50%;
    color: #141515;
    display: inline-block;
    font-size: 18px;
    height: 30px;
    line-height: 20px;
    padding: 5px;
    text-align: center;
    width: 30px;
  }
  
  .newsletter-left #Subscribe {
    width: 100%;
    height: auto;
    padding: 12px 20px
  }
  
  .newsletter-left #Subscribe:hover {}
  
  /*----------------------------------------
   * End Newsletter Cookie Popup
  ------------------------------------------*/
  
  /*----------------------------------------
   * 29. Collection Page
  ------------------------------------------*/
  .collection-box .colletion-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .collection-box a {
    opacity: 1;
    display: block;
  }
  
  .collection-box a img {
    display: block;
    -ms-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
	  height:400px;
	  width:100%;
	  object-fit:cover;
  }
  
  .collection-box .colletion-item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  
  .collection-box .title {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 10px;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1px;
    inset-inline-start: 1px;
    inset-inline-end: 1px;
    z-index: 5;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .collection-box .colletion-item:hover .title {
    background-color: #ffffff;
  }
  
  .collection-box .title .name {
    display: block;
    color: #232323;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
  }
  
  /* Collection style 2 */
  .collection-box.collection2 .title {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .collection-box.collection2 .colletion-item:hover .title {
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .collection-box.collection2 .title .name,
  .collection-box.collection2 .title .counts {
    color: #ffffff;
  }
  
  /* Collection style 3 */
  .collection-box.collection3 .title {
    top: 50%;
    bottom: auto;
    inset-inline-start: 50%;
    inset-inline-end: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
[dir="rtl"]  .collection-box.collection3 .title {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  @media only screen and (min-width: 992px) {
    .collection-box.collection2 .title {
      -ms-transform: translateY(111%);
      -webkit-transform: translateY(111%);
      transform: translateY(111%);
    }
  
    .collection-box.collection2 .colletion-item:hover .title {
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    .collection-box.collection3 .title {
      top: 5px;
      bottom: 5px;
      inset-inline-start: 5px;
      inset-inline-end: 5px;
      -webkit-transform: none;
      transform: none;
      opacity: 0;
      visibility: hidden;
    }
  
    .collection-box.collection3 .colletion-item:hover .title {
      background-color: rgba(255, 255, 255, 0.9);
      opacity: 1;
      visibility: visible;
    }
  }
  
  /*----------------------------------------
    * End Collection Page
  ------------------------------------------*/
  
  
  /*======================================================================
    30. Homepages Demo
  ========================================================================*/
  
  /*----------------------------------------
   * 30.1 Home 1 - Classic 01
  ------------------------------------------*/
  .classicHeader .header-wrap {
    background: #000;
  }
  
  .template-index .classicHeader:not(.stickyNav) .header-wrap {
    position: relative;
    width: 100%;
    z-index: 8;
    border-bottom: none;
  }
  
  .template-index .classicHeader #siteNav>li>a {
    color: var(--white-color);
  }
  
  .template-index .classicHeader #siteNav>li>a:hover {
    color: #ffffff !important;
    opacity: 0.7;
  }
  
  .template-index .classicHeader .site-header__cart,
  .template-index .classicHeader .site-header-wishlist .wishlist-trigger,
  .template-index .classicHeader .user-menu-dropdown .user-menu,
  .template-index .classicHeader .site-header__search .search-trigger {
    color: var(--main-color);
  }
  
  .template-index .classicHeader .site-header__cart-count,
  .template-index .classicHeader .site-header-wish-count {
    background-color: #ffffff;
    color: #000000;
  }
  
.template-index .classicHeader.stickyNav #siteNav > li > a, .template-index .classicHeader #siteNav>li>a {
  color: var(--white-color) !important;
  position: relative;
  display: block;
}

.template-index .classicHeader.stickyNav #siteNav > li > a::after, .template-index .classicHeader #siteNav>li>a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--white-color);
  position: absolute;
  bottom: -4px;
  inset-inline-start: 0;
  transition: width 0.3s ease;
}

.template-index .classicHeader.stickyNav #siteNav > li > a:hover::after,  .template-index .classicHeader #siteNav>li>a:hover::after {
  width: 100%;
}

 .template-index .classicHeader.stickyNav #siteNav>li>a:hover {
    color: var(--white-color) !important;
  }
  .stickyNav .top-header{
    display: none !important;
  }
  .classicHeader.stickyNav .logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .classicHeader.stickyNav .site-header__cart,
  .classicHeader.stickyNav .site-header-wishlist .wishlist-trigger,
  .classicHeader.stickyNav .user-menu-dropdown .user-menu,
  .classicHeader.stickyNav .site-header__search .search-trigger {
    color: #000000;
  }
  
  /*----------------------------------------
   * 30.2 Home 2 - Default
  ------------------------------------------*/
  .home2-default .slideshow .slideshow__title {
    color: #000000;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .home2-default .slideshow .slideshow__subtitle {
    color: #000000;
    font-size: 18px;
    margin: 0 0 25px;
  }
  
  .home2-default .slideshow .btn {
    color: #000000;
    border-color: #000000;
  }
  
  .home2-default .slideshow .btn:hover {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
  }
  
  /*----------------------------------------
   * 30.3 Home 3 - Classic 02
  ------------------------------------------*/
  .home3-classic .top-header {
    background: #126570;
  }
  
  .home3-classic .hero .text-medium .mega-title {
    letter-spacing: normal;
  }
  
  .home3-classic .hero .text-medium .mega-subtitle {
    text-transform: none;
    max-width: 750px;
  }
  
  .home3-classic .button-set .btn {
    color: #eeeeee;
    background-color: #126570;
    border-color: #126570;
  }
  
  .home3-classic .button-set .btn:hover {
    color: #126570;
    background-color: #eeeeee;
    border-color: #eeeeee;
    box-shadow: 0 0 1px #acacac;
  }
  
  /*----------------------------------------
   * 30.4 Home 4 - Full Width
  ------------------------------------------*/
  .home4-fullwidth .h1,
  .home4-fullwidth .h2,
  .home4-fullwidth .h3,
  .home4-fullwidth .h4,
  .home4-fullwidth .h5,
  .home4-fullwidth .h6,
  .home4-fullwidth h1,
  .home4-fullwidth h2,
  .home4-fullwidth h3,
  .home4-fullwidth h4,
  .home4-fullwidth h5,
  .home4-fullwidth h6,
  .home4-fullwidth .slideshow .slideshow__subtitle {
    font-family: 'Urbanist', Arial, Tahoma;
  }
  
  .home4-fullwidth .container-fluid {
    padding: 0 30px;
  }
  
  .home4-fullwidth .search-bar-inline .search__input {
    background: transparent;
    border-color: #000000;
    color: #444444;
  }
  
  .home4-fullwidth .search-bar-inline .search__input:focus {
    border-color: #cccccc;
  }
  
  .home4-fullwidth .search-bar-inline .search__button,
  .home4-fullwidth .search-bar-inline .search__input::placeholder {
    color: #444444;
  }
  
  .home4-fullwidth .search-bar-inline .search__input::placeholder {
    opacity: .6;
  }
  
  .home4-fullwidth .product-rows .grid-products .row {
    margin-bottom: -30px;
  }
  
  .home4-fullwidth .hero__inner .wrap-text {
    max-width: 100%;
  }
  
  .home4-fullwidth .hero__inner span,
  .home4-fullwidth .hero__inner .mega-title,
  .home4-fullwidth .hero__inner .mega-subtitle {
    color: #ffffff;
  }
  
  .home4-fullwidth .section-header h2 {
    font-weight: 800;
  }
  
  /*----------------------------------------
   * 30.5 Home 5 - Boxed
  ------------------------------------------*/
  .layout-boxed {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: #ffffff;
  }
  
  .layout-boxed .search {
    max-width: 1440px;
    margin: 0 auto;
    inset-inline-end: 0;
  }
  
  .layout-boxed .container,
  .layout-boxed .container-fluid {
    max-width: 100%;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
  
  .layout-boxed .stickyNav {
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 0;
  }
  
  .home5-boxed-layout {
    background-color: #eeeeee;
    color: #555555;
    padding-bottom: 60px;
  }
  
  .home5-boxed-layout .slideshow .slideshow__title {
    font-size: 50px;
  }
  
  .home5-boxed-layout .slideshow .slideshow__subtitle {
    font-size: 16px;
    text-transform: none;
  }
  
  .home5-boxed-layout .slideshow .wrap-caption.left {
    margin-inline-start: 5%;
  }
  
  .home5-boxed-layout .slideshow .wrap-caption.right {
    margin-inline-end: 5%;
  }
  
  .home5-boxed-layout .slideshow .slide1 .slideshow__title,
  .home5-boxed-layout .slideshow .slide1 .slideshow__subtitle {
    color: #28242c;
  }
  
  .home5-boxed-layout .slideshow .slide1 .btn {
    color: #28242c;
    border-color: #28242c;
  }
  
  .home5-boxed-layout .slideshow .slide1 .btn:hover {
    color: #ffffff;
    background-color: #28242c;
    border-color: #28242c;
  }
  
  .home5-boxed-layout .footer-bottom {
    color: #ffffff;
    background: #000000;
    border-color: #333333;
  }
  
  .home5-boxed-layout .footer-bottom ul li a {
    color: #ffffff;
  }
  
  /*----------------------------------------
   * 30.6 Home 6 - Parallax Banner
  ------------------------------------------*/
  .home6-parallax .classicHeader .right-action .search-trigger,
  .home6-parallax .classicHeader .right-action a {
    color: #ffffff;
    background: transparent;
    text-decoration: none;
  }
  
  .home6-parallax .classicHeader.stickyNav .right-action .search-trigger,
  .home6-parallax .classicHeader.stickyNav .right-action a {
    color: #444 !important;
  }
  
  .home6-parallax .footer-3 .site-footer .footer-bottom {
    background: #f5f5f5;
    border-color: #ddd;
    color: #222222;
  }
  
  .home6-parallax .classicHeader #siteNav>li>a {
    background-color: transparent;
  }
  
  /* Header Style 6 */
  .header-6 .top-header {
    background: #333333;
  }
  
  .header-6 .header-wrap {
    background: #000000;
    color: #ffffff;
    border-color: #333333 !important;
  }
  
  .header-6 .search-bar-inline {
    width: 300px;
  }
  
  .header-6 .search-bar-inline .search__input {
    background: transparent;
    color: #ffffff;
    border-color: #333333;
  }
  
  .header-6 .search-bar-inline .search__input:focus {
    border-color: #555555;
  }
  
  .header-6 .search-bar-inline .search__button {
    background: transparent;
    top: 8px;
  }
  
  .header-6 .search-bar-inline .search__button .an {
    color: #ffffff;
  }
  
  .header-6 .header-wrap .right-action a {
    color: #ffffff;
    background: transparent;
    text-decoration: none;
  }
  
  .header-6 #AccessibleNav {
    background: #000000;
  }
  
  .header-6 #siteNav>li>a {
    color: #ffffff;
  }
  
  .header-6 #siteNav>li>a.active,
  .header-6 #siteNav>li:active>a,
  .header-6 #siteNav>li:hover>a {
    color: var(--main-color);
    background-color: #ffffff;
  }
  
  .stickyNav .header-6 .top-header,
  .stickyNav .header-6 .header-wrap .logo a {
    display: none;
  }
  
  .stickyNav .header-6 .header-wrap {
    padding: 8px 0;
  }
  
  .stickyNav .header-6 .main-navigation {
    position: absolute;
    top: 8px;
    margin: 0 auto;
    inset-inline-end: 0;
    inset-inline-start: 0;
    max-width: 900px;
    z-index: 5;
  }
  
  .stickyNav .header-6 #AccessibleNav {
    background: transparent;
  }
  
  /*----------------------------------------
   * 30.7 Home 7 - Creative
  ------------------------------------------*/
  .home7-creative .h1,
  .home7-creative .h2,
  .home7-creative .h3,
  .home7-creative .h4,
  .home7-creative .h5,
  .home7-creative .h6,
  .home7-creative h1,
  .home7-creative h2,
  .home7-creative h3,
  .home7-creative h4,
  .home7-creative h5,
  .home7-creative h6 {
    font-family: 'Courgette', Arial, Tahoma;
  }
  
  .home7-creative .slideshow .slideshow--large .slick-slide img {
    height: auto;
    object-fit: inherit;
  }
  
  .home7-creative .custom-item-inner .h3 {
    font-size: 22px;
  }
  
  .home7-creative .section-header h2 {
    font-size: 26px;
    text-transform: none;
  }
  
  .home7-creative .collection-box .collection-grid-item__title {
    font-size: 39px;
    text-transform: none;
  }
  
  .home7-creative .custom-item-inner .h3 {
    text-transform: none;
  }
  
  .home7-creative .collection-box .btn--secondary {
    margin-top: 14px;
  }
  
  
  .home7-creative .footer-3 .site-footer {
    border-top-color: #000000;
    background: #222222;
  }
  
  .home7-creative .footer-3 .site-footer .footer-bottom {
    border-color: #444444;
  }
  
  .home7-creative .footer-bottom ul li a {
    color: #ffffff;
  }
  
  /*----------------------------------------
   * 30.8 Home 8 - Simple
  ------------------------------------------*/
  body.home8-simple,
  .home8-simple .h1,
  .home8-simple .h2,
  .home8-simple .h3,
  .home8-simple .h4,
  .home8-simple .h5,
  .home8-simple .h6,
  .home8-simple h1,
  .home8-simple h2,
  .home8-simple h3,
  .home8-simple h4,
  .home8-simple h5,
  .home8-simple h6,
  .home8-simple .btn {
    font-family: 'Jost', Arial, Tahoma;
  }
  
  .home8-simple .header-wrap .right-action a {
    color: #000000;
    background: transparent;
    text-decoration: none;
  }
  
  .home8-simple .store-feature.style2 .store-info li {
    background: #0b0101;
    color: #ffffff;
  }
  
  .home8-simple .store-info h5,
  .home8-simple .store-info .h5 {
    color: #ffffff;
  }
  
  body.home8-simple,
  .home8-simple .section-header p {
    font-size: 14px;
  }
  
  .home8-simple .btn {
    font-size: 13px;
  }
  
  /*
  .home8-simple .logo-bar .slick-list { margin:0 -10px; }
  .home8-simple .logo-bar .slick-slide { margin:0 10px; }
  */
  
  .home8-simple .logo-bar .logo-bar__item a {
    border: 1px solid #ddd;
  }
  
  .home8-simple .logo-bar .logo-bar__item a:hover {
    opacity: 1;
    border: 1px solid #ccc;
  }
  
  .home8-simple .footer-4 .footer-top {
    border-top: 1px solid #f5f5f5;
  }
  
  /* Header Style 5 */
  .header-5 .top-header {
    background: #94c442;
  }
  
  .header-5 #AccessibleNav {
    background: #334356;
  }
  
  .header-5 #siteNav>li>a {
    color: #ffffff;
  }
  
  .header-5 #siteNav>li>a.active,
  .header-5 #siteNav>li:active>a,
  .header-5 #siteNav>li:hover>a {
    color: #94c442;
    background-color: #1e2f42;
  }
  
  .header-5 .search-bar-inline {
    width: 400px;
    position: relative;
    z-index: 4;
    margin: 0 auto;
  }
  
  .header-5 .search-bar-inline .search__input {
    border-color: #d3d3d3;
  }
  
  .header-5 .header-wrap .right-action a {
    color: #444444;
    background: transparent;
    text-decoration: none;
  }
  
  .stickyNav .header-5 .logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .stickyNav .header-5 .search-bar-inline {
    display: none;
  }
  
  .stickyNav .header-5 .main-navigation {
    position: absolute;
    top: 11px;
    margin: 0 auto;
    inset-inline-end: 0;
    inset-inline-start: 0;
    max-width: 900px;
    z-index: 5;
  }
  
  .stickyNav .header-5 #AccessibleNav {
    background: transparent;
  }
  
  .stickyNav .header-5 #siteNav>li>a {
    color: #444444;
  }
  
  .stickyNav .header-5 #siteNav>li>a.active,
  .stickyNav .header-5 #siteNav>li:active>a,
  .stickyNav .header-5 #siteNav>li:hover>a {
    color: #94c442;
    background-color: #ffffff;
  }
  
  /* Header Style 7 */
  .header-7 #siteNav>li>a {
    color: #000000;
  }
  
  .header-7 #siteNav>li>a.active,
  .header-7 #siteNav>li:active>a,
  .header-7 #siteNav>li:hover>a {
    color: var(--main-color) !important;
    background-color: #ffffff;
    opacity: 1 !important;
  }
  
  .header-7 .right-action a {
    color: #000000;
    background: transparent;
    text-decoration: none;
  }
  
  .header-7 .site-header__search .search-trigger,
  .header-7 .site-header__menu,
  .header-7 .site-header__menu .an {
    color: #000000;
    background: transparent !important;
    text-decoration: none;
  }
  
  .classicHeader.stickyNav .header-7 #siteNav>li>a.active,
  .classicHeader.stickyNav .header-7 #siteNav>li:active>a,
  .classicHeader.stickyNav .header-7 #siteNav>li:hover>a {
    color: var(--main-color) !important;
  }
  
  /* Header Black Bg */
  .header-7.blackbg,
  .header-7.blackbg .stickyNav {
    background: #111111;
  }
  
  .header-7.blackbg #siteNav>li>a {
    color: #ffffff;
  }
  
  .header-7.blackbg #siteNav>li>a.active,
  .header-7.blackbg #siteNav>li:active>a,
  .header-7.blackbg #siteNav>li:hover>a {
    color: #94c442 !important;
    background-color: #1e2f42;
  }
  
  .header-7.blackbg .right-action a {
    color: #ffffff;
    background: transparent;
    text-decoration: none;
  }
  
  .header-7.blackbg .site-header__search .search-trigger,
  .header-7.blackbg .site-header__menu,
  .header-7.blackbg .site-header__menu .an {
    color: #ffffff;
    background: transparent !important;
    text-decoration: none;
  }
  
  /*----------------------------------------
   * 30.9 Home 9 - Simple 2
  ------------------------------------------*/
  body.home9-simple,
  .home9-simple .h1,
  .home9-simple .h2,
  .home9-simple .h3,
  .home9-simple .h4,
  .home9-simple .h5,
  .home9-simple .h6,
  .home9-simple h1,
  .home9-simple h2,
  .home9-simple h3,
  .home9-simple h4,
  .home9-simple h5,
  .home9-simple h6,
  .home9-simple .btn {
    font-family: 'Jost', Arial, Tahoma;
  }
  
  .home9-simple .hero .mega-small-title {
    letter-spacing: .08em;
    font-size: 14px;
    margin: 0 0 5px;
  }
  
  .home9-simple .section-header p {
    font-size: 14px;
  }
  
  .home9-simple .site-footer {
    background: #94c442;
    color: #ffffff;
    border-color: #94c442;
  }
  
  .home9-simple .site-footer .footer-bottom {
    background: #293849;
    color: #ffffff;
    border-color: #4d627c;
  }
  
  .home9-simple .footer-middle .footer-social h3,
  .home9-simple .site-footer .site-footer__social-icons .icon,
  .home9-simple .payment-icons .icon,
  .home9-simple .footer-bottom ul li a {
    color: #ffffff;
  }
  
  .home9-simple .button-set .btn {
    color: #ffffff;
    background-color: #334356;
    border-color: #334356;
  }
  
  .home9-simple .button-set .btn:hover {
    color: #334356;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 1px #acacac;
  }
  
  .home9-simple #site-scroll {
    line-height: 33px;
  }
  
  /* Slideshow Style 2 */
  .slideshow-style-2 .slide1 .mega-small-title,
  .slideshow-style-2 .slide1 .slideshow__title,
  .slideshow-style-2 .slide1 .slideshow__subtitle,
  .slideshow-style-2 .slide1 .btn {
    color: #000000;
  }
  
  .slideshow-style-2 .slide1 .btn {
    border-color: #000000;
  }
  
  .slideshow-style-2 .slide1 .btn:hover {
    color: #ffffff;
    background-color: #000000;
  }
  
  .slideshow-style-2 .slick-active .mega-small-title {
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
    animation-duration: .3s;
    -webkit-animation-duration: .3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInDown;
  }
  
  .slideshow-style-2 .slick-active .mega-title {
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInDown;
  }
  
  .slideshow-style-2 .slick-active .mega-subtitle {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInDown;
  }
  
  .slideshow-style-2 .slick-active .btn {
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    animation-duration: .5s;
    -webkit-animation-duration: .5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInUp;
  }
  
  .slideshow-style-2 .slideimg img {
    -webkit-transition: opacity .8s cubic-bezier(.44, .13, .48, .87);
    transition: opacity .8s cubic-bezier(.44, .13, .48, .87);
  }
  
  .slideshow-style-2 .slick-active .slideimg img {
    -webkit-animation: 60s ease 0s normal none infinite running scaleimg;
    animation: 60s ease 0s normal none infinite running scaleimg;
  }
  
  @-webkit-keyframes scaleimg {
  
    0%,
    100% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.2);
    }
  }
  
  @keyframes scaleimg {
  
    0%,
    100% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.2);
    }
  }
  
  .slideshow-style-2 .slideshow__text-content {
    animation: none !important;
    transition: none !important;
  }
  
  .slideshow-style-2 .mega-small-title,
  .slideshow-style-2 .mega-subtitle {
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
  }
  
  /*----------------------------------------
   * 30.10 Home 10 - Minimal
  ------------------------------------------*/
  .home10-minimal .h1,
  .home10-minimal .h2,
  .home10-minimal .h3,
  .home10-minimal .h4,
  .home10-minimal .h5,
  .home10-minimal .h6,
  .home10-minimal h1,
  .home10-minimal h2,
  .home10-minimal h3,
  .home10-minimal h4,
  .home10-minimal h5,
  .home10-minimal h6,
  .home10-minimal .slideshow .slideshow__subtitle,
  .home10-minimal .slideshow .slideshow__title {
    font-family: 'Urbanist', Arial, Tahoma;
  }
  
  .home10-minimal .slideshow .slideshow__title {
    font-weight: 800;
  }
  
  .home10-minimal #siteNav>li>a {
    padding: 0 10px;
  }
  
  .home10-minimal .slideshow__overlay:before {
    opacity: 0.5;
  }
  
  .home10-minimal .slideshow .wrap-caption.bgbox:after {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0.5;
  }
  
  /*----------------------------------------
   * 30.11 Home 11 - Modern
  ------------------------------------------*/
  .home11-modern .hero .text-medium .mega-title,
  .home11-modern .hero .text-medium .mega-subtitle {
    color: #000000;
    letter-spacing: normal;
  }
  
  .home11-modern .hero .border-btn-1 {
    color: #000000;
    border-color: #000000;
  }
  
  .home11-modern .hero .border-btn-1:hover {
    background: #000000;
    color: #ffffff;
  }
  
  /*----------------------------------------
   * 30.12 Home 12 - Category
  ------------------------------------------*/
  .home12-category .custom-content .custom-item:hover img {
    opacity: 0.9;
  }
  
  .home12-category .custom-content .custom-item:hover .border-btn-2 {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
    opacity: 1;
  }
  
  .home12-category .header-7.blackbg #siteNav>li>a.active,
  .home12-category .header-7.blackbg #siteNav>li:active>a,
  .home12-category .header-7.blackbg #siteNav>li:hover>a {
    color: #ff7d68;
    background-color: #2f2f2f;
  }
  
  .home12-category .footer-2 .footer-top {
    background: #141414;
    color: #eeeeee;
    border-top: 1px solid transparent;
  }
  
  .home12-category .footer-2 .footer-top * {
    color: #eeeeee;
  }
  
  .home12-category .footer-2 .footer-bottom {
    color: #eeeeee;
    background: #141414;
    border-top: 1px solid #242424;
  }
  
  .home12-category .footer-2 .footer-links .h4 {
    border-color: #eeeeee;
  }
  
  .home12-category .footer-2 .footer-newsletter input {
    color: #222222;
  }
  
  /*----------------------------------------
   * 30.13 Home 13 - Dark
  ------------------------------------------*/
  .home13-dark {
    background-color: #2b2b2b;
    color: #ded5d5;
  }
  
  .home13-dark #pre-loader {
    background-color: #000000;
    color: #ded5d5;
  }
  
  .home13-dark .h1,
  .home13-dark .h2,
  .home13-dark .h3,
  .home13-dark .h4,
  .home13-dark .h5,
  .home13-dark .h6,
  .home13-dark h1,
  .home13-dark h2,
  .home13-dark h3,
  .home13-dark h4,
  .home13-dark h5,
  .home13-dark h6,
  .home13-dark .tab-slider-product .tabs>li {
    color: #ffffff;
  }
  
  .home13-dark .tab-slider-product .tabs>li.active {
    color: var(--main-color);
  }
  
  .home13-dark .stickyNav {
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.2);
  }
  
  .home13-dark .slideshow .wrap-caption.bgbox:after {
    border: none;
    opacity: 0.5;
    background-color: #000000;
  }
  
  .home13-dark .header-6 .header-wrap {
    border-color: #1d1d1d !important;
  }
  
  .home13-dark .header-6 .search-bar-inline .search__input {
    border-color: #7b7777;
  }
  
  .home13-dark .tab-slider-product .tab_container {
    background: transparent;
  }
  
  .home13-dark .grid-products .item .product-name a {
    color: #bebebe;
  }
  
  .home13-dark .grid-products .item .grid-view-item__vendor,
  .home13-dark .product-price .price,
  .home13-dark .product-price .old-price {
    color: #ded5d5;
  }
  
  .home13-dark .slick-arrow {
    background: transparent;
    color: #ffffff;
  }
  
  .home13-dark .slick-prev:before,
  .home13-dark .slick-next:before {
    color: #ffffff;
  }
  
  .home13-dark .quickview-popup .slick-prev:before,
  .home13-dark .quickview-popup .slick-next:before {
    color: #333333;
  }
  
  .home13-dark .store-feature.style3 .store-info {
    margin-top: 0px !important;
  }
  
  .home13-dark .store-feature.style3 .store-info {
    background: #222222;
  }
  
  .home13-dark .store-feature.style3 .col-lg-3 {
    border-inline-end: 1px dotted #000;
  }
  
  .home13-dark .store-feature.style3 .col-lg-3:last-of-type {
    border-inline-end: 0;
  }
  
  .home13-dark .site-footer {
    background: #000000;
    color: #aba7a7;
    border-color: #000000;
  }
  
  .home13-dark .footer-top,
  .home13-dark .footer-links a,
  .home13-dark .footer-top p,
  .home13-dark .footer-bottom,
  .home13-dark .footer-top h4,
  .home13-dark .footer-top .h4,
  .home13-dark .addressFooter .icon {
    color: #aba7a7;
  }
  
  .home13-dark .footer-newsletter .input-group__btn .btn {
    color: #aba7a7;
    background: transparent;
    border-color: #aba7a7;
  }
  
  .home13-dark .footer-newsletter .input-group__btn .btn:hover {
    color: #ffffff;
    background: #232323;
    border-color: #232323;
  }
  
  .home13-dark .footer-bottom {
    color: #aba7a7;
    border-color: #1a1818;
  }
  
  .home13-dark .magnific-popup,
  .home13-dark .modal-content,
  .home13-dark .product-suggestion-content,
  .home13-dark .minicart-right-drawer .minicart-footer,
  .home13-dark #popup-container {
    background-color: #2b2b2b;
  }
  
  .home13-dark .minicart-right-drawer .minicart-header,
  .home13-dark .mini-products-list li,
  .home13-dark .minicart-right-drawer .minicart-footer .total-in {
    border-color: #353535;
  }
  
  .home13-dark .block-cart .qtyField .qtyBtn,
  .home13-dark .block-cart .qtyField .product-form__input,
  .home13-dark .newsletter-left .input-group input,
  .home13-dark input,
  .home13-dark select,
  .home13-dark textarea {
    background: transparent;
    border-color: #353535;
  }
  
  .home13-dark input,
  .home13-dark select,
  .home13-dark textarea,
  .home13-dark .mini-products-list li .pName,
  .home13-dark .block-cart .priceRow,
  .home13-dark .block-cart .qtyField .qtyBtn,
  .home13-dark .mini-products-list li .remove,
  .home13-dark .minicart-action .total-in,
  .home13-dark button.close,
  .home13-dark .product-suggestion-content .close,
  .home13-dark .product-suggestion-content .s-name,
  .home13-dark .magnific-popup .rte,
  .home13-dark .product-single__price,
  .home13-dark .social-sharing .btn,
  .home13-dark .newsletter-left h1,
  .home13-dark .newsletter-left .h1,
  .home13-dark .social-icons .icon {
    color: #ded5d5;
  }
  
  .home13-dark .qtyField a:hover,
  .home13-dark .block-cart .qtyField .qtyBtn:hover {
    background-color: #333333;
  }
  
  .home13-dark .product-form .swatch .swatchInput+.swatchLbl {
    background-color: #353535;
    border-color: #2b2b2b;
    color: #ded5d5;
    box-shadow: 0 0 0 1px #333333;
  }
  
  .header-7.blackbg #siteNav>.home13-dark .product-form .swatch .swatchInput:checked+.swatchLbl {
    border-color: #ded5d5;
  }
  
  .home13-dark .product-form .swatch input[type="radio"]+label::after {
    border-color: transparent transparent #ded5d5 #ded5d5;
  }
  
  .home13-dark .quickview-popup .product-single__description {
    border-color: #353535;
  }
  
  .home13-dark .qtyField {
    border-color: #353535;
  }
  
  .home13-dark .qtyField a {
    background: transparent;
    border-color: #353535;
    color: #ded5d5;
  }
  
  /*----------------------------------------
   * 30.14 Home 14
  ------------------------------------------*/
  .home14 .slideshow .slideshow__title {
    color: #000000;
    font-size: 50px;
    text-transform: uppercase;
  }
  
  .home14 .slideshow .slideshow__subtitle {
    color: #000000;
    font-size: 18px;
    margin: 0 0 25px;
  }
  
  .home14 .slideshow .btn {
    color: #000000;
    border-color: #000000;
  }
  
  .home14 .slideshow .btn:hover {
    color: #ffffff;
    border-color: #000000;
    background-color: #000000;
  }
  
  .home14 .imgBnrOuter .inner .ttl {
    padding: 10px 30px;
  }
  
  .home14 .imgBnrOuter .inner .ttl h3 {
    font-family: 'Montserrat', sans-serif;
    color: #111111;
    font-size: 20px;
    margin: 0 0 2px;
  }
  
  .home14 .imgBnrOuter .inner .ttl p {
    color: #111111;
    font-size: 15px;
    margin: 0;
  }
  
  .home14 .imgBnrOuter .inner .ttl .btn {
    height: 35px;
    margin: 10px 0 0;
  }
  
  .home14 .imgBnrOuter .inner.btmright .ttl {
    text-align: center;
    inset-inline-end: 5%;
    bottom: 5%;
  }
  
  .home14 .imgBnrOuter .inner.rightcenter .ttl {
    inset-inline-end: 5%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .home14 .imgBnrOuter .inner.leftcenter .ttl {
    inset-inline-start: 5%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .home14 .imgBnrOuter .inner.topright .ttl {
    text-align: center;
    inset-inline-end: 5%;
    top: 5%;
  }
  
  .home14 .footer-3 .site-footer,
  .home14 .footer-3 .site-footer .footer-bottom {
    background: #111111;
    border-color: #1b1b1b;
  }
  
  .product-rows.no-pb-section .grid-products .row {
    margin-bottom: -30px;
  }
  
  /* Header Style 8 */
  .header-8 #AccessibleNav {
    background: #111111;
  }
  
  .header-8 #siteNav {
    max-width: 100%;
  }
  
  .header-8 #siteNav>li>a {
    color: #ffffff;
  }
  
  .header-8 #siteNav>li>a.active,
  .header-8 #siteNav>li:active>a,
  .header-8 #siteNav>li:hover>a {
    color: var(--main-color);
    background-color: #ffffff;
  }
  
  .header-8 .search-bar-inline {
    width: 400px;
    position: relative;
    z-index: 4;
    margin: 0 auto;
  }
  
  .header-8 .search-bar-inline .search__input {
    border-color: #dddddd;
  }
  
  .header-8 .search-bar-inline .search__input:focus {
    border-color: #bbbbbb;
  }
  
  .stickyNav .header-8 .main-search .search-bar-inline {
    display: none !important;
  }
  
  .stickyNav .header-8 .main-navigation {
    position: absolute;
    top: 4px;
    margin: 0 auto;
    inset-inline-end: 0;
    inset-inline-start: 0;
    max-width: 900px;
    z-index: 5;
  }
  
  .stickyNav .header-8 #siteNav {
    text-align: center;
    justify-content: center;
  }
  
  .stickyNav .header-8 #AccessibleNav {
    background: transparent;
  }
  
  .stickyNav .header-8 #siteNav>li>a {
    color: #000000;
  }
  
  .stickyNav .header-8 #siteNav>li>a.active,
  .stickyNav .header-8 #siteNav>li:active>a,
  .stickyNav .header-8 #siteNav>li:hover>a {
    color: var(--main-color);
    background-color: #ffffff;
  }
  
  /*----------------------------------------
   * End Home14
  ------------------------------------------*/
  
  
  /*----------------------------------------
   * 31. Footer
  ------------------------------------------*/
  #footer {
    margin-top: 36px;
    background-image: url(../images/about/sub1.webp);
    position: relative;
  }
  #footer::before{
    content: " ";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    bottom: 0;
    inset-inline-start: 0;
    background-color: #000000;
    opacity: 0.7;
    z-index: 1;
  }
  .site-footer .social-colorfull .an-facebook {
    color: #3272bd;
  }
  
  .site-footer .social-colorfull .an-twitter {
    color: #6acff4;
  }
  
  .site-footer .social-colorfull .an-pinterest-p {
    color: #ce1e27;
  }
  
  .site-footer .social-colorfull .an-instagram {
    color: #4270a3;
  }
  
  .site-footer .social-colorfull .an-tumblr {
    color: #274152;
  }
  
  .site-footer .social-colorfull .an-youtube {
    color: #ce332d;
  }
  
  .site-footer .social-colorfull .an-vimeo-v {
    color: #86c9ef;
  }
  
  /* Newsletter */
  .newsletter-section {
    background-color: #f9f9f9;
    border: 1px solid #e8e9eb;
    padding: 35px 0;
  }
  
  .newsletter-section .footer-newsletter {
    width: 60%;
  }
  
  .newsletter-section .section-header {
    margin: 0 20px 0 0;
    float: left;
    display: inline-block;
  }
  [dir="rtl"] .newsletter-section .section-header {

    float: right;
  }
  
  .newsletter-section .section-header label {
    font-weight: 400;
    margin-bottom: 0;
    color: #000000;
  }
  
  .newsletter-section .section-header span {
    display: block;
    font-size: 13px;
    text-align: start;
  }
  
  .newsletter-section .input-group {
    max-width: 100%;
    margin: 0;
    width: auto;
    position: relative;
    display: table;
    border-collapse: separate;
  }
  
  .newsletter-section .input-group__btn {
    white-space: nowrap;
    width: 1%;
    display: table-cell;
    vertical-align: middle;
    margin: 0;
  }
  
  .newsletter-section .input-group .btn,
  .newsletter-section .input-group__field {
    height: 40px;
  }
  
  .newsletter-section .input-group__field {
    background-color: #ffffff;
  }
  
  .newsletter-section .input-group__field,
  .newsletter-section .input-group__btn .btn {
    border-radius: 0;
  }
  
  .newsletter-section .btn {
    color: #ffffff;
    background-color: #000000;
  }
  
  .newsletter-section .btn:hover,
  .newsletter-section .btn:focus {
    background-color: #444444;
  }
  
  /* End Newsletter */
  
  /* Social Icon */
  .site-footer__social-icons {
    margin: 0 -8px;
  }
  
  .site-footer__social-icons li {
    padding: 0 8px;
    font-size: 0px;
  }
  
  .social-icons .icon {
    color: #fff;
    font-size: 16px;
  }
  
  .site-footer__social-icons.contact .icon {
    font-size: 21px;
    color: #000 !important;
  }
  
  /* End Social Icon */
  
  .site-footer {
       position: relative;
    z-index: 99;
  }
  
  .site-footer ul {
    list-style: none;
  }
  
  .footer-top ul li {
    line-height: 26px;
  }
  .footer-top ul li a{
      color: #fff;
  }
  .footer-top {
    line-height: 22px;
    padding-top: 50px;
    padding-bottom: 40px;
    color: #232323;
  }
  
  .footer-top h4,
  .footer-top .h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 9px;
  }
  
  .footer-links .h4 {
    position: relative;
  }
  
  .footer-links ul,
  .contact-box ul {
    margin-bottom: 0;
  }
  
  .footer-top,
  .footer-links a,
  .footer-top p,
  .footer-bottom {
    color: #fff;
  }
  
  .addressFooter .icon {
    color: #fff;
    float: left;
    font-size: 19px;
    margin-top: 4px;
  }
  [dir="rtl"] .addressFooter .icon{
      float: right;
  }
  .addressFooter li {
    position: relative;
    padding-bottom: 8px;
    list-style: none;
  }
  
  .addressFooter li p {
    padding-inline-start: 25px;
  }
  
  .addressFooter li p a {
    color: inherit;
  }
  
  .site-footer hr {
    margin: 0;
    border-color: #454545;
  }
  
  .footer-middle {
    border-top: 1px solid #e8e8e8;
    color: #232323;
    padding: 15px 0;
  }
  
  .footer-middle .footer-social h3 {
    padding-inline-end: 20px;
    color: #fff;
    line-height: 15px;
    vertical-align: middle;
    text-transform: uppercase;
    margin: 0;
  }
  
  .payment-icons li {
    padding: 0 2px;
    font-size: 0px;
  }
  
  .payment-icons .icon {
    font-size: 32px;
    color: #fff;
  }
  
  .footer-bottom {
    padding: 20px 0;
    text-transform: uppercase;
    border-top: 1px solid #e8e8e8;
    color: #fff;
    letter-spacing: 1px;
  }
  
  .footer-bottom a {
    color: #fff;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom span {
    letter-spacing: 1px;
  }
  
  .footer-bottom ul {
    margin: 0 -8px;
  }
  
  .footer-bottom ul li a {
    display: inline;
    padding: 0 8px;
  }
  
  .footer-newsletter .newsletter__input {
    background-color: #ffffff;
    color: #222222;
    border: 1px solid #222222;
    margin-bottom: 8px;
  }
  
  .footer-newsletter .newsletter__input:focus {
    border-color: #848484;
  }
  
  .footer-newsletter .input-group__btn .btn {
    background: none;
    color: #fff;
    border: 1px solid #fff;
  }
  
  .footer-newsletter .input-group__btn .btn:hover {
    color: #000;
    background: #fff;
    opacity: 1;
  }
  
  .footer-newsletter p {
    margin: 0 0 10px;
  }
  
  #site-scroll {
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    height: 40px;
    line-height: 37px;
    inset-inline-end: 30px;
    position: fixed;
    border-radius: 50%;
    text-align: center;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    width: 40px;
    bottom: 50px;
    z-index: 444;
    display: none;
    background: #999999;
    border: 2px solid #999999;
  }
  
  /* Footer Style 2 */
  .footer-2 .footer-top {
    background: #111111;
    color: #f5f5f5;
    border-top: 1px solid #000000;
  }
  
  .footer-2 .footer-top * {
    color: #f5f5f5;
  }
  
  .footer-2 .footer-newsletter .input-group__btn .btn {
    color: #f5f5f5;
    border-color: #ffffff;
  }
  
  .footer-2 .footer-newsletter .input-group__btn .btn:hover {
    color: #222222;
    background: #ffffff;
  }
  
  .footer-2 .footer-newsletter .input-group__btn .btn:hover span {
    color: #222222;
  }
  
  .footer-2 .footer-newsletter input {
    color: #222222;
  }
  
  .footer-2 .site-footer__social-icons .icon {
    font-size: 18px;
  }
  
  .footer-2 .payment-icons .icon {
    font-size: 28px;
  }
  
  /* Footer Style 3 */
  .footer-3 .site-footer {
    background: #000000;
    border-top-color: #ffffff;
  }
  
  .footer-3 .site-footer .footer-top * {
    color: #ffffff;
  }
  
  .footer-3 .site-footer .footer-top,
  .footer-3 .site-footer .footer-top h4,
  .footer-3 .site-footer .footer-top .h4,
  .footer-3 .site-footer .footer-links a,
  .footer-3 .site-footer .footer-top p,
  .footer-3 .site-footer .addressFooter .icon,
  .footer-3 .site-footer .footer-middle .footer-social h3,
  .footer-3 .site-footer .social-icons .icon,
  .footer-3 .site-footer .footer-bottom {
    color: #ffffff;
  }
  
  .footer-3 .site-footer .footer-newsletter .input-group__btn .btn {
    color: #ffffff;
    border-color: #ffffff;
  }
  
  .footer-3 .site-footer .footer-newsletter .input-group__btn .btn:hover {
    color: #222222;
    background: #ffffff;
  }
  
  .footer-3 .site-footer .footer-newsletter .input-group__btn .btn:hover span {
    color: #222222;
  }
  
  .footer-3 .site-footer .footer-newsletter input {
    color: #222222;
  }
  
  .footer-3 .site-footer .footer-middle,
  .footer-3 .site-footer .footer-bottom {
    background: #000000;
    border-color: #151212;
    color: #ffffff;
  }
  
  /* Footer Style 4 */
  .footer-4 .site-footer {
    background-color: #ffffff;
    border-top: #ffffff;
  }
  
  .footer-4 .footer-top {
    background: #ffffff;
    border-color: #ffffff;
  }
  
  .footer-4 .footer-bottom {
    color: #ffffff;
    background: #120101;
    border-color: #ddd;
  }
  
  /* Footer Style 5 */
  .footer-5 .site-footer {
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
  }
  
  .footer-5 .footer-top h4,
  .footer-5 .footer-top .h4 {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  
  .footer-5 .newsletter-section {
    background-color: #000000;
    border: 1px solid #000000;
  }
  

  
  .footer-5 .footer-top,
  .footer-5 .footer-links a,
  .footer-5 .footer-top p,
  .footer-5 .footer-bottom,
  .footer-5 .footer-bottom a {
    color: #000000;
  }
  
  .footer-5 .addressFooter .icon {
    color: #000 !important;
  }
  
  .footer-5 .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-5 .social-icons .icon {
    font-size: 14px;
  }
  
  .footer-5 .site-footer__social-icons li {
    padding: 0 8px;
  }
  
  .footer-5 .footer-newsletter .newsletter__input {
    font-size: 13px;
    margin-bottom: 10px;
    border: 1px solid #e8e9eb;
    border-radius: 3px;
  }
  
  .footer-5 .footer-newsletter .btn {
    border-radius: 3px;
  }
  
  .footer-5 .site-footer hr {
    border-color: #eeeeee;
  }
  .logo-com{
      width: 240px;
      height: 118px;
      margin: 0 auto;
  }
  .copyright {
      direction: ltr;
  }
  /*----------------------------------------
   * End Footer
  ------------------------------------------*/
  /************************************Model Btn*******************************************/

#page-content .modal-dialog .btn-close{
    top: 25px;
    inset-inline-end: 20px;
}
/************************************Model Btn*******************************************/
  ::-webkit-scrollbar-track
  {
  	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  	border-radius: 10px;
  	background-color: #F5F5F5;
  }
  
  ::-webkit-scrollbar
  {
  	width: 8px;
  	background-color: #F5F5F5;
  	height: 5px;
  }
  
  ::-webkit-scrollbar-thumb
  {
  	border-radius: 5px;
  	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  	background-color: var(--main-color);
  }
  /****************************************Start Social Media*********************************************/ 
/* Social media */
#wrapper {
  padding: 0;
  z-index: 10000;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  list-style: none;
  /* z-index: 1000; */
  position: fixed;
  bottom: 25%;
  inset-inline-end: 0;
  transform: translate(-100%, 100%);
  /* direction: rtl; */
}
[dir="rtl"] #wrapper{
    transform: translate(15%, 100%) !important;
}
#wrapper .Icon {
  position: relative;
  background: var(--main-color);
  border-radius: 1rem;
  padding: 15px;
  margin: 9px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#wrapper .tooltip {
  position: absolute;
  inset-inline-start: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  inset-inline-start: 0px;
  top: 11px;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#wrapper .Icon:hover .tooltip {
  inset-inline-start: 60px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#wrapper .Icon a{
  color: #fff;
}

#wrapper .Icon:hover span,
#wrapper .Icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
#wrapper .Icon:hover a{
  color: #fff;
}
#wrapper .facebook:hover,
#wrapper .facebook:hover .tooltip,
#wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #ffffff;
}
#wrapper .call:hover,
#wrapper .call:hover .tooltip,
#wrapper .call:hover .tooltip::before {
  background: #128C7E;
  color: #ffffff;
}
#wrapper .instagram:hover,
#wrapper .instagram:hover .tooltip,
#wrapper .instagram:hover .tooltip::before {
  background: rgb(131,58,180);
  background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
  color: #ffffff;
}
#wrapper .github:hover,
#wrapper .github:hover .tooltip,
#wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}
#wrapper .whatsapp:hover,
#wrapper .whatsapp:hover .tooltip,
#wrapper .whatsapp:hover .tooltip::before {
  background: #25D366;
  color: #ffffff;
}
.info-list .icon-box{
    display: none;
}
.info-list .inner {
    display :flex;
    gap: 10px
}
/****************************************End Social Media*********************************************/ 