:root {
  --theme-primary-color: black;
  --theme-secondary-color: white;
  --text-color: black;
  --gap: 100px;
  --mobile-gap: 70px;
  --theme-line-height: 1.3 !important;
  --h1: 45px;
  --h2: 40px;
  --h3: 30px;
  --h4: 25px;
  --h5: 20px;
  --h6: 18px;
  --mobile-h1: 35px;
  --mobile-h2: 30px;
  --mobile-h3: 27px;
  --mobile-h4: 23px;
  --mobile-h5: 20px;
  --mobile-h4: 18px;
  --p: 16px;
  --max-height: min(60vh, 450px);
  --theme-font-family:'OpenSans' !important;
  --pink: #89A91B;
  --secondary-pink: #F4ACB7;
}

* {
  margin: 0;
  box-sizing: border-box;
}

/* container width */
@media only screen and (min-width: 768px) {
  #header [data-row] > .ct-container,
  #footer [data-row] > .ct-container {
    width: auto;
    margin-left: var(--gap);
    margin-right: var(--gap);
    /* padding-left: 15px;
      padding-right: 15px; */
  }

  #main > .ct-container,
  body.single #main > [class*="ct-container"],
  body.archive #main > [class*="ct-container"] {
    width: calc(100% - (var(--gap) * 2));
  }
}

body {
  line-height: var(--theme-line-height) !important;
  font-family: "OpenSans" !important;
}

ol li:not(:last-child){
    margin-bottom:15px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--theme-line-height) !important;
  text-align: left;
  margin-top: 0 !important;
  font-family: "OpenSans" !important;
}

.wpb_text_column h1 {
  font-size: var(--h1);
}

.wpb_text_column h2 {
  font-size: var(--h2);
}

.wpb_text_column h3 {
  font-size: var(--h3);
}

.wpb_text_column h4 {
  font-size: var(--h4);
}

.wpb_text_column h5 {
  font-size: var(--h5);
}

.wpb_text_column h6 {
  font-size: var(--h6);
}

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

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

.text-left,
.text-left :is(h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.text-center,
.text-center :is(h1, h2, h3, h4, h5, h6) {
  text-align: center !important;
}

.text-right,
.text-right :is(h1, h2, h3, h4, h5, h6) {
  text-align: right !important;
}

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

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

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

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white a {
  color: #fff !important;
}

.text-black,
.text-black h1,
.text-black h2,
.text-black h3,
.text-black h4,
.text-black h5,
.text-black h6,
.text-black a {
  color: #000 !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-franklin{
  font-family: 'Franklin' !important;
}

.full-image-cover,
.full-image-cover * {
  width: 100%;
  object-fit: cover;
}

.full-image-contain,
.full-image-contain * {
  width: 100%;
  object-fit: contain;
}

.image-hover-scale,
ul.products li.product .ct-image-container {
  overflow: hidden;
}

.image-hover-scale img,
.image-hover-scale,
ul.products li.product .ct-image-container img {
  transition: transform 500ms ease-out;
}

.image-hover-scale:hover img,
ul.products li.product:hover .ct-image-container img {
  transform: scale(1.05);
}

.image-border-radius {
  border-radius: 15px;
  overflow: hidden;
}

.image-mh img {
  max-height: var(--max-height);
}

.image-maxh-200 img {
  max-height: 200px;
}

.image-maxh-250 img {
  max-height: 250px;
}

.image-maxh-300 img {
  max-height: 300px;
}

.image-maxh-350 img {
  max-height: 350px;
}

.image-maxh-400 img {
  max-height: 400px;
}

.image-maxh-450 img {
  max-height: 450px;
}

.image-maxh-500 img {
  max-height: 500px;
}

.image-maxh-550 img {
  max-height: 550px;
}

.image-maxh-600 img {
  max-height: 600px;
}

.company-registration,
.copyright {
  font-size: 14px !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-table table {
  width: auto;
}

.custom-table table,
.custom-table table td {
  border: none;
}

.custom-table table td {
  padding: 2.5px 5px;
  vertical-align: top;
}

.custom-table table td:first-child {
  padding-left: 0 !important;
}

.custom-table table td:last-child {
  padding-right: 0 !important;
}

.custom-table table tr:first-child td {
  padding-top: 0 !important;
}

.custom-table table tr:last-child td {
  padding-bottom: 0 !important;
}

.wpcf7 p::after {
  display: none;
}

.wpb_text_column ul,
.wpb_text_column ol {
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.background-fixed {
  background-attachment: fixed !important;
}

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

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

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

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

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

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

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

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.grid {
  display: grid !important;
  gap: 30px;
}

.grid::before,
.grid::after {
  display: none !important;
}

.grid > div {
  width: 100% !important;
}

.grid-column-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-column-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-column-6 {
  grid-template-columns: repeat(6, 1fr);
}

.flex{
  display: flex;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-justify-center {
  display: flex;
  justify-content: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  :root {
    --gap: var(--mobile-gap);
    --h1: var(--mobile-h1);
    --h2: var(--mobile-h2);
    --h3: var(--mobile-h3);
    --h4: var(--mobile-h4);
    --h5: var(--mobile-h5);
    --h6: var(--mobile-h6);
  }
}

@media screen and (min-width: 768px) {
  .desktop-text-center,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .desktop-text-left,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .desktop-text-right,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }
}

@media screen and (max-width: 767px) {
  .mobile-pt-35 {
    padding-top: 35px !important;
  }

  .mobile-pt-70 {
    padding-top: 70px !important;
  }

  .mobile-pb-35 {
    padding-bottom: 35px !important;
  }

  .mobile-pb-70 {
    padding-bottom: 70px !important;
  }

  .mobile_text_center,
  .mobile_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .mobile_text_left,
  .mobile_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .mobile_text_right,
  .mobile_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .mobile_text_justify,
  .mobile_text_justify :is(h1, h2, h3, h4, h5, h6) {
    text-align: justify !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }

  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }

  .mobile-mb-35 {
    margin-bottom: 35px !important;
  }

  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }

  .mobile-mt-0 {
    margin-top: 0 !important;
  }

  .mobile-mt-10 {
    margin-top: 10px !important;
  }

  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mt-30 {
    margin-top: 30px !important;
  }

  .mobile-mt-35 {
    margin-top: 35px !important;
  }

  .mobile-mt-50 {
    margin-top: 50px !important;
  }

  .mobile-image-maxh-200 img {
    max-height: 200px;
  }

  .mobile-image-maxh-250 img {
    max-height: 250px;
  }

  .mobile-image-maxh-300 img {
    max-height: 300px;
  }

  .mobile-image-maxh-350 img {
    max-height: 350px;
  }

  .mobile-image-maxh-400 img {
    max-height: 400px;
  }

  .mobile-image-maxh-450 img {
    max-height: 450px;
  }

  .mobile-image-border-radius {
    border-radius: 15px;
    overflow: hidden;
  }

  .mobile-flex-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .mobile-flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }
}

/******************
******blocksy******
******************/

.wpb_gmaps_widget .wpb_wrapper {
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
}

.entry-content > * {
  margin-bottom: 0;
}

.vc_btn3-container {
  margin-bottom: 35px;
}

.vc_row-has-fill
  + .vc_row-full-width
  + .vc_row
  > .vc_column_container
  > .vc_column-inner,
.vc_row-has-fill > .vc_column_container > .vc_column-inner,
.vc_col-has-fill > .vc_column-inner,
.vc_section.vc_section-has-fill,
.vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section {
  padding-top: 0 !important;
}

.vc_row-has-fill
  + .vc_row-full-width
  + .vc_row
  > .vc_column_container
  > .vc_column-inner {
  padding-top: 0;
}

.ct-menu-link:not(:empty) {
  padding-left: 0;
  padding-right: 0;
}

#header ul li.current-page-ancestor > a{
  color:var(--pink);
}

@media screen and (max-width: 767px) {
  .ct-container {
    width: calc(100% - 30px) !important;
  }

  #contact_form textarea {
    height: 100px;
  }

  .wpb_gmaps_widget .wpb_map_wraper iframe {
    height: 300px;
  }
}

@media screen and (max-width: 999.98px) {
  #footer ul.widget-menu {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 15px !important;
  }

  #footer ul.widget-menu > li:not(:last-child) {
    border-right: 1px solid black;
    padding-right: 10px;
    margin-right: 10px;
  }
}

/*disable animation on mobile screen*/
@media only screen and (max-width: 767px) {
  body .wpb_animate_when_almost_visible {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
  }
}

@supports not (-webkit-touch-callout: none) {
  .parallax,
  .full-bg-row > div > div {
    background-attachment: fixed !important;
  }
}

.background-layer{
  position: relative;
}

.background-layer:before{
  content:'';
  position: absolute;
  inset: 0;
  width: 100%;
  height:100%;
  z-index: 0;
  display: block !important;
}

/***Animation Delay***/
.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

.delay4 {
  animation-delay: 0.8s;
}

.delay5 {
  animation-delay: 1s;
}

.delay6 {
  animation-delay: 1.8s;
}

.break{
  display: inline-block;
}

/***Placeholder customization***/

/* ::-webkit-input-placeholder{
  color:#fff !important;
} */
/* 
::placeholder {
  color: #fff !important;
  opacity: 1 !important;
} */

.company-registration small {
  font-size: 14px;
  /* font-family:''; */
}

.all-title :is(h1,h2,h3,h4,h5,h6){
  color:var(--pink);
}

.custom-button{
  margin-bottom:0 !important;
}

.custom-button .vc_general.vc_btn3 {
    border-radius: 50px;
    font-family: 'OpenSans';
    font-weight: 500;
    background-image: none !important;
    padding: 8px 32px;
    border: 1px solid #C8F31D !important;
}

/***Custom Code***/

.woocommerce.single-product .ct-breadcrumbs span{
    font-weight:400;
}

#header [data-row*=top] .entry-content.is-layout-flow > p,
#header [data-row*=top] .entry-content.is-layout-flow .is-search-form{
  margin:0 !important;
}

#header [data-row*=top] .entry-content.is-layout-flow .is-search-form{
  background-color: #fff;
  border-radius: 100px;
  height:30px;
  display: flex;
  align-items: center;
}

#header [data-row*=top] .entry-content.is-layout-flow .is-search-form .is-search-input{
  border:0 !important;
  padding:0 40px 0 20px;
  height:unset;
  background: transparent;
  color:#808080;
}

#header [data-row*=top] .entry-content.is-layout-flow .is-search-form .is-search-icon{
  background:transparent;
  border: 0 !important;
  height:unset; 
  padding-top:0 !important;
  filter: brightness(0) saturate(100%) invert(57%) sepia(5%) saturate(7%) hue-rotate(55deg) brightness(87%) contrast(91%);
}

#header [data-row*=middle] [data-items=primary] .ct-header-account .ct-icon,
#header [data-row*=middle] [data-items=primary] .ct-header-cart .ct-icon-container svg{
  height: 0;
  width: 0;
}

#header [data-row*=middle] [data-items=primary] .ct-header-cart .ct-icon-container,
#header [data-row*=middle] [data-items=primary] .ct-header-account > a{
  position: relative;
}

.ct-dynamic-count-cart{
  background-color: #454545 !important;
}

#header [data-row*=middle] [data-items=primary] .ct-header-cart .ct-icon-container:before{
  content:'\f07a';
  font-size: 22px;
  width: 22px;
  height:22px;
  display: block !important;

  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  filter: brightness(0) saturate(100%) invert(53%) sepia(75%) saturate(599%) hue-rotate(32deg) brightness(100%) contrast(101%);
}

#header [data-row*=middle] [data-items=primary] .ct-header-account > a:before {
  content:'\f007';
  font-size: 22px;
  width: 22px;
  height:22px;
  display: block !important;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  filter: brightness(0) saturate(100%) invert(53%) sepia(75%) saturate(599%) hue-rotate(32deg) brightness(100%) contrast(101%);
}

.banner-text{
  font-family: 'OpenSans' !important;
}

.home-service-row > div > div > div{
  display: flex;
  align-items: center;
  gap:20px;
}

.home-service-row .wpb_single_image img{
  max-width: 55px;
  object-fit: contain;
}

.home-service-row:before,
.home-service-row::after{
  display: none !important;
}

.home-service-row > div{
  width: 100%;
}

.home-service-row .wpb_text_column p strong{
  font-size: 18px;
  color:#454545;
}

.home-service-row .wpb_text_column p {
    color: #878A99;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.home-service-row .wpb_text_column p br{
    display:none !important;
}

.home-product-intro-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}


.home-product-intro-row::before,
.home-product-intro-row::after{
  display: none !important;
}

.home-product-intro-row > div > div{
  height:100%;
}

.home-product-intro-row > div:nth-child(2) > div > div{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding:0 35px 0 100px;
  align-items: center;
  position:relative;
}

.home-product-intro-row > div:last-child .wpb_single_image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-product-intro-row > div:last-child > div > div{
    padding:0 50px 0 100px;
    position:relative;
    display:flex;
    align-items:center;
}

.home-product-intro-row > div:first-child > div > div {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    padding: 50px 50px 50px 100px;
}



.home-product-intro-row > div:first-child .wpb_single_image img {
    /* max-width: 250px; */
    /* height: auto; */
    object-fit: cover;
}



.home-product-intro-row > div:last-child .vc_inner.vc_row{
    left:0;
}


.home-product-intro-row > div:nth-child(2) .wpb_single_image img{
  object-fit:cover;
  max-width:300px;
}

.home-product-intro-row > div:last-child .wpb_single_image img{
    object-fit:cover;
    max-height:250px;
    width:auto;

}

.home-product-intro-row > div:nth-child(1) > div{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.home-product-intro-row > div:not(:first-child) > div{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.home-product-intro-row .custom-button .vc_general.vc_btn3{
  padding:0 0 5px 0;
  font-family: 'arcon';
  position: relative;
}

.home-product-intro-row .custom-button .vc_general.vc_btn3:after{
  content:'';
  position: absolute;
  width: 100%;
  height:1px;
  background-color:#333333;
  bottom:0px;
  left:0;
  display:block !important;
  transition: 0.3s all;
}

.home-product-intro-row .custom-button .vc_general.vc_btn3:hover{
  /*color:white !important;*/
  padding:8px 32px;

}

.home-product-intro-row .custom-button .vc_general.vc_btn3 {
    border: 0 !important;
    padding-top: 8px;
    padding-bottom: 8px;
}

.home-product-intro-row .custom-button .vc_general.vc_btn3:hover:after {
    height: 100%;
    color: #fff;
    z-index: -1;
    border-radius: 50px !important;
    background-color: #C8F31D;
}

.home-product-sec,
.home-tab-row{
  position: relative;
}

.home-product-sec:after{
  /*content: '';*/
  /*position: absolute;*/
  /*width: 125px;*/
  /*height:125px;*/
  /*right:0;*/
  /*top:30px;*/
  /*display: block !important;*/
  /*background-size: contain;*/
  /*background-repeat: no-repeat;*/
  /*background-position: right;*/
  /*background-image: url(./images/home-deco-2.png);*/
}

.home-tab-row:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(
  ./images/selling-code-bg.png);
}

.home-tab-row .vc_tta-container{
  margin-bottom: 0 !important;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list{
  display: flex !important;
  justify-content: space-between;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > li{
  width: 100%;
  border-bottom: 1px solid #DFDFDF;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > li.vc_active {
    border-bottom: 2px solid #BAE516;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab a {
    position: relative;
    padding-top: 55px;
    text-align: center;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab a:hover{
  background-color: transparent !important;
}

.home-tab-row .owl-item figure{
    border-radius:10px;
    overflow:hidden;
}

.home-tab-row .owl-item > li{
    width:100% !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

.home-tab-row .owl-stage{
    display:flex;
    column-gap:35px;
}

.home-tab-row .woocommerce .ywcps-wrapper ul.products{
    padding-bottom:0;
}

.home-tab-row .vc_inner.vc_row .wpb_text_column{
    margin-bottom:0 !important;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab a:before {
    content: '' !important;
    position: absolute !important;
    width: 45px !important;
    height: 45px !important;
    display: block !important;
    top: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:first-child a:before{
  background-image:url(./images/best-selling-icon-1.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:nth-child(2) a:before{
  background-image:url(./images/best-selling-icon-2.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:nth-child(3) a:before{
  background-image:url(./images/best-selling-icon-3.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:nth-child(4) a:before{
  background-image:url(./images/best-selling-icon-4.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:nth-child(5) a:before{
  background-image:url(./images/best-selling-icon-5.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > .vc_tta-tab:last-child a:before{
  background-image:url(./images/best-selling-icon-6.png);
}

.home-tab-row .vc_tta-container .vc_tta-tabs-list > li a,
.home-tab-row .vc_tta-container .vc_tta-tabs-list > li.vc_active a{
  background-color: transparent;
  border:0 !important;
  display: flex;
  justify-content: center;
  color:#454545 !important;
}

.home-tab-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels{
  background-color: transparent !important;
  border: 0 !important;
}

.home-tab-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body{
  padding:50px 0 0 !important;
}

.home-tab-row .woocommerce > ul{
  display: block !important;
}

.home-tab-row .slick-track{
  margin:unset;
}

.home-tab-row .woocommerce ul li{
  padding:0 15px;
}

.home-tab-row .slick-track{
    display: flex;
}

.home-tab-row .slick-track > li{
    height:auto;
}

.home-tab-row .slick-track > li > .woocommerce-loop-product__title{
    flex:1;
}

.home-tab-row .owl-dot{
    margin-top:35px;
}

.home-tab-row .owl-dot span{
    background-color:#D9D9D9 !important;
}

.home-tab-row .owl-dot.active span{
    background-color:var(--pink) !important;
}

.home-tab-row .contact-lens .woocommerce ul li.product{
  /*display: grid;*/
  /*grid-template-columns: 35% 65%;*/
  row-gap:15px;
}

.home-tab-row .contact-lens .woocommerce ul li.product figure{
  grid-column: 1 / 3;
}

.home-tab-row .contact-lens .woocommerce ul li.product .display-brand-logo{
  grid-column: 1 / 2;
  grid-row:2/5;
}

.home-tab-row .contact-lens .woocommerce ul li.product .display-brand-logo img{
  max-height: 80px;
  width: auto;
}

.home-tab-row .contact-lens .woocommerce ul li.product .price{
  grid-column: 2/3;
}

.home-tab-row .contact-lens .woocommerce ul li.product .woocommerce-loop-product__title{
  grid-area:2/2/3/3;
  margin-bottom:0 !important;
}

.home-tab-row .contact-lens .woocommerce ul li.product .ct-woo-card-actions{
  grid-area: 4/2/5/3;
}

.home-tab-row ul.products .slick-dots{
  width: 3%;
  margin:auto;
  display: flex;
  justify-content: space-between;
  padding-bottom:1px;
}

.home-tab-row ul.products .slick-dots {
  padding-left:0;
  margin-top:35px; 
}

.home-tab-row ul.products .slick-dots li::marker{
  font-size: 0;
}

.home-tab-row ul.products .slick-dots li button{
  font-size: 0;
  position: relative;
}

.home-tab-row ul.products .slick-dots li button:before{
  content:'X';
  position: absolute;
  left:50%;
  top: 50%;
  transform:translate(-50%,-50%);
  width: 10px;
  height:10px;
  display: block !important;
  background-color: #D9D9D9;
  border-radius: 50%;
  border-color: #D9D9D9;
}

.home-tab-row ul.products .slick-dots li.slick-active button:before{
  background-color:#454545;
  border-color: #454545;
}


.custom-separator{
  margin-bottom: 0 !important;
  position: relative;
}

.custom-separator:after {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    right: -10%;
    top: 50%;
    transform: translateY(-60%);
    z-index: 1;
    background-image: url(./images/separator-deco-1.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.home-about-row{
  overflow: visible;
}

.home-about-row .custom-button .vc_general.vc_btn3:hover {
    background-color: #5A6C0C !important;
    color: #C8F31D !important;
    border-color: #5A6C0C !important;
}

.home-about-row .wpb_single_image{
  position: relative;
}

.home-about-row .wpb_single_image img {
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.home-about-row .wpb_single_image::before {
  content:'';
  position: absolute;
  width: 40%;
  height:230px;
  top:-50px;
  left:-30px;
  z-index: 0;
  display: block !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top  ;
  background-image:url(./images/home-about-bg.png);
}

.home-about-row .wpb_single_image::after{
  /*content:'';*/
  /*position: absolute;*/
  /*width: 35%;*/
  /*height:20%;*/
  /*bottom:-10%;*/
  /*right:-12%;*/
  /*z-index: 1;*/
  /*display: block !important;*/
  /*background-size: contain;*/
  /*background-repeat: no-repeat;*/
  /*background-position: bottom ;*/
  /*background-image:url(./images/home-deco-5.png);*/
}

.home-icon-row{
  /*padding-top:65px;*/
}

.home-icon-row .vc_inner.vc_row > div > div > div{
  display: flex;  
  align-items: center;
  column-gap: 20px;
  padding-bottom:20px;
}

.home-icon-row .wpb_single_image img{
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

.home-transform-row.background-layer:before {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 11.54%, rgba(255, 255, 255, 0.65) 59.13%, rgba(255, 255, 255, 0.00) 100%);
    width: 80%;
}

.home-transform-row .custom-button .vc_general.vc_btn3:hover{
    background-color: #5A6C0C !important;
    color: #C8F31D !important;
    border-color: #5A6C0C !important;
}



.home-icon-row.about{
  padding-top:0;
}

.about-intro-row,
.care-tour-sec,
.contact-sec,
.feedback-sec,
.woocommerce .site-main {
  position: relative;
}

.about-intro-row:before,
.care-tour-sec:before,
.contact-sec:before,
.feedback-sec:before,
.woocommerce .site-main:before{
  content: '';
  position: absolute;
  width: 120px;
  height:120px;
  right:0;
  top:0;
  display: block !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  /*background-image: url(./images/home-deco-2.png);*/
}

.woocommerce .site-main .ct-container{
    position:relative;
}

.woocommerce .site-main .ct-container:before{
  content: '';
  position: absolute;
  width: 80px;
  height:80px;
  left:-105px;
  top:50%;
  transform:translateY(-50%);
  display: block !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url(./images/selling-code-bg.png);
  z-index:-1;
}

.home-about-row.about{
  position: relative;
  overflow: visible !important;
}

/*.home-about-row.about:before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 80px;*/
/*  height:80px;*/
/*  left:0;*/
/*  bottom:0;*/
/*  display: block !important;*/
/*  background-size: contain;*/
/*  background-repeat: no-repeat;*/
/*  background-position: left;*/
/*  background-image: url(./images/home-deco-1.png);*/
/*}*/

.about-vs-row{
  position: relative;
  overflow: visible !important;
}

.about-vs-row:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    left: 0;
    top: 50%;
    display: block !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    transform: translateY(-50%);
    background-image: url(
  ./images/selling-code-bg.png);
}


.contact-company-row .wpb_text_column strong{
  font-weight: 400;
  color:#A8A8A8;
  transform: none;
}

.contact-company-row .custom-table table tr td:first-child{
  width: 30%;
}

.contact-company-row .custom-table table tr:not(:last-child) td{
  padding-bottom: 20px;
}

.contact-company-row .custom-table table tr td:last-child{
  width: 70%;
}

.custom-separator.contact:after {
    background-image: none;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #BAE516;
    transform: none;
    top: 0;
}


.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li > a,
.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li.vc_active > a{
  background-color: #fff;
  border: none;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_title .vc_do_custom_heading{
  font-size: 18px;
}

.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li:not(:last-child) {
    border-bottom: 1px solid #676767;
}

.care-tour-row .vc_tta-container .vc_tta-tabs-container ul {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    flex-grow: unset;
    margin: 0;
    border-radius: 10px;
}

.care-tour-row .vc_tta-tabs-container{
  margin-right:50px !important;
}

.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li > a:hover {
    background-color: transparent;
    color: #C2E635;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels{
  background:transparent !important;
  border: 0 !important;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panel-body{
  padding: 0 !important;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_icon{
  left:auto;
  right:10px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(9%) saturate(14%) hue-rotate(134deg) brightness(92%) contrast(84%);
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_title .vc_do_custom_heading,
.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_do_toggle{
  margin-bottom:20px !important;
}
 
.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_content{
  padding-left: 0;
  color:#7B7B7B;
  margin:20px 0 !important
}

.care-tour-row .vc_tta-container{
  margin-bottom: 0 !important;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_content p:last-child{
  margin-bottom: 0 !important;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_toggle_title{
  padding-left: 0 !important;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_do_toggle .vc_toggle_title{
  border-bottom: 1px solid #333;
}

.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li.vc_active > a {
    color: #C2E635;
    font-weight: 600;
}

.care-tour-row .vc_tta-container .vc_tta-tabs-container ul li > a {
    color: #676767;
}

.care-tour-row .vc_tta-container .vc_tta-panels-container .list-ol li:not(:last-child) {
    margin-bottom: 20px !important;
}

/***Contact Form***/

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.form input,
.form textarea{
  border-color:#777777  !important;
  border-radius: 0 !important;
}

.form input::placeholder,
.form textarea::placeholder{
  color:#AFAFAF !important;
  opacity: 1 !important;
}


#send input {
    background-color: #FA8C2C;
    color: #fff;
    line-height: 1;
    border-radius: 50px;
    padding: 8px 40px;
}

#send input:hover {
    background-color: #FA442C;
}

/***Footer***/
#footer [data-row*="top"] .ct-container > div:first-child img{
  max-height: 120px;
  width: auto;
}

#footer [data-row*="top"] .ct-container > div:first-child .textwidget{
  font-size: 14px;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-subscription label h6 {
  /*font-family: 'coresans-bold' !important;*/
  color:#333;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-subscription label{
  margin-bottom: 15px;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-email {
  background-color: #fff;
  border-radius: 0 !important;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-subscription .tnp-field.tnp-field-email{
  margin-bottom:15px !important;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-email::placeholder{
  color:#808080 !important;
  opacity: 1;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-submit{
  background-color: var(--pink);
  border-radius: 50px;
  padding:8px 32px;
  border: 1px solid currentColor;
  font-size: 14px;
}

#footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp-submit:hover{
  background-color:#fff;
  color:var(--pink);
}

#footer .ct-container .footer-icons{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}

#footer .ct-container .footer-icons i {
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  color:#333;
  transition:0.3s all;
}

#footer .ct-container .footer-icons i:hover{
  background-color: #333;
  color:#fff;
}

#footer [data-row*="top"] .ct-container{
  padding-bottom:0;
  grid-template-columns:15% 1fr auto;
}

#footer [data-row*="top"] .ct-container div.tnp-subscription{
    margin:0 !important;
}

#footer [data-row*="middle"] .ct-container {
    grid-template-columns: 15% 1fr 15%;
}

#footer [data-row*="bottom"] .ct-footer-copyright{
  /*font-family: 'firasans';*/
}

#footer .footer-menu-inline{
  width: 100%;
}

#footer .footer-menu-inline ul, 
#footer ul#menu-footer-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 25px;
}

#footer .footer-menu-inline ul li.current_page_item > a,
#footer .footer-menu-inline ul li.tab-linked > a{
  color:var(--pink);
}

#footer .payment-icons img{
  max-height: 25px;
  width: auto;
  object-fit: contain;
}

/***Woocoomerce***/
.woocommerce.single-product table.variations tr{
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.woocommerce.single-product table.variations tr th{
  display: flex ; 
  white-space: nowrap;
}

.woocommerce.single-product table.variations tr th .button-variable-item{
  border-color: #d9d9d9;
}

.woocommerce.single-product table.variations tr th .variable-item-contents span{
  color:#777;
  /*font-family: 'arcon';*/
}

.woocommerce.single-product .ct-cart-actions .quantity{
  border-radius: 50px;
  overflow: hidden;
  border:1px solid #B1B1B1;
  height:40px;  
}



.woocommerce.single-product .ct-cart-actions .quantity > span{
  height:100%;
  top:50%;
  transform:translateY(-50%);
  border-radius: 0;
}

.woocommerce.single-product .ct-cart-actions .quantity > span.ct-increase{
  border-left:1px solid #B1B1B1;
}

.woocommerce.single-product .ct-cart-actions .quantity > span.ct-decrease{
  border-right:1px solid #B1B1B1;  
}

.woocommerce.single-product .ct-cart-actions .single_add_to_cart_button {
    min-height: unset;
    max-width: 20%;
    border-radius: 50px;
    background-color: #D2FF25;
    color: #5A6C0C;
    opacity: 1;
}

.woocommerce.single-product .ct-cart-actions .single_add_to_cart_button:hover {
    background-color: #5A6C0C;
    color: #D2FF25;
}

.woocommerce .ct-woo-card-actions > a {
    border-radius: 50px;
    background-color: #D2FF25;
    color: #5A6C0C;
    border: 1px solid #D2FF25;
    min-height: unset;
    padding: 8px 32px;
    width: 100%;
    font-weight: 400;
}

.woocommerce .ct-woo-card-actions > a:hover {
    background-color: #5A6C0C;
    border-color: #5A6C0C;
    color: #C8F31D;
}

.woocommerce.single-product .woocommerce-tabs.wc-tabs-wrapper{
  padding-top: 0;
}

.woocommerce.single-product .woocommerce-Tabs-panel.panel.woocommerce-Tabs-panel--description{
  padding-top:100px !important;
}

.woocommerce.single-product .woocommerce-Tabs-panel--reviews{
  padding-top:0 !important;
}

.woocommerce.single-product .tabs.wc-tabs.ct-constrained-width{
  display: none;
}

.woocommerce.single-product .vc_tta-container{
  margin-bottom: 0 !important;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab > a {
  background-color:transparent; 
  margin:0 !important;
  border:0;
  border-radius: 0;
  padding-left:50px;
  padding-right:50px;
  color:#A8a8a8; 
  position: relative;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab > a:after{
  content:'';
  position: absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  height:20px;
  width: 1px;
  display: block !important;
  background-color: #A8A8A8;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper *{
  /*font-family: 'firasans';*/
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .wpb_text_column strong{
  font-weight: 600;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    color: #C2E635;
    border-bottom: 3px solid #C2E635;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab span{
  /*font-family: 'arcon' !important;*/
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-panels-container .vc_tta-panel-body{
  padding:50px 0 0 0;
}

.woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-panels-container .vc_tta-panels{
  background:transparent;
  border-bottom:0;
  border-color: #A8A8A8;
  border-left:0;
  border-right:0;
}

.woocommerce.single-product .wpb-content-wrapper .product-table table tr th{
  font-weight: 500;
  text-align: left;
  width: 15%;
}

.woocommerce.single-product .related {
    margin-top: 65px !important;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.woocommerce.single-product .related .ct-module-title {
    /* font-family: 'coresans-medium' !important; */
    font-weight: 700;
    font-size: 27px;
    color: #454545;
}

.woocommerce.single-product .ct-breadcrumbs span.last-item {
    color: #C8F31D;
}

.woocommerce div.product .ct-media-container,
.woocommerce .related li.product .ct-media-container{
  border-radius: 10px;
}

.woocommerce .woocommerce-loop-product__title{
  /*font-family: 'arcon' !important;*/
  color:#454545;
  font-size: 18px;
}


.woocommerce .related span.price{
  /*font-family: 'firasans' !important;*/
  /*color:#ff5D8F;*/
  /*font-weight: 500;*/
  /*font-size: 20px;*/
}

.woocommerce .separator-row{
  padding-left:100px;
  padding-right:100px;
  margin-top:100px;
}

.woocommerce.single-product div.product{
  padding-top: 100px;
}

.woocommerce table.variations{
  margin-bottom:0 !important;
}

.woocommerce.single-product .ct-cart-actions {
  border-top: 1px solid #a8a8a8;
  padding-top:50px;
  margin-top:35px;
  --theme-button-min-height:unset;
}

.woocommerce.archive .site-main > .ct-container{
  padding-top:100px;
}

.woocommerce .ct-sidebar .widget_is_search.widget_search h3{
  /*font-family: 'arcon' !important;*/
  color:#2b2b2b;
  font-size: 18px;
  font-weight: 400;
}

.woocommerce .ct-sidebar .widget_is_search.widget_search .is-search-form .is-search-input{
  border:1px solid #D9D9D9 !important;
}

.woocommerce .ct-sidebar .widget_is_search.widget_search .is-search-form .is-search-input::placeholder{
  color:#D3D3D3;
  opacity: 1 !important;
}

.woocommerce.archive .page-title{
  /*font-family: 'arcon' !important;*/
}

.woocommerce.archive .page-title .parent-category {
    /* font-family: 'coresans' !important; */
    font-weight: 700;
}

.woocommerce .ct-sidebar .widget_is_search.widget_search .is-search-form .is-search-submit{
  display: none;
}

.woocommerce.archive .ct-load-more{
  border-radius: 50px;
  padding:8px 32px;
  border: 1px solid currentColor;
  min-height: unset;
  /*font-family: 'firasans' !important;*/
  font-weight: 400;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce{
  margin-left:100px !important;
  margin-right:100px !important;
  width: unset !important;
  padding-top:100px;
  padding-bottom:100px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .coupon button,
.woocommerce-cart .actions > button{
  border-radius: 50px !important;
  border:1px solid currentColor !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .coupon button:hover,
.woocommerce-cart .actions > button:hover{
  background-color: transparent !important;
  color:#89A91B !important;
}

.woocommerce.archive .display-brand-logo,
.woocommerce .related .display-brand-logo {
  display: none;
}

.woocommerce.single-product .product-entry-wrapper .summary.entry-summary .price {
    /* font-family: 'firasans' !important; */
    font-weight: 700;
}

.woocommerce.single-product .variations th > label{
  font-size: 16px !important; 
  color:#000;
}

.woocommerce.single-product .added_to_cart.wc-forward{
    background-color:#D2FF25 !important;
    color:#5A6C0C !important;
    border:1px solid #D2FF25 !important;
    border-radius:50px !important;
    transition:0.3s all;
}

.woocommerce.single-product .added_to_cart.wc-forward:hover{
    background-color:transparent !important;
    color:#5A6C0C !important;
    border-color:#5A6C0C !important;
}

.woocommerce.single-product .variations tr > td.value .variable-item.button-variable-item {
    color: #b2b2b2 !important;
    width: 100% !important;
    border-radius: 100px;
    height:auto;
    padding:8px 10px;
}

.woocommerce.single-product .ct-cart-actions .quantity[data-type=type-2] input[type=number]{
  color:#3f3f3f;
}

.woocommerce.single-product .woocommerce-Reviews{
  display: none;
}

/***ivory search***/
.search.search-results .site-main > .ct-container,
.search.search-no-results .site-main > .ct-container{
  padding-top:100px;
  padding-bottom: 100px;
}

.archive.search.search-results .home-follow-row,
.archive.search.search-results .separator-row,
.archive.search.search-no-results .home-follow-row,
.archive.search.search-no-results .separator-row{
  display: none;
}



.search.search-results .site-main > .ct-container .entries > .entry-card{
  padding-bottom: 0 ;
}

.search.search-results .site-main > .ct-container .entries .entry-title,
.search.search-results .site-main > .ct-container .page-title{
  /*font-family: 'arcon' !important;*/
}

.page-id-153 .site-main .ct-container-full{
  padding:100px 0;
}

.page-id-153 .site-main .ct-container-full .entry-content p{
  margin:0 100px !important;
}

/***iksm menu***/

/* .iksm-terms .iksm-terms-tree.iksm-terms-tree--level-2 > div > div > div > a > .iksm-term__shifts{
  width: unset !important;
  min-width: unset !important;
  max-width: unset !important;
} */

/* .iksm-terms .iksm-terms-tree.iksm-terms-tree--level-3 > div > div > div > a > .iksm-term__shifts{
  width: 15px !important;
  min-width: 15px !important;
  max-width: 15px !important;
} */    

.iksm-terms .iksm-terms-tree.iksm-terms-tree--level-1 > div > div,
.iksm-terms .iksm-terms-tree.iksm-terms-tree--level-2 > div > div:not(:last-child){
  border-bottom:1px solid #C8C8C8; 
}

.iksm-terms .iksm-terms-tree.iksm-terms-tree--level-3 > div > div > div > a{
  color:#a8a8a8;
}

.iksm-terms .iksm-terms-tree > div > .iksm-term > div > .iksm-term__toggle > span{
  transform:rotate(270deg);
}

.iksm-terms .iksm-terms-tree > div > .iksm-term.iksm-term--expanded > div > .iksm-term__toggle > span{
  transform:rotate(360deg);
}

.iksm-widget .widget-title{
  display: none;
}

.ct-sidebar .ct-widget.iksm-widget{
  margin-bottom:0 !important;
}

.ct-sidebar > .ct-widget{
  margin-bottom:35px !important;
}

  
.woocommerce.archive .site-main .hero-section{
margin-bottom:25px !important;
}


/*New Astrajoy*/

#header [data-row*=top] .ct-header-text > div > div {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

#header [data-row*=top] .ct-header-text > div > div > p:last-child {
    color: #454545;
    font-weight: 500;
}

.home-product-intro-row > div:first-child .wpb_single_image{
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-product-intro-row > div:first-child .wpb_single_image,
.home-product-intro-row > div:first-child .wpb_single_image *{
    height:100%;
    width:auto;
}

#footer div#media_image-3 img {
    max-width: 105px !important;
}

#footer .ct-widget:not(:first-child) {
    margin-top: 10px;
}

.footer-company-name h2 {
    font-weight: 700;
    color: #333333;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}
.footer-company-name h2 small {
    font-weight: 400;
    font-size: 14px;
}

#footer .current_page_item a, 
#footer ul#menu-footer-menu a:hover {
    color: var(--theme-palette-color-1);
    font-weight: 600;
}

.single-product .variable-item-contents span, 
.single-product .variable-item-contents {
    /*width: 75px !important;*/
    overflow: visible !important;
}
  
i.flaticon-right-arrow.slick-arrow {
    right: 15px;
}
i.flaticon-right-arrow.slick-arrow:before {
    content:'\f054' !important;
}

i.flaticon-back.slick-arrow {
    left: 15px;
}
i.flaticon-back.slick-arrow:before {
    content:'\f053' !important;
}

.wpgs-for .slick-arrow::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
}

.wpgs-for .slick-arrow {
    width: 35px;
    height: 35px;
    background: #A8A8A8;
    border-radius: 50%;
}

.wpgs-for.slick-initialized.slick-slider {
    border-radius: 10px;
    overflow: hidden;
}

.thumbnail_image.slick-slide {
    border-radius: 10px;
    overflow: hidden;
}

.single-product .ct-total-price {
    order: 1;
    color: #333;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 700;
}

.single-product .thumbnail_image.slick-slide {
    position: relative;
}

.single-product .thumbnail_image.slick-slide:before {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    display: block !important;
}

.single-product .thumbnail_image.slick-slide.slick-current:before{
    background: rgba(0,0,0,0);
}

.single-product .woocommerce-tabs {
    position: relative;
}

.single-product .woocommerce-tabs:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    left: calc(-10px - var(--gap));
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(
    ./images/selling-code-bg.png);
}

.single-product .separator-row {
    display: none;
}

.woocommerce.single-product .related:before {
    content: '';
    position: absolute;
    background: #F7F7F7;
    width: 150%;
    height: 100%;
    top: 0;
    left: -100px;
    right: 0;
    z-index: -1;
    display: block !important;
}

.care-tour-sec:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    left: -10px;
    top: 15px;
    display: block !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(
    ./images/selling-code-bg.png);
}

.separator-row .vc_separator {
    width: 90%;
    margin: unset;
}

#header span.ct-toggle-dropdown-desktop {
    display: none;
}

.care-tour-row .list-ol li strong {
    display: flex;
    margin-bottom: 10px;
}

.care-tour-row .list-ol li br {
    display: none !important;
}

.woocommerce.single-product .woocommerce-tabs .wpb_text_column ul li:not(:last-child) {
    margin-bottom: 10px;
}

.woocommerce.single-product .woocommerce-tabs .wpb_text_column > .wpb_wrapper > p, 
.woocommerce.single-product .woocommerce-tabs .wpb_text_column > .wpb_wrapper > ul {
    margin-bottom: 35px;
}

.woocommerce.single-product .woocommerce-tabs .wpb_text_column > .wpb_wrapper > ul {
    margin-top: -30px;
}

.single-product .thumbnail_image.slick-slide.slick-current {
    border: 0;
}

#header .current-menu-item a.ct-menu-link,
.mobile-menu .current-menu-item a.ct-menu-link{
    font-weight: 600;
}

.ct-no-results h1.page-title {
    text-align: center;
}

.woocommerce-cart-form__cart-item .ct-total-price {
    display: none !important;
}

.single-product .wpgs-nav .slick-track {
    display: flex;
}

.single-product .mobile-menu #menu-item-5320 a.ct-menu-link {
    font-weight: 600;
    color: var(--theme-link-active-color, var(--theme-link-hover-color));
}

.contact-com-logo img {
    max-width: 95px !important;
    object-fit: contain;
}

@media only screen and (min-width:1000px){
  #footer [data-row*="middle"] .ct-container > div:first-child .footer-icons{
    display: none;
  }
  
  .home-product-intro-row > div:not(:first-child) > div > div{
    min-height:320px;
    max-height:320px;
  }
  

  
    .home-product-intro-row > :nth-child(1){
    grid-area:1/1/3/4;
  }

  .home-product-intro-row > :nth-child(2){
    grid-area: 1/4/2/6;
  }

  .home-product-intro-row > :nth-child(3){
    grid-area: 2/4/3/6;
  }
  
  .home-product-intro-row > div:last-child .wpb_single_image {
    max-width: 60%;
  }
}


@media only screen and (min-width:768px){
  .home-service-row .wpb_single_image,
  .home-service-row .wpb_text_column{
    margin-bottom: 0 !important;
  }
  
  .home-icon-row > div:not(:last-child) > div{
    padding-right:55px !important;
  }

  .home-service-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }


  .home-product-intro-row .wpb_single_image,
  .home-product-intro-row .custom-button{
    margin-bottom: 0 !important;
  }
  
  


  .home-about-row > div:first-child > div{
    padding-right:35px !important;
  }

  .home-about-row > div:last-child > div{
    padding-left:35px !important;
  }

  .home-follow-row .vc_row.vc_inner.vc_row > div > div{
    padding-left:0 !important;
    padding-right:0 !important;
  }
  
  .home-follow-row .vc_row.vc_inner.vc_row{
      margin-left:0 !important;
      margin-right:0 !important;
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
      gap:30px;
  }
  
  .home-follow-row .vc_row.vc_inner.vc_row > div{
      width:100% !important;
  }


  .about-intro-row .wpb_text_column,
  .feedback-desc .wpb_text_column {
    width: 85%;
    margin: auto;
  }

  /*.contact-company-row > div:first-child .wpb_text_column{*/
  /*  width: 50%;*/
  /*}*/

  .contact-company-row > div:last-child > div{
    padding-left:100px;  
  }

  .contact-form-row > div:first-child > div{
    padding-right:35px;
  }

  .contact-form-row > div:last-child > div{
    padding-left:35px;
  }

  .form #name{
    grid-column: 1 / 2;
  }
  
  .form #phone{
    grid-column: 2 / 3;
  }

  .form #email,
  .form #msg{
    grid-column: 1 / 3;
  }

  .feedback-row{
    column-gap:0;
    row-gap:30px;
  }
  
  .woocommerce .home-follow-row {
    padding-left: var(--gap) !important;
    padding-right: var(--gap) !important;
}
}

@media only screen and (min-width:999.98px){
   
    .home-transform-row > div {
        width: 50%;
    }
}

@media only screen and (max-width:999.98px){
  #footer [data-row*="top"] .ct-container{
    display: flex;
    flex-direction: column;
  }

  #footer [data-row*="top"] .ct-container > div:last-child .footer-icons{
    gap:15px;
  }

  #footer [data-row*="middle"] .ct-container{
    grid-template-columns: 1fr;
  }
  

  #footer .footer-menu-inline ul{
    display: flex;
    margin: 0 !important;
    gap:10px;
  }

  #footer [data-row*="middle"] .ct-container{
    padding-bottom: 35px;
  }

  #footer .footer-menu-inline ul li a{
    padding:0;
  }

  #footer .footer-menu-inline ul li:not(:last-child){
    border-right:1px solid #333;
    padding-right:15px;
    margin-right:15px;
  }

  #footer [data-row*="top"] .ct-container > div:nth-child(3){
    display: none;
  }
  
  #footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp.tnp-subscription{
    margin: 0 !important;
  }
  
  #footer [data-row*="top"] .ct-container > div:nth-child(2) .tnp.tnp-subscription .tnp-field.tnp-field-button{
    margin-bottom: 0 !important;
  }

  #footer [data-row*="middle"] .ct-container {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
  }

  #footer .ct-container .footer-icons{
    gap:10px;
    justify-content: space-between;
  }

  .iksm-widget .iksm-container {
      display: none;
  }
  .iksm-widget .iksm-container.display {
      display: block;
  }
  .iksm-widget .widget-title {
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0 10px;
      font-weight: 400 !important;
      border-bottom: 1px solid #a8a8a8;
      font-size: 18px;
      /*font-family: 'arcon' !important;*/
  }
  .iksm-widget .widget-title:after {
      content: '\E817' !important;
      font-family: "IksIcons";
      font-size: 15px;
      font-weight: 900;
      margin-right: 15px;
  }
  .iksm-widget .widget-title.minus:after {
      content: '\f068' !important;
      font-family: 'Font Awesome 5 Free';
      font-size: 14px;
      font-weight: 900;
  }

  .woocommerce .ct-header-trigger > span{
    display: none !important;
  }
  
  .home-product-intro-row{
      grid-template-columns:1fr;
  }
  
    .home-service-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 15px;
    }
    
    .home-product-intro-row > div:last-child .wpb_single_image {
        position: relative;
    }
    
    .home-product-intro-row > div:last-child > div > div {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 0 0 0 100px;
    }
    
    .home-transform-row.background-layer:before {
        background: rgb(255,255,255, 0.750);
        width: 100%;
    }
  

  
}

@media only screen and (max-width:767.98px){
  .pt-100{
    padding-top:70px !important;
  }

  .pb-100{
    padding-bottom:70px !important;
  }

  .pt-50{
    padding-top:35px !important;
  }
  
  .pt-65{
    padding-top:35px !important;
  }

  .pb-65,
  .pb-50{
    padding-bottom: 35px !important;
  }

  .home-service-row {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
  }

  .home-service-row .wpb_single_image {
    margin-bottom: 0 !important;
  }

  .home-service-row .wpb_single_image img,
  .home-icon-row .wpb_single_image img{
    max-width: 45px;
  }

  .home-product-intro-row {
    /* grid-template-columns: 1fr; */
    /* gap: 35px; */
    display: block;
  }
  
  .home-product-intro-row > div:not(:last-child) {
    margin-bottom: 35px;
  }

  .home-product-intro-row > div:first-child > div > div,
  .home-product-intro-row > div:not(:first-child) > div > div{
    padding:70px 15px;
  }

  .home-product-intro-row .wpb_single_image img{
    object-fit: contain;
  }

  .home-product-sec:after{
    top:0;
    height:80px;
    width: 80px;
  }

  .home-tab-row .vc_tta-container .vc_tta-tabs-container,
  .care-tour-row .vc_tta-container .vc_tta-tabs-container,
  .woocommerce.single-product .woocommerce-Tabs-panel.panel .vc_tta-container .vc_tta-tabs-container{
    display: block !important;
  }

  .home-tab-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading,
  .care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading,
  .woocommerce.single-product .woocommerce-Tabs-panel.panel .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-heading{
    display: none;
  }

  .care-tour-row .vc_tta-container .vc_general {
    flex-direction: column;
  }

  .care-tour-row .vc_tta-tabs-container{
    margin-right: 0 !important;
  }

  .care-tour-row .vc_tta-container .vc_tta-panels-container .vc_tta-panel-body{
    padding:35px 0 0!important;
    background: transparent !important;
    border: 0 !important;
  }

  .home-tab-row .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body,
  .woocommerce.single-product .woocommerce-Tabs-panel.panel .vc_tta-container .vc_tta-panels-container .vc_tta-panels .vc_tta-panel-body{
    background-color: transparent !important;
    border: 0;
  }


  .woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab > a{
    padding-left:15px;
    padding-right:15px; 
  }

  .woocommerce.woocommerce.single-product .wpb-content-wrapper .vc_tta-container .vc_tta-panels-container .vc_tta-panel-body{
    padding-top:35px !important;
    border-top: 1px solid #A8A8A8 !important;
  }
  
  .home-tab-row .vc_tta-container .vc_tta-tabs-list{
    flex-direction: column;
  }

  .home-tab-row .vc_tta-container .vc_tta-tabs-list > li:not(:last-child){
    margin-bottom: 10px;
  }

  .home-transform-row .wpb_text_column p br{
    display: none;
  }

  .woocommerce div.product{
    padding-top: 70px;
  }

  .woocommerce.single-product .product-entry-wrapper{
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100%;
  }

  .woocommerce .separator-row{
    padding-left: 15px;
    padding-right:15px;
    margin-top: 70px;
  }

  .woocommerce.single-product div.woocommerce-product-gallery{
    margin-bottom: 35px !important;
  }

  .woocommerce.single-product .ct-cart-actions{
    padding-top:35px;
    margin-top:17px;
  }

  .woocommerce .product-entry-wrapper .price {
    margin-bottom: 15px !important;
  } 

  .woocommerce.single-product .related {
    margin: 35px 0 0 0!important;
    width: 100%;
    padding: 70px 15px;
  }

  .woocommerce.archive .site-main > .ct-container{
    padding-top:70px;
  }

  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce{
    margin-left:15px !important;
    margin-right:15px !important;
    padding-top:70px;
    padding-bottom:70px;
  }

  .about-intro-row:before, 
  .care-tour-sec:before, 
  .contact-sec:before, 
  .feedback-sec:before, 
  .woocommerce .site-main:before{
    width: 80px;
    height:80px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .contact-form-row > div:first-child{
    padding-bottom:35px;
  }

  .contact-company-row .custom-table table tr td:first-child{
    width: 20%;
  }

  .woocommerce.single-product .ct-cart-actions .single_add_to_cart_button{
    max-width: unset;
  }

  .woocommerce.single-product .woocommerce-Tabs-panel.panel.woocommerce-Tabs-panel--description{
    padding-top:70px !important;
  }

  .woocommerce.single-product .woocommerce-Tabs-panel.panel .wpb-content-wrapper{
    width: 100%;
    padding:0 15px;
  }

  .woocommerce.archive .site-main .ct-container .hero-section{
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .feedback-row{
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .woocommerce .ct-hidden-sm{
    display: block !important;
  }

  .woocommerce.archive .site-main .ct-container {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 35px;
  }

  .ct-sidebar > .ct-widget{
    margin-bottom: 20px !important;
  }

  span.parent-category,
  .woocommerce.archive h1.page-title{
    font-size: 25px;
  }
  
  #footer [data-row*="top"] .ct-container > div:first-child img{
    max-height: 100px;
  }

  .woocommerce .site-main .ct-container:before{
    height: 60px;
    width: 60px;
    left:-15px;
  }

  .contact-form-row {
    padding-top: 35px !important;
  }

  .contact-company-row > div:last-child .wpb_text_column{
    margin-bottom: 0 !important;
  }

  .search.search-results .site-main > .ct-container, .search.search-no-results .site-main > .ct-container{
    padding:70px 0 70px !important;
  }

  .search.search-no-results .woocommerce-info{
    margin-bottom: 0 !important;
  }

  .woocommerce.single-product div.product{
    padding-top: 70px;
  }

  .search.search-results .site-main > .ct-container .page-title{
    /*font-family: 'firasans' !important;*/
    font-weight: 600;
    font-size: 25px;
  }

  .search.search-no-results .page-description.ct-hidden-sm{
    display: block !important;
  }

  .page-id-153 .site-main .ct-container-full{
    padding:70px 0;
  }
  
  .page-id-153 .site-main .ct-container-full .entry-content p{
    margin:0 15px !important;
  }
  
  .woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce, .woocommerce-account .woocommerce {
    margin-left: 15px !important;
    margin-right: 15px !important;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  .woocommerce-account .woocommerce .woocommerce-form-row.form-row,
  .woocommerce-checkout .woocommerce .return-to-shop{
      margin-bottom:0 !important;
  }
  
  .home-product-intro-row > div > div > div{
      /*height:280px;*/
  }
  
    .home-product-intro-row > div:last-child > div > div{
      justify-content:flex-start;
  }
  
  .home-product-intro-row > div:nth-child(2) .wpb_single_image img {
    max-width: 165px;
    object-fit: contain;
  }
  
  .home-product-intro-row > div:nth-child(3) .wpb_single_image img{
      object-fit:contain;
      max-height:200px;
      width:auto;
  }
  
.home-product-intro-row > div:first-child .wpb_single_image img {
    max-width: 230px;
    height: auto;
    object-fit: contain;
}

  .home-tab-row .owl-stage{
      gap:0;
  }
  
  .home-product-intro-row > div:first-child .wpb_single_image {
    position: relative;
    width: 100%;
    text-align: right;
    margin-bottom: 0;
  }
  
  .home-product-intro-row > div:first-child > div > div {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 35px 0 0 15px;
  }
  
  .home-product-intro-row > div:nth-child(2) > div > div {
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 35px 15px;
    height: 100%;
  }
  
  .home-product-intro-row > div:last-child > div > div {
    justify-content: flex-start;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 35px 0 0 15px;
  }
  
  .home-product-intro-row > div:last-child .wpb_single_image {
    position: relative;
    width: 100%;
    text-align: right;
    margin-bottom: 0;
  }
  
  .about-vs-row {
    padding-top: 70px !important;
  }
  
  .woocommerce .home-follow-row {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .woocommerce.single-product .related .ct-module-title {
    font-size: 25px;
  }
  
  .home-product-intro-row > div:nth-child(2) .wpb_single_image {
    width: 100%;
    text-align: right;
    margin-bottom: 0;
  }
  
  .home-tab-row .contact-lens .woocommerce ul li.product {
    padding-left: 0;
    padding-right: 0;
  }
  
  .home-icon-row.about {
    padding-bottom: 35px !important;
  }
  
  .mobile-pb-35 {
    padding-bottom: 35px !important;
 }
 
 .about-vs-row:before {
    left: unset;
    right: -35px;
  }
  
  .custom-separator:after {
    width: 70px;
    height: 70px;
    right: -10px;
  }
  
  .footer-company-name h2 {
    margin-bottom: 0;
  }
  
  .wpgs-for .slick-arrow {
    width: 30px;
    height: 30px;
    background: #A8A8A8;
    border-radius: 50%;
  }
  
  .wpgs-for .slick-arrow::before {
    font-size: 15px;
  }
  
  .woocommerce.single-product .ct-breadcrumbs span {
    font-size: 14px;
  }
  
  .single-product .summary > nav, .single-product .summary > h1, .single-product .summary > p {
    margin-bottom: 15px !important;
  }
  
  .woocommerce.single-product .woocommerce-tabs .wpb_text_column {
    text-align: justify;
  }
  
  .home-icon-row.about.mobile-pb-70 {
    padding-bottom: 70px !important;
  }
  
  .contact-comp-name {
    font-size: 23px;
  }
  
  .home-tab-row ul.products .slick-dots {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
        gap: 0 !important;
        justify-content: center;
  }
  
  #header [data-row*=top] [data-items=primary] {
    justify-content: space-between;
  }
  
  #header [data-row*=top] [data-items=primary] > .ct-header-text {
    width: 100%;
    margin: 0;
  }
  
  #header [data-row*=top] .ct-header-text > div > div {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: space-between;
  }
  
  .home-tab-row .woocommerce ul li {
    padding: 0 6px;
  }
    
    
}

a.glink:hover {
    color: #454545;
}

.woocommerce-product-gallery img {
    aspect-ratio: 1/1;
    object-fit: contain;
}


#header .gtranslate_wrapper {
    width: 35%;
    text-align: right;
}

/*[Slick Slider]--------------------------------------------------------------*/
.slick-arrow {
  font-size: 0;
  z-index: 9;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-palette-color-1);
  border-radius: 50%;
  background-color: var(--theme-palette-color-1);
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  transition: all 300ms ease;
  cursor: pointer;
}

.slick-arrow.slick-prev {
  left: 0px;
}

.slick-arrow.slick-next {
  right: 0px;
}

.slick-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #fff;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: all 300ms ease;
}

.slick-arrow.slick-prev:before {
  content: "\f060";
}

.slick-arrow.slick-next:before {
  content: "\f061";
}

.slick-arrow:hover {
  background-color: transparent;
}

.slick-arrow:hover:before {
  color: var(--theme-palette-color-1);
}

/*slick slider dots*/
.slick-dots {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slick-dots button {
  width: 10px;
  background: #808080;
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background 1s ease;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: var(--paletteColor1);
}
