@font-face {
  font-family: "Inter";
  font-weight: 300;
  src: url("./fonts/Inter_18pt-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("./fonts/Inter_18pt-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("./fonts/Inter_18pt-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("./fonts/Inter_18pt-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("./fonts/Inter_18pt-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-weight: 800;
  src: url("./fonts/Inter_18pt-ExtraBold.ttf") format("truetype");
}


/*Customized widget - Floating Buttons (HTML)*/
.floating-button {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  bottom: 80px;
  right: 19px;
  font-size: 20px;
  background-color: #4f6aca;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.floating-button * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger {
  background-color: #4f6aca;
  /* animation: 2.5s wiggle ease infinite; */
  /* animation-delay: 1s; */
  width: auto;
  min-width: 50px;
}

.floating-button:not(.float-btn-trigger) {
  opacity: 0;
}

.floating-button.float-btn-trigger .icon-trigger {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: 2.5s wiggle ease infinite;
  animation-delay: 1s;
  position: relative;
}

.floating-button.float-btn-trigger .chat-with-us {
  padding-inline: 0 0;
  font-size: 16px;
  text-transform: capitalize;
  overflow: hidden;
  text-indent: -100px;
  transform: scale(0);
  transform-origin: 100% 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger .chat-with-us.pop {
  padding-inline: 15px 0;
  text-indent: 0;
  transform: scale(1);
}

.floating-button.float-btn-trigger #open-float {
  opacity: 1;
}
.floating-button.float-btn-trigger #close-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.floating-button.floating-button_mail {
  background-color: rgba(0, 114, 198, 1);
}
.floating-button.floating-button_phone {
  background-color: rgba(220, 16, 16, 1);
}
.floating-button.floating-button_whatsapp {
  background-color: rgba(37, 211, 102, 1);
}

.floating-button.floating-button_wx{
    background-color:rgba(26,173,25,1);
}

/*when toogle*/
.floating-button.float-btn-trigger.toogle .icon-trigger {
  animation: none;
}

.floating-button.toogle:not(.float-btn-trigger) {
  opacity: 1;
}

.floating-button.float-btn-trigger.toogle #open-float {
  opacity: 0;
}
.floating-button.float-btn-trigger.toogle #close-float {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(180deg);
}

.floating-button.floating-button_mail.toogle {
  bottom: 140px;
}
.floating-button_phone.toogle {
  bottom: 200px;
}
.floating-button_whatsapp.toogle {
  bottom: 260px;
}

.floating-button_wx.toogle {
  bottom: 320px;
}

/*animation for trigger*/
@keyframes wiggle {
  0% {
    transform: scale(1), rotate(0);
  }
  9.375% {
    transform: scale(1.1) rotate(0);
  }
  18.75% {
    transform: scale(1.1) rotate(-3deg);
  }
  28.125% {
    transform: scale(1.1) rotate(20deg);
  }
  37.5% {
    transform: scale(1.1) rotate(-15deg);
  }
  46.875% {
    transform: scale(1.1) rotate(5deg);
  }
  56.25% {
    transform: scale(1.1) rotate(-1deg);
  }
  65.625% {
    transform: scale(1.1) rotate(0);
  }
  75% {
    transform: scale(1) rotate(0);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

/*when mobile only*/
@media only screen and (max-width: 767.98px) {
  .floating-button {
    bottom: 10px;
    right: 15px;
  }

  .floating-button.floating-button_mail.toogle {
    bottom: 70px;
  }
  .floating-button_phone.toogle {
    bottom: 130px;
  }
  .floating-button_whatsapp.toogle {
    bottom: 190px;
  }

  #side-contact {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 70px;
    bottom: 0;
    right: -100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /*padding-right: 70px;*/
  }

  #side-contact.toogle {
    right: 0;
  }

  #side-contact a.floating-button:not(.float-btn-trigger) {
    position: initial;
    opacity: 1;
  }

  .floating-button.float-btn-trigger .chat-with-us.pop {
    padding-inline: 15px 0;
    text-indent: 0;
    transform: scale(1);
    animation: none;
  }

  .floating-button.float-btn-trigger.toogle .chat-with-us.pop {
    padding-inline: 0 0;
    text-indent: -100px;
    transform: scale(0);
  }
}

@media only screen and (max-width:767.98px){
    #popmake-884 {
    min-width:unset !important;
    left:50% !important;
    transform:translateX(-50%) !important;
  }
}


:root {

/***Default Style***/
  --gap: 100px;
  --mobile-gap: 70px;
/***theme font style***/
  --h1: 35px;
  --h2: 30px;
  --h3: 30px;
  --h4: 25px;
  --h5: 20px;
  --h6: 18px;
  --mobile-h1: 35px;
  --mobile-h2: 27px;
  --mobile-h3: 27px;
  --mobile-h4: 23px;
  --mobile-h5: 20px;
  --mobile-h6: 18px;
  --theme-font-family:"Inter", sans-serif !important;
  --secondary-font-family:'';
  --font-Awesome: "Font Awesome 6 Free";
  --theme-font-size:16px;
  --theme-line-height: 1.3 !important;
  --big-title:35px;
  --small-title:14px;
/***color palettess***/
  --primary-color:#2A3682;
  --secondary-color:#272727;
  --color-1:#EEF0F2;
  --color-2:#00E832;
  --color-3:#fff;
  --color-4:#000;
  --color-5:#B70002;

/***button style***/
  --button-font-size:14px;
  --button-border-radius:20px;
  --button-border: 1px solid;
  --border-color:var(--primary-color);
  --button-padding:16px 32px;
  --button-bg-color:transparent;
  --button-text-color:var(--primary-color);
  --button-font-weight:500;


/***custom style***/
--allTransition: all 0.3s ease-in-out;
--black: #000;
--white: #fff;
}

* {
  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) !important;
    margin-right: var(--gap) !important;
    /* 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: 1.3;
  font-family: var(--theme-font-family) !important;
}

.row-gap {
  padding-top: var(--gap) !important;
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.row-gap-t-65 {
  padding-top: calc(var(--gap) - 35px) !important;
}

.row-gap-t-100 {
  padding-top: var(--gap) !important;
}

.row-gap-b-65 {
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.row-gap-b-100 {
  padding-bottom: var(--gap) !important;
}

.row-gap-65 {
  padding-top: calc(var(--gap) - 35px) !important;
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.row-gap-equal {
  padding-top: var(--gap) !important;
  padding-bottom: var(--gap) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :is(h1, h2, h3, h4, h5, h6) {
  line-height: var(--theme-line-height) !important;
}

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

.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 :is(h1, h2, h3, h4, h5, h6, a, p, li) {
  color: #fff !important;
}

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

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

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

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

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

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

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

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

.font-25 {
  font-size: 24px !important;
}

.font-26 {
  font-size: 24px !important;
}

.font-27 {
  font-size: 24px !important;
}

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

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

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

.text-color-1{
  color:var(--color-1) !important;
}

.text-color-2{
  color:var(--color-2) !important;
}

.text-color-3{
  color:var(--color-3) !important;
}

.text-color-4{
  color:var(--color-4) !important;
}

.text-color-5{
  color:var(--color-5) !important;
}

.font-primary{
  font-family: var(--theme-font-family) !important; 
}

.font-secondary{
  font-family: var(--secondary-font-family) !important;
}

.big-tile,
.big-title :is(h1,h2,h3,h4,h5,h6,p,strong,a,li){
  font-size: var(--big-title) !important;
}

.small-tile,
.small-title :is(h1,h2,h3,h4,h5,h6,p,strong,a,li){
  font-size: var(--small-title) !important;
}

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

@media only screen and (min-width: 768px) {
  .full-image-column.wpb_column {
    height: auto;
  }

  .full-image-column.wpb_column > .vc_column-inner,
  .full-image-column.wpb_column > .vc_column-inner > .wpb_wrapper,
  .full-image-column.wpb_column
    > .vc_column-inner
    > .wpb_wrapper
    > .wpb_single_image,
  .full-image-column.wpb_column
    > .vc_column-inner
    > .wpb_wrapper
    > .wpb_single_image
    > figure,
  .full-image-column.wpb_column
    > .vc_column-inner
    > .wpb_wrapper
    > .wpb_single_image
    > figure
    > div,
  .full-image-column.wpb_column
    > .vc_column-inner
    > .wpb_wrapper
    > .wpb_single_image
    > figure
    > div
    > img {
    height: 100%;
  }
}

.background-layer {
  position: relative;
}

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

.black-layer-10.background-layer:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.black-layer-15.background-layer:before {
  background-color: rgba(0, 0, 0, 0.15);
}

.black-layer-20.background-layer:before {
  background-color: rgba(0, 0, 0, 0.2);
}

.black-layer-25.background-layer:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.black-layer-30.background-layer:before {
  background-color: rgba(0, 0, 0, 0.3);
}

.black-layer-35.background-layer:before {
  background-color: rgba(0, 0, 0, 0.35);
}

.black-layer-40.background-layer:before {
  background-color: rgba(0, 0, 0, 0.4);
}

.black-layer-45.background-layer:before {
  background-color: rgba(0, 0, 0, 0.45);
}

.black-layer-50.background-layer:before {
  background-color: rgba(0, 0, 0, 0.5);
}

.black-layer-55.background-layer:before {
  background-color: rgba(0, 0, 0, 0.55);
}

.black-layer-60.background-layer:before {
  background-color: rgba(0, 0, 0, 0.6);
}

.black-layer-65.background-layer:before {
  background-color: rgba(0, 0, 0, 0.65);
}

.black-layer-70.background-layer:before {
  background-color: rgba(0, 0, 0, 0.7);
}

.black-layer-75.background-layer:before {
  background-color: rgba(0, 0, 0, 0.75);
}

.black-layer-80.background-layer:before {
  background-color: rgba(0, 0, 0, 0.8);
}

.black-layer-85.background-layer:before {
  background-color: rgba(0, 0, 0, 0.85);
}

.black-layer-90.background-layer:before {
  background-color: rgba(0, 0, 0, 0.9);
}

.black-layer-95background-layer:before {
  background-color: rgba(0, 0, 0, 0.95);
}

.white-layer-10.background-layer:before {
  background-color: rgba(255, 255, 255, 0.1);
}

.white-layer-15.background-layer:before {
  background-color: rgba(255, 255, 255, 0.15);
}

.white-layer-20.background-layer:before {
  background-color: rgba(255, 255, 255, 0.2);
}

.white-layer-25.background-layer:before {
  background-color: rgba(255, 255, 255, 0.25);
}

.white-layer-30.background-layer:before {
  background-color: rgba(255, 255, 255, 0.3);
}

.white-layer-35.background-layer:before {
  background-color: rgba(255, 255, 255, 0.35);
}

.white-layer-40.background-layer:before {
  background-color: rgba(255, 255, 255, 0.4);
}

.white-layer-45.background-layer:before {
  background-color: rgba(255, 255, 255, 0.45);
}

.white-layer-50.background-layer:before {
  background-color: rgba(255, 255, 255, 0.5);
}

.white-layer-55.background-layer:before {
  background-color: rgba(255, 255, 255, 0.55);
}

.white-layer-60.background-layer:before {
  background-color: rgba(255, 255, 255, 0.6);
}

.white-layer-65.background-layer:before {
  background-color: rgba(255, 255, 255, 0.65);
}

.white-layer-70.background-layer:before {
  background-color: rgba(255, 255, 255, 0.7);
}

.white-layer-75.background-layer:before {
  background-color: rgba(255, 255, 255, 0.75);
}

.white-layer-80.background-layer:before {
  background-color: rgba(255, 255, 255, 0.8);
}

.white-layer-85.background-layer:before {
  background-color: rgba(255, 255, 255, 0.85);
}

.white-layer-90.background-layer:before {
  background-color: rgba(255, 255, 255, 0.9);
}

.white-layer-95.background-layer:before {
  background-color: rgba(255, 255, 255, 0.95);
}

.custom-button .vc_general.vc_btn3 {
  padding: var(--button-padding);
  font-size:var(--button-font-size);
  background-image: none !important;
  border-radius: var(--button-border-radius);
  background-color: var(--button-bg-color) !important;
  border: var(--button-border);
  color: var(--button-text-color) !important;
  font-weight: var(--button-font-weight);
  line-height: 1 !important;
  border-color: var(--border-color) !important;
  position: relative;
}

.custom-button .vc_general.vc_btn3:hover{
  background-color: var(--primary-color) !important;
  color:var(--white) !important;
}

.custom-button.btn-no-padding .vc_general.vc_btn3{
  padding:0 !important;
  display: flex;
  align-items: center;
  gap:15px;
  background:unset !important;
  font-size: 16px !important;
  color:var(--secondary-color) !important;
  border:0 !important;
  border-radius: 0 !important;
}

.custom-button.btn-no-padding .vc_general.vc_btn3 i{
  position: unset !important;
  transform:unset !important;
}

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

ul.products li.product{
  position: relative;
}

ul.products li.product .archive-brand-logo{
  position: absolute;
  top:15px;
  right:15px;
}

ul.products li.product .archive-brand-logo .product-brand-logo > div > div{
  padding:0 !important;
}

ul.products li.product .archive-brand-logo img{
  max-width: 60px !important;
}

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

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

.image-border-radius-5 > figure{
  border-radius: 5px;
  overflow: hidden;
}

.image-border-radius-10 > figure {
  border-radius: 10px;
  overflow: hidden;
}

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

.image-border-radius-20 > figure {
  border-radius: 20px;
  overflow: hidden;
}

.image-border-radius-25 > figure {
  border-radius: 25px;
  overflow: hidden;
}

.image-border-radius-30 > figure {
  border-radius: 30px;
  overflow: hidden;
}

.image-border-radius-35 > figure {
  border-radius: 35px;
  overflow: hidden;
}

.image-border-radius-40 > figure {
  border-radius: 40px;
  overflow: hidden;
}

.image-border-radius-45 > figure {
  border-radius: 45px;
  overflow: hidden;
}

.image-border-radius-50 > figure {
  border-radius: 50px;
  overflow: hidden;
}

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

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

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

.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;
}

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

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

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

.image-maxh-800 img {
  max-height: 800;
}

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;
}

@media only screen and (min-width: 768px) {
  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

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

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

  .width-90 {
    width: 90%;
  }

  .width-85 {
    width: 85%;
  }

  .width-80 {
    width: 80%;
  }

  .width-75 {
    width: 75%;
  }

  .width-70 {
    width: 70%;
  }

  .width-65 {
    width: 65%;
  }

  .width-60 {
    width: 60%;
  }

  .width-55 {
    width: 55%;
  }

  .width-50 {
    width: 50%;
  }

  .width-45 {
    width: 45%;
  }

  .width-40 {
    width: 40%;
  }
}

.fw-100,
.fw-100 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 100 !important;
}

.fw-200,
.fw-200 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 200 !important;
}

.fw-300,
.fw-300 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 300 !important;
}

.fw-400,
.fw-400 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 400 !important;
}

.fw-500,
.fw-500 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 500 !important;
}

.fw-600,
.fw-600 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 600 !important;
}

.fw-700,
.fw-700 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 700 !important;
}

.fw-800,
.fw-800 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 800 !important;
}

.fw-900,
.fw-900 :is(h1,h2,h3,h4,h5,h6) {
  font-weight: 900 !important;
}

.wpb_text_column.strong-100 strong {
  font-weight: 100 !important;
}

.wpb_text_column.strong-200 strong {
  font-weight: 200 !important;
}

.wpb_text_column.strong-300 strong {
  font-weight: 300 !important;
}

.wpb_text_column.strong-400 strong {
  font-weight: 400 !important;
}

.wpb_text_column.strong-500 strong {
  font-weight: 500 !important;
}

.wpb_text_column.strong-600 strong {
  font-weight: 600 !important;
}

.wpb_text_column.strong-700 strong {
  font-weight: 700 !important;
}

.wpb_text_column.strong-800 strong {
  font-weight: 800 !important;
}

.wpb_text_column.strong-900 strong {
  font-weight: 900 !important;
}

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

.mt-5 {
  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-55 {
  margin-top: 55px !important;
}

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

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

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

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

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

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

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

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

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

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

.mb-5 {
  margin-bottom: 5px !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-55 {
  margin-bottom: 55px !important;
}

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

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

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

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

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

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

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

.mb-95 {
  margin-bottom: 95px !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-100 {
  margin-left: 100px !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-5 {
  padding-left: 5px !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-5 {
  padding-right: 5px !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid {
  display: grid !important;
}

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

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

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

.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);
}

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

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

@media only screen and (min-width: 600px) {
  .grid-column-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

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

@media only screen and (min-width: 768px) {
  .grid-column-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

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

@media only screen and (min-width: 1000px) {
  .grid-column-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

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

@media only screen and (min-width: 1200px) {
  .grid-column-xl-1 {
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

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

@media only screen and (min-width: 1400px) {
  .grid-column-xxl-1 {
    grid-template-columns: repeat(1, 1fr);
  }

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

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

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

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

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

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

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

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-55 {
  gap: 55px;
}

.gap-60 {
  gap: 60px;
}

.gap-65 {
  gap: 65px;
}

.gap-70 {
  gap: 70px;
}

.gap-75 {
  gap: 75px;
}

.gap-80 {
  gap: 80px;
}

.gap-85 {
  gap: 85px;
}

.gap-90 {
  gap: 90px;
}

.gap-95 {
  gap: 95px;
}

.gap-100 {
  gap: 100px;
}

.row-gap-0{
  row-gap:0;
}

.row-gap-5 {
  row-gap: 5px;
}

.row-gap-10 {
  row-gap: 10px;
}

.row-gap-15 {
  row-gap: 15px;
}

.row-gap-20 {
  row-gap: 20px;
}

.row-gap-25 {
  row-gap: 25px;
}

.row-gap-30 {
  row-gap: 30px;
}

.row-gap-35 {
  row-gap: 35px;
}

.row-gap-40 {
  row-gap: 40px;
}

.row-gap-45 {
  row-gap: 45px;
}

.row-gap-50 {
  row-gap: 50px;
}

.row-gap-55 {
  row-gap: 55px;
}

.row-gap-60 {
  row-gap: 60px;
}

.row-gap-65 {
  row-gap: 65px;
}

.row-gap-70 {
  row-gap: 70px;
}

.row-gap-75 {
  row-gap: 75px;
}

.row-gap-80 {
  row-gap: 80px;
}

.row-gap-85 {
  row-gap: 85px;
}

.row-gap-90 {
  row-gap: 90px;
}

.row-gap-95 {
  row-gap: 95px;
}

.row-gap-100 {
  row-gap: 100px;
}

.column-gap-0{
  column-gap: 0;
}

.column-gap-5 {
  column-gap: 5px;
}

.column-gap-10 {
  column-gap: 10px;
}

.column-gap-15 {
  column-gap: 15px;
}

.column-gap-20 {
  column-gap: 20px;
}

.column-gap-25 {
  column-gap: 25px;
}

.column-gap-30 {
  column-gap: 30px;
}

.column-gap-35 {
  column-gap: 35px;
}

.column-gap-40 {
  column-gap: 40px;
}

.column-gap-45 {
  column-gap: 45px;
}

.column-gap-50 {
  column-gap: 50px;
}

.column-gap-55 {
  column-gap: 55px;
}

.column-gap-60 {
  column-gap: 60px;
}

.column-gap-65 {
  column-gap: 65px;
}

.column-gap-70 {
  column-gap: 70px;
}

.column-gap-75 {
  column-gap: 75px;
}

.column-gap-80 {
  column-gap: 80px;
}

.column-gap-85 {
  column-gap: 85px;
}

.column-gap-90 {
  column-gap: 90px;
}

.column-gap-95 {
  column-gap: 95px;
}

.column-gap-100 {
  column-gap: 100px;
}

@media only screen and (min-width:600px){
  .row-gap-sm-0{
    row-gap:0;
  }
  
  .row-gap-sm-5 {
    row-gap: 5px;
  }
  
  .row-gap-sm-10 {
    row-gap: 10px;
  }
  
  .row-gap-sm-15 {
    row-gap: 15px;
  }
  
  .row-gap-sm-20 {
    row-gap: 20px;
  }
  
  .row-gap-sm-25 {
    row-gap: 25px;
  }
  
  .row-gap-sm-30 {
    row-gap: 30px;
  }
  
  .row-gap-sm-35 {
    row-gap: 35px;
  }
  
  .row-gap-sm-40 {
    row-gap: 40px;
  }
  
  .row-gap-sm-45 {
    row-gap: 45px;
  }
  
  .row-gap-sm-50 {
    row-gap: 50px;
  }
  
  .row-gap-sm-55 {
    row-gap: 55px;
  }
  
  .row-gap-sm-60 {
    row-gap: 60px;
  }
  
  .row-gap-sm-65 {
    row-gap: 65px;
  }
  
  .row-gap-sm-70 {
    row-gap: 70px;
  }
  
  .row-gap-sm-75 {
    row-gap: 75px;
  }
  
  .row-gap-sm-80 {
    row-gap: 80px;
  }
  
  .row-gap-sm-85 {
    row-gap: 85px;
  }
  
  .row-gap-sm-90 {
    row-gap: 90px;
  }
  
  .row-gap-sm-95 {
    row-gap: 95px;
  }
  
  .row-gap-sm-100 {
    row-gap: 100px;
  }

  .column-gap-sm-0{
    column-gap: 0;
  }
  
  .column-gap-sm-5 {
    column-gap: 5px;
  }
  
  .column-gap-sm-10 {
    column-gap: 10px;
  }
  
  .column-gap-sm-15 {
    column-gap: 15px;
  }
  
  .column-gap-sm-20 {
    column-gap: 20px;
  }
  
  .column-gap-sm-25 {
    column-gap: 25px;
  }
  
  .column-gap-sm-30 {
    column-gap: 30px;
  }
  
  .column-gap-sm-35 {
    column-gap: 35px;
  }
  
  .column-gap-sm-40 {
    column-gap: 40px;
  }
  
  .column-gap-sm-45 {
    column-gap: 45px;
  }
  
  .column-gap-sm-50 {
    column-gap: 50px;
  }
  
  .column-gap-sm-55 {
    column-gap: 55px;
  }
  
  .column-gap-sm-60 {
    column-gap: 60px;
  }
  
  .column-gap-sm-65 {
    column-gap: 65px;
  }
  
  .column-gap-sm-70 {
    column-gap: 70px;
  }
  
  .column-gap-sm-75 {
    column-gap: 75px;
  }
  
  .column-gap-sm-80 {
    column-gap: 80px;
  }
  
  .column-gap-sm-85 {
    column-gap: 85px;
  }
  
  .column-gap-sm-90 {
    column-gap: 90px;
  }
  
  .column-gap-sm-95 {
    column-gap: 95px;
  }
  
  .column-gap-sm-100 {
    column-gap: 100px;
  }
}

@media only screen and (min-width:768px){
  .row-gap-md-0{
    row-gap:0;
  }
  
  .row-gap-md-5 {
    row-gap: 5px;
  }
  
  .row-gap-md-10 {
    row-gap: 10px;
  }
  
  .row-gap-md-15 {
    row-gap: 15px;
  }
  
  .row-gap-md-20 {
    row-gap: 20px;
  }
  
  .row-gap-md-25 {
    row-gap: 25px;
  }
  
  .row-gap-md-30 {
    row-gap: 30px;
  }
  
  .row-gap-md-35 {
    row-gap: 35px;
  }
  
  .row-gap-md-40 {
    row-gap: 40px;
  }
  
  .row-gap-md-45 {
    row-gap: 45px;
  }
  
  .row-gap-md-50 {
    row-gap: 50px;
  }
  
  .row-gap-md-55 {
    row-gap: 55px;
  }
  
  .row-gap-md-60 {
    row-gap: 60px;
  }
  
  .row-gap-md-65 {
    row-gap: 65px;
  }
  
  .row-gap-md-70 {
    row-gap: 70px;
  }
  
  .row-gap-md-75 {
    row-gap: 75px;
  }
  
  .row-gap-md-80 {
    row-gap: 80px;
  }
  
  .row-gap-md-85 {
    row-gap: 85px;
  }
  
  .row-gap-md-90 {
    row-gap: 90px;
  }
  
  .row-gap-md-95 {
    row-gap: 95px;
  }
  
  .row-gap-md-100 {
    row-gap: 100px;
  }

  .column-gap-md-0{
    column-gap: 0;
  }
  
  .column-gap-md-5 {
    column-gap: 5px;
  }
  
  .column-gap-md-10 {
    column-gap: 10px;
  }
  
  .column-gap-md-15 {
    column-gap: 15px;
  }
  
  .column-gap-md-20 {
    column-gap: 20px;
  }
  
  .column-gap-md-25 {
    column-gap: 25px;
  }
  
  .column-gap-md-30 {
    column-gap: 30px;
  }
  
  .column-gap-md-35 {
    column-gap: 35px;
  }
  
  .column-gap-md-40 {
    column-gap: 40px;
  }
  
  .column-gap-md-45 {
    column-gap: 45px;
  }
  
  .column-gap-md-50 {
    column-gap: 50px;
  }
  
  .column-gap-md-55 {
    column-gap: 55px;
  }
  
  .column-gap-md-60 {
    column-gap: 60px;
  }
  
  .column-gap-md-65 {
    column-gap: 65px;
  }
  
  .column-gap-md-70 {
    column-gap: 70px;
  }
  
  .column-gap-md-75 {
    column-gap: 75px;
  }
  
  .column-gap-md-80 {
    column-gap: 80px;
  }
  
  .column-gap-md-85 {
    column-gap: 85px;
  }
  
  .column-gap-md-90 {
    column-gap: 90px;
  }
  
  .column-gap-md-95 {
    column-gap: 95px;
  }
  
  .column-gap-md-100 {
    column-gap: 100px;
  }
}

@media only screen and (min-width:1000px){
  .row-gap-lg-0{
    row-gap:0;
  }
  
  .row-gap-lg-5 {
    row-gap: 5px;
  }
  
  .row-gap-lg-10 {
    row-gap: 10px;
  }
  
  .row-gap-lg-15 {
    row-gap: 15px;
  }
  
  .row-gap-lg-20 {
    row-gap: 20px;
  }
  
  .row-gap-lg-25 {
    row-gap: 25px;
  }
  
  .row-gap-lg-30 {
    row-gap: 30px;
  }
  
  .row-gap-lg-35 {
    row-gap: 35px;
  }
  
  .row-gap-lg-40 {
    row-gap: 40px;
  }
  
  .row-gap-lg-45 {
    row-gap: 45px;
  }
  
  .row-gap-lg-50 {
    row-gap: 50px;
  }
  
  .row-gap-lg-55 {
    row-gap: 55px;
  }
  
  .row-gap-lg-60 {
    row-gap: 60px;
  }
  
  .row-gap-lg-65 {
    row-gap: 65px;
  }
  
  .row-gap-lg-70 {
    row-gap: 70px;
  }
  
  .row-gap-lg-75 {
    row-gap: 75px;
  }
  
  .row-gap-lg-80 {
    row-gap: 80px;
  }
  
  .row-gap-lg-85 {
    row-gap: 85px;
  }
  
  .row-gap-lg-90 {
    row-gap: 90px;
  }
  
  .row-gap-lg-95 {
    row-gap: 95px;
  }
  
  .row-gap-lg-100 {
    row-gap: 100px;
  }

  .column-gap-lg-0{
    column-gap: 0;
  }
  
  .column-gap-lg-5 {
    column-gap: 5px;
  }
  
  .column-gap-lg-10 {
    column-gap: 10px;
  }
  
  .column-gap-lg-15 {
    column-gap: 15px;
  }
  
  .column-gap-lg-20 {
    column-gap: 20px;
  }
  
  .column-gap-lg-25 {
    column-gap: 25px;
  }
  
  .column-gap-lg-30 {
    column-gap: 30px;
  }
  
  .column-gap-lg-35 {
    column-gap: 35px;
  }
  
  .column-gap-lg-40 {
    column-gap: 40px;
  }
  
  .column-gap-lg-45 {
    column-gap: 45px;
  }
  
  .column-gap-lg-50 {
    column-gap: 50px;
  }
  
  .column-gap-lg-55 {
    column-gap: 55px;
  }
  
  .column-gap-lg-60 {
    column-gap: 60px;
  }
  
  .column-gap-lg-65 {
    column-gap: 65px;
  }
  
  .column-gap-lg-70 {
    column-gap: 70px;
  }
  
  .column-gap-lg-75 {
    column-gap: 75px;
  }
  
  .column-gap-lg-80 {
    column-gap: 80px;
  }
  
  .column-gap-lg-85 {
    column-gap: 85px;
  }
  
  .column-gap-lg-90 {
    column-gap: 90px;
  }
  
  .column-gap-lg-95 {
    column-gap: 95px;
  }
  
  .column-gap-lg-100 {
    column-gap: 100px;
  }
}

@media only screen and (min-width:1200px){
  .row-gap-xl-0{
    row-gap:0;
  }
  
  .row-gap-xl-5 {
    row-gap: 5px;
  }
  
  .row-gap-xl-10 {
    row-gap: 10px;
  }
  
  .row-gap-xl-15 {
    row-gap: 15px;
  }
  
  .row-gap-xl-20 {
    row-gap: 20px;
  }
  
  .row-gap-xl-25 {
    row-gap: 25px;
  }
  
  .row-gap-xl-30 {
    row-gap: 30px;
  }
  
  .row-gap-xl-35 {
    row-gap: 35px;
  }
  
  .row-gap-xl-40 {
    row-gap: 40px;
  }
  
  .row-gap-xl-45 {
    row-gap: 45px;
  }
  
  .row-gap-xl-50 {
    row-gap: 50px;
  }
  
  .row-gap-xl-55 {
    row-gap: 55px;
  }
  
  .row-gap-xl-60 {
    row-gap: 60px;
  }
  
  .row-gap-xl-65 {
    row-gap: 65px;
  }
  
  .row-gap-xl-70 {
    row-gap: 70px;
  }
  
  .row-gap-xl-75 {
    row-gap: 75px;
  }
  
  .row-gap-xl-80 {
    row-gap: 80px;
  }
  
  .row-gap-xl-85 {
    row-gap: 85px;
  }
  
  .row-gap-xl-90 {
    row-gap: 90px;
  }
  
  .row-gap-xl-95 {
    row-gap: 95px;
  }
  
  .row-gap-xl-100 {
    row-gap: 100px;
  }

  .column-gap-xl-0{
    column-gap: 0;
  }
  
  .column-gap-xl-5 {
    column-gap: 5px;
  }
  
  .column-gap-xl-10 {
    column-gap: 10px;
  }
  
  .column-gap-xl-15 {
    column-gap: 15px;
  }
  
  .column-gap-xl-20 {
    column-gap: 20px;
  }
  
  .column-gap-xl-25 {
    column-gap: 25px;
  }
  
  .column-gap-xl-30 {
    column-gap: 30px;
  }
  
  .column-gap-xl-35 {
    column-gap: 35px;
  }
  
  .column-gap-xl-40 {
    column-gap: 40px;
  }
  
  .column-gap-xl-45 {
    column-gap: 45px;
  }
  
  .column-gap-xl-50 {
    column-gap: 50px;
  }
  
  .column-gap-xl-55 {
    column-gap: 55px;
  }
  
  .column-gap-xl-60 {
    column-gap: 60px;
  }
  
  .column-gap-xl-65 {
    column-gap: 65px;
  }
  
  .column-gap-xl-70 {
    column-gap: 70px;
  }
  
  .column-gap-xl-75 {
    column-gap: 75px;
  }
  
  .column-gap-xl-80 {
    column-gap: 80px;
  }
  
  .column-gap-xl-85 {
    column-gap: 85px;
  }
  
  .column-gap-xl-90 {
    column-gap: 90px;
  }
  
  .column-gap-xl-95 {
    column-gap: 95px;
  }
  
  .column-gap-xl-100 {
    column-gap: 100px;
  }
}

@media only screen and (min-width:1400px){
  .row-gap-xxl-0{
    row-gap:0;
  }
  
  .row-gap-xxl-5 {
    row-gap: 5px;
  }
  
  .row-gap-xxl-10 {
    row-gap: 10px;
  }
  
  .row-gap-xxl-15 {
    row-gap: 15px;
  }
  
  .row-gap-xxl-20 {
    row-gap: 20px;
  }
  
  .row-gap-xxl-25 {
    row-gap: 25px;
  }
  
  .row-gap-xxl-30 {
    row-gap: 30px;
  }
  
  .row-gap-xxl-35 {
    row-gap: 35px;
  }
  
  .row-gap-xxl-40 {
    row-gap: 40px;
  }
  
  .row-gap-xxl-45 {
    row-gap: 45px;
  }
  
  .row-gap-xxl-50 {
    row-gap: 50px;
  }
  
  .row-gap-xxl-55 {
    row-gap: 55px;
  }
  
  .row-gap-xxl-60 {
    row-gap: 60px;
  }
  
  .row-gap-xxl-65 {
    row-gap: 65px;
  }
  
  .row-gap-xxl-70 {
    row-gap: 70px;
  }
  
  .row-gap-xxl-75 {
    row-gap: 75px;
  }
  
  .row-gap-xxl-80 {
    row-gap: 80px;
  }
  
  .row-gap-xxl-85 {
    row-gap: 85px;
  }
  
  .row-gap-xxl-90 {
    row-gap: 90px;
  }
  
  .row-gap-xxl-95 {
    row-gap: 95px;
  }
  
  .row-gap-xxl-100 {
    row-gap: 100px;
  }

  .column-gap-xxl-0{
    column-gap: 0;
  }
  
  .column-gap-xxl-5 {
    column-gap: 5px;
  }
  
  .column-gap-xxl-10 {
    column-gap: 10px;
  }
  
  .column-gap-xxl-15 {
    column-gap: 15px;
  }
  
  .column-gap-xxl-20 {
    column-gap: 20px;
  }
  
  .column-gap-xxl-25 {
    column-gap: 25px;
  }
  
  .column-gap-xxl-30 {
    column-gap: 30px;
  }
  
  .column-gap-xxl-35 {
    column-gap: 35px;
  }
  
  .column-gap-xxl-40 {
    column-gap: 40px;
  }
  
  .column-gap-xxl-45 {
    column-gap: 45px;
  }
  
  .column-gap-xxl-50 {
    column-gap: 50px;
  }
  
  .column-gap-xxl-55 {
    column-gap: 55px;
  }
  
  .column-gap-xxl-60 {
    column-gap: 60px;
  }
  
  .column-gap-xxl-65 {
    column-gap: 65px;
  }
  
  .column-gap-xxl-70 {
    column-gap: 70px;
  }
  
  .column-gap-xxl-75 {
    column-gap: 75px;
  }
  
  .column-gap-xxl-80 {
    column-gap: 80px;
  }
  
  .column-gap-xxl-85 {
    column-gap: 85px;
  }
  
  .column-gap-xxl-90 {
    column-gap: 90px;
  }
  
  .column-gap-xxl-95 {
    column-gap: 95px;
  }
  
  .column-gap-xxl-100 {
    column-gap: 100px;
  }
}



@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: 767.98px) {
  .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-pt-0 {
    padding-top: 0px !important;
  }

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

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

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

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

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

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

  .mobile-pt-35 {
    padding-top: 35px !important;
  }
  .mobile-pt-40 {
    padding-top: 40px !important;
  }
  .mobile-pt-45 {
    padding-top: 45px !important;
  }
  .mobile-pt-50 {
    padding-top: 50px !important;
  }
  .mobile-pt-55 {
    padding-top: 55px !important;
  }
  .mobile-pt-60 {
    padding-top: 60px !important;
  }
  .mobile-pt-65 {
    padding-top: 65px !important;
  }
  .mobile-pt-70 {
    padding-top: 70px !important;
  }
  .mobile-pt-75 {
    padding-top: 75px !important;
  }
  .mobile-pt-80 {
    padding-top: 80px !important;
  }

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

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

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

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

  .mobile-pb-0 {
    padding-bottom: 0px !important;
  }
  .mobile-pb-5 {
    padding-bottom: 5px !important;
  }
  .mobile-pb-10 {
    padding-bottom: 10px !important;
  }
  .mobile-pb-15 {
    padding-bottom: 15px !important;
  }
  .mobile-pb-20 {
    padding-bottom: 20px !important;
  }
  .mobile-pb-25 {
    padding-bottom: 25px !important;
  }
  .mobile-pb-30 {
    padding-bottom: 30px !important;
  }
  .mobile-pb-35 {
    padding-bottom: 35px !important;
  }
  .mobile-pb-40 {
    padding-bottom: 40px !important;
  }
  .mobile-pb-45 {
    padding-bottom: 45px !important;
  }
  .mobile-pb-50 {
    padding-bottom: 50px !important;
  }
  .mobile-pb-55 {
    padding-bottom: 55px !important;
  }
  .mobile-pb-60 {
    padding-bottom: 60px !important;
  }
  .mobile-pb-65 {
    padding-bottom: 65px !important;
  }
  .mobile-pb-70 {
    padding-bottom: 70px !important;
  }
  .mobile-pb-75 {
    padding-bottom: 75px !important;
  }
  .mobile-pb-80 {
    padding-bottom: 80px !important;
  }
  .mobile-pb-85 {
    padding-bottom: 85px !important;
  }
  .mobile-pb-90 {
    padding-bottom: 90px !important;
  }
  .mobile-pb-95 {
    padding-bottom: 95px !important;
  }
  .mobile-pb-100 {
    padding-bottom: 100px !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0px !important;
  }
  .mobile-mb-5 {
    margin-bottom: 5px !important;
  }
  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }
  .mobile-mb-15 {
    margin-bottom: 15px !important;
  }
  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }
  .mobile-mb-25 {
    margin-bottom: 25px !important;
  }
  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }
  .mobile-mb-35 {
    margin-bottom: 35px !important;
  }
  .mobile-mb-40 {
    margin-bottom: 40px !important;
  }
  .mobile-mb-45 {
    margin-bottom: 45px !important;
  }
  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }
  .mobile-mb-55 {
    margin-bottom: 55px !important;
  }
  .mobile-mb-60 {
    margin-bottom: 60px !important;
  }
  .mobile-mb-65 {
    margin-bottom: 65px !important;
  }
  .mobile-mb-70 {
    margin-bottom: 70px !important;
  }
  .mobile-mb-75 {
    margin-bottom: 75px !important;
  }
  .mobile-mb-80 {
    margin-bottom: 80px !important;
  }
  .mobile-mb-85 {
    margin-bottom: 85px !important;
  }

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

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

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

  .mobile-mt-0 {
    margin-top: 0px !important;
  }
  .mobile-mt-5 {
    margin-top: 5px !important;
  }
  .mobile-mt-10 {
    margin-top: 10px !important;
  }
  .mobile-mt-15 {
    margin-top: 15px !important;
  }
  .mobile-mt-20 {
    margin-top: 20px !important;
  }
  .mobile-mt-25 {
    margin-top: 25px !important;
  }
  .mobile-mt-30 {
    margin-top: 30px !important;
  }
  .mobile-mt-35 {
    margin-top: 35px !important;
  }
  .mobile-mt-40 {
    margin-top: 40px !important;
  }
  .mobile-mt-45 {
    margin-top: 45px !important;
  }
  .mobile-mt-50 {
    margin-top: 50px !important;
  }
  .mobile-mt-55 {
    margin-top: 55px !important;
  }
  .mobile-mt-60 {
    margin-top: 60px !important;
  }
  .mobile-mt-65 {
    margin-top: 65px !important;
  }
  .mobile-mt-70 {
    margin-top: 70px !important;
  }
  .mobile-mt-75 {
    margin-top: 75px !important;
  }
  .mobile-mt-80 {
    margin-top: 80px !important;
  }
  .mobile-mt-85 {
    margin-top: 85px !important;
  }
  .mobile-mt-90 {
    margin-top: 90px !important;
  }
  .mobile-mt-95 {
    margin-top: 95px !important;
  }
  .mobile-mt-100 {
    margin-top: 100px !important;
  }

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

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

  .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-maxh-500 img {
    max-height: 500px;
  }
  .mobile-image-maxh-550 img {
    max-height: 550px;
  }
  .mobile-image-maxh-600 img {
    max-height: 600px;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }

  .mobile-br-none br{
    display: none !important;
  }

  span.break{
    display: inline-block;
  }
}

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

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

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

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

/*404 page*/
.error404 .site-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error404 .ct-no-results {
  padding-top: 100px;
  padding-bottom: 100px;
}

.archive:not(.woocommerce) #main > .ct-container{
  padding-top:var(--gap);
  padding-bottom: var(--gap);
}

/*open search form when you need*/
.error404 .ct-search-form {
  display: none !important;
}
.error404 .ct-no-results .search-form {
  display: none !important;
}

.search.search-no-results #main > .ct-container,
.search.search-results #main > .ct-container{
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

.search.search.search-results .entries .entry-card .ct-media-container{
  aspect-ratio: 300 / 232;
  background-color: #EEF0F2;
  padding:20px;
  border-radius: 20px 20px 0 0;
}

.search.search.search-results .entries .entry-card .ct-media-container img{
  object-fit: contain !important;
}

@media only screen and (max-width: 767.98px) {
  .error404 .ct-no-results {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

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

@media only screen and (min-width: 768px) {
  .col-gap-25 > div:first-child > div {
    padding-right: 25px !important;
  }

  .col-gap-25 > div:last-child > div {
    padding-left: 25px !important;
  }

  .col-gap-30 > div:first-child > div {
    padding-right: 30px !important;
  }

  .col-gap-30 > div:last-child > div {
    padding-left: 30px !important;
  }

  .col-gap-35 > div:first-child > div {
    padding-right: 35px !important;
  }

  .col-gap-35 > div:last-child > div {
    padding-left: 35px !important;
  }

  .col-gap-40 > div:first-child > div {
    padding-right: 40px !important;
  }

  .col-gap-40 > div:last-child > div {
    padding-left: 40px !important;
  }

  .col-gap-45 > div:first-child > div {
    padding-right: 45px !important;
  }

  .col-gap-45 > div:last-child > div {
    padding-left: 45px !important;
  }

  .col-gap-50 > div:first-child > div {
    padding-right: 50px !important;
  }

  .col-gap-50 > div:last-child > div {
    padding-left: 50px !important;
  }

  .col-no-padding > div{
    padding:0 !important;
  }


}


.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

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

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

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

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

  .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;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  #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;
  }
}

/***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;
}

span.wlr-signup-message{
    margin-bottom:25px !important;
}

/***Placeholder customization***/
::-webkit-input-placeholder {
  color: #afafaf !important;
}

::placeholder {
  color: #afafaf !important;
  opacity: 1 !important;
}

.skip-link.show-on-focus {
  display: none;
}
/*** Woocommerce ***/

.woocommerce #main > .ct-container,
.woocommerce #main > .ct-container-full{
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

.ct-breadcrumbs span {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
}

.ct-breadcrumbs span.last-item span{
  font-weight: 400;
}

.woocommerce
  section.related.products
  .woocommerce
  section.up-sells.upsells.products {
  margin-top: var(--gap);
}

.woocommerce .related{
    width:100% !important;
}

.woocommerce section.related.products > h2,
.woocommerce section.up-sells.upsells.products > h2 {
  font-size: 27px;
  text-transform: capitalize;
  font-weight: 600;
}

@media only screen and (max-width: 999.98px) {
  .woocommerce .ct-sidebar > .ct-widget:first-child > .iksm-container.display {
    opacity: 1;
    height: auto;
    visibility: visible;
    border-top: 0;
    border-bottom: 0;
    animation: iks-zoom-in 400ms !important;
    animation-fill-mode: forwards !important;
  }

  .woocommerce .ct-sidebar .ct-widget .widget-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--grey);
    margin-bottom: 0;
  }

  .woocommerce .ct-sidebar .ct-widget .widget-title:after,
  .iksm-term.iksm-term--parent.iksm-term--has-children
    > div
    span.iksm-term__toggle__inner
    i.iks-icon-chevron-4:before,
    .help-center-details-sec .sticky-sidebar .wpb_text_column > div > p:after {
    content: "\f078" !important;
    font-family: var(--font-Awesome);
    font-size: 15px;
    font-weight: 900;
    transition: 500ms ease;
  }

  .woocommerce .ct-sidebar .widget_products .widget-title.minus:after,
  .woocommerce .ct-sidebar .ct-widget .widget-title.minus:after,
  .help-center-details-sec .sticky-sidebar .wpb_text_column > div > p.minus:after {
    transform: rotate(180deg);
  }

  .woocommerce #main > .ct-container > aside {
    display: block !important;
    order: -1;
  }
}

.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: 35px;
  z-index: 2;
  left: 35px;
  background-color: transparent;
  border: 1px solid #fff;
}

.slick-arrow.slick-next {
  left: calc(35px + 75px);
}

.slick-arrow:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  display: flex !important;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  cursor: pointer;
}

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

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

.slick-arrow {
  transition: 0.3s all;
}

.slick-arrow:hover {
  background-color: #fff;
}

.slick-arrow:hover:before {
  color: #2986ad;
}

.blog #main > .ct-container {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

.mobile-menu-inline #menu-language-1:before,
#menu-language:before{
  content:'\f0ac';
  width: 18px;
  height:18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-Awesome);
  font-size: 17px;
  font-weight: 700;
  color:#fff;
  padding-right: 5px;
}

#menu-language{
  align-items: center;
}

#menu-language > li:not(:last-child){
  border-right:1px solid var(--white);
}

#header [data-row*="top"] {
  position: relative;
}

#header [data-row*="top"]:before{
  content:'';
  position: absolute;
  width:280px;
  height:100%;
  display: block !important;
  background-color: var(--primary-color);
  right:-50px;
  top:0;
  transform:skew(-30deg);

}

#header [data-row*="top"] > .ct-container .header-top{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:10px;
  padding:10px 0;
}

#header [data-row*="top"] > .ct-container .header-top p{
  margin-bottom: 0 !important;
}

#header [data-row*="top"] > .ct-container .header-top i{
  color:#fff;
}

/*#header .searchandfilter > div > ul > li:nth-child(1) input{*/
/*  background-color: rgba(255,255,255,0.5);*/
/*}*/

#header [data-row="middle"] > .ct-container > [data-column="end"] > [data-items="primary"] {
    gap:10px;
}

.menu-cat-row .category-menu{
    display:flex;
    flex-direction:row;
    column-gap:35px;
    justify-content:space-between;
}

.menu-cat-row .category-menu *{
    color:#fff;
    font-size:16px;
}

.menu-cat-row .category-menu > div{
    flex:0 0 45%;
}

.menu-cat-row .category-menu > div ul{
    padding-top:10px;
    margin-top:10px;
    border-top:1px solid #fff;
    column-count:2;
}

.menu-cat-row .category-menu > div ul li{
    margin-bottom:10px;
}

.ct-header-account {
  padding:12px 25px;
  background-color: var(--primary-color);
  border-radius: 15px;
  transition: 0.5s all;
  border:1px solid var(--primary-color);
}

.ct-header-account:hover{
    border-color:var(--color-2);
}

.seller-button.ct-button {
    background-color:rgba(255,255,255,0.15);
    backdrop-filter: blur(6.5px);
    border:1px solid #fff;
    border-radius:15px;
    padding:12px 25px;
}

.ct-header-account:hover{
  background-color: #00C42B;
}

.search .page-description{
    display:block !important;
}

.search .hero-section{
    width:100% !important;
}

.mega-indicator:after{
  content:'\f078' !important;
  display: block !important;
  font-family: var(--font-Awesome) !important;
  font-weight: 700 !important;
  font-size: 12px;
}

#mega-menu-menu_2 > li:not(:last-child) > a{
  margin-right: 40px !important;
}

#mega-menu-menu_2 .mega-menu-flyout .mega-sub-menu li > a{
  text-align: center !important;
}

#mega-menu-menu_2 .mega-menu-flyout .mega-sub-menu {
  left:50% !important;
  right:unset !important;
  transform:translate(-50%, 10px) !important;
}

#mega-menu-menu_2 > li:first-child > a{
  display: flex !important;
  align-items: center;
  gap:10px;
}

#mega-menu-menu_2 > li:first-child > a:before{
  all:unset;
  display: flex !important;
  align-items: center;
  justify-content: center;
  content:'\f0c9';
  width: 20px !important;
  height: 20px !important;
  color: var(--white) !important;
  font-family: var(--font-Awesome) !important;
  font-size: 20px !important; 
  font-weight: 700 !important;
}

#mega-menu-menu_2 > li:first-child .mega-indicator{
  display: none !important;
}

.brand-thumbnails {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap:15px;
}

.brands-row .brand-thumbnails{
  gap:50px 15px;
}

.brand-thumbnails br{
  display: none !important;
}

.brand-thumbnails:before,
.brand-thumbnails:after{
  display: none !important;
}

.brand-thumbnails > li{
  width: 100% !important;
  text-align: center !important;
  margin:0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mega-menu-menu_2 .brand-thumbnails > li{
  padding:20px;
  background-color: var(--white);
  border-radius: 10px;
}

#mega-menu-menu_2 .brand-thumbnails img{
  max-height: 100px !important;
  width: auto;
}

.max-menu-tab-list{
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
  gap:15px 100px;
}

.max-menu-tab-list > li > a{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap:15px;
  color:var(--white);
  font-size: 16px;
}

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

.relative{
  position: relative !important;
}

.o-visible{
  overflow: visible !important;
}

.icons img{
  max-height:50px;
  width: auto;
}

.whatsapp{
  background-color: #00d520;
  gap: 15px;
  min-height: unset;
  padding: 10px 25px;
  font-weight: 400;
  border-radius: 0 !important;
  border: 1px solid #00d520;
  transition: 0.5s all;
}

.whatsapp:hover{
  background-color: #fff;
  border-color: #00d520;
  color: #00d520;
}

.banner-title{
  font-size: 45px !important;
}

.banner-row .ct-breadcrumbs span,
.banner-row .ct-breadcrumbs span.last-item span{
  color:#fff;
  font-weight: 400;
  font-size: 16px;
}

.slider-background{
    position:absolute !important;
    width:100%;
    height:100%;
    top:0;
    left:0 !important;
}

.slider-background .slick-dots{
    bottom:125px;
    position:absolute;
    left:115px;
    z-index:20;
    padding-left:0;
    display:flex;
    gap:15px;
}

.slider-background .slick-dots > li {
    width:8px;
    height:8px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.2);
    font-size:0;
    cursor:pointer;
}

.slider-background .slick-dots > li.slick-active{
    background-color:#fff;
}

.slider-background .wpb_single_image{
    margin-bottom:0 !important;
}

.home-banner-sec .slider-background .wpb_single_image{
    position:relative;
}

.home-banner-sec .slider-background .wpb_single_image:before{
  content:'';
  position:absolute;
  display:block !important;
  background:linear-gradient(0deg, rgba(0,0,0,0.05)0%, rgba(0.0,0,0)100%);
  z-index: 0;
  width:100%;
  height:100%;
  inset:0;
}

.wc-block-product-filter-checkbox-list__item.has-depth-2{
    padding-left:15px;
}

.home-banner-sec.background-layer:after{
  content:'';
  position: absolute;
  width: 100% !important;
  height:100% !important;
  inset: 0;
  display: block !important;
  z-index: 0;
  background:linear-gradient(90deg,rgba(39,39,39,0.95)10%, rgba(39,39,39,0)71%);
  visibility: visible !important;
}

.home-banner-sec{
    padding-bottom:calc(var(--gap) * 2) !important;
}

.home-banner-row{
  position: relative;
  z-index: 2;
  padding-top:calc(var(--gap) * 2);
}

.home-banner-row .vc_inner.vc_row > div > div > div{
    display:flex;
    flex-direction:row;
    gap:20px;
}

.home-banner-row .vc_inner.vc_row > div > div > div > div{
    margin-bottom:0 !important;
}

.home-banner-row .vc_inner.vc_row > div > div > div > div:first-child .vc_general.vc_btn3{
    background-color:var(--primary-color) !important;
    color:#fff !important;
    border-color:var(--primary-color) !important;
}

.home-banner-row .vc_inner.vc_row > div > div > div > div:last-child .vc_general.vc_btn3{
    background-color:#B70002 !important;
    color:#fff !important;
    border-color:#B70002 !important;
}

.home-banner-row .vc_inner.vc_row > div > div > div > div:first-child .vc_general.vc_btn3:hover{
    background-color:#1D265B !important;
    border-color:#1D265B !important;
}

.home-banner-row .vc_inner.vc_row > div > div > div > div:last-child .vc_general.vc_btn3:hover{
    background-color:#910A0B !important;
    border-color:#910A0B !important;
}

.slider-background > div,
.slider-background > div > div,
.slider-background > div > div > div,
.slider-background > div > div > div > div,
.slider-background > div > div > div > div > div,
.slider-background > div > div > div > div > div > div,
.slider-background > div > div > div > div > div > div > figure,
.slider-background > div > div > div > div > div > div > figure > div,
.slider-background > div > div > div > div > div > div > figure > div > img{
    height:100%;
}

.searchandfilter label{
  color:#fff;
  font-size: 16px;
  display: flex !important;
  align-items: center;
  gap:5px;
}

.searchandfilter > div > ul{
  display: flex !important;
  align-items: center;
  margin-bottom: 0 !important;
  flex-wrap: wrap;
  row-gap:20px;
  position: relative;
}

.searchandfilter ul{
  padding-left: 0;
}

.cat-item input{
  width: 16px;
  height:16px;
}

.searchandfilter > div > ul > li:nth-child(2){
  order:1;
  flex:0 0 100%;
}

.searchandfilter > div > ul > li:nth-child(1){
  flex:0 0 100%;
}

.searchandfilter > div > ul > li:nth-child(1) input{
  min-height: 50px !important;
  background-color: var(--white);
  border-radius: 20px;
  padding-left: 15px;
}

.searchandfilter > div > ul > li:nth-child(1) input::placeholder{
  color:var(--secondary-color) !important;
  font-weight: 300;
}

.searchandfilter > div > ul > li:nth-child(3),
#header .searchandfilter > div > ul > li:nth-child(2){
  position: absolute;
  top:5px;
  right:15px;
}

.searchandfilter > div > ul > li:nth-child(3):before,
#header .searchandfilter > div > ul > li:nth-child(2):before{
  content:'\f002';
  position: absolute;
  width: 14px;
  height:14px;
  top:50%;
  right:25px;
  transform:translate(0, -50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font-Awesome);
  font-size: 14px;
  font-weight: 700;
  color:var(--white);
  z-index: 1;
}

.searchandfilter > div > ul > li:nth-child(3) input,
#header .searchandfilter > div > ul > li:nth-child(2) input{
  border-radius: 15px;
  padding:5px 48px 5px 20px;
}

.searchandfilter > div > ul > li:nth-child(2) > ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:wrap;
  row-gap:10px;
}

.home-intro-icon-row > div:hover .wpb_single_image > figure{
  background-color: var(--white); 
}

.home-intro-icon-row > div:hover .wpb_single_image > figure img{
  filter: brightness(0) saturate(100%) invert(18%) sepia(51%) saturate(1886%) hue-rotate(213deg) brightness(97%) contrast(97%);
}

.home-intro-icon-row > div > div > div{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap:10px;
}

.home-intro-icon-row .wpb_text_column p{
  margin-bottom: 10px;
}

.home-intro-icon-row .wpb_text_column strong{
  font-size: 18px;
}

.home-intro-icon-row .icons img{
  max-height: 30px;
  transition:0.5s all;
}

.home-intro-icon-row .icons > figure{
  width: 70px;
  height:70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px;
  border:1px solid var(--white);
  border-radius: 50%;
  transition:0.5s all;
}

.home-intro-icon-row.background-layer:before{
  inset: unset;
  bottom:calc(100% - 35px);
  left: 0;
  display: block !important;  
  background:linear-gradient(0deg, rgba(39,39,39,1)20%,rgba(39,39,39,0.25)61%,rgba(39,39,39,0)100%);
  z-index: 0;
}

.home-intro-icon-row {
  overflow: visible !important;
}

.home-shop-by-cat-sec.background-layer:before{
    background: linear-gradient(180deg, #282828 0%, #787878 100%);
}

/*.home-shop-by-cat-sec:after{*/
/*    content:'';*/
/*    position:absolute;*/
/*    bottom:calc(100% - 35px);*/
/*    width:100%;*/
/*    height:150px;*/
/*    left: 0;*/
/*    display: block !important;  */
/*    background:linear-gradient(0deg, rgba(39,39,39,1)20%,rgba(39,39,39,0.25)61%,rgba(39,39,39,0)100%);*/
/*    z-index: 0;*/
/*}*/

.home-offer-row {
    margin:0 15px !important;
    display:flex;
    flex-direction:row;
    gap:35px 20px;
    flex-wrap:nowrap !important;
}

.home-offer-row > div > div{
    padding:70px 35px !important;
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.home-offer-row > div > div:before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    inset:0;
    display:block !important;
    background:linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6)100%);
}

.home-offer-row > div > div > div{
    position:relative;
}

.home-offer-row .custom-button .vc_general.vc_btn3 {
    background-color:rgba(39, 39, 39, 0.5) !important;
    backdrop-filter:blur(11px);
    border:1px solid #fff !important;
    color:#fff !important;
}

.home-shop-by-cat-title .custom-button .vc_general.vc_btn3{
  border-color: var(--white) !important;
  color:var(--white) !important;
}

.home-shop-by-cat-row ul.products{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 50px;
  row-gap:50px;
}

.home-shop-by-cat-row ul.products li.product{
  background-color: transparent;
  box-shadow: unset;
}

.home-shop-by-cat-row ul.products li.product .ct-media-container img{
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  max-height: 250px;
}

.home-shop-by-cat-row ul.products li.product .ct-media-container{
  border-radius: 35px !important;
  aspect-ratio: 1/1 !important;
  padding:0;
}

.home-shop-by-cat-row ul.products li.product .woocommerce-loop-category__title{
  text-align: center;
  color:#fff;
  font-size: 20px;
}

.home-shop-by-cat-row ul.products li.product .woocommerce-loop-product__link{
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap:10px;
}

.home-shop-by-cat-row mark.count{
  font-weight: 300;
  display: block !important;
  font-size: 16px;
  width: fit-content;
  margin:auto;
}

.home-shop-by-cat-row mark.count:after{
  content:' items';
}

.home-shop-by-cat-2-row .vc_inner.vc_row .custom-button .vc_general.vc_btn3 {
  justify-content: flex-end;
  width: 100%;
  gap:5px;
  font-size: 14px !important;
  color:var(--primary-color) !important;
  font-weight: 500 !important;
}

.home-shop-by-cat-2-row .vc_inner.vc_row .custom-button .vc_general.vc_btn3:after{
  content:'>';
}

.home-grow-row > div > div > div{
  padding:50px 35px;
  border:1px solid rgba(146, 146, 146, 0.1);
  background-color: rgba(146, 146, 146, 0.3);
  backdrop-filter: blur(15px);
  height: 100%;
  border-radius: 20px;
}

.home-grow-row .custom-button .vc_general.vc_btn3{
  background-color: rgba(39,39,39,0.5) !important;
  backdrop-filter: blur(11px);
  border-color: var(--white) !important;
  color:var(--white) !important;
}

.home-streamline-row .tab:not(.active) .inner-content p{
  opacity: 0;
  height:0;
}

.home-streamline-row .wpb_single_image{
  clip-path: inset(100%);
  transition: 1.5s;
}

.home-streamline-row .wpb_single_image.active{
  clip-path: inset(0);
}

.home-streamline-row .tab-list{
  padding-left: 0;
}

.home-streamline-row .tab-list > li:not(:last-child){
  padding-bottom: 50px;
  position: relative;
}

.home-streamline-row .tab-list > li:not(:last-child) .tab-image-wrapper{
  position: relative;
}

.home-streamline-row .tab-list > li:not(:last-child) .tab-image-wrapper:before {
  content: '';
  position: absolute;
  height: 150%;
  width: 1px;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: block !important;
  background-color: #9E9E9E;
  z-index: -1;
}

.home-streamline-row .tab-list > li{
  list-style-type: none;
  display: flex;
  gap:15px;
  cursor: pointer;
  align-items: center;
  transition: 0.5s all;
}

.home-streamline-row .tab-list img{
  max-height: 25px;
  width: auto;
}

.home-streamline-row .tab-list > li p{
  margin-bottom: 0 !important;
  color:#363636;
}

.tab-image-wrapper{
  width: 60px;
  height:60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  border:1px solid #9E9E9E;
  aspect-ratio: 1/1;
}

.home-streamline-row .tab-list > li.active .tab-image-wrapper{
  background-color:var(--color-5);
  border-color: var(--color-5);
}

.home-streamline-row .tab-list > li.active .tab-image-wrapper img{
  filter: brightness(0) saturate(100%) invert(99%) sepia(15%) saturate(225%) hue-rotate(234deg) brightness(115%) contrast(100%);
}

.home-streamline-row .tab-list > li h3{
  color:#9e9e9e;
}

.home-streamline-row .tab-list > li.active h3{
  color:var(--secondary-color);
  margin-bottom: 10px !important;
}

.home-streamline-row .tab-list > li.active{
  align-items: flex-start;
}

.home-streamline-row .tab-list h3{
  font-size: 20px;
  font-weight: 400;
}

.cta-sec {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-sec.background-layer:before{
  background-color: rgba(39, 39, 39, 0.2);
}

.cta-row{
  position: relative;
}

.cta-row .custom-button .vc_general.vc_btn3{
  color:var(--white) !important;
  border-color: var(--white) !important;
}

.cta-row .custom-button:first-child .vc_general.vc_btn3{
  background-color: var(--primary-color) !important;
  border-color:var(--primary-color) !important;
}

.cta-row .custom-button:last-child .vc_general.vc_btn3{
  background-color: rgba(39,39,39,0.5) !important;
  backdrop-filter: blur(11px);
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.cta-video{
  position: absolute;
  width: 100%;
  top:0;
  left: 0;
  z-index: -1;
  height:100%;
}

.cta-video video{
  display: block !important;
  width: 100%;
  height:100%;
  object-fit: cover;
}

.cta-inner-row > div > div > div{
  display: flex;
  justify-content: center;
  gap:20px;
  flex-wrap: wrap;
}

.about-commitment-row .vc_inner.vc_row > div > div > div{
  display: flex;
  align-items: center;
  gap:15px;
}

.about-commitment-row .icons img{
  max-height: 30px;
}

.industry-served-row{
  margin:0 !important;
  display: flex;
  flex-wrap: nowrap !important;
  gap:35px 20px;
}

.industry-served-row > div > div{
  position: relative;
  min-height: 500px;
  padding:50px 15px !important;
  border-radius: 20px;
  height:100%;
  overflow: hidden;
}

.industry-served-row > div > div:before{
  content:'';
  position: absolute;
  width: 100%;
  height:100%;
  inset: 0;
  display: block !important;
  background: linear-gradient(180deg, rgba(0,0,0,0)0%, rgba(0,0,0,1)100%);
  z-index: 0;
}

.industry-served-row > div > div > div{
  position: relative;
  z-index: 5;
}

.help-center-row .custom-button .vc_general.vc_btn3{
  line-height: 1.3 !important;
}

.help-center-row .icons > figure{
  height:60px;
  width:60px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.help-center-row .icons img{
  max-height: 30px;
}

.help-center-row > div > div > div{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.help-center-row > div > div > div > .wpb_text_column{
  flex:1;
}

.help-center-row > div > div > div > .wpb_text_column ul{
  padding-left: 10px;
}

.help-center-row > div > div > div > .wpb_text_column li{
  padding-left: 10px;
}

.help-center-row > div > div > div > .wpb_text_column li::marker{
  content:">";
}

.help-center-row > div > div > div > .wpb_text_column li:not(:last-child){
  margin-bottom: 15px;
}

.help-center-details-row .iks-icon-chevron-1:before{
  rotate: 270deg;
}

.help-center-details-row .iksm-term--expanded .iks-icon-chevron-1:before{
  rotate:0deg;
} 

.help-center-details-row .iksm-terms-tree--level-1 > div > .iksm-term--parent > div > a {
  pointer-events: none;
}

.help-center-details-row .iksm-terms-tree--level-1 > div > .iksm-term--parent > .iksm-term__inner{
  border-bottom:1px solid #9E9E9E;
}

.help-center-details-row > div:last-child > div > div > div:last-child{
  margin-bottom: 0 !important;
}

.help-center-details-row .wpb_text_column li{
  margin-bottom: 5px;
}

.help-center-details-sec .sticky-sidebar .wpb_text_column > div > p{
  display: none;
}


.grow-row .icons img{
  max-height: 35px;
}

.grow-row .vc_inner.vc_row > div:first-child > div > div{
  background-color: var(--primary-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:35px 15px;
}

.grow-video-sec.background-layer:before{
  z-index: 1;
}

.grow-video-row{
  position: absolute;
  width: 100%;
  top:0;
  left: 0;
  z-index: 0;
  height:100%;
}

.grow-video-desc{
  position: relative;
  z-index: 2;
  min-height: 400px;
}

.grow-video-desc .custom-button:first-child .vc_general.vc_btn3{
  background-color: var(--color-2) !important;
  border-color: var(--color-2) !important;
  color:var(--white) !important;
  border-radius: 15px !important;
}

.grow-video-desc .custom-button:first-child .vc_general.vc_btn3:hover{
  background-color:#00C42B !important;
}

.grow-video-desc .custom-button:last-child .vc_general.vc_btn3{
  background-color: rgba(39,39,39,0.5) !important;
  backdrop-filter: blur(11px);
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.grow-video-row video{
  width: 100%;
  display: block !important;
  height:100%;
  object-fit: cover;
}

.grow-video-buttons > div > div > div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap:20px 25px;
}

.page-id-389 .cta-sec{
  display: none;
}

.cta-sec{
    background-image:url(./images/home-cta-image-new.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}

.wpb_text_column a{
  text-decoration: none;
}

.customer-care-row .vc_tta-panel-body{
  padding:50px 0 0 !important;
  overflow: visible !important;
}

.customer-care-row .vc_tta-panels{
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.customer-care-row .vc_tta-tabs-list{
  display: flex !important;
}

.customer-care-row .vc_tta-tabs-list > li{
  flex:1;
}

.customer-care-row .vc_tta-tabs-list > li > a{
  text-align: center;
  color:var(--white) !important;
  background-color:rgba(39,39,39,0.5) !important;
  height:100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.customer-care-row .vc_inner.vc_row .wpb_text_column *{
  color:var(--secondary-color) !important;
}

.resources-row .entry-meta{
  padding-left: 0;
}

.resources-row .entry-card{
  padding-bottom: 0 !important;
}

.resources-row .entries{
  gap:50px;
}

.resources-row .entries > .entry-card .entry-excerpt{
  text-align: justify;
}

.resources-row .ct-media-container,
.resources-row .entry-title,
.resources-row .entry-meta,
.resources-row .entry-excerpt{
  margin-bottom: 15px;
}

.resources-row .entry-card:not(:nth-child(1)) .resources-content {
  flex:1;
  display: flex;
  flex-direction: column;
}

.resources-row .entry-card:not(:nth-child(1)) .entry-excerpt{
  flex:1;
}

.resources-row .entry-button{
  padding:0 !important;
  min-height: unset !important;
  background-color: unset !important;
  color:var(--primary-color);
  font-weight: 500;
}

.resources-row .entry-button:hover{
  color:var(--primary-color);
}

.entry-button:after{
  content:'>';
}

.member-row .vc_inner.vc_row > div > div > div {
  padding:35px;
}

.member-row > div > div > div{
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}

.member-row > div > div > div > p{
  padding:15px 25px;
  background-color: var(--secondary-color);
}

.member-row .custom-button .vc_general.vc_btn3{
  padding:20px 35px !important;
  font-weight: 700;
  background-color: var(--primary-color) !important;
  color:var(--white) !important;
  border-radius: 0 !important;
  font-size:16px !important;
}

.perks-row .vc_tta-panel-body,
.perks-row .vc_tta-panel-title > a{
  padding: 30px 20px 30px 100px !important;
}

.perks-row .vc_tta-panel-heading,
.perks-row .vc_tta-panel-heading{
  margin: 0 !important;
}

.perks-row .vc_tta-panels > div:not(:last-child){
  margin-bottom: 20px;
}

.perks-row .vc_tta-panel-body{
  padding-top: 0 !important;
}

.perks-row .vc_tta-panel-title > a{
  position: relative;
  min-height: 80px;
  display: flex !important;
  align-items: center;
  font-weight: 600 !important;
  color: var(--secondary-color) !important;
}

.perks-row .vc_tta-container .wpb_text_column{
  color:var(--secondary-color) !important;
}

.perks-row .vc_tta-panel{
  border-radius: 15px !important;
  overflow: hidden !important;
}

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

.perks-row .vc_tta-panel-title > a:before{
  content:'';
  position: absolute;
  width: 25px;
  height:100%;
  top:50%;
  left:40px;
  transform:translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.perks-row .vc_tta-panel-title > a:after{
  content:'';
  position: absolute;
  width: 50px;
  height:50px;
  aspect-ratio: 1/1;
  top:50%;
  left:27.5px;
  transform:translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border:1px solid var(--secondary-color);
  border-radius: 50%;
}

.perks-row .vc_tta-panel:nth-child(1) .vc_tta-panel-title > a:before{
  background-image: url(./images/perks-icon-1.png);
}

.perks-row .vc_tta-panel:nth-child(2) .vc_tta-panel-title > a:before{
  background-image: url(./images/perks-icon-2.png);
}

.perks-row .vc_tta-panel:nth-child(3) .vc_tta-panel-title > a:before{
  background-image: url(./images/perks-icon-3.png);
}

.perks-row .vc_tta-panel:nth-child(4) .vc_tta-panel-title > a:before{
  background-image: url(./images/perks-icon-4.png);
}

.perks-row .vc_tta-panel:nth-child(5) .vc_tta-panel-title > a:before{
  background-image: url(./images/perks-icon-5.png);
}

.perks-row .vc_tta-panel.vc_active .vc_tta-panel-title > a{
  color:var(--color-5) !important;
}

.perks-row .vc_tta-panel.vc_active .vc_tta-panel-title > a:before{
  filter: brightness(0) saturate(100%) invert(13%) sepia(87%) saturate(4457%) hue-rotate(351deg) brightness(77%) contrast(115%);
}

.perks-row .vc_tta-panel.vc_active .vc_tta-panel-title > a:after{
  border-color: var(--color-5);
}

.perks-row .vc_tta-panel-heading,
.perks-row .vc_tta-panel-body{
  background-color:#fafafa !important;
}

.career-bg-row {
  margin:0 !important;
  overflow: hidden;
  border-radius: 20px;
}

.career-form-row .form > div{
  margin-bottom: 20px;
}

.career-form-row #send input{
  background-color: var(--color-2);
  padding:16px 42px;
  min-height: unset;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
}

.custom-file-upload {
  cursor: pointer;
  border-radius: 20px;
  padding:10px 50px 10px 25px;
  font-weight: 400 !important;
  margin-bottom: 0;
  background-color: var(--primary-color);
  position: relative;
  color:#fff;
  font-size: 14px !important;
}

.custom-file-upload::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("./images/upload-icon.png");
  width: 15px;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: block !important;
  right: 15px;
}

#file {
  display: flex;
  align-items: center;
}

input[type="file"] {
  display: none;
}

.wpcf7-list-item-label{
  color:#afafaf;
  font-weight: 400;
  font-size: 14px;
}

#tnc .wpcf7-list-item > label{
  display: flex !important;
  align-items: center;
  gap:5px;
}

.employee-benefit-row .icons img{
  max-height: 40px;
}

.contact-row .logo img{
    max-height:80px;
    width:auto;
}

.contact-row .social-icons {
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-row-info strong{
    font-size:18px;
}

.contact-row > div:last-child > div > div{
    padding:50px 35px;
    border-radius:20px;
    box-shadow:0 0 40px 0 rgba(0,0,0,0.1);
}

.contact-row input::placeholder,
.contact-row textarea::placeholder{
    color:#272727 !important;
    font-weight:600 !important;
    opacity:1 !important;
}

.page-id-861 .cta-sec{
    display:none;
}

/*** Woocommerce ***/

.archive-breadcrumbs{
  margin-bottom: 20px;
}

.archive-breadcrumbs span{
  color:#9e9e9e;
}

.archive-breadcrumbs span.last-item span{
  font-weight: 600;
}

.woocommerce.archive .ct-sidebar .widget-title{
  padding:15px 25px;
  background-color: var(--secondary-color);
  color:var(--white);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px !important;
}

.woocommerce.archive .widget_is_search{
  margin-bottom: 20px !important;
}
 
.is-search-form .is-search-submit .is-search-icon,
.is-search-form > label > input[type="search"]{
  background-color: transparent !important;
  border: 0 !important;
}

.is-search-form > label > input[type="search"]::placeholder{
  color:#6f6f6f !important;
  font-size: 16px;
}

.is-search-form.is-form-style {
  border:1px solid #d1d1d1;
  padding:5px 10px !important;
}

.is-search-form.is-form-style svg{
  filter: brightness(0) saturate(100%) invert(67%) sepia(10%) saturate(17%) hue-rotate(314deg) brightness(88%) contrast(69%);
}

.wpfPriceFilterRange .ui-slider-handle{
  border-radius: 50% !important;
}

.wpfFilterWrapper .wpfFilterContent .wpfPriceFilterRange{
  background-color: #ebebeb !important;
  border:0 !important;
  border-radius: 25px !important;
}

.wpfFilterWrapper{
  padding-left:0 !important;
  padding-right: 0 !important;
}

.wpfFilterWrapper .ui-slider-range{
  background-color: var(--primary-color) !important;
}

.wpfFilterWrapper .wpfCheckboxHier select{
  border-bottom:0  !important;
  color:#848484 !important;
}

.wpfTitleToggle{
  display: none !important;
}

.wpfFilterTitle {
  pointer-events: none !important;
}

.wpfFilterTitle > div{
  color:#848484 !important;
  font-weight: 400 !important;
  cursor: none !important;
}

.wpfFilterWrapper .wpfCheckboxHier{
  border:1px solid #d1d1d1 !important;
  padding:10px 0 10px 10px !important;
}

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

.wpfFilterButtons{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap:15px;
}

.wpfFilterButtons button{
  margin: 0 !important;
  background-color: transparent !important;
  border:2px solid var(--primary-color) !important;
  border-radius: 0 !important;
  text-transform:capitalize !important;
}

.wpfClearButton{
    color:var(--primary-color) !important;
}

.wpfPriceRangeField{
  width: max-content !important;
}

.wpfFilterButtons:after{
  display: none !important;
}

.wpfFilterButtons .wpfFilterButton{
  background-color: var(--primary-color) !important;
  color:var(--white) !important;
}

.single-product .ct-product-gallery-container .flexy .ct-media-container{
  padding:30px;
  background-color: #EEF0F2;
  border-radius: 20px !important;
  overflow: hidden;
  max-height:600px;
  aspect-ratio:1/1;
  justify-content:center;
  align-items:center;
}

.single-product .ct-product-gallery-container .flexy-pills .ct-media-container{
    padding:10px;
}

.single-product .ct-media-container{
    align-items:center;
    justify-content:center;
}

.single-product .ct-media-container img{
  object-fit: contain !important;
}

.single-product .related .ct-media-container img{
    max-height:200px;
}

.single-product .ct-product-gallery-container .ct-media-container img{
    max-height:400px;
    width:auto;
}

.product-brand-logo img{
  max-width: 100px !important;
  height: auto;
  margin:unset !important;
}

.single-product .summary .ct-separator,
.archive-breadcrumbs .ct-separator{
  font-size: 0;
}

.single-product .summary .ct-separator:after,
.archive-breadcrumbs .ct-separator:after{
  content:'>';
  font-size: 14px;
}

.single-product .summary .ct-breadcrumbs span.last-item span{
  font-weight: 600 !important;
}

.single-product .ct-payment-methods{
  padding: 0 !important;
  border:0 !important;
  justify-content: flex-start;
}

.single-product .ct-payment-methods legend{
  margin: unset !important;
  padding-left: 0 !important;
  padding-bottom: 15px;
  color:#9e9e9e;
  font-weight: 400 !important;
}

.single-product .ct-cart-actions {
  row-gap: 20px;
  flex-direction:column;
}

.single-product .ct-cart-actions .single_add_to_cart_button{
  flex:unset;
}

.single-product .ct-cart-actions > button:nth-child(2){
  background-color: transparent !important;
  color:var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 30px;
}

.single-product .ct-cart-actions > button:nth-child(2):hover {
  background-color:var(--primary-color) !important;
  border-color: var(--primary-color);
}

.single-product .ct-cart-actions > .quantity{
  order:0;
}

.single-product .ct-cart-actions > .single_add_to_cart_button.added{
  order:1;
}

.single-product .ct-cart-actions > .added_to_cart{
  order:2;
  border-radius: 30px;
}

.single-product .ct-cart-actions > .wpcbn-btn {
  order:3;
  border-radius: 30px;
}

.single-product .ct-cart-actions > .single_add_to_cart_button,
.single-product .ct-cart-actions > .added_to_cart,
.single-product .ct-cart-actions > .wpcbn-btn{
  text-transform:capitalize !important;
}


.product-single-row .vc_tta-panel-heading a{
  padding:20px 0 !important;
}

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

.product-single-row .vc_tta-panel-body{
  padding:0px 0 20px !important;
} 

.product-single-row .vc_tta-panel-heading,
.product-single-row .vc_tta-panel-body{
  background-color: transparent !important;
}

.single-product .woocommerce-tabs .tabs{
  display: none !important;
}

.woocommerce-tabs .wpb_text_column h2{
    font-size:25px;
    font-weight:500;
}

.product-single-row .vc_tta-panel-heading a{
  color:var(--secondary-color) !important;
  font-weight: 500 !important;
  font-size: 23px;
}

.product-single-row .vc_tta-panels > div{
  border-top: 1px solid #c7c7c7;
}

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

.ct-product-add-to-cart .ct-module-title{
  font-size: 16px !important;
  font-weight: 400 !important;
}

.single-product .summary input.input-text{
  border-radius: 30px !important;
}

.product-single-row .wpb_text_column {
  color:#848484 !important;
}

.product-single-row .wpb_text_column strong{
  font-size: 18px;
}

.product-hero-sec{
  display: flex;
  align-items: center;
  /*background-image: url(./images/product-background.png);*/
  /*background-size: cover;*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/
  padding:100px;
}

.product-hero-row h1,
.product-hero-row span{
  color:var(--white);
}

.woocommerce-cart #main > .ct-container-full,
.woocommerce-checkout #main > .ct-container-full,
.woocommerce-account #main > .ct-container-full{
  padding:100px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce{
  width: 100%;
}

.brands-row .brand-thumbnails {
  padding-left: 0 !important;
  padding:10px !important;
}

.brands-row .brand-thumbnails > .first{
    box-shadow:0 0 4px 0 rgba(0,0,0,0.15);
}

.brands-row .brand-thumbnails li{
  text-align: center;
}

.brands-row .brand-thumbnails img{
  max-width: 150px;
}

.woocommerce.archive .ct-media-container,
ul.products li.product .ct-media-container{
  padding:20px;
  background-color: #EEF0F2;
  aspect-ratio: 300 / 232 !important;
}

.woocommerce.archive .ct-media-container img,
ul.products li.product .ct-media-container img{
  object-fit: contain;
}

.woocommerce.archive li.product,
ul.products li.product{
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:  0 0 6px 0 rgba(0, 0, 0, 0.15);
}

.woocommerce.archive li.product .ct-woo-card-actions,
ul.products li.product .ct-woo-card-actions{
  padding-bottom: 20px  !important;
}

.woocommerce.archive li.product .entry-meta,
.woocommerce.archive li.product .woocommerce-loop-product__title,
.woocommerce.archive li.product .ct-woo-card-actions,
.woocommerce.archive li.product .price,
ul.products  li.product .entry-meta,
ul.products  li.product .woocommerce-loop-product__title,
ul.products  li.product .ct-woo-card-actions,
ul.products  li.product .price{
  padding:0 20px;
}

.woocommerce.archive .ct-woo-card-actions a,
.search.search.search-results .entries .entry-card .entry-button,
ul.products  li.product .ct-woo-card-actions a{
  background-color: transparent !important;
  color:var(--primary-color);
  padding:0 !important;
  min-height: unset !important;
  gap:5px;
  font-size: 14px;
}

.woocommerce.archive .ct-woo-card-actions a:after,
.search.search.search-results .entries .entry-card .entry-button:after,
ul.products  li.product .ct-woo-card-actions a:after{
  content:'>';
}

.woocommerce-mini-cart-item .ct-media-container {
  padding:0 !important;
  aspect-ratio: unset !important;
}

.related .ct-module-title{
  text-align: center;
}

.single-product .related{
  margin-top: 100px !important;
}

.woocommerce-product-attributes{
  display: none;
}

.brand-archive-logo{
  margin-bottom: 20px;
}

.form,
.form > div{
    margin-bottom:15px;
}

table.shop_table .woocommerce-orders-table__row th{
    vertical-align:middle !important;
}

.single-product form.cart {
    display:flex;
    flex-direction:column;
}

.single-product form.cart .ct-cart-actions{
    order:-1;
    margin-bottom:10px;
}

.single-product form.cart textarea{
    height:120px !important;
}

.woocommerce-cart .product-thumbnail img{
    object-fit:contain;
}

/***footer***/

#footer [data-row*="middle"] > .ct-container > div:first-child img{
  max-width: 220px !important;
}

#footer .widget-title{
  color:var(--primary-color);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.social-icons{
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap:10px;
}

.social-icons i {
  width: 35px;
  height:35px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #333;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.5s all;
}

.social-icons a:hover i{
  background-color: var(--secondary-color);
  color:var(--white);
}

#footer .gallery-item img{
  height: auto;
  max-width: 35px !important;
}

#footer .gallery{
  display: flex !important;
  align-items: center;
}

@media only screen and (min-width:768px){
  .industry-served-row h3{
    writing-mode:sideways-lr;
    width: 100%;
    transition: 0.5s all;
    padding-right: 15px;
    rotate: -180deg;
  } 

  .industry-served-row .wpb_text_column{
    height:0;
    opacity: 0;
    transition: height 0.01s ease, opacity 1s ease;
  }
  
  .industry-served-row > div.active h3{
    writing-mode: unset;
    padding-right: 0;
    rotate: 0deg;
  }
  
  .industry-served-row > div.active .wpb_text_column{
    height: auto;
    opacity: 1;
  }

  .industry-served-row > div {
    flex: 1;
    transition:0.5s all;
  }

  .industry-served-row > div.active{
    flex-grow: 3;
    cursor:zoom-in;
  }

  .resources-row .entries > .entry-card:nth-child(1) {
    grid-column: span 3;
  }

  .resources-row .entries > .entry-card:nth-child(1){
    display: flex;
    flex-direction: row-reverse;
    column-gap: 50px;
  }
  
  .resources-row .entries > .entry-card:nth-child(1) > .ct-media-container{
    flex: 0 0 60%;
    aspect-ratio: 2 / 1;
  }

  .resources-row .entry-card:nth-child(1) .entry-title{
    font-size: var(--h2);
  }

  .career-form-row .form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap:35px;
  }
  
  #msg,
  #file,
  #tnc{
    grid-column: span 2;
  }

  .sticky-sidebar{
    position:sticky !important;
    top:250px;
  }
  
  
}

@media only screen and (min-width:1000px){
  
  #footer [data-row*="middle"] > .ct-container {
    grid-template-columns:repeat(5, 1fr);
  }

  #footer [data-row*="middle"] > .ct-container .widget-menu > li:not(:last-child){
    margin-bottom: 15px;
  }

  #footer [data-row*="middle"] > .ct-container > div:not(:first-child) {
    padding-left: 15px;
    border-left:1px solid #c9c9c9;
  }

  #header [data-row*="middle"] > .ct-container{
    grid-template-columns: auto 1fr max-content;
    column-gap: 50px;
  }

  #header [data-row*="middle"] > .ct-container > div:nth-child(2),
  #header [data-row*="middle"] > .ct-container > div:nth-child(2) > div,
  #header [data-row*="middle"] > .ct-container > div:nth-child(2) > div > div{
    width: 100%;
  }
}

@media only screen and (max-width:999.98px){
  .woocommerce .ct-sidebar .ct-widget .textwidget{
    display: none;
  } 

  .woocommerce .ct-sidebar .ct-widget .textwidget.display{
    display: block;
  }

  .help-center-details-sec .sticky-sidebar .wpb_text_column > div > p{
    display: block;
  }

  .help-center-details-sec .sticky-sidebar .wpb_text_column > div > p{
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px !important;
    display: flex;
    justify-content: space-between;
  }

  .help-center-details-sec .iksm-container{
    display: none;
  }

  .help-center-details-sec .iksm-container.display{
    display: block;
  }
  
  #header [data-row*="top"]:before{
      display:none !important;
  }

}

@media only screen and (max-width:767.98px){
  .industry-served-row{
    flex-direction: column;
  }

  .single-product .related{
    margin-top: 50px !important;
  }

  .woocommerce.archive li.product .entry-meta, .woocommerce.archive li.product .woocommerce-loop-product__title, .woocommerce.archive li.product .ct-woo-card-actions{
    padding:0 15px;
  }

  .home-intro-icon-row.background-layer:before{
    height:150px;
  }

  .searchandfilter > div > ul > li:nth-child(2) > ul{
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: flex-start;
  }

  .home-shop-by-cat-row ul.products{
    flex-wrap: wrap;
    row-gap: 50px;
  }

  .home-shop-by-cat-row ul.products > li{
    width: 100%;
  }

  .home-shop-by-cat-row ul.products li.product .ct-media-container img{
    max-height: unset ;
  }

  .home-product-top-best-title .custom-button{
    text-align: left !important;
  }

  .home-shop-by-cat-2-row .vc_inner.vc_row .custom-button .vc_general.vc_btn3{
    justify-content: flex-start;
  }

  .home-grow-row > div:first-child,
  .member-row > div:first-child{
    margin-bottom: 35px;
  }

  .cta-sec{
    min-height: unset !important;
  }

  .banner-sec{
    min-height: 300px !important;
  }

  .banner-row h1{
    font-size: 35px !important;
  }

  .banner-row .ct-breadcrumbs span, .banner-row .ct-breadcrumbs span.last-item span{
    font-size: 14px;
  }

  .about-commitment-sec{
    padding-bottom: 35px !important;
  }

  .home-grow-row > div > div > div{
    padding:35px 15px;
  }

  .industry-served-row > div > div{
    min-height: 350px;
  }

  .product-hero-sec{
    min-height: 300px;
    padding:0 15px;
  }

  .perks-row .wpb_single_image img{
    max-height: 350px;
  }

  .perks-row .vc_tta-panel-title > a:before{
    left: 28.5px;
  }

  .perks-row .vc_tta-panel-title > a:after{
    left: 15px;
  }

  .perks-row .vc_tta-panel-body, .perks-row .vc_tta-panel-title > a{
    padding-left: 80px !important;
  }

  .vc_tta-panel-heading{
    display:none;
  }

  .vc_tta-tabs-container{
    display: block !important;
  }

  .customer-care-row .vc_tta-tabs-list{
    overflow-x:auto !important;
    padding-bottom: 10px !important;
  }

  .customer-care-row .vc_tta-tabs-list > li {
    flex: 0 0 max-content;
  }

  .vc_tta-panel-body{
    background-color: transparent !important;
  }

  .brand-thumbnails{
    grid-template-columns: 1fr 1fr;
    column-gap: 35px !important;
  }

  .brands-row .brand-thumbnails.columns-5 > li{
    width: 100% !important;
  }

  .woocommerce .vc_tta-panel-heading,
  .perks-row .vc_tta-panel-heading{
    display: block !important;
  }

  .single-product .product-entry-wrapper{
    width: 100% !important;
  }

  .single-product .woocommerce-Tabs-panel .wpb-content-wrapper{
    width: 100% !important;
  }

  #footer [data-row*="middle"] > .ct-container > div:first-child img{
    max-width: 150px !important;
  }

  .mobile-menu-inline #menu-language-1 img{
    display: none !important;
  }

  .mobile-menu-inline #menu-language-1 > li:not(:last-child){
    border-right:1px solid var(--white);    
  }

  .mobile-menu-inline #menu-language-1{
    align-items: center;
  }

  .home-product-top-best-row .wpb_single_image img{
    max-height: 350px;
  }

  .member-row .vc_inner.vc_row > div > div > div{
    padding:35px 15px;
  }

  .woocommerce-cart #main > .ct-container-full,
  .woocommerce-checkout #main > .ct-container-full,
  .woocommerce-account #main > .ct-container-full{
    padding:70px 0;
  }


  .home-shop-by-cat-row ul.products{
    grid-template-columns: 1fr 1fr;
  }

  .woocommerce.archive li.product .entry-meta, .woocommerce.archive li.product .woocommerce-loop-product__title, .woocommerce.archive li.product .ct-woo-card-actions, .woocommerce.archive li.product .price, ul.products li.product .entry-meta, ul.products li.product .woocommerce-loop-product__title, ul.products li.product .ct-woo-card-actions, ul.products li.product .price{
    padding:0 15px;
  }

  .career-bg-row{
    min-height: 400px !important;
  }
  
  #header [data-row*="top"] [data-items="primary"]{
      flex-wrap:wrap;
  }
  
  #header [data-row*="top"] [data-items="primary"] .ct-header-cta > .ct-button{
      padding-left:17.5px  !important;
  }
  
  .contact-row > div:last-child > div > div{
      padding:35px 15px;
  }
  
  .product-hero-wrapper p.font-40{
      font-size:35px !important;
  }
  
  .home-offer-row > div > div{
      padding:35px 15px !important;
  }
  
  .home-offer-row{
      flex-direction:column;
  }
  
  .home-banner-row .vc_inner.vc_row > div > div > div{
      flex-direction:column;
  }
  
  .slider-background .slick-dots{
      left:15px;
      bottom:95px;
  }
  
  .home-banner-row{
      padding-top:200px !important;
  }
}