/*#header .ct-container {*/
/*  position: relative;*/
/*}*/

/*#header [data-device*="desktop"] .ct-container:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 1px;*/
/*  height: 999999px;*/
/*  left: 0;*/
/*  background-color: red;*/
/*}*/

/*#header [data-device*="desktop"] .ct-container:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 1px;*/
/*  height: 999999px;*/
/*  right: 0;*/
/*  background-color: red;*/
/*}*/

@font-face {
  font-family: "General";
  font-weight: 300;
  src: url("./fonts/GeneralSans-Light.otf") format("opentype");
}

@font-face {
  font-family: "General";
  font-weight: 400;
  src: url("./fonts/GeneralSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "General";
  font-weight: 500;
  src: url("./fonts/GeneralSans-Medium.otf") format("opentype");
}

@font-face {
  font-family: "General";
  font-weight: 600;
  src: url("./fonts/GeneralSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "General";
  font-weight: 700;
  src: url("./fonts/GeneralSans-Bold.otf") format("opentype");
}

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

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

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

: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:"General" !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:#292929;
  --secondary-color:rgba(39, 59, 136, 1);
  --color-1:#000;
  --color-2:#000;
  --color-3:#000;
  --color-4:#000;

/***button style***/
  --button-font-size:14px;
  --button-border-radius:35px;
  --button-border: 1px solid;
  --button-padding:20px 35px;
  --button-bg-color:#273B88;
  --button-text-color:#fff;
  --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"],
  #main > .ct-container-full{
    width: calc(100% - (var(--gap) * 2));
  }
}

body {
  line-height: 1.3;
  font-family: "General" !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;
  font-weight: 600;
}

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

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

.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,
#send input,
#menu-item-382 > a  {
  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;
  position: relative;
}

.custom-button .vc_general.vc_btn3:hover {
    background-color: #ffffff !important;
    color: var(--button-bg-color) !important;
  border: var(--button-border) !important;
}

#send input,
#menu-item-382 > a {
    background-color: #27E65A !important;
}

#send input:hover,
#menu-item-382 > a:hover {
    background-color: #ffffff !important;
    color: #27E65A !important;
}

#menu-item-382 > a {
    height: fit-content !important;
}

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

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

.relative{
  position:relative !important;
}

.absolute{
  position:absolute !important;
}

.sticky{
  position:sticky !important;
}

.static{
  position: static !important;
}

.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: 10px 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;
}

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

.overflow-h{
  overflow: hidden !important;
}

.overflow-a{
  overflow: auto !important;
}

.overflow-scroll{
  overflow: scroll !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;
}

/*open search form when you need*/
.error404 .ct-search-form {
  display: none !important;
}
.error404 .ct-no-results .search-form {
  display: none !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;
  }
}

.vc_tta-tabs-container{
  display: block !important;
}

.vc_tta-panel-body{
  border:0 !important;
}

@media only screen and (max-width:767.98px){
  .vc_tta-panel-heading{
    display: none !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;
  }

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

/***Placeholder customization***/
::-webkit-input-placeholder {
  color: #6C6C6C !important;
  font-weight: 500;
}

::placeholder {
  color: #6C6C6C !important;
  font-weight: 500;
  opacity: 1 !important;
}

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

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

.woocommerce-page .entry-content > .woocommerce,
.single-product .product-entry-wrapper,
.woocommerce .hero-section{
  width: 100% !important;
}

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

.ct-breadcrumbs span.last-item span{
  color: orange;
  font-weight: 600;
}

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

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

@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 {
    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 {
    transform: rotate(180deg);
  }

  .woocommerce #main > .ct-container > aside {
    display: block !important;
    order: -1;
  }
      .iksm-widget .iksm-container {
        opacity: 0;
        height: 0;
        visibility: hidden;
        transition: all 500ms ease;
    }
    .iksm-widget .iksm-container.display {
        opacity: 1;
        height: auto;
        visibility: visible;
    }
    /*.iksm-widget .widget-title {*/
    /*    display: flex !important;*/
    /*    justify-content: space-between;*/
    /*    align-items: center;*/
    /*    padding: 10px;*/
    /*    border: 1px solid var(--grey-80);*/
    /*    font-weight: 400 !important;*/
    /*}*/
    /*.iksm-widget .widget-title:after {*/
    /*    content: '\E817' !important;*/
    /*    font-family: "IksIcons";*/
    /*    font-size: 15px;*/
    /*    font-weight: 900;*/
    /*}*/
    /*.iksm-widget .widget-title.minus:after {*/
    /*    content: '\f068' !important;*/
    /*    font-family: var(--fontAwesome);*/
    /*    font-size: 15px;*/
    /*    font-weight: 900;*/
    /*}*/
    
    .widget-title.minus:after {
        transform:rotate(180deg);
    }
}

/***Blogs***/
.single-post #main .ct-container-full,
.archive #main .ct-container,
.search #main .ct-container{
  padding-top: var(--gap);
  padding-bottom: calc(var(--gap));
}


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

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

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

.logo img{
  max-width: 120px !important;
  width: auto;
}

.inner-flex-row > div > div > div{
  display: flex;
  flex-direction: row;
}

.inner-flex-center > div > div > div{
  align-items: center;
}

.inner-flex-end > div > div > div{
  align-items: flex-end;
}

.inner-flex-column > div > div > div{
  display: flex;
  flex-direction: column;
}

.inner-flex-row > div > div > div{
  display: flex;
  flex-direction: row;
}

.wrapper-h-100 > div > div > div{
  height:100%;
}

.flex-1{
  flex:1;
}

.dflex {
  display: flex;
}

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

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

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

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

@media only screen and (max-width:999.98){
  .md-flex-row-reverse{
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width:767.98){
  .sm-flex-row-reverse{
    flex-direction: row-reverse;
  }
}

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

h1.banner-title{
  font-size: 50px;
  position: relative;
}

.home-banner-row {
  position: relative;
}

.home-banner-row:before,
.home-banner-section:after,
.cta-sec:after,
.cta-row:before,
.home-banner-section:before,
.about-choose-row:before,
.enterprise-intro-row:before{
  content:'';
  position: absolute;
  width: 200px;
  height:200px;
  top:-60px;
  left:50%;
  transform: translateX(-50%);
  display: block !important;
  background-image: url(./images/leaf-1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.enterprise-intro-row:before{
  width: 120px;
  height:120px;
  left: unset;
  top:0;
  right:-100px;
  transform: translateX(-50%) scaleX(-1);
}

.home-banner-row:before{
  background-image: url(./images/leaf-2.png);
  top:unset;
  bottom:-100px;
  left: 120px;
  transform:unset;
  width: 150px;
  height:150px;
}

.home-banner-section:before{
  top:70px;
}

.about-choose-row {
  position: relative;
}

.home-banner-section:after,
.about-choose-row:before{
  background-image: url(./images/chilli.png);
  left: 50%;
  top:unset;
  bottom:0;
}

.about-choose-row:before{
  bottom:-100px;
  left: 65%;
  transform:translateX(-50%) scaleX(-1);
}

.cta-sec:after{
  background-image: url(./images/chilli.png);
  bottom:0;
  top:unset;
  left: 15%;
  transform:scaleX(-1);
}

.cta-row:before{
  background-image: url(./images/leaf-1.png);
  left: unset;
  top:calc(50% + 50px);
  right: -100px;
  transform:translate(0, -50%) scaleX(-1);
  height: 80px;
}

.home-product-title,
.home-about-title,
.about-choose-title,
.timeline-row{
  position: relative;
}

h1.banner-title:before,
.home-product-title:before,
.home-about-title:before,
.rest-page-banner-row:before,
.rest-page-banner-row:after,
.about-choose-title:before,
.about-commitment-row:before,
.timeline-row:before,
.timeline-row:after,
.rest-page-hero-sec:after{
  content:'';
  position: absolute;
  bottom:30px;
  left:35%;
  transform:translateX(-50%);
  background-image: url(./images/mushroom.png);
  width:150px;
  height: 150px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block !important;
}

.about-commitment-row:after{
  content:'';
  position: absolute;
  width: 100%;
  height:100%;
  bottom:0;
  left:0;
  display: block !important;
  z-index: -1;
  background: linear-gradient(180deg, rgba(222, 222, 222, 0.00) 0%, #E5E5E5 100%);
}

.timeline-row:before{
  left: calc(100% - 100px);
  transform:translateX(-50%) scaleX(-1);
  bottom:0;
}

.home-product-title:before{
  left: 65%;
  bottom:unset;
  top:0;
  transform:translateX(-50%) scaleX(-1);
}

.about-choose-title:before{
  left:65%;
  transform:translateX(-50%) scaleX(-1);
}

.rest-page-banner-row:after,
.about-commitment-row:before,
.timeline-row:after{
  background-image: url(./images/leaf-2.png);
  top:70px;
  bottom:unset;
  left: unset;
  right:0;
}

.timeline-row:after{
  right:25%;
  transform:translateX(-50%) scaleX(-1) rotate(-45deg);
}


.rest-page-hero-sec:after{
  background-image: url(./images/chilli.png);
  top:unset;
  bottom:-10px;
  left:20%;
  width: 200px;
  height: 200px;
}

.about-commitment-row:before{
  left:20%;
  right:unset;
  top:unset;
  bottom:-50px;
  transform:translateX(-50%) rotate(-45deg);
}

.home-about-title:before{
  background-image: url(./images/leaf-2.png);
  left: unset;
  bottom:unset;
  top:-70px;
  transform:translateX(0) rotate(-45deg);
  right: 0;
}

h2.banner-sub-title{
  font-size: 40px;
}

.spinning-arrow-icon .vc_general.vc_btn3 {
  padding:0 !important;
  background-image: none !important;
  background-color: transparent !important;
}

.rest-page-banner-row:before{
  top:50px;
  bottom:unset;
  left:45%;
  transform:translateX(-50%);
}

.spinning-arrow-icon .vc_general.vc_btn3 i{
  font-size: 35px;
  color:var(--primary-color);
  transform:translate(-50%, -50%) rotate(45deg);
}

.spinning-button > div > div,
.banner-image > div > div{
  position: relative;
}

.spinning-button .wpb_single_image {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: -1;
  animation: unlimitedSpin 5s linear infinite;
}

@keyframes unlimitedSpin{
  100%{
    transform:translate(-50%,-50%) rotate(360deg);
  }
}

.spinning-button .wpb_single_image img{
  min-height: 150px;
  min-width: 150px;
  aspect-ratio: 1/1;
}

.home-banner-button-row > div > div{
  padding:0 !important;
}

.banner-image .banner-sauce{
  position: absolute;
  bottom:-60px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-image .wpb_single_image:not(.banner-sauce) img{
  max-width: 80%;
}

.home-banner-section{
  padding-bottom: calc(var(--gap) + 50px) !important;
}

.home-banner-button-row > div > div > div{
  display: flex;
  justify-content: flex-start;
  gap:20px;
  flex-wrap: wrap;
}

.home-about-row .logo img{
  max-width: 100% !important;
  max-height: 120px; 
}

.home-about-row .vc_inner.vc_row > div > div > div{
  padding:20px;
  border-radius: 40px;
  background-color: #f4f4f4;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.home-about-row > div > div > div{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap:20px;
  border-radius: 45px;
}

.home-about-row > div > div > div > .vc_inner.vc_row{
  margin-top: auto;
}

.home-about-row > div:not(:last-child) > div > div{
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.archive #main > .ct-container{
  position: relative;
}

.home-content-sec:before,
.home-content-sec:after,
.about-content-sec:before,
.about-enterprise-sec:before,
.about-conscience-sec:before,
.product-content-sec:before,
.archive #main > .ct-container:before{
  content:'';
  position: absolute;
  width: 100%;
  height:100%;
  display: block !important;
  bottom:0;
  left: 0;
  /* background-image: url(./images/home-background-overlay.png); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
  background: 
  linear-gradient(180deg, #FFF 0.99%, rgba(255, 255, 255, 0.20) 100%),
  url("./images/home-background-overlay.png") bottom center / cover no-repeat;
  z-index:-1;
}

.home-content-sec:after{
  background-size: contain;
  width: 150px;
  height:150px;
  background-image: url(./images/mushroom.png);
  top:unset;
  bottom:70px;
  left: 75%;
  transform:translateX(-50%) scaleX(-1);
}

.home-product-row .product-grid > div > div{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
}

.home-product-row .vc_inner.vc_row .wpb_text_column,
.home-product-row .vc_inner.vc_row .wpb_single_image img {
  min-height: 250px;
  max-height: 250px;
}

.home-product-row .vc_inner.vc_row{
  margin:0 !important;
}

.home-product-row .vc_inner.vc_row .wpb_text_column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px;
}

.home-product-row .vc_inner.vc_row > div > div > div{
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.product-big-image > div {
  margin:0 0 0 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.product-big-image > div > div{
  height:100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-big-image .wpb_text_column{
  background-color: #f4f4f4;
  width: 100%;
  padding:20px 15px;
  backdrop-filter: blur(4px);
  border-radius: 10px;
    border: 3px solid transparent;
    transition: 0.3s all;
}

.product-big-image-1 > div {
  margin:0 0 0 15px;
}

.product-big-image-2 > div {
  margin:0 15px 0 0;
}

.home-product-row .vc_inner.vc_row > div > div{
  padding:0 !important;
}

.home-choose-row .vc_inner.vc_row .icons{
  position: relative;
  z-index: 1;
}

.home-choose-row .vc_inner.vc_row .icons img,
.about-choose-row .icons img{
  aspect-ratio: 1/1;
}

.home-choose-row .vc_inner.vc_row .icons > figure,
.about-choose-row .icons > figure{
  padding:20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25) inset;
}

.home-choose-row .vc_inner.vc_row > div > div > div,
.about-choose-row > div > div > div{
  padding:35px 50px 35px 35px;
  border-radius:60px;
  background-color: #F4F4F4;
  position: relative;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  overflow: hidden;
  margin-bottom:35px;
}

.home-choose-row .vc_inner.vc_row > div > div > div:before,
.about-choose-row > div > div > div:before{
  content:'';
  position: absolute;
  width: 200px;
  height:150px;
  top:calc(50% - 35px);
  right:-80px;
  transform: translateY(-50%);
  display: block !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.home-choose-row .vc_inner.vc_row > div:nth-child(1) > div > div:before,
.about-choose-row > div:nth-child(1) > div > div:before{
  background-image: url(./images/choose-icons-big-1.svg);
}

.home-choose-row .vc_inner.vc_row > div:nth-child(2) > div > div:before,
.about-choose-row > div:nth-child(2) > div > div:before{
  background-image: url(./images/choose-icons-big-2.svg);
}

.home-choose-row .vc_inner.vc_row > div:nth-child(3) > div > div:before,
.about-choose-row > div:nth-child(3) > div > div:before{
  background-image: url(./images/choose-icons-big-3.svg);
}

.home-choose-row .vc_inner.vc_row > div:nth-child(4) > div > div:before,
.about-choose-row > div:nth-child(4) > div > div:before{
  background-image: url(./images/choose-icons-big-4.svg);
}

.home-choose-row .vc_inner.vc_row > div:nth-child(5) > div > div:before,
.about-choose-row > div:nth-child(5) > div > div:before{
  background-image: url(./images/choose-icons-big-5.svg);
}

.home-choose-row{
  position: relative;
}

.home-choose-row:before,
.home-choose-row:after{
  content:'';
  position: absolute;
  width: 50%;
  height:100%;
  left:-150px;
  top:calc(50% - 35px);
  transform:translateY(-50%);
  display: block !important;
  background-image: url(./images/choose-bg-image.png);
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
}

.home-choose-row:after{
  background-image: url(./images/leaf-2.png);
  width: 200px;
  height:200px;
  left: 20%;
  background-position: center;
  top:50px;
}

.rest-page-hero-sec:before{
  content:'';
  position: absolute;
  width: 100%;
  height:125px;
  bottom:0;
  left:0;
  display: block !important;
  background-color: #fff;
}

@media only screen and (max-width:768px) {
    .rest-page-hero-sec:before{
      height:70px;
    }
}

.rest-page-banner-row > div:nth-child(1) > div > div {
  display: flex;
  align-items: center;
}

.rest-page-banner-row .circle-rotating-image img{
  max-height: 100px;
  max-width: 100px;
  aspect-ratio: 1/1;
}

.rest-page-banner-row > div:first-child > div > div{
  position: relative;
}

.rest-page-banner-row .circle-rotating-image{
  position: absolute;
  top:50%;
  left: 50%;
  transform:translate(-50%,-50%);
  animation: unlimitedSpin 5s linear infinite;
}

.rest-page-banner-row h1.banner-title{
  padding-right: 100px;
}

.rest-page-banner-row h1.banner-title:before{
  display: none !important;
}

.rest-page-hero-sec{
  min-height: 500px;
  overflow:visible !important;
  z-index:1;
}

.rest-page-banner-row > div > div > div{
  position: relative;
}

.rest-page-banner-row > div > div > div > .wpb_single_image{
  position: absolute;
  height: 100%;
  right:0;
  bottom:25px;
  width: 100%;
}

.rest-page-banner-row.contact > div > div > div > .wpb_single_image{
  top:unset;
  bottom:100px;
  left:50%;
  transform: translateX(-50%);
}

.rest-page-banner-row.contact > div > div > div > .wpb_single_image img{
  max-height: 400px;
  object-fit: contain;
}

.about-intro-row > div:first-child .wpb_text_column {
  padding:15px 25px;
  background-color: #112880;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.home-product-row.rtl > div > div > div{
  direction: rtl;
}

.home-product-row.rtl > div > div > div > *{
  direction: ltr;
}

.product-content-sec > div:not(:last-child){
  padding-bottom:50px;
}

.about-intro-row > div:first-child .wpb_single_image > figure{
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}


.page-id-286 .cta-sec:before{
  display: none !important;
}

.page-id-286 .cta-sec{
  padding-top: 175px !important;
}

.about-commitment-row {
  display: flex;
  align-items: stretch;
  height: auto !important;
}

.enterprise-intro-row .wpb_single_image > figure{
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.company-timeline-section {
  width: 100%;
}

.company-timeline {
  --line-color: #B52222;
  --node-size: 20px;
  --node-top: 72px;
  --line-width: 2px;

  position: relative;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 90px;
  box-sizing: border-box;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: calc(var(--node-top) + var(--node-size) / 2);
  width: 85px;
  height: var(--line-width);
  background: var(--line-color);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: var(--node-top);
  width: var(--node-size);
  height: var(--node-size);
  border: 2px solid var(--line-color);
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  z-index: 3;
}

.timeline-item .timeline-card::before {
  content: "";
  position: absolute;
  top: calc(var(--node-top) + var(--node-size) / 2);
  width: var(--line-width);
  height: calc(100% + 90px);
  background: var(--line-color);
  z-index: 0;
  pointer-events: none;
}

.timeline-item:last-child .timeline-card::before {
  display: none;
}

.timeline-left {
  left: 0;
  padding-right: 78px;
}

.timeline-left::before {
  right: 0;
}

.timeline-left::after {
  right: calc(-1 * var(--node-size) / 2);
}

.timeline-left .timeline-card::before {
  right: calc(-78px - var(--line-width) / 2);
}

.timeline-right {
  left: 50%;
  padding-left: 78px;
}

.timeline-right::before {
  left: 0;
}

.timeline-right::after {
  left: calc(-1 * var(--node-size) / 2);
}

.timeline-right .timeline-card::before {
  left: calc(-78px - var(--line-width) / 2);
}

.timeline-card {
  position: relative;
  min-height: 230px;
  padding: 138px 52px 42px;
  background: #f4f4f4;
  border-radius: 30px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  margin-bottom: 4px;
}

.timeline-featured .timeline-card {
  background: #112880;
  color: #fff;
}

.timeline-image {
  position: absolute;
  left: 46px;
  top: -82px;
  max-width: 280px;
  width: 46%;
  height: auto;
  display: block;
  z-index: 2;
}

.timeline-card h3 {
  margin: 0 0 18px;
  color: #273B88;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
}

.timeline-featured .timeline-card h3 {
  color: #fff;
}

.timeline-card p {
  margin: 0 0 16px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
}

.timeline-card p:last-child {
  margin-bottom: 0;
}

.timeline-featured .timeline-card p {
  color: rgba(255, 255, 255, 0.92);
}

.timeline-right img{
  width: 100%;
  max-width: 400px;
}

.timeline-right img{
  left:50%;
  transform:translateX(-50%);
}

@media (min-width: 768px) {
  .timeline-right {
    margin-top: 75px;
  }

  .timeline-left + .timeline-right {
    margin-top: -10px;
  }
}

@media (max-width: 991px) {
  .company-timeline {
    max-width: 900px;
  }

  .timeline-card {
    padding: 120px 34px 34px;
  }

  .timeline-image {
    left: 32px;
    max-width: 230px;
  }

  .timeline-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .company-timeline-section {
    padding: 40px 0 0;
  }

  .company-timeline {
    --node-size: 18px;
    --node-top: 58px;
    padding: 0 18px;
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    left: 0;
    width: 100%;
    padding-left: 58px;
    padding-right: 0;
    margin-bottom: 72px;
  }

  .timeline-item::before {
    left: 30px;
    width: 28px;
  }

  .timeline-item::after {
    left: calc(30px - var(--node-size) / 2);
    right: auto;
  }

  .timeline-left .timeline-card::before,
  .timeline-right .timeline-card::before {
    left: calc(-28px - var(--line-width) / 2);
    right: auto;
    height: calc(100% + 72px);
  }

  .timeline-card {
    min-height: 0;
    padding: 105px 24px 28px;
    border-radius: 8px;
  }

  .timeline-image {
    left: 24px;
    top: -54px;
    width: auto;
    max-width: 210px;
  }

  .timeline-card h3 {
    font-size: 22px;
  }

  .timeline-card p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .company-timeline {
    padding: 0px;
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    padding-left: 46px;
  }

  .timeline-item::before {
    left: 24px;
    width: 22px;
  }

  .timeline-item::after {
    left: calc(24px - var(--node-size) / 2);
  }

  .timeline-left .timeline-card::before,
  .timeline-right .timeline-card::before {
    left: calc(-22px - var(--line-width) / 2);
  }

  .timeline-card {
    padding: 95px 18px 24px;
  }

  .timeline-image {
    left: 18px;
    max-width: 185px;
  }

  .timeline-card h3 {
    font-size: 20px;
  }
}

.about-conscience-row .wpb_single_image > figure{
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.contact-title > div > div > div{
  display: flex;
  align-items: center;
  gap:20px 35px;
  flex-wrap: wrap;
}

.contact-row .form input,
.contact-row .form textarea{
  background-color: #E9E9E9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25) inset;
}

.contact-row #send{
  margin-left: unset;
}

.contact-row .contact-inner > div:last-child > div > div{
  background-color:#112880;
  padding: 50px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  overflow: hidden;
}

.contact-row .custom-table td{
  color:#fff;
}

.contact-row .logo img {
    max-width: min(350px, 100%) !important;
}

.page-id-377 .cta-sec,
.page-id-377 #footer [data-row*="middle"]{
  display: none;
}

.page-id-377 #footer [data-row*="bottom"] > .ct-container {
  border-top: 0;
} 

.map-row iframe{
  display: block;
}

.product-banner > div:last-child .wpb_single_image{
  bottom:25px;
}

.product-banner > div:last-child .wpb_single_image img{
  max-height: 400px;
  object-fit: contain !important;
}

.product-banner-sec{
  background-image: url(./images/about-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-product-row .wpb_text_column a{
  color:#273B88;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.home-product-row .wpb_text_column a:after{
  content:'\f054';
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-Awesome);
  padding-left: 10px;
}

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

.product-table table td{
  width: 33.33%;
  border:0;
}

.product-table table{
  border:0;
}

.product-table table td:not(:last-child){
  border-right:2px solid #C0C0C0;
}

.product-table table td:not(:first-child){
  text-align: center;
}

.product-table table td:first-child{
  font-weight: 500;
}

.product-table table tr:first-child td{
  font-weight: 600;
  color:#273A8A;
  font-size: 18px;
}

.product-extra-buttons a{
    background-color:#27E65A;
    color:#fff;
    border-radius:35px !important;
    padding:20px 35px;
    border:1px solid #27E65A;
    font-weight:500;
}


.product-extra-buttons a:hover{
    background-color:transparent;
    color:#27E65A;
}

.single-product .ct-product-gallery-container{
  padding:35px;
  position: relative;
  margin:10px;
}

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

.single-product .ct-product-gallery-container:before{
  content:'';
  position: absolute;
  width: 100%;
  height:50%;
  bottom:0;
  left: 0;
  border-radius: 20px;
  background-color: #f4f4f4;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.woocommerce aside h3.widget-title {
  font-size: 23px;
  font-weight: 600;
  border-bottom: 1px solid #C0C0C0;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.archive.woocommerce .ct-media-container {
  padding:35px 50px;
  position: relative;
}

/* Whole product column */
.archive.woocommerce .product {
  position: relative;
  overflow: visible;
  border-radius: 25px;
  z-index: 1;
}

/* Full product-column hover background */
.archive.woocommerce .product::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #f4f4f4;
  border-radius: 25px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);

  opacity: 0;
  transform: scaleY(0.65);
  transform-origin: top;

  z-index: 0;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

.archive.woocommerce .product:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Keep product contents above hover background */
.archive.woocommerce .product > * {
  position: relative;
  z-index: 1;
}

/* Product image link/container */
.archive.woocommerce .ct-media-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 260px;
  overflow: visible;
  z-index: 1;
}

/* Default SVG background shape behind product image */
.archive.woocommerce .ct-media-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 70%;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='395' height='230' viewBox='0 0 395 230' fill='none'%3E%3Cg filter='url(%23filter0_d_2041_282)'%3E%3Cpath d='M10 26C10 14.9543 18.9543 6 30 6H365C376.046 6 385 14.9543 385 26V216C385 216 270.861 192.702 219.043 158.584C209.166 152.08 194.905 151.827 184.869 158.084C130.769 191.814 10 216 10 216V26Z' fill='%23F4F4F4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_2041_282' x='0' y='0' width='395' height='230' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='5'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_2041_282'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_2041_282' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;

  opacity: 1;
  z-index: 0;
  pointer-events: none;

  transition: opacity 0.25s ease;
}

/* Hide SVG shape when the whole product column is hovered */
.archive.woocommerce .product:hover .ct-media-container::before {
  opacity: 0;
}

/* Product image above SVG/background */
.archive.woocommerce .ct-media-container img {
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.archive.woocommerce .product:hover .ct-media-container img {
  transform: translateY(-6px) scale(1.04);
}

.iksm .iksm-term--current > div > a:after,
.archive .ct-woo-card-actions a:after{
  content:'\f054';
  display: inline-block !important;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-Awesome);
  padding-left: 10px;
}

.archive .ct-woo-card-actions{
  justify-content: center !important;
  align-items: center !important;
  padding-bottom: 35px !important;
}

.archive .ct-woo-card-actions a{
  padding:0 !important;
  min-height: unset !important;
}


/* Prevent theme wrappers from clipping shadows */
.archive.woocommerce .ct-woo-card,
.archive.woocommerce .ct-media-container {
  overflow: visible;
}

.order-1 {
  order:1;
}


.woocommerce-loop-product__title{
  text-align: center;
  color:#273A8A;
}

@media only screen and (min-width:768px) {
.woocommerce .product-banner{
  padding: 0 85px;
}
}

.woocommerce .product-banner > div:last-child .wpb_single_image {
  bottom:25px;
}

.cta-row {
  background-color: #f4f4f4;
  border-radius: 60px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.cta-row{
  padding:70px 55px !important;
  position: relative;
}

.form {
  margin-bottom: 20px;
}

.cta-sec:before{
  content:'';
  position: absolute;
  width: 100%;
  height: 50%;
  top:0;
  left:0;
  display: block !important;
  background-image: url(./images/cta-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  z-index: -1;
}

#send{
  position: relative;
}

.wpcf7-spinner{
  position: absolute !important;
  top:8px;
}

.wpcf7-response-output{
  margin-top: 5em !important;
}

.cta-row .icons img{
  max-height: 70px;
}

.footer-contact{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.footer-contact p{
  margin-block-end: 0 !important;
}

.footer-contact p:not(:last-child){
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #333;
}

#footer h3.widget-title{
  font-size: 18px;
  font-weight: 600;
  color:#273B88;
}

.footer-contact i {
  color:#fff;
  background-color: #333;
  padding:6px;
  font-size: 14px;
  border-radius: 10px;
}

#footer [data-row*="middle"] > div:last-child i{
  margin-right: 10px;
}

#footer [data-row *="middle"] .ct-container{
  padding-top: 0;
}

@media only screen and (min-width:768px){
  .cta-sec{
    padding: var(--gap) 85px !important;
  }

  .cta-row{
    margin:0 15px !important;
  }

  .form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
  }

  .form #msg{
    grid-column: span 2;
  }

  #send{
    width: fit-content;
    margin-left: auto;
  }

  .home-content-sec{
    padding-bottom: 200px !important;
  }

  .about-content-sec{
    padding-top: 150px !important;
  }

  .about-intro-row > div:first-child > div > div > div > div:first-child{
    transform: translateY(50px);
  }

  .about-intro-row > div:first-child > div > div > div > div:last-child{
    transform: translateY(-50px);
  }

  .about-commitment-row .wpb_single_image{
    margin-bottom:-125px !important;
  }
  
}

@media only screen and (max-width:767.98px){
  .form > div{
    margin-bottom: 20px;
  }

  .home-banner-section{
    padding-top: 100px !important;
  }

  .home-banner-section:before {
    width: 120px;
    height:120px;
    left: 75%;
  }

  h1.banner-title:before{
    width: 100px;
    height:100px;
    bottom:unset;
    top:-85px;
    left: 35px;
  }

  h1.banner-title{
    font-size: 35px;
  }

  h2.banner-sub-title{
    font-size: 30px;
  }

  .spinning-button .wpb_single_image img{
    max-height: 100px;
    max-width: 100px;
    min-height: unset;
    min-width: unset;
  }

  .spinning-button > div > div{
    padding-bottom: 60px;
  }

  .spinning-button .wpb_single_image{
    top:calc(50% - 30px);
    text-align: left !important;
    left: 50px;
  }

  .spinning-arrow-icon {
    text-align: left !important;
    padding-left: 50px !important;
  }
  
  .banner-image{
    margin-top: 35px;
  }

  .home-banner-section{
    padding-bottom: calc(var(--gap) + 100px) !important; 
  }

  .home-banner-section:after{
    width: 120px;
    height:120px;
    left: 75%;
  }

  .home-banner-row:before{
    left: 15%;
    top:calc(100% + 35px);
    bottom:unset;
    width: 100px;
    height: 100px;
  }

  .home-about-row > div:nth-child(2){
    order: 1;
  }

  .home-about-row > div:nth-child(1),
  .home-about-row > div:nth-child(3){
    margin-bottom: 35px;
  }

  .home-product-title:before{
    height: 100px;
    width: 100px;
  }

  .product-big-image-1 > div{
    margin: 0 15px 35px;
  }

  .home-product-row-1 .product-grid > div > div,
  .home-product-row-2 .product-grid > div > div{
    grid-template-columns: 1fr;
  }

  .home-product-row-1{
    padding-bottom: 35px !important;
  }

  .home-product-row-1 .product-grid > div > div > div:nth-child(odd) > div > div > div,
  .home-product-row-2 .product-grid > div > div > div:nth-child(odd) > div > div > div{
    display: flex;
    flex-direction: column;
  }

  .home-product-row-2 {
    flex-direction: column-reverse;
  }

  .home-product-row-2 > div:last-child{
    margin-bottom: 35px;
  }

  .product-big-image-2 > div{
    margin:0 15px;
  }

  .home-product-row .vc_inner.vc_row .wpb_text_column, .home-product-row .vc_inner.vc_row .wpb_single_image img{
    min-height: 150px;
    height: 150px;
  }

  .product-big-image{
    min-height: 350px !important;
  }

  .product-big-image .wpb_text_column{
    padding:15px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .home-choose-row .vc_inner.vc_row > div > div > div{
    padding-left: 15px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .cta-row{
    padding:50px 0  !important;
    margin:0 15px !important;
  }

  .footer-contact{
    flex-wrap: wrap;
    row-gap: 15px;
  }

  .footer-contact p{
    border-right: 0 !important;
  }

  .home-choose-row > div:first-child{
    min-height: 375px;
  }

  .home-choose-row:before{
    left:50%;
    width: calc(100% - 30px);
    background-size: cover;
    top:0;
    background-position: center;
    height: 350px;
    transform:translate(-50%,0);
  }

  .home-choose-row:after{
    top:unset;
    bottom:0;
  }

  .home-content-sec:after{
    bottom:0;
  }

  .home-content-sec {
    padding-bottom: 100px !important;
  }

  .home-about-title:before{
    height: 100px;
    width: 100px;
  }

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

  .cta-sec:after{
    height: 120px;
    width: 120px;
  }

  .cta-row:before{
    top:15%;
  }

  .home-about-row .full-image-column img{
    max-height: 300px;
  }

  .about-intro-row > div:first-child .wpb_text_column{
    margin-bottom: 35px !important;
  }

  .about-intro-row .wpb_single_image img{
    max-height: 250px;
  }

  .about-intro-row > div:last-child {
    margin-top: 35px;
  }

  .about-commitment-row{
    flex-direction: column;
    padding-bottom: 35px;
  }

  .about-commitment-row .wpb_single_image img{
    max-height: 350px;
  }

  .page-id-286 .cta-sec{
    padding-top: 70px !important;
  }

  .cta-row .icons img{
    max-height: 60px;
  }

  .rest-page-hero-sec:after{
    width: 100px;
    height:100px;
  }

  .rest-page-hero-sec{
    min-height: 400px !important;
  }

  .rest-page-banner-row > div > div > div > .wpb_single_image{
    bottom:-35px;
  }

  .rest-page-banner-row:before{
    width: 100px;
    height:100px;
    left: 50px;
  }

  .rest-page-banner-row:after{
    width: 100px;
    height:100px;
    right:0;
  }

  .rest-page-banner-row .spinning-arrow-icon {
    padding-left: 0 !important;
  }

  .enterprise-intro-row .wpb_single_image img {
    max-height: 350px;
  }

  .timeline-row:after{
    display: none !important;
  }

  .about-conscience-sec > .about-conscience-row:nth-child(2){
    flex-direction: column-reverse;
  }

  .rest-page-banner-row > div > div > div > .wpb_single_image{
    position: unset !important;
  }

  .rest-page-banner-row > div:first-child {
    padding-bottom: 50px;
  }

  .rest-page-banner-row.contact > div > div > div > .wpb_single_image{
    transform:unset !important;
  }

  #footer #custom_html-3 a{
    padding-left: 0 !important;
  }

  .home-choose-row .vc_inner.vc_row > div > div > div, .about-choose-row > div > div > div{
    padding:35px 50px 35px 15px;
  }
  
  .contact-inner > div:first-child {
    margin-bottom: 35px;
  }
  
  .contact-row .contact-inner > div:last-child > div > div{
      padding:50px 15px;
  }
  
  .home-product-row .product-grid > div > div > div:not(:last-child){
      margin-bottom:35px !important;
  }
  
  .product-content-sec > div:not(:last-child){
      padding-bottom:35px;
  }

}

.about-conscience-row {
    position:relative;
}

.about-conscience-row:first-child:before {
    content:'';
    display:block;
    position:absolute;
    right:0;
    top:0;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-167deg) scaleY(-1);
}

.about-conscience-row:nth-child(2):before {
    content:'';
    display:block;
    position:absolute;
    left:100px;
    bottom:-50px;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-10deg);
}

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

.product-content-sec .home-product-row:first-child:before {
    content:'';
    display:block !important;
    position:absolute;
    left:-150px;
    bottom:-50px;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.product-content-sec .home-product-row:nth-child(2):before {
    content:'';
    display:block !important;
    position:absolute;
    right:-150px;
    bottom:50px;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(10deg);
}

.product-content-sec .home-product-row:last-child:before {
    content: '';
    display:block;
    position: absolute;
    width: 100%;
    height: 200%;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 35%) rotate(12deg);
    display: block !important;
    background-image: url(./images/choose-bg-image.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

.product-content-sec .home-product-row:last-child:after {
    content: '';
    display: block;
    position: absolute;
    background-size: contain;
    width: 150px;
    height: 150px;
    background-image: url(./images/mushroom.png);
    top: 70px;
    left: 25%;
    transform: translateX(-50%) scaleX(-1);
    z-index: -1;
}

.contact-inner {
    position:relative;
    display: flex;
}

.contact-inner:before {
    content:'';
    display:block !important;
    position:absolute;
    right:-150px;
    top:50%;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(10deg);
}

.contact-inner:after {
    content:'';
    display:block !important;
    position:absolute;
    left:20%;
    bottom:-100px;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/mushroom.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.single-product #main > .ct-container,
.tax-product_cat #main > .ct-container{
    position:relative;
}

.single-product #main > .ct-container:before {
    content:'';
    display:block !important;
    position:absolute;
    right:0;
    bottom:0;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.single-product #main > .ct-container:after {
    content:'';
    display:block !important;
    position:absolute;
    right:var(--gap);
    top:0;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/mushroom.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.tax-product_cat #main > .ct-container > section:before {
    content:'';
    display:block !important;
    position:absolute;
    right:calc(var(--gap) * -1);
    top:25%;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(50%, -50%);
}

.tax-product_cat #main > .ct-container > section:after {
    content:'';
    display:block !important;
    position:absolute;
    left:100px;
    bottom:0;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/mushroom.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.tax-product_cat #main > .ct-container > * > .ct-sidebar:before {
    content:'';
    display:block !important;
    position:absolute;
    left:0;
    top:50%;
    width: 150px;
    height:150px;
    display: block !important;
    background-image: url(./images/leaf-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) scaleX(-1);
}

.about-choose-row > div:nth-child(1) > div > div {
    background-color: #112880 !important;
}

.about-choose-row > div:nth-child(1) > div > div * {
    color: #fff !important;
}

.about-choose-row > div:nth-child(2) {
    order: -1;
}

.about-choose-row > div:nth-child(1) > div > div:before {
    filter: brightness(0.9) contrast(1.1) saturate(1.2) hue-rotate(210deg);
}

.cust-img-css img {
    max-height: 400px;
}

@media only screen and (min-width:1000px) {
    .banner-image > div > div {
        margin-left:-20%;
    }
}

.banner-custom-btn-1 .vc_general.vc_btn3 {
    background-color: #EDA200 !important;
    border-color: #EDA200 !important;
}

.banner-custom-btn-2 .vc_general.vc_btn3 {
    background-color: #E1E1E1 !important;
    border-color: #E1E1E1 !important;
    color: #292929 !important;
}

.banner-custom-btn-1 .vc_general.vc_btn3:hover {
    color: #EDA200 !important;
}

.banner-custom-btn-2 .vc_general.vc_btn3:hover {
    color: #292929 !important;
}

.product-big-image > .vc_column-inner {
    position:relative;
}

.product-big-image > .vc_column-inner:before {
    content:'';
    display: block;
    position:absolute;
    width:100%;
    height: 100%;
    left:0;
    top:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 15.67%, rgba(0, 0, 0, 0.60) 80.68%);
    opacity: 0;
    transition: 0.3s all;
}

.product-big-image > .vc_column-inner:hover:before {
    opacity: 1;
}

.product-big-image > .vc_column-inner:hover .wpb_text_column {
    background-color: transparent;
    border: 3px solid #B5B5B5;
    color: #ffffff !important;
}

.product-big-image > .vc_column-inner:hover .wpb_text_column * {
    color: #ffffff !important;
}

.product-big-image > .vc_column-inner .wpb_text_column * {
    transition: 0.3s all !important;
}


@media only screen and (max-width:999.98px) {
    .single-product #main > .ct-container:after {
        display: none !important;
    }
}

@media only screen and (max-width:767.98px) {
    .rest-page-banner-row > div:nth-child(1) > div > div > .vc_row:last-child {
        position:absolute;
        right: 50px;
    }
}

@media only screen and (max-width:1249.98px) {
    .contact-inner {
        flex-wrap: wrap;
    }
    .contact-inner > .wpb_column {
        width: 100%;
    }
    .contact-inner > .wpb_column > .vc_column-inner {
        padding-inline: 15px !important;
    }
    .contact-inner > div:first-child {
        margin-bottom:35px;
    }
}

.archive #main > .ct-container:before {
    width: calc(100% + (var(--gap) * 2));
    left: calc(var(--gap) * -1);
}

@media only screen and (max-width:767.98px) { 
    .product-table table td:first-child {
        display: flex;
        flex-direction: column;
        width: auto;
        justify-content: center;
        align-items: center;
        height: 100%;
        min-height: 50px;
    }
    
    .product-table table td {
        width: 100%;
    }
    
    .custom-table a {
        color: #fff !important;
    }
}