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

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

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

@font-face {
  font-family: "graphik";
  font-weight: 600;
  src: url("./fonts/Graphik-Semi-Bold.otf") format("opentype");
}

@font-face {
  font-family: "graphik";
  font-weight: 700;
  src: url("./fonts/Graphik-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: "graphik", sans-serif !important;
  --theme-secondary-font-family: -;
  --font-Awesome: "Font Awesome 6 Free";
  --theme-font-size: 16px;
  --theme-line-height: 1.3 !important;
  /***color palettess***/
  --primary-color: #f1f2eb;
  --secondary-color: #1b1b1b;
  --color-1: #fff;
  --color-2: #f15923;
  --color-3: #4e4e4e;
  --color-4: #eeeeee;
  --color-gradient: linear-gradient(90deg, #fece0a 30%, #f36f21 70%);

  /***button style***/
  --button-font-size: 14px;
  --button-border-radius: 10px;
  --button-border: 1px solid var(--secondary-color);
  --button-padding: 12px 25px;
  --button-bg-color: var(--secondary-color);
  --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"] {
    width: calc(100% - (var(--gap) * 2));
  }
}

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

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

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

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

.row-gap-b {
  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;
}

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

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

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

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

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

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

.text-justify,
.text-justify :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;
}

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

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

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

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

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

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

.font-23,
.font-23 :is(h1, h2, h3, h4, h5) {
  font-size: 23px !important;
}

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

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

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

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

.text-gradient span,
.text-gradient strong {
  font-weight: 600;
  background: linear-gradient(90deg, #fece0a 10%, #f36f21 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

.background-layer {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-button .vc_general.vc_btn3:hover {
  color: var(--secondary-color) !important;
  z-index: 3;
  background-color: transparent !important;
}

.custom-button .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  display: block !important;
  background: var(--color-gradient);
  z-index: -1;
  transition: 0.5s all;
}

.custom-button .vc_general.vc_btn3:hover:before {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.custom-table table {
  width: auto;
}

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

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

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

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

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

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

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

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

.mobile_view {
  display: none !important;
}

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

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

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

  .width-90 {
    width: 90%;
  }

  .width-85 {
    width: 85%;
  }

  .width-80 {
    width: 80%;
  }

  .width-75 {
    width: 75%;
  }

  .width-70 {
    width: 70%;
  }

  .width-65 {
    width: 65%;
  }

  .width-60 {
    width: 60%;
  }

  .width-55 {
    width: 55%;
  }

  .width-50 {
    width: 50%;
  }

  .width-45 {
    width: 45%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid {
  display: grid !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-55 {
  gap: 55px;
}

.gap-60 {
  gap: 60px;
}

.gap-65 {
  gap: 65px;
}

.gap-70 {
  gap: 70px;
}

.gap-75 {
  gap: 75px;
}

.gap-80 {
  gap: 80px;
}

.gap-85 {
  gap: 85px;
}

.gap-90 {
  gap: 90px;
}

.gap-95 {
  gap: 95px;
}

.gap-100 {
  gap: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 600px) {
  .row-gap-sm-0 {
    row-gap: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 768px) {
  .row-gap-md-0 {
    row-gap: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1000px) {
  .row-gap-lg-0 {
    row-gap: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1200px) {
  .row-gap-xl-0 {
    row-gap: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1400px) {
  .row-gap-xxl-0 {
    row-gap: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767.98px) {
  .mobile-text-center,
  .mobile-text-center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }

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

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

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

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

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

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

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

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

/*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-gap-70 > div:first-child > div {
    padding-right: 70px !important;
  }

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

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

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

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

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

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

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

  .form textarea {
    height: 100px;
  }

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

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

  #footer ul.widget-menu > li:not(:last-child) {
    border-right: 1px solid #fff;
    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;
}

/***animation styling***/

/* .fade-in,
.fade-left,
.fade-right,
.fade-down,
.slide-in,
.slide-up,
.slide-down,
.slide-left,
.slide-right {
  opacity: 0;
} */

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

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

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

.single-post #main > .ct-container{
  padding-top:var(--gap);
  padding-bottom:calc(var(--gap) - 35px);
}
/*** Woocommerce ***/

.ct-cart-actions,
.woocommerce-tabs{
    display:none !important;
}

.image-variable-items-wrapper > li {
    min-width:75px !important;
    min-height:75px !important;
}

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

.ct-breadcrumbs span {
  text-transform: capitalize;
  font-weight: 400;
  color: var(--color-3);
  font-size: 14px;
}

.ct-breadcrumbs span.last-item span {
  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) {
  .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,
  .ct-sidebar .ct-widget .widget-title:after,
  .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;
    display: block !important;
  }

  .woocommerce .ct-sidebar .widget_products .widget-title.minus:after {
    transform: rotate(180deg);
  }

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

  .iksm-container {
    height: 0;
    transition: 0.5s all;
  }

  .iksm-container.display {
    height: auto;
  }

  .service-details-row .iksm-container {
    padding: 0 !important;
  }

  .service-details-row .iksm-container.display {
    padding: 20px !important;
  }
}

.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 36px;
  height: 36px;
  bottom: -70px;
  z-index: 2;
  left: 0;
  background-color: transparent;
  z-index: 5;
}

.slick-arrow.slick-next {
  left: 50px;
}

.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: #a9a9a9;
  cursor: pointer;
}

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

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

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

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

.ct-toggle-dropdown-desktop svg {
  display: none;
}

.ct-toggle-dropdown-desktop:after {
  content: "+";
  transition: 0.5s all;
}

li.menu-item:hover .ct-toggle-dropdown-desktop:after {
  transform: rotate(360deg);
}

#header .current-page-ancestor.menu-item > a,
.mobile-menu .current-page-ancestor.menu-item > a{
    color:var(--theme-palette-color-5);
}

#header .sub-menu > li.menu-item > a{
    justify-content:center;
    text-align:center;
}

#header .sub-menu{
    left:-50% !important;
}

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

.small-title {
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding-left: 15px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.big-title,
.big-title :is(h1, h2, h3, h4, h5, h6) {
  font-size: 80px !important;
  /*line-height:1 !important;*/
}

.small-title:before,
.home-about-row > div:nth-child(1) .wpb_singleimage_heading:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block !important;
  background-color: var(--secondary-color);
  animation: blink 3s infinite linear;
}

.small-title.text-white:before {
  background-color: var(--white);
}

.banner-icon i {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  border-radius: 50%;
}

.banner-icon i:before {
  transform: rotate(45deg) !important;
}

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

.banner-menu-items a {
  text-decoration: none;
}

.banner-menu-items > div {
  display: flex;
  justify-content: space-between;
}

.banner-menu-items > div > p {
  text-align: center;
  flex: 0 0 25%;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 35px 15px 15px;
  position: relative;
  cursor: pointer;
}

.banner-menu-items > div > p > a {
  position: relative;
}

.banner-menu-items > div > p > a:after {
  content: "\f061";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translate(0, -50%);
  right: -35px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  transition: 0.5s all;
  font-family: var(--font-Awesome);
}

.banner-menu-items > div > p:hover > a:after {
  right: 100%;
}

.banner-menu-items > div > p:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.home-banner-row .vc_inner.vc_row {
  position: absolute;
  bottom: 150px;
  right: 100px;
  z-index: 1;
}

.home-banner-row .vc_inner.vc_row > div > div > div {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(20.700000762939453px);
}

.home-banner-row .vc_inner.vc_row .wpb_text_column {
  position: relative;
}

.home-banner-row .vc_inner.vc_row .wpb_text_column:after {
  content: "\f062";
  position: absolute;
  right: 0;
  top: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-Awesome);
  color: #1b1b1b;
  border-radius: 50%;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.5s all;
}

.home-banner-row .vc_inner.vc_row .wpb_text_column:hover:after {
  transform: rotate(90deg);
}

.home-banner-row .vc_inner.vc_row .wpb_text_column p {
  padding-right: 42.34px;
}

.home-banner-row .vc_inner.vc_row .wpb_text_column p a {
  text-decoration: none;
}

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

.home-about-row > div:nth-child(2) > div {
  padding: 35px !important;
  border-radius: 10px;
  overflow: hidden;
}

.home-about-row > div:nth-child(2) > div > div{
    display:flex;
    flex-direction:column;
}

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

.home-about-row .sticky-container {
    align-self:flex-start;
    position:sticky;
    top:150px;
}


.home-about-row > div:nth-child(1) .wpb_single_image {
  position: relative;
}

.home-about-row > div:nth-child(1) .wpb_singleimage_heading {
  position: absolute;
  bottom: 15px;
  left: 35px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  z-index: 5;
  width: calc(100% - 35px);
  padding-left: 15px;
  margin-bottom: 0 !important;
}

.home-about-row > div:nth-child(1) .wpb_singleimage_heading:before {
  background-color: var(--white);
  border-radius: 50%;
}

.home-about-row .custom-button .vc_general.vc_btn3,
.about-intro-row .custom-button .vc_general.vc_btn3 {
  border-radius: 0 !important;
}

.vc_tta-title-text {
  color: var(--secondary-color) !important;
  font-size: 20px;
  font-weight:500;
}

.vc_tta-panel-title > a {
  padding: 15px 0 20px 50px !important;
  position: relative;
}

.vc_tta-panel-heading,
.vc_tta-panel-body {
  background-color: transparent !important;
  border: 0 !important;
}

.vc_tta-panel-body {
  padding-left: 50px !important;
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}

.vc_tta-panels > div:not(:last-child) {
  border-bottom: 1px solid #a9a9a9;
}

.home-choose-row .vc_tta-panel-title > a:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

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

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

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

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

.vc_tta-controls-icon {
  filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(39%)
    hue-rotate(252deg) brightness(100%) contrast(94%);
  right: 0 !important;
}

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

.counter-row {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  aspect-ratio: 1.3/1;
}

.counter-row {
  padding: 35px;
}

.mega_count_content .counter-after:after {
  content: "+";
}

.home-product-sec.background-layer:before {
  background: linear-gradient(
    180deg,
    rgba(27, 27, 27, 1) 30%,
    rgba(27, 27, 27, 0.7) 83%,
    rgba(27, 27, 27, 0.2) 100%
  );
}

.home-product-sec.background-layer:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: block !important;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(27, 27, 27, 1) 28%,
    rgba(27, 27, 27, 0) 100%
  );
}

.home-product-sec.vc_section{
    background-position:bottom !important;
}

.home-product-title {
  position: relative;
  z-index: 2;
}

.home-product-row {
  position: relative;
  padding-top: 150px;
  z-index: 5;
}

.home-product-row .wpb_single_image > figure{
    position:relative;
}

.home-product-row .wpb_single_image > figure:before{
    content:'';
    position:absolute;
    width:100%;
    height:250px;
    bottom:-250px;
    left:50%;
    transform:translateX(-50%);
    display:block !important;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:1;
    opacity:0.6;
}

.home-product-row .slick-center .wpb_single_image > figure:before {
    height:100px;
    bottom:-100px;
}

.home-product-row .wpb_single_image.vinyl > figure:before{
    background-image:url(./images/vinyl.png);
}

.home-product-row .wpb_single_image.kancil > figure:before{
    background-image:url(./images/kancil.png);
    opacity:0.5;
}

.home-product-row .wpb_single_image.upvc > figure:before{
    background-image:url(./images/upvc.png);
    opacity:0.3;
}

.home-product-row .slick-list{
    overflow:visible !important;
}


.home-product-title .custom-button .vc_general.vc_btn3 {
  border: 0 !important;
  padding: 0 !important;
  display: flex !important;
  gap: 20px;
  align-items: center;
}

.home-product-title .custom-button .vc_general.vc_btn3:before {
  display: none !important;
}

.home-product-title .custom-button .vc_general.vc_btn3:hover {
  color: #fff !important;
}

.home-product-title .custom-button .vc_general.vc_btn3 i {
  position: unset !important;
  transform: translate(0, 0) rotate(45deg) !important;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary-color);
  transition: 0.5s all;
}

.home-product-title .custom-button .vc_general.vc_btn3:hover i {
  transform: translate(0, 0) rotate(90deg) !important;
  background: var(--color-gradient) !important;
}

.home-product-row:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  background-image: url(./images/lightbulb.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 5;
}

.home-product-row .vc_inner.vc_row > div > div > div {
  position: relative;
}

.home-product-row .vc_inner.vc_row .text-stroke {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 1s all;
}

.home-product-row .vc_inner.vc_row .text-stroke p {
  font-size: clamp(5vw, 90px, 10vw);
  font-weight: 600;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 1) 80%
  );
  color: transparent !important;
  overflow: hidden;
}

.home-product-row .slick-arrow {
  bottom: unset;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 50px;
  transition: 0.5s all;
  width: 50px;
}

.home-product-row .slick-arrow:hover {
  background: var(--color-gradient);
}

.home-product-row .slick-arrow:before {
  font-size: 16px;
  color: #fff;
  transition: 0.5s all;
}

.home-product-row .slick-arrow:hover:before {
  color: var(--secondary-color);
}

.home-product-row .slick-prev {
  left: 30%;
}

.home-product-row .slick-next {
  left: 70%;
}

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

.home-product-row .slick-slide {
  transform: scale(0.8);
  transition: 0.5s all;
  opacity: 0.3;
}

.home-product-row .slick-slide .text-stroke {
  transform: translate(-50%, 0);
  opacity: 0;
  transition: 0.3s all;
}

.home-product-row .slick-slide.slick-current {
  transform: scale(1);
  opacity: 1;
}

.home-product-row .slick-slide.slick-current .text-stroke {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.home-product-title .big-title {
  position: relative;
}

.home-product-title .big-title:before {
  content: "";
  position: absolute;
  width: calc(100% + calc(var(--gap) * 2));
  left: -100px;
  bottom: 15px;
  display: block !important;
  background-color: rgba(255, 255, 255, 0.3);
  height: 1px;
}

.home-product-title .vc_inner.vc_row .wpb_text_column {
  padding-left: var(--gap);
  padding-top: 35px;
}

.home-product-title .vc_inner.vc_row > div > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-button-row > div > div > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: fit-content;
  margin: auto;
  gap: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
}

.product-button-row {
  position: relative;
  z-index: 5;
}

.product-button-row::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  background-image: url(./images/door-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-button-row .custom-button .vc_general.vc_btn3 {
  overflow: hidden;
  border-radius: 10px !important;
  font-weight: 500;
  background-color: transparent !important;
}

.product-button-row
  > div
  > div
  > div
  > .custom-button:nth-child(2)
  .vc_general.vc_btn3 {
  color: var(--secondary-color) !important;
  background:var(--color-gradient) !important;
}

.product-button-row
  > div
  > div
  > div
  > .custom-button:nth-child(2)
  .vc_general.vc_btn3:hover {
  color: var(--white) !important;
  background:#F36F21 !important;
}

.product-button-row .custom-button:nth-child(1) .vc_general.vc_btn3:hover {
    background-color:#fff !important;
    color:var(--secondary-color) !important;
}


.product-button-row .custom-button .vc_general.vc_btn3:before{
    display:none !important;
}

.home-service-row .vc_inner.vc_row .appearing-image.wpb_single_image {
  position: relative;
}

.home-service-row .vc_inner.vc_row .appearing-image.wpb_single_image figure {
  position: absolute;
  opacity: 1;
  right: -90%;
  height: auto;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.5s all;
}

.home-service-row .vc_inner.vc_row .appearing-image.wpb_single_image {
  min-width: 290px;
}

.home-service-row
  .vc_inner.vc_row
  .appearing-image.wpb_single_image:hover
  figure {
  opacity: 1;
}

.home-service-row .wpb_singleimage_heading {
  font-size: 18px;
  font-weight: 400 !important;
  color: #616161;
  margin: 20px 0 !important;
  position: relative;
}

.home-service-row .vc_inner.vc_row > div > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-service-row
  > div:nth-child(2)
  .vc_inner.vc_row:nth-child(6)
  > div
  > div
  > div {
  border-bottom: 1px solid #a9a9a9;
}

.home-service-row .vc_inner.vc_row .gradient-arrow img {
  max-height: 14px;
  width: auto;
}

.home-service-row .vc_inner.vc_row > div:first-child > div > div {
  border-top: 1px solid #a9a9a9;
}

.home-service-row > div:first-child .wpb_single_image img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 80%;
  object-fit: cover;
  animation: circle-spin 20s linear infinite;
}

.home-service-row > div:first-child .wpb_single_image > figure {
  position: relative;
}

.home-service-row > div:first-child .wpb_single_image > figure:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  display: block !important;
  background-color: transparent;
  border: 1px solid #a9a9a9;
  border-radius: 50%;
  z-index: -1;
}

@keyframes circle-spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mega-testimonial-3 img {
  object-fit: cover;
  aspect-ratio: 1/1;
  margin: unset !important;
  object-position: top center;
  margin-bottom: 15px !important;
  box-shadow: none !important;
  border: 0 !important;
}

.mega-testimonial-3 {
  display: flex !important;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: center;
}

.tm-profile3 {
  color: #fff;
  text-align: left;
}

.tm-profile3 p {
  margin-bottom: 15px !important;
}

.tm-prof3 p {
  text-align: left !important;
  margin-bottom: 15px !important;
  font-weight: 500 !important;
}

.tm-prof3 {
  margin-top: 0 !important;
}

ul.slick-dots {
  padding-left: 0 !important;
  display: flex;
  gap: 10px;
  margin-top: 35px;
}

ul.slick-dots > li {
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #4a4a4a;
  border-radius: 50%;
  cursor: pointer;
}

ul.slick-dots > li.slick-active {
  background-color: #d9d9d9;
}

.mega-testimonial-3 i.fa-quote-left {
  color: var(--secondary-color) !important;
  padding: 0 !important;
  width: 80px;
  height: 80px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 30px !important;
  margin-bottom: 15px !important;
}

.mega-testimonial-3 i.fa-quote-left:before {
  content: "\f10e" !important;
}

.home-project-row .slick-list {
  margin: 0 -15px !important;
  overflow: visible !important;
}

.home-project-row .slick-slide {
  margin: 0 15px !important;
}

.home-project-row .wpb_single_image img {
  max-height: 500px;
}

.home-project-title > div > div > div {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  column-gap: 70px;
}

.home-project-title > div > div > div > .wpb_text_column:first-child h2 {
  width: max-content;
}

.home-project-title > div > div > div > .wpb_text_column:last-child {
  flex: 0 0 50%;
}

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

.home-blog-row > div:last-child > div > div {
  background-color: var(--secondary-color);
  padding: 50px;
  border-radius: 10px;
}

.home-blog-row > div:last-child .wpb_single_image img {
  animation: ring 2s linear infinite;
}

.home-blog .entries {
  grid-template-columns: 1fr;
  row-gap: 35px;
}

.home-blog .entries > article {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 35px 100px;
  padding: 20px 35px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 10px;
  overflow: hidden;
}

.home-blog .entries > article > .ct-media-container {
  width: auto;
  margin-bottom: 0 !important;
}

.home-blog .entry-excerpt {
  display: none;
}

.home-blog .ct-media-container img {
  aspect-ratio: 1/1 !important;
  max-height: 150px;
  width: auto;
  border-radius: 50%;
}

.home-blog .entry-meta {
  padding-left: 0;
  margin-bottom: 20px !important;
  color: var(--color-3);
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
}

.home-blog .entry-meta li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--color-3);
  border-radius: 50%;
  display: inline-block !important;
  vertical-align: middle;
  margin-right: 10px;
}

.home-blog-content {
  margin-bottom: 0 !important;
}

.blog-content {
  margin-bottom: 0 !important;
}

.home-blog .entry-button {
  padding: 0 !important;
  min-height: unset !important;
  font-weight: 500;
  color: #313131;
  background-color: transparent !important;
}

.entry-button svg,
.ct-woo-card-actions a i {
  transition: 0.5s all;
}

.entry-button:hover svg {
  margin-left: 15px;
}

.ct-woo-card-actions a:hover i {
  transform: translateX(15px);
}

.home-blog .entry-button:hover {
  color: #313131 !important;
}

.tnp-field-email input {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: 1px solid #9e9e9e !important;
}

.tnp-field-email input::placeholder {
  color: var(--white) !important;
}

.tnp-field-button {
  width: fit-content;
  margin: auto !important;
}

.tnp-submit {
  padding: 0 !important;
  min-height: unset !important;
  background-color: unset !important;
  padding-bottom: 2px !important;
  border-bottom: 1px solid #fff !important;
}

.page-id-321 .cta-sec {
  position: relative;
  z-index: 3;
}

.cta-sec {
  /* padding:100px; */
  background-color: var(--primary-color);
}

.cta-title-row {
  display: flex;
  align-items: center;
  gap: 20px 50px;
  padding-bottom: 35px;
  position: relative;
}

.cta-title-row:before {
  content: "";
  position: absolute;
  width: calc(100% + 35px);
  height: 1px;
  bottom: 0;
  left: 0;
  display: block !important;
  background-color: rgba(40, 40, 40, 0.2);
}

.cta-title-row h2 {
  line-height: 1 !important;
}

.cta-title-row > div:first-child {
  flex: 0 0 max-content;
}

.cta-row {
  display: flex;
}

.cta-row > div:first-child {
  padding: 100px 0 100px 100px !important;
}

.cta-image img {
  object-fit: cover;
}

.cta-title-column p {
  margin-bottom: 0 !important;
}

.cta-inner-row {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: nowrap;
  padding-top: 35px;
}

.cta-inner-row > div:first-child {
  flex: 0 0 33.33%;
}

.cta-inner-row .cta-info:hover img {
  animation: spinning-cta 1.5s 1 linear;
}

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

#phone{
    grid-row:2/3;
}

#msg {
  grid-column: span 2;
}

.cta-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-info p {
  color: #4a4a4a;
}

.cta-info img {
  max-height: 60px;
  width: auto;
}

.cta-info:not(:last-child) {
  padding-bottom: 20px;
}

.cta-info .social-icons {
  display: flex;
  align-items: center;
}

.cta-info .social-icons a {
  height: 35px;
  width: 35px;
  border: 1px solid #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-info .social-icons a:not(:last-child) {
  border-right: 0;
}

.cta-info .social-icons i {
  font-size: 18px;
  color: var(--secondary-color);
}

.wpcf7-form {
  position: relative;
}

#send {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

#send input {
  font-size: 0;
  padding: 0;
}

#send button {
  height: 40px;
  background-color: transparent !important;
  border-radius: 50%;
  cursor: pointer;
}

.wpcf7-response-output {
  position: absolute;
  width: 100%;
}

#send button i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cta-row > div {
  align-items: stretch;
  display: flex;
  flex-direction: column;
}

.cta-row > div > .cta-wrapper {
  flex-grow: 1;
  z-index: 1;
}

.cta-row .cta-info a{
    color:#4a4a4a !important;
}

.cta-image,
.cta-image img {
  height: 100%;
}

.about-vision-row .small-title {
  font-size: 16px !important;
}

.about-counter .wpb_text_column p:not(:last-child) {
  margin-bottom: 10px !important;
}

.about-counter > div > div > div {
  position: relative;
}

.about-counter .wpb_text_column {
  aspect-ratio: 1/1;
  max-width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.about-counter .wpb_text_column > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-counter .wpb_text_column:nth-child(2) {
  left: 200px;
}

.about-counter .wpb_text_column strong {
  font-size: 35px;
  font-weight: 400;
}

.approach-inner-row .icons img {
  max-height: 65px;
}

.approach-inner-row > div > div > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 35px;
}

.approach-inner-row > div > div > div .wpb_text_column p:first-child {
  margin-bottom: 15px !important;
  font-size:18px;
  color:var(--secondary-color) !important;
}

.approach-inner-row .icons {
  min-width: 50px;
}

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

.about-choose-title > div > div > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px 50px;
}

.about-choose-title > div > div > div h2 {
  width: max-content;
}

.about-why-row > div > div > div {
  padding: 50px;
  min-width: 250px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s all;
  overflow: hidden;
}

.about-why-row > div > div > div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  display: block !important;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: 0.5s all;
}

.about-why-row > div:hover > div > div:before {
  height: 100%;
}

.about-why-row {
  justify-content: center;
}

.about-why-row > div > div {
  padding: 0 !important;
}

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

.about-why-row:before {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
  display: block !important;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.about-why-row:after {
  content: "";
  position: absolute;
  width: calc(100% - 70px);
  height: calc(100% + 50px);
  display: block !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.about-why-row .wpb_text_column {
  height: 0;
  transform: scale(0);
  transition: 0.5s all;
}

.about-why-row > div:hover > div > div {
  z-index: 5;
}

.about-why-row > div:hover .wpb_text_column {
  height: auto;
  transform: scale(1);
}

.about-why-row .wpb_single_image,
.about-why-row .vc_custom_heading {
  transition: 0.5s all;
}

.about-why-row > div:hover .wpb_single_image,
.about-why-row > div:hover .vc_custom_heading {
  transform: scale(0);
  height: 0;
}

.about-why-row > div:hover {
  z-index: 5;
}

.about-why-row > div {
  position: relative;
  cursor: pointer;
}

.about-why-row > div > div > div {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

@keyframes jiggleBounce {
  0% {
    transform: scale(0.9) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(6deg);
  }
  50% {
    transform: scale(1) rotate(-6deg);
  }
  75% {
    transform: scale(1.03) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.about-why-tick-row {
    width:fit-content;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    column-gap: 100px;
}

.about-why-row .wpb_single_image {
  transition: 0.5s all;
  transform-origin: center;
}

.about-why-row > div:not(:hover) .wpb_single_image {
  animation: jiggleBounce 0.4s ease-out;
}

.about-why-tick-row .wpb_text_column li {
  list-style-type: none;
  padding-left:20px;
}

.about-why-tick-row .wpb_text_column li:before {
  content: "\f00c";
  font-family: var(--font-Awesome);
  font-size: inherit;
  font-weight: 700;
  position:absolute;
  left:15px;
}

.about-why-tick-row .wpb_text_column ul li:not(:last-child) {
  margin-bottom: 10px;
}

.home-testimonial-sec.about {
  padding-top: 0 !important;
}

.home-testimonial-row.about .tm-profile3 {
  color: var(--secondary-color);
}

.home-testimonial-row.about .mega-testimonial-3 i.fa-quote-left{
    background-color:var(--secondary-color);
    color:var(--primary-color) !important;
}


.service-expertise-row .custom-button .vc_general.vc_btn3 {
  border-radius: 0 !important;
}

.service-expertise-row {
  background-color: #fff;
}

.service-expertise-row {
  border-top: 1px solid #d9d9d9;
}

.service-intro-title > div > div > div {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 35px;
  flex-wrap: wrap;
}

.service-intro-title > div > div > div > div:last-child {
  align-self: center;
}

.service-intro-title .circle-button {
  display: flex !important;
  justify-content: center;
}

.service-intro-title .circle-button .vc_general.vc_btn3 {
  padding: 35px !important;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight:500 !important;
  width: max-content;
  gap: 15px;
  background-image: none !important;
  border-radius: 50% !important;
  color: #1a1a1a !important;
  background-color: var(--white) !important;
}

.service-intro-title .circle-button .vc_general.vc_btn3 i {
  position: unset !important;
  animation: up-n-down 2.5s linear infinite;
  transform: translateY(0);
}

@keyframes up-n-down {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(15px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

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

.service-counter-row > div:first-child .counter-after:after {
  content: "%";
}

.service-details-row .iksm-widget {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow: hidden;
}

.service-details-row .widget-title {
  background: var(--color-gradient);
  padding: 20px;
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.service-details-row .iksm-container {
  padding: 20px;
}

.service-details-row
  .iksm-container
  .iksm-terms-tree
  > .iksm-terms-tree__inner
  > div:not(:last-child)
  a {
  border-bottom: 1px solid #b6b6b6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.service-details-row
  .iksm-container
  .iksm-terms-tree
  > .iksm-terms-tree__inner
  > div
  a {
  justify-content: space-between;
}

.service-details-row
  .iksm-container
  .iksm-terms-tree
  > .iksm-terms-tree__inner
  > div
  a:after {
  content: "\f061";
  font-family: var(--font-Awesome);
  font-size: 18px;
  font-weight: 700;
}

.service-details-row {
  position: relative;
  overflow: visible;
}

.service-cta > div > div > div {
  padding: 35px 15px;
  overflow: hidden;
}

.service-cta .wpb_text_column a {
  text-decoration: none;
}

.service-cta .wpb_text_column img {
  margin-right: 15px;
}

.service-cta {
  margin: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.service-details-content .vc_inner.vc_row .custom-button .vc_general.vc_btn3 {
  border-radius: 0 !important;
  background: var(--color-gradient) !important;
  color: #1e1e1e !important;
  transition: 0.5s all;
  border: 0 !important;
}

.service-details-content
  .vc_inner.vc_row
  .custom-button
  .vc_general.vc_btn3:before {
  background: linear-gradient(270deg, #fece0a 30%, #f36f21 70%) !important;
}

.blog-details-intro {
  margin: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: var(--gap) 35px 35px !important;
}

.blog-details-intro.background-layer:before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.blog-row .entries {
  gap: 70px 35px;
  grid-template-columns: repeat(3, 1fr);
}

.entry-excerpt {
  text-align: justify;
  margin-bottom: 20px !important;
}

.blog-row .entry-meta {
  display: none;
}

.blog-row .entries > article:not(:nth-child(1)) .blog-content {
  display: flex;
  flex-direction: column;
}

.blog-row .entries > article:not(:nth-child(1)) .ct-media-container img {
  max-height: 400px;
}

.blog-content ol li h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #5c5c5c;
}

.blog-content ol li::marker {
  font-size: inherit;
  font-weight: 600;
}

.blog-content .wpb_text_column * {
  color: #5c5c5c;
}

.blog-content ol li {
  margin-bottom: 20px;
}

.catalogue-row .wpb_single_image{
    box-shadow:0 0 4px 0 rgba(0,0,0,0.25);
}

mark.count {
  display: none;
}

.single-product .woocommerce-Tabs-panel--description .wpb_text_column p:not(:last-child){
    margin-bottom:10px !important;
}

.woocommerce .ct-widget.iksm-widget {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.woocommerce .ct-widget.iksm-widget > .widget-title {
  background-color: #111111;
  color: var(--white);
  padding: 15px 25px;
  margin-bottom: 0;
  font-weight: 500;
  font-size:18px;
}

.woocommerce ul.products li .ct-media-container {
  padding: 35px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.woocommerce ul.products li .ct-media-container img{
    aspect-ratio:1/1 !important;
    object-fit:contain !important;
}

.woocommerce .iksm-term:not(:first-child) {
  border-top: 1px solid #d9d9d9;
}

.woocommerce .iksm-term--current > .iksm-term__inner{
  background-color:unset !important;
}

.ct-woo-card-actions {
  justify-content: center !important;
}

.ct-woo-card-actions a {
  padding: 0 !important;
  color: #313131 !important;
  background-color: unset !important;
  gap: 10px;
  min-height: unset;
}

.woocommerce-loop-product__title,
.woocommerce-loop-category__title {
  text-align: center !important;
  flex: 1;
}

.woocommerce-tabs > ul {
  display: none !important;
}

.product-extra-buttons{
    display:flex;
    gap:20px;
    align-items:center;
}

.product-extra-buttons .pdf-download {
    background-color:#ff0000;
    transition:.5s all;
    border:1px solid #ff0000;
    border-radius:0 !important;
}

.product-extra-buttons .pdf-download:hover{
    background-color:#fff;
    color:#ff0000;
}

.product-extra-buttons .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;
}

.product-extra-buttons {
  padding: 20px 0;
  margin: 20px 0 !important;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

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

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

.woocommerce-product-details__short-description p,
.woocommerce-product-details__short-description {
  margin-bottom: 0 !important;
}

.single-product .ct-media-container {
  padding: 15px;
  background-color: var(--primary-color);
  border-radius: 10px !important;
}

.single-product .ct-product-gallery-container .ct-media-container {
  padding: 35px;
}

.single-product .ct-product-gallery-container .ct-media-container img{
    object-fit:contain !important;
    aspect-ratio:1/1 !important;
}

.related {
  border-top: 1px solid #d9d9d9;
  padding-top: 50px;
}

.related .ct-module-title {
  text-align: center;
  font-size: 27px;
  font-weight: 600;
}

.hermes_copy90 {
  transform: translate(100px, -100px) !important;
}

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

/***footer***/

#footer .widget-menu li > a {
  color: #fff;
}

#footer .widget-menu li:not(:last-child) {
  margin-bottom: 15px;
}

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

#footer [data-row*="middle"] > .ct-container {
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  padding: 20px 0 50px;
  row-gap: 15px;
}

#footer [data-row*="middle"] > .ct-container > div:first-child h2 small {
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 400;
  padding-left: 10px;
}

#footer h3.widget-title {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #fece0a 10%, #f36f21 25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px !important;
}

#footer [data-row*="middle"] > .ct-container > div:nth-child(3) .widget-menu {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  column-gap:20px;
  grid-auto-flow: column;
}

@media only screen and (min-width: 768px) {
  .banner-menu-items {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .home-testimonial-row > div:last-child {
    padding: 100px 100px 100px 50px;
  }

  .service-details-content .vc_inner.vc_row {
    margin: 0 !important;
    border-radius: 20px;
    overflow: hidden;
  }

  .service-details-content .vc_inner.vc_row > div:first-child > div {
    padding-left: 0 !important;
  }

  .blog-row .entries > article:nth-child(1) {
    grid-area: 1/1/2/4;
    flex-direction: row-reverse;
    column-gap: 50px;
  }

  .blog-row .entries > article:nth-child(1) .ct-media-container img {
    aspect-ratio: 10/6 !important;
  }

  .blog-row .entries > article:nth-child(1) .ct-media-container {
    flex: 0 0 60%;
    margin-bottom: 0 !important;
  }

  .blog-row .entries > article:nth-child(1) .entry-title {
    font-size: 25px !important;
  }

  .blog-content .entry-title {
    min-height: 52px;
  }

  .home-product-title .vc_inner.vc_row > div > div > div > .wpb_text_column {
    flex: 0 0 65%;
  }

  .service-intro-title > div > div > div > p,
  .service-intro-title > div > div > div > div:not(:nth-child(2)) {
    width: 25%;
  }

  .service-intro-title > div > div > div > div:nth-child(2) {
    width: 45%;
  }

  .home-project-button {
    width: fit-content;
    margin-left: auto !important;
  }

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

  .service-expertise-row {
    padding: 70px 0 !important;
  }

  .service-expertise-row.last {
    padding-bottom: 0 !important;
  }
  
  .service-details-content .vc_inner.vc_row > div:last-child > div{
    padding:0 35px !important;
  }
}

@media only screen and (min-width: 1000px) {
  #footer [data-row*="middle"] > .ct-container > div:first-child {
    grid-column: span 3;
  }

  #menu-quick-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }

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

  .service-details-row > div:last-child {
    padding-left: 70px;
  }
  
  .about-why-row > div:first-child {
    margin-right: -70px;
  }

  .about-why-row > div:last-child {
    margin-left: -70px;
  }

  .about-why-row > div:nth-child(2) {
    margin-right: -35px;
  }

  .about-why-row > div:nth-child(3) {
    margin-left: -35px;
  }
  
  .banner-alignment{
      left:100px !important;
  }
}

@media only screen and (max-width: 1199.98px) {
  .home-banner-row .vc_inner.vc_row {
    bottom: 70px;
    right: 70px;
  }

  .hermes_copy90 {
    transform: translate(100px, -70px) !important;
  }
}

@media only screen and (max-width: 999.98px) {
  .home-about-row {
    flex-direction: column;
  }

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

  #menu-quick-links {
    flex-wrap: wrap;
  }

  .home-banner-row .vc_inner.vc_row .wpb_single_image img {
    max-height: 150px;
    object-fit: cover;
  }

  .service-details-content {
    padding-top: 35px;
  }

  .home-choose-row > div {
    width: 100% !important;
  }

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

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

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

  .home-choose-row > div:last-child {
    padding-bottom: 35px;
  }

  .home-about-row > div:not(:last-child) {
    margin-bottom: 35px;
  }

  .home-about-row > div:last-child .wpb_single_image img {
    object-fit: cover;
    width: 100%;
  }

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

  #footer [data-row*="middle"] > .ct-container > div:first-child h2 small {
    padding-left: 0;
  }

  #footer [data-row*="middle"] > .ct-container > div:first-child h2 {
    margin-bottom: 0 !important;
  }

  #footer [data-row*="middle"] > .ct-container > div:nth-child(3) .widget-menu {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
  }

  #footer [data-row*="middle"] > .ct-container > div .widget-menu li {
    border-right: 0;
  }

  .approach-inner-row > div > div > div,
  .about-choose-title > div > div > div {
    flex-wrap: wrap;
  }

  .service-details-row > div {
    width: 100%;
  }
  
  .about-why-row > div > div > div {
    max-width: 350px;
    margin: auto;
  }
  
  .about-why-row > div{
      width:100%;
  }
  
   .about-why-row > div:not(:first-child) > div > div {
    margin-top: -35px;
  }
  
  .service-details-row .ct-widget .widget-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
  }
}

@media only screen and (max-width: 767.98px) {
  .dflex {
    display: flex !important;
  }

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

  .big-title,
  .big-title :is(h1, h2, h3, h4, h5, h6) {
    font-size: 35px !important;
  }

  .blog-row .entries {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .woocommerce-product-details__short-description p {
    text-align: justify !important;
  }

  .home-banner-row .vc_inner.vc_row .wpb_text_column p {
    font-size: 14px;
  }

  .home-banner-row .vc_inner.vc_row {
    bottom: 222px;
    right: 15px;
    width: 60%;
  }

  .hermes_copy90 {
    transform: translate(15px, -15px) !important;
  }

  .home-banner-row .banner-menu-items {
    background-color: var(--secondary-color);
    margin-top:-1px;
  }
  
  .counter-after{
      font-size:40px !important;
  }

  .banner-menu-items > div {
    flex-direction: column;
  }

  .home-about-row > div:nth-child(2) > div {
    padding: 35px 15px !important;
  }

  .counter-row {
    width: max-content;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    padding: 35px 15px;
    aspect-ratio: unset;
    margin: auto !important;
    min-height: 220px;
  }

  .home-choose-sec {
    padding-top: 110px;
  }

  .home-choose-row .wpb_single_image img {
    max-height: 350px;
  }

  .home-product-title .vc_inner.vc_row .wpb_text_column {
    padding-left: 0;
  }

  .home-testimonial-row > div:first-child {
    height: 350px;
  }

  .home-testimonial-row > div:last-child {
    padding: 35px 15px;
  }

  .home-project-title > div > div > div {
    flex-wrap: wrap;
  }

  .home-project-title > div > div > div > .wpb_text_column:last-child {
    flex: 0 0 100%;
  }

  .home-blog-title .custom-button {
    text-align: left !important;
  }

  .home-blog .entries > article {
    flex-wrap: wrap;
    padding: 35px 15px !important;
  }

  .home-blog .entries {
    padding-bottom: 35px;
  }

  .cta-row > div:first-child {
    padding: 70px 15px !important;
  }

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

  .cta-inner-row {
    flex-wrap: wrap;
  }

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

  #msg {
    grid-column: span 1;
  }

  .cta-inner-row > div:first-child {
    flex: 0 0 100%;
  }

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

  .cta-image img {
    max-height: 350px;
    width: 100%;
  }

  .home-product-row .slick-next {
    left: calc(100% - 35px);
  }

  .home-product-row .slick-prev {
    left: 35px;
  }

  .product-button-row {
    padding-top: 70px !important;
  }

  .about-choose-title {
    padding-bottom: 70px !important;
  }

  .about-why-row:after {
    width: calc(100% - 30px);
  }

  .about-why-row:before {
    width: 100%;
  }

  .mega_count_content .counter-after:after {
    font-size: 40px;
  }

  .about-why-tick-row .wpb_text_column ul {
    padding-left: 0;
  }

  .about-why-tick-row > div:first-child .wpb_text_column {
    margin-bottom: 10px !important;
  }

  #footer [data-row*="top"] .ct-container img {
    max-height: 50px;
    width: auto;
  }

  .woocommerce ul.products li .ct-media-container img {
    object-fit: cover;
  }

  .service-intro-title > div > div > div,
  .service-counter-row > div > div > div {
    flex-direction: column;
  }

  .service-counter-row > div > div > div {
    align-items: flex-start;
    gap: 10px;
  }

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

  .service-counter-row > div:first-child .counter-after:after {
    font-size: 40px;
  }

  .service-counter-row > div:not(:last-child) {
    padding-bottom: 35px;
  }

  .blog-row .ct-media-container img {
    max-height: 300px;
  }

  .about-counter .wpb_text_column {
    left: 50% !important;
    /* transform:translateX(-50%); */
  }

  .about-counter .wpb_text_column:nth-child(2) {
    top: -50px;
    bottom: unset;
    left: 0 !important;
  }

  .about-counter .wpb_text_column:nth-child(3) {
    top: unset;
    bottom: -50px;
    left: unset !important;
    right: 0;
  }

  .about-intro-title .wpb_text_column {
    margin-bottom: 85px !important;
  }
  
  .about-intro-row > div > div > div > h2{
    margin-top:85px;
  }


  .about-counter .wpb_single_image {
    padding: 0 20px;
  }

  .about-intro-row .custom-button.pb-100 {
    padding-bottom: 35px !important;
  }

  .home-blog-row > div:last-child > div > div {
    padding: 50px 15px;
  }

  .about-intro-row > div:last-child > div > div {
    display: flex;
    flex-direction: column;
  }

  .about-intro-row > div:last-child > div > div > .wpb_single_image {
    order: -1;
    margin-bottom: 20px !important;
  }

  .woocommerce .product-entry-wrapper {
    width: 100%;
  }

  .service-intro-title .circle-button .vc_general.vc_btn3 {
    width: 150px !important;
    height: 150px !important;
    margin: unset !important;
    text-align: center !important;
  }

  .service-intro-title > div > div > div {
    align-items: flex-start;
  }

  .service-intro-title > div > div > div > div:last-child {
    align-self: flex-start;
  }

  .service-bg {
    min-height: 350px !important;
  }

  .blog-details-intro {
    min-height: 350px !important;
    padding: 70px 0 35px !important;
  }
  
  .blog-details-intro h2{
      font-size:23px !important;
  }
  
  .home-product-row .vc_inner.vc_row .text-stroke p{
      font-size:clamp(5vw, 90px, 11vw);
  }

  .cta-title-row {
    flex-wrap: wrap;
  }
  
  .service-expertise-row{
    padding:50px 0 !important; 
  }
  
  .service-expertise-row.last{
    padding-bottom:35px !important;
  }
  
  .home-service-row .vc_inner.vc_row .appearing-image.wpb_single_image figure{
    right:0;
  }
  
  .woocommerce-product-gallery{
    margin-bottom:35px !important;
  }
  
  .medium-title :is(h1,h2,h3,h4,h5,h6),
  .medium-title{
      font-size:20px !important;
  }
  
  .about-why-row > div > div > div{
      max-width:250px;
  }
  
  .service-details-content .vc_inner.vc_row{
      margin:0 !important;
      border-radius:20px;
      overflow:hidden;
  }
  
  .service-details-content .vc_inner.vc_row > div > div{
      padding:0 !important;
  }
  
  .service-details-content .vc_inner.vc_row > div:last-child > div > div{
      padding:20px 15px 35px;
  }
  
  #footer [data-row*="middle"] > .ct-container > div:first-child h2 small{
      display:block;
  }
}

@media only screen and (max-width: 479.98px) {
  .home-banner-row .vc_inner.vc_row .wpb_single_image img {
    max-height: 120px;
  }
}

@keyframes spinning-cta {
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
