/*Font face-------------------------------------------------------------------*/

@font-face {
  font-family: "poppins";
  src: url("./fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "poppins";
  src: url("./fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "poppins";
  src: url("./fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "poppins";
  src: url("./fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("./fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("./fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("./fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "montserrat";
  src: url("./fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* Reset--------------------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
/*em,*/
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption {
  border: 0;
  /* font-family: inherit; */
  /*font-size: 100%;*/
  font-style: inherit;
  /* font-weight: inherit; */
  /*margin: 0;*/
  outline: 0;
  /*padding: 0;*/
  vertical-align: baseline;
}

html {
  font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/*ol, ul {list-style: none;}*/

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a:hover,
a:active {
  /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
  outline: 0;
}

a img {
  border: 0;
}

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

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

.page .hero-section {
  display: none !important;
}

.woocommerce .hero-section {
  display: block !important;
}

.preloader {
  display: none !important;
}

html {
  scroll-padding-top: 35px;
}

html,
body {
  scroll-behavior: smooth;
}

@media only screen and (max-width: 767.98px) {
  body {
    overflow-x: hidden;
  }
}

:root {
  /*--row-spacing: clamp(35px, 5.6%, 85px);*/
  --row-spacing: clamp(35px, 5.6%, 100px);
  --theme-container-width: 100%;
  --theme-normal-container-max-width: 100%;
  --gap: 100px;

  /*grid / flex gap*/
  --column-gap: 35px;
  --row-gap: 35px;

  --send-btn-color: #b99447;
  --placeholder-color:rgba(30, 30, 30, 0.6);

  --theme-font-family: "poppins", sans-serif;
  --font-montserrat:"montserrat";

  --listIndent: 20px;
  --lineHeight: 1.5;

  --theme-line-height: 1.5;
  --theme-list-indent: 20px;

  --buttonMinHeight: auto;

  --btn-font-size: 16px;
  --btn-line-height: calc(var(--btn-font-size) * 1.3);
  --btn-radius: 0;
  --btn-border: 1px solid var(--green);
  --btn-bg-color: transparent;
  --btn-font-color: var(--green);
  --btn-text-transform: initial;
  --btn-font-weight: 700;
  --btn-padding: 10px 20px;

  --title-font: 25px;
  --title-font-medium: 25px;
  --title-font-small: 20px;
  --cta-title: clamp(27px, 3vw, 40px);
  --icon-title: 18px;
  --fontAwesome: "Font Awesome 6 free";
  --max-height: min(60vh, 500px);

  --grey-10: hsl(0, 0%, 10%);
  --grey-20: hsl(0, 0%, 20%);
  --grey-30: hsl(0, 0%, 30%);
  --grey-40: hsl(0, 0%, 40%);
  --grey-50: hsl(0, 0%, 50%);
  --grey-60: hsl(0, 0%, 60%);
  --grey-70: hsl(0, 0%, 70%);
  --grey-80: hsl(0, 0%, 80%);
  --grey-85: hsl(0, 0%, 85%);
  --grey-90: hsl(0, 0%, 90%);
  --grey-95: hsl(0, 0%, 95%);

  --filterBlack: invert(1) brightness(0);
  --filterWhite: invert(1) brightness(100);
  --filterNormal: invert(0) brightness(1);

  /*color*/
  --blue: #0064ff;
  --lightblue: #3DCEDFF;
  --green: #3ecd3e;
  --heading-color: #2f2f2f;
  --body-color: #545454;
  --heading-color-3d: #3d3d3d;
  --red: #cd3e3e;

  /*transition*/
  --allTransition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 999.98px) {
  :root {
    --row-spacing: 35px;
  }
}

@media only screen and (max-width: 767.98px) {
  :root {
    --row-spacing: 15px;
    --gap: 70px;
    --title-font: 23px;
    --title-font-medium: 22px;

    --column-gap: 15px;
    --row-gap: 15px;
  }
}

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

body.single #main > [class*="ct-container"] {
  padding-left: 0;
  padding-right: 0;
}

body.archive #main > [class*="ct-container"],
body.blog #main > [class*="ct-container"],
body.search-results #main > [class*="ct-container"] {
  padding-left: 15px;
  padding-right: 15px;
}

/*set default width 100%*/
.woocommerce-notices-wrapper,
article > .related,
article > .upsells,
article > .page-links,
article > .entry-tags,
article > .author-box,
article > .ct-comments,
article > .ct-share-box,
article > .hero-section,
article > .post-edit-link,
article > .post-navigation,
article > .ct-related-posts,
article > .ct-newsletter-subscribe-block,
article > .product .wc-tabs,
article > .post-password-form,
article > .product .product-entry-wrapper {
  width: 100% !important;
}

/*error 404*/
.error404 #main .ct-container {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

@media only screen and (max-width: 767.98px) {
  .error404 h1.page-title {
    font-size: var(--title-font);
  }
}

body {
  font-family: var(--theme-font-family);
  line-height: var(--lineHeight);
}

@media only screen and (min-width: 768px) {
  .mobile-view {
    display: none !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .desktop-view {
    display: none !important;
  }
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3 !important;
}

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

.all-title {
  font-size: var(--title-font) !important;
  margin-bottom: 25px !important;
}

.cta-title {
  font-size: var(--cta-title);
}

.subheading {
  margin-bottom: 10px;
}

.two-color span {
  color: var(--theme-palette-color-2);
}

.stroke-text {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--gray-50);
  -webkit-text-fill-color: transparent;
  font-size: 5vw;
  line-height: 1;
}

.stroke-text.white {
  -webkit-text-stroke-color: #fff;
}

.small-text {
  font-size: 14px;
}

/*color text*/
.text-blue {
  color: var(--blue);
}
.text-green {
  color: var(--green);
}

/*add line on title*/
.line-block,
.align-w-line-p {
  --line-width: 80px;
  position: relative;
}

.line-block.top {
  padding-top: 10px;
}

.line-block:before {
  content: "";
  position: absolute;
  background: var(--theme-palette-color-1);
  width: var(--line-width);
  height: 2px;
}

.line-block.top:before {
  top: 0;
  left: 0;
}

.line-block.left {
  padding-left: calc(var(--line-width) + 10px);
}

.line-block.left:before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.align-w-line-p {
  padding-left: var(--line-width);
}

.font-25 {
  font-size: 25px;
}
.font-20 {
  font-size: 20px;
}
.font-18 {
  font-size: 18px;
}
.font-16 {
  font-size: 16px;
}

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

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

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

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

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

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

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

.text-underline,
.text-underline :is(h1, h2, h3, h4, h5, h6) {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media only screen and (max-width: 480px) {
  .mobile-text-justify {
    text-align: justify;
  }

  .mobile-text-justify :is(ul, ol) {
    text-align: initial;
  }

  .mobile-text-justify [style*="text-align"] {
    text-align: justify !important;
  }
  /*break text on mobile*/
  .md-break {
    display: block;
  }

  /*.service-row .mobile-text-justify,*/
  /*.service-row .mobile-text-justify [style*='text-align']{text-align:left !important;}*/
}

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

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

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

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

.row-gap-mt {
  margin-top: var(--gap) !important;
}

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

/*full width row with no padding*/
.row-full-rp > div:last-child {
  padding-right: calc(var(--row-spacing) + 15px);
}

.row-full-lp > div:first-child {
  padding-left: calc(var(--row-spacing) + 15px);
}

.row-full-rm > div:last-child {
  margin-right: calc(var(--row-spacing) + 15px);
}

.row-full-lm > div:first-child {
  margin-left: calc(var(--row-spacing) + 15px);
}

/* margin-top ----------------------------------------------------------------*/
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 1px !important;
}
.mt-2 {
  margin-top: 2px !important;
}
.mt-3 {
  margin-top: 3px !important;
}
.mt-4 {
  margin-top: 4px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-6 {
  margin-top: 6px !important;
}
.mt-7 {
  margin-top: 7px !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mt-9 {
  margin-top: 9px !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;
}

/* margin-bottom--------------------------------------------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1px !important;
}
.mb-2 {
  margin-bottom: 2px !important;
}
.mb-3 {
  margin-bottom: 3px !important;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-6 {
  margin-bottom: 6px !important;
}
.mb-7 {
  margin-bottom: 7px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.mb-9 {
  margin-bottom: 9px !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;
}

/* margin-left--------------------------------------------------------------*/
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 1px !important;
}
.ml-2 {
  margin-left: 2px !important;
}
.ml-3 {
  margin-left: 3px !important;
}
.ml-4 {
  margin-left: 4px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.ml-6 {
  margin-left: 6px !important;
}
.ml-7 {
  margin-left: 7px !important;
}
.ml-8 {
  margin-left: 8px !important;
}
.ml-9 {
  margin-left: 9px !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;
}

/* margin-right--------------------------------------------------------------*/
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 1px !important;
}
.mr-2 {
  margin-right: 2px !important;
}
.mr-3 {
  margin-right: 3px !important;
}
.mr-4 {
  margin-right: 4px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mr-6 {
  margin-right: 6px !important;
}
.mr-7 {
  margin-right: 7px !important;
}
.mr-8 {
  margin-right: 8px !important;
}
.mr-9 {
  margin-right: 9px !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;
}

/* padding - all ------------------------------------------------------------*/
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 1px !important;
}
.p-2 {
  padding: 2px !important;
}
.p-3 {
  padding: 3px !important;
}
.p-4 {
  padding: 4px !important;
}
.p-5 {
  padding: 5px !important;
}
.p-6 {
  padding: 6px !important;
}
.p-7 {
  padding: 7px !important;
}
.p-8 {
  padding: 8px !important;
}
.p-9 {
  padding: 9px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.p-50 {
  padding: 50px !important;
}
.p-55 {
  padding: 55px !important;
}
.p-60 {
  padding: 60px !important;
}
.p-65 {
  padding: 65px !important;
}
.p-70 {
  padding: 70px !important;
}
.p-75 {
  padding: 75px !important;
}
.p-80 {
  padding: 80px !important;
}
.p-85 {
  padding: 85px !important;
}
.p-90 {
  padding: 90px !important;
}
.p-95 {
  padding: 95px !important;
}
.p-100 {
  padding: 100px !important;
}

/* padding-top ---------------------------------------------------------------*/
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 1px !important;
}
.pt-2 {
  padding-top: 2px !important;
}
.pt-3 {
  padding-top: 3px !important;
}
.pt-4 {
  padding-top: 4px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pt-6 {
  padding-top: 6px !important;
}
.pt-7 {
  padding-top: 7px !important;
}
.pt-8 {
  padding-top: 8px !important;
}
.pt-9 {
  padding-top: 9px !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;
}

/* padding-bottom ------------------------------------------------------------*/
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1px !important;
}
.pb-2 {
  padding-bottom: 2px !important;
}
.pb-3 {
  padding-bottom: 3px !important;
}
.pb-4 {
  padding-bottom: 4px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pb-6 {
  padding-bottom: 6px !important;
}
.pb-7 {
  padding-bottom: 7px !important;
}
.pb-8 {
  padding-bottom: 8px !important;
}
.pb-9 {
  padding-bottom: 9px !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;
  /*padding-bottom: calc(var(--gap) - 70px) !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;
  /*padding-bottom: calc(var(--gap) - 35px) !important;*/
}

/* padding-left ------------------------------------------------------------*/
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 1px !important;
}
.pl-2 {
  padding-left: 2px !important;
}
.pl-3 {
  padding-left: 3px !important;
}
.pl-4 {
  padding-left: 4px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pl-6 {
  padding-left: 6px !important;
}
.pl-7 {
  padding-left: 7px !important;
}
.pl-8 {
  padding-left: 8px !important;
}
.pl-9 {
  padding-left: 9px !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;
}

/* padding-right ------------------------------------------------------------*/
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 1px !important;
}
.pr-2 {
  padding-right: 2px !important;
}
.pr-3 {
  padding-right: 3px !important;
}
.pr-4 {
  padding-right: 4px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pr-6 {
  padding-right: 6px !important;
}
.pr-7 {
  padding-right: 7px !important;
}
.pr-8 {
  padding-right: 8px !important;
}
.pr-9 {
  padding-right: 9px !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;
}

/*mobile padding and margin*/
@media only screen and (max-width: 767.98px) {
  .mb-65 {
    margin-bottom: 35px !important;
  }
  .mb-75,
  .mb-80,
  .mb-85,
  .mb-90,
  .mb-95,
  .mb-100 {
    margin-bottom: 70px !important;
  }
  .mt-65 {
    margin-top: 35px !important;
  }
  .mt-75,
  .mt-80,
  .mt-85,
  .mt-90,
  .mt-95,
  .mt-100 {
    margin-top: 70px !important;
  }
  .mr-20,
  .mr-25,
  .mr-30,
  .mr-35,
  .mr-40,
  .mr-45,
  .mr-50,
  .mr-55,
  .mr-60,
  .mr-65,
  .mr-70,
  .mr-75,
  .mr-80,
  .mr-85,
  .mr-90,
  .mr-95,
  .mr-100 {
    margin-right: 15px !important;
  }
  .ml-20,
  .ml-25,
  .ml-30,
  .ml-35,
  .ml-40,
  .ml-45,
  .ml-50,
  .ml-55,
  .ml-60,
  .ml-65,
  .ml-70,
  .ml-75,
  .ml-80,
  .ml-85,
  .ml-90,
  .ml-95,
  .ml-100 {
    margin-left: 15px !important;
  }
  .pb-65 {
    padding-bottom: 35px !important;
  }
  .pb-75,
  .pb-80,
  .pb-85,
  .pb-90,
  .pb-95,
  .pb-100 {
    padding-bottom: 70px !important;
  }
  .pt-65 {
    padding-top: 35px !important;
  }
  .pt-75,
  .pt-80,
  .pt-85,
  .pt-90,
  .pt-95,
  .pt-100 {
    padding-top: 70px !important;
  }
  .pr-20,
  .pr-25,
  .pr-30,
  .pr-35,
  .pr-40,
  .pr-45,
  .pr-50,
  .pr-55,
  .pr-60,
  .pr-65,
  .pr-70,
  .pr-75,
  .pr-80,
  .pr-85,
  .pr-90,
  .pr-95,
  .pr-100 {
    padding-right: 15px !important;
  }
  .pl-20,
  .pl-25,
  .pl-30,
  .pl-35,
  .pl-40,
  .pl-45,
  .pl-50,
  .pl-55,
  .pl-60,
  .pl-65,
  .pl-70,
  .pl-75,
  .pl-80,
  .pl-85,
  .pl-90,
  .pl-95,
  .pl-100 {
    padding-left: 15px !important;
  }

  /*apply on mobile only*/
  /*margin-top*/
  .mobile-mt-0 {
    margin-top: 0 !important;
  }
  .mobile-mt-1 {
    margin-top: 1px !important;
  }
  .mobile-mt-2 {
    margin-top: 2px !important;
  }
  .mobile-mt-3 {
    margin-top: 3px !important;
  }
  .mobile-mt-4 {
    margin-top: 4px !important;
  }
  .mobile-mt-5 {
    margin-top: 5px !important;
  }
  .mobile-mt-6 {
    margin-top: 6px !important;
  }
  .mobile-mt-7 {
    margin-top: 7px !important;
  }
  .mobile-mt-8 {
    margin-top: 8px !important;
  }
  .mobile-mt-9 {
    margin-top: 9px !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;
  }

  /*margin-bottom*/
  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }
  .mobile-mb-1 {
    margin-bottom: 1px !important;
  }
  .mobile-mb-2 {
    margin-bottom: 2px !important;
  }
  .mobile-mb-3 {
    margin-bottom: 3px !important;
  }
  .mobile-mb-4 {
    margin-bottom: 4px !important;
  }
  .mobile-mb-5 {
    margin-bottom: 5px !important;
  }
  .mobile-mb-6 {
    margin-bottom: 6px !important;
  }
  .mobile-mb-7 {
    margin-bottom: 7px !important;
  }
  .mobile-mb-8 {
    margin-bottom: 8px !important;
  }
  .mobile-mb-9 {
    margin-bottom: 9px !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;
  }

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

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

  /*padding-all*/
  .mobile-p-0 {
    padding: 0 !important;
  }
  .mobile-p-1 {
    padding: 1px !important;
  }
  .mobile-p-2 {
    padding: 2px !important;
  }
  .mobile-p-3 {
    padding: 3px !important;
  }
  .mobile-p-4 {
    padding: 4px !important;
  }
  .mobile-p-5 {
    padding: 5px !important;
  }
  .mobile-p-6 {
    padding: 6px !important;
  }
  .mobile-p-7 {
    padding: 7px !important;
  }
  .mobile-p-8 {
    padding: 8px !important;
  }
  .mobile-p-9 {
    padding: 9px !important;
  }
  .mobile-p-10 {
    padding: 10px !important;
  }
  .mobile-p-15 {
    padding: 15px !important;
  }
  .mobile-p-20 {
    padding: 20px !important;
  }
  .mobile-p-25 {
    padding: 25px !important;
  }
  .mobile-p-30 {
    padding: 30px !important;
  }
  .mobile-p-35 {
    padding: 35px !important;
  }
  .mobile-p-40 {
    padding: 40px !important;
  }
  .mobile-p-45 {
    padding: 45px !important;
  }
  .mobile-p-50 {
    padding: 50px !important;
  }
  .mobile-p-55 {
    padding: 55px !important;
  }
  .mobile-p-60 {
    padding: 60px !important;
  }
  .mobile-p-65 {
    padding: 65px !important;
  }
  .mobile-p-70 {
    padding: 70px !important;
  }

  /*padding-top*/
  .mobile-pt-0 {
    padding-top: 0 !important;
  }
  .mobile-pt-1 {
    padding-top: 1px !important;
  }
  .mobile-pt-2 {
    padding-top: 2px !important;
  }
  .mobile-pt-3 {
    padding-top: 3px !important;
  }
  .mobile-pt-4 {
    padding-top: 4px !important;
  }
  .mobile-pt-5 {
    padding-top: 5px !important;
  }
  .mobile-pt-6 {
    padding-top: 6px !important;
  }
  .mobile-pt-7 {
    padding-top: 7px !important;
  }
  .mobile-pt-8 {
    padding-top: 8px !important;
  }
  .mobile-pt-9 {
    padding-top: 9px !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;
  }

  /*padding-bottom*/
  .mobile-pb-0 {
    padding-bottom: 0 !important;
  }
  .mobile-pb-1 {
    padding-bottom: 1px !important;
  }
  .mobile-pb-2 {
    padding-bottom: 2px !important;
  }
  .mobile-pb-3 {
    padding-bottom: 3px !important;
  }
  .mobile-pb-4 {
    padding-bottom: 4px !important;
  }
  .mobile-pb-5 {
    padding-bottom: 5px !important;
  }
  .mobile-pb-6 {
    padding-bottom: 6px !important;
  }
  .mobile-pb-7 {
    padding-bottom: 7px !important;
  }
  .mobile-pb-8 {
    padding-bottom: 8px !important;
  }
  .mobile-pb-9 {
    padding-bottom: 9px !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;
  }

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

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

@media only screen and (max-width: 767.98px) {
  .row-full-rp > div,
  .row-full-lp > div {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row-full-rm > div,
  .row-full-lm > div {
    margin-right: 15px;
    margin-left: 15px;
  }
}

/*add padding on column - with background color*/
.col-fill-padding.vc_col-has-fill > div {
  padding: 35px 15px 0;
}

.inner-col-fill-padding.vc_col-has-fill > div {
  padding: 35px 15px 0 !important;
}

@media only screen and (min-width: 768px) {
  .col-fill-padding.vc_col-has-fill > div {
    padding: 50px 35px 15px;
  }

  .inner-col-fill-padding.vc_col-has-fill > div {
    padding: 35px 30px 0 !important;
  }
}

/*adjust width / column gap -for desktop and tablet*/
@media only screen and (min-width: 768px) {
  .width-85 {
    width: 85% !important;
  }
  .width-80 {
    width: 80% !important;
  }
  .width-75 {
    width: 75% !important;
  }
  .width-70 {
    width: 70% !important;
  }
  .width-65 {
    width: 65% !important;
  }
  .width-60 {
    width: 60% !important;
  }
  .width-55 {
    width: 55% !important;
  }
  .width-50 {
    width: 50% !important;
  }
  .width-45 {
    width: 45% !important;
  }
  .width-40 {
    width: 40% !important;
  }

  .margin-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .col-gap-15 > .wpb_column:not(:last-child) {
    padding-right: 15px;
  }
  .col-gap-15 > .wpb_column:not(:first-child) {
    padding-left: 15px;
  }

  .col-gap-25 > .wpb_column:not(:last-child) {
    padding-right: 25px;
  }
  .col-gap-25 > .wpb_column:not(:first-child) {
    padding-left: 25px;
  }

  .col-gap-30 > .wpb_column:not(:last-child) {
    padding-right: 30px;
  }
  .col-gap-30 > .wpb_column:not(:first-child) {
    padding-left: 30px;
  }
}

/*adjust column width for different screen*/
@media only screen and (max-width: 991px) {
  .col-lg-4 > .wpb_column {
    width: calc(100% / 3);
  }
  .col-lg-6 > .wpb_column {
    width: 50%;
  }
  .col-lg-12 > .wpb_column {
    width: 100%;
  }
  .col-lg-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767.98px) {
  .col-md-6 > .wpb_column {
    width: 50%;
  }
  .col-md-12 > .wpb_column {
    width: 100%;
  }
  /*reverse column*/
  .col-md-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/*if need to add padding on span tag*/
.span-pb span {
  padding-bottom: 5px;
  display: inherit;
}

.span-pt span {
  padding-top: 5px;
  display: inherit;
}

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

.image-center {
  text-align: center !important;
}
.image-right {
  text-align: right !important;
}

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

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

.image-height-300 img {
  height: 300px !important;
}

.image-height-400 img {
  height: 400px !important;
}

.image-height-450 img {
  height: 450px !important;
}

.image-contain img {
  object-fit: contain;
}

.w-border {
  border: 1px solid var(--grey-50);
}

.all-icon img {
  max-height: 55px;
  object-fit: contain;
  width: auto;
}

.all-logo img {
  aspect-ratio: 58/25;
  max-height: 80px;
  object-fit: contain;
}

.all-icon.w-title {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  margin-bottom: 15px !important;
}

.all-icon.w-title .wpb_singleimage_heading {
  font-size: var(--icon-title);
  font-weight: 600 !important;
  margin-bottom: 0;
  padding-top: 15px;
  color: #000;
}

.all-icon.w-title.row {
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
}

.all-icon.w-title.row.center {
  justify-content: center;
}

.all-icon.w-title.row .wpb_singleimage_heading {
  padding-top: 0;
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 767.98px) {
  .all-icon img {
    max-height: 45px;
  }
}

.relative {
  position: relative;
}

.z-9,
.z-9 .wpb_column .vc_column-inner .wpb_wrapper {
  z-index: 9;
}

/* button --------------------------------------------------------------------*/
/*remove blur effect for button*/
.button::before,
.ct-button::before,
.entry-tags a::before,
.added_to_cart::before,
[type="submit"]::before {
  filter: none !important;
  opacity: 1;
}

.custom-button .vc_general.vc_btn3 {
  position: relative;
  background-image: none !important;
  font-family: var(--theme-font-family);
  font-size: var(--btn-font-size);
  border: var(--btn-border);
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

/*button with arrow*/
.custom-button.arrow .vc_general {
  --btn-border: 0;
  overflow: visible;
  padding-left: 0;
  padding-right: 25px;
  display: inline-block;
}

.custom-button.arrow .vc_general:before {
  content: "\f061";
  position: absolute;
  font-family: var(--fontAwesome);
  font-weight: 900;
  top: 50%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
  /*background-image: url('./images/arrow.png');*/
  /*background-repeat: no-repeat;*/
  /*background-size: 40%;*/
  /*background-position: center;*/
  /*background-color: #fff;*/
  /*width: 35px;*/
  /*height: 35px;*/
  /*padding: 7px;*/
  font-size: 15px;
  color: var(--theme-palette-color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  opacity: 1;
}

.custom-button.arrow.left .vc_general {
  padding-right: 35px;
  padding-left: 25px;
}

.custom-button.arrow.left .vc_general:before {
  left: 0;
  right: auto;
}

.custom-button.arrow .vc_general:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--theme-palette-color-1);
  display: block !important;
  z-index: 0;
  transition: 0.3s ease;
}

.custom-button.arrow.white .vc_general:after {
  background-color: #fff;
}

.custom-button.arrow .vc_general:hover:before {
  right: -5px;
}

.custom-button.arrow .vc_general:hover:after {
  width: calc(100% + 25px);
}

/*woocommerce all buttons*/
[class*="woocommerce"] a.button,
[class*="woocommerce"] button.button,
[class*="woocommerce"] a.showlogin,
[class*="woocommerce"] a.added_to_cart.wc-forward,
[class*="woocommerce"]
  .wc-block-components-notice-banner
  > .wc-block-components-notice-banner__content
  .wc-forward,
[class*="woocommerce"] .wp-element-button,
.ct-account-panel button.ct-button,
.woocommerce-message a.restore-item {
  /*--btn-font-size:14px;
    --btn-line-height:calc( var(--btn-font-size)*1.3);
    --btn-radius:0;
    --btn-border: 1px solid red;
    --btn-bg-color:red;
    --btn-font-color:#fff;
    --btn-text-transform:initial;
    --btn-font-weight:400;
    --btn-padding: 10px 20px*/

  padding: var(--btn-padding) !important;
  min-width: 120px;
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  font-weight: var(--btn-font-weight);
  text-transform: var(--btn-text-transform);
  color: var(--btn-font-color) !important;
  background-color: var(--btn-bg-color) !important;
  border: var(--btn-border) !important;
  border-radius: var(--btn-radius) !important;
  position: relative;
  position: relative;
  z-index: 1;
  isolation: isolate;
  -webkit-transition: var(--allTransition) !important;
  transition: var(--allTransition) !important;
  overflow: hidden;
  min-height: var(--buttonMinHeight);
  justify-content: center;
}

[class*="woocommerce"] a.button:hover,
[class*="woocommerce"] button.button:hover,
[class*="woocommerce"] a.showlogin:hover,
[class*="woocommerce"] a.added_to_cart.wc-forward:hover,
[class*="woocommerce"]
  .wc-block-components-notice-banner
  > .wc-block-components-notice-banner__content
  .wc-forward:hover,
[class*="woocommerce"] .wp-element-button:hover,
.ct-account-panel button.ct-button:hover,
.woocommerce-message a.restore-item:hover {
  --btn-bg-color: var(--white);
  --btn-font-color: var(--theme-palette-color-2);
}

[class*="woocommerce"] a.button:before,
[class*="woocommerce"] button.button:before,
[class*="woocommerce"] a.showlogin:before,
[class*="woocommerce"] a.added_to_cart.wc-forward:before,
[class*="woocommerce"]
  .wc-block-components-notice-banner
  > .wc-block-components-notice-banner__content
  .wc-forward:before,
[class*="woocommerce"] .wp-element-button:before,
.ct-account-panel button.ct-button:before,
.woocommerce-message a.restore-item:before {
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  inset: 0 0 0 0;
  background: none !important;
}

.ct-account-panel button.ct-button {
  min-height: 40px;
  padding: 8.5px 20px;
}

/*[class*="woocommerce"] ul.products li a.button.add_to_cart_button,
[class*="woocommerce"] a.added_to_cart.wc-forward{
}

[class*="woocommerce"] ul.products li a.button.add_to_cart_button:hover,
[class*="woocommerce"] a.added_to_cart.wc-forward:hover{

}

[class*="woocommerce"] ul.products li a.button.add_to_cart_button:before,
[class*="woocommerce"] a.added_to_cart.wc-forward:before {
}*/

/*restyle notices button*/
[class*="woocommerce"]
  .wc-block-components-notice-banner
  > .wc-block-components-notice-banner__content
  .wc-forward {
  text-decoration: none;
  opacity: 1 !important;
}

/*remove focus on cart button*/
[class*="woocommerce"]
  .wc-block-components-notice-banner
  > .wc-block-components-notice-banner__content
  .wc-forward:focus,
[class*="woocommerce"] .wp-element-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* header --------------------------------------------------------------------*/
#header ul.menu > li:last-child > a {
  padding-right: 0;
}

#header ul.menu > li > a {
  text-transform: capitalize;
  height: auto;
  font-family: var(--theme-font-family);
  transition: 500ms linear;
}

nav[class*="menu"] li > a {
  font-weight: 500 !important;
}

nav[class*="menu"] li[class*="current-menu-parent"] > .ct-sub-menu-parent > a,
nav[class*="menu"] li[class*="current-menu-"] > a {
  font-weight: 900 !important;
}

#header ul.menu li > a:after {
  width: 0;
  height: 1px;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--theme-palette-color-1);
  transition: 500ms ease;
}

#header ul.menu > li:last-child > a:after {
  transform: translateX(0);
}

#header ul.menu li[class*="current-menu-"] > a:after,
#header ul.menu li:hover > a:after {
  width: 35px;
}

#header [data-id*="logo"] {
  display: flex;
  row-gap: 10px;
  align-items: center;
}

#header [data-id*="logo"] .site-title > a {
  line-height: 1.3;
  font-size: 18px;
}

#header [data-id*="logo"] .site-title > a small {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

/*change color on sticky*/
/*#header [data-sticky*=yes] .site-title > a,*/
/*#header [data-sticky*=yes]  ul.menu li a {*/
/*    color: #000;*/
/*}*/

#header [data-column="end"] [data-items*="primary"] .ct-header-text {
  margin-right: 25px;
}

/*mobile menu*/
@media only screen and (max-width: 999.98px) {
  .ct-panel .ct-panel-inner {
    height: 100%;
  }
  [data-id*="logo"] .site-title-container {
    display: none;
  }
  .mobile-menu ul li a {
    font-family: var(--theme-font-family);
    text-transform: uppercase;
    position: relative;
    width: fit-content;
    font-weight: 400;
  }
  /*nav[class*=menu] li[class*=current-menu-] > .ct-menu-link, 
    nav[class*=menu] li[class*=current-menu-] > .ct-sub-menu-parent > a {
        font-weight: 600 !important;
    }
    
    .mobile-menu [class*=children]>ul li a:not(:empty):before {
        display: none;
    }
    .mobile-menu > ul > li.menu-item:not(:last-child) {
        border-bottom: 1px solid var(--grey-80);
    }
    .mobile-menu [class*=children]>ul {
        padding-inline-start: calc(15px*var(--has-indentation, 1));
    
    }*/
  #offcanvas .ct-panel-content .ct-header-cta {
    margin-top: 0;
  }
  #header .ct-header-cta > a:after {
    height: 25px;
    width: 25px;
  }
  .mobile-menu > ul {
    padding-left: 0 !important;
  }
  .mobile-menu ul li:hover > a {
    color: var(--primary-color);
  }
  #offcanvas .ct-panel-content .ct-header-text {
    margin-top: 0;
  }
  #offcanvas .ct-panel-content .ct-header-cta a {
    font-size: 18px;
  }
}

/* footer --------------------------------------------------------------------*/
#footer [data-row*="middle"] > .ct-container {
  /*border-top: 1px solid var(--theme-palette-color-1);*/
  display: grid;
  padding-bottom: 35px;
}

/*.page:is(.page-id-122, .page-id-172, .page-id-140, .page-id-184) #footer [data-row*=middle] > .ct-container {
    border-top: 0;
}*/

#footer [data-column*="widget-area-1"] .widget_media_image img {
  max-height: 100px;
  object-fit: contain;
  width: auto;
}

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

#footer .widget-title {
  margin-bottom: 10px;
}

#footer .company-name {
  padding-top: 0;
  color: #141414;
  line-height: 1.3 !important;
  font-weight: 400;
}

#footer .company-name small {
  color: inherit;
}

/*#footer [data-column*='widget-area'] .textwidget p:not(:last-child) {*/
/*  padding-bottom: 10px;*/
/*}*/

[data-column*="copyright"] .ct-footer-copyright,
#footer .copyright {
  font-size: 14px;
}

/*contact page footer display none*/
.page-id-196 #footer [data-row*="middle"] {
  display: none;
}

/*social media icon*/
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
}

.footer-social a {
  /*width: 30px;*/
  /*height: 30px;*/
  background-color: transparent;
  text-align: center;
  line-height: 80px;
  font-size: 20px;
  /*margin-left: 8px;
    margin-right: 8px;*/
  display: flex;
  /*border-radius: 50%;*/
  position: relative;
  /*overflow: hidden;*/
  /*    border: 2px solid #fff;*/
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.footer-social a i {
  position: relative;
  color: var(--heading-color-3d);
  transition: 0.5s;
  z-index: 3;
}

.footer-social a:hover i {
  color: var(--blue);
}

/*#footer .footer-social a i,*/
/*#offcanvas [data-device*='mobile'] .footer-social a i {*/
/*  color: var(--heading-color-3d);*/
/*}*/

/*.footer-social a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: .5s;
  z-index: 2;
}

.footer-social a:hover:before {
  top: 0;
}

.footer-social a#facebook:before{
  background: #4267B2;
}

.footer-social a#linkedin:before{
  background: #0e76a8;
}

.footer-social a#instagram:before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}*/

@media only screen and (max-width: 999.98px) {
  #footer > div > .ct-container {
    width: calc(100% - 30px);
  }
  #footer [data-row*="middle"] > .ct-container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 35px;
    padding-bottom: 35px;
  }
  #footer [data-column*="widget-area-1"] .widget_media_image img {
    max-height: 45px;
  }
  #footer ul.widget-menu {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
  }
  #footer ul.widget-menu > li {
    line-height: 1.2;
    padding-bottom: 0 !important;
  }
  #footer ul.widget-menu > li:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid var(--heading-color-3d);
  }
}

/*add background layer*/
.background-layer {
  position: relative;
  isolation: isolate;
}

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

.background-layer.black-95:before {
  background: rgba(0, 0, 0, 0.95);
}
.background-layer.black-90:before {
  background: rgba(0, 0, 0, 0.9);
}
.background-layer.black-80:before {
  background: rgba(0, 0, 0, 0.85);
}
.background-layer.black-85:before {
  background: rgba(0, 0, 0, 0.8);
}
.background-layer.black-75:before {
  background: rgba(0, 0, 0, 0.75);
}
.background-layer.black-70:before {
  background: rgba(0, 0, 0, 0.7);
}
.background-layer.black-65:before {
  background: rgba(0, 0, 0, 0.65);
}
.background-layer.black-60:before {
  background: rgba(0, 0, 0, 0.6);
}
.background-layer.black-55:before {
  background: rgba(0, 0, 0, 0.55);
}
.background-layer.black-50:before {
  background: rgba(0, 0, 0, 0.5);
}
.background-layer.black-45:before {
  background: rgba(0, 0, 0, 0.45);
}
.background-layer.black-40:before {
  background: rgba(0, 0, 0, 0.4);
}
.background-layer.black-35:before {
  background: rgba(0, 0, 0, 0.35);
}
.background-layer.black-30:before {
  background: rgba(0, 0, 0, 0.3);
}
.background-layer.black-25:before {
  background: rgba(0, 0, 0, 0.25);
}
.background-layer.black-20:before {
  background: rgba(0, 0, 0, 0.2);
}

.background-layer.white-95:before {
  background: rgba(255, 255, 255, 0.95);
}
.background-layer.white-90:before {
  background: rgba(255, 255, 255, 0.9);
}
.background-layer.white-80:before {
  background: rgba(255, 255, 255, 0.85);
}
.background-layer.white-85:before {
  background: rgba(255, 255, 255, 0.8);
}
.background-layer.white-75:before {
  background: rgba(255, 255, 255, 0.75);
}
.background-layer.white-70:before {
  background: rgba(255, 255, 255, 0.7);
}
.background-layer.white-65:before {
  background: rgba(255, 255, 255, 0.65);
}
.background-layer.white-60:before {
  background: rgba(255, 255, 255, 0.6);
}
.background-layer.white-55:before {
  background: rgba(255, 255, 255, 0.55);
}
.background-layer.white-50:before {
  background: rgba(255, 255, 255, 0.5);
}
.background-layer.white-45:before {
  background: rgba(255, 255, 255, 0.45);
}
.background-layer.white-40:before {
  background: rgba(255, 255, 255, 0.4);
}
.background-layer.white-35:before {
  background: rgba(255, 255, 255, 0.35);
}
.background-layer.white-30:before {
  background: rgba(255, 255, 255, 0.3);
}
.background-layer.white-25:before {
  background: rgba(255, 255, 255, 0.25);
}
.background-layer.white-20:before {
  background: rgba(255, 255, 255, 0.2);
}

.vc_row.wpb_row.vc_inner {
  margin-left: 0;
  margin-right: 0;
}

/*new grid style*/
.grid:before,
.grid:after,
.flex:before,
.flex:after {
  display: none !important;
}

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

.grid {
  display: grid !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.vc_section[data-vc-full-width] > .vc_row.grid {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

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

.grid > .wpb_column {
  width: 100%;
}

.grid-gap-10 {
  grid-gap: 10px;
}
.grid-gap-15 {
  grid-gap: 15px;
}
.grid-gap-20 {
  grid-gap: 20px;
}
.grid-gap-25 {
  grid-gap: 25px;
}
.grid-gap-30 {
  grid-gap: 30px;
}
.grid-gap-35 {
  grid-gap: 35px;
}
.grid-gap-40 {
  grid-gap: 40px;
}
.grid-gap-45 {
  grid-gap: 45px;
}
.grid-gap-50 {
  grid-gap: 50px;
}

@media screen and (max-width: 767.98px) {
  [class*="grid-gap"].mobile-grid-content {
    grid-row-gap: 35px !important;
  }
}

/*.grid > .wpb_column.vc_col-has-fill {*/
/*  padding-left: 15px;*/
/*  padding-right: 15px;*/
/*}*/
[class*="grid-column"] {
  grid-template-columns: 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);
}

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

@media screen and (min-width: 576px) {
  .grid-sm {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .grid-sm::before,
  .grid-sm::after {
    display: none !important;
  }
  .grid-sm > .wpb_column {
    width: 100%;
  }
  .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);
  }
}

@media screen and (min-width: 768px) {
  .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .grid-md::before,
  .grid-md::after {
    display: none !important;
  }
  .grid-md > .wpb_column {
    width: 100%;
  }
  .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);
  }
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .flex-center {
    justify-content: space-around;
  }
  .flex-center-true {
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .grid-lg {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .grid-lg::before,
  .grid-lg::after {
    display: none !important;
  }
  .grid-lg > .wpb_column {
    width: 100%;
  }
  .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);
  }
  .home-choose-us-section {
    padding-left: 23% !important;
  }
}

@media screen and (min-width: 1200px) {
  .grid-xl {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .grid-xl::before,
  .grid-xl::after {
    display: none !important;
  }
  .grid-xl > .wpb_column {
    width: 100%;
  }
  .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);
  }
}

/* tab -----------------------------------------------------------------------*/
.vc_tta-container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

ul.vc_tta-tabs-list li.vc_tta-tab a,
.vc_tta-panel .vc_tta-panel-body,
.vc_tta-panel .vc_tta-panel-heading,
.vc_tta-tabs .vc_tta-panels {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

ul.vc_tta-tabs-list li.vc_tta-tab a {
  color: #000 !important;
}

/*.tab-row .vc_tta-panel .vc_tta-panel-body {*/
/*    padding: 70px 0 0 !important;*/
/*}*/

@media only screen and (max-width: 767.98px) {
  .vc_tta.vc_tta-tabs .vc_tta-tabs-container {
    display: block !important;
  }
  .vc_tta.vc_tta-tabs .vc_tta-panels-container .vc_tta-panel-heading {
    display: none !important;
  }
}

/*/Accordion no border/*/
.accordion-style {
  --acc-border: 1px solid rgba(0, 0, 0, 0.5);
  --acc-text: #000;
  margin-bottom: 35px;
}

.accordion-style.text-white {
  --acc-border: 1px solid rgba(255, 255, 255, 0.5);
  --acc-text: #fff;
}

.accordion-style.vc_tta-accordion .vc_tta-panels .vc_tta-panel {
  border-bottom: var(--acc-border) !important;
}

.accordion-style.vc_tta-accordion .vc_tta-panel-heading {
  background: none !important;
  border: none !important;
}

.accordion-style.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--acc-text) !important;
}

.accordion-style.vc_tta-accordion .vc_tta-panel-heading .vc_tta-panel-title a {
  padding: 15px 15px !important;
  color: inherit !important;
}

.accordion-style.vc_tta-accordion
  .vc_tta-panel-heading
  .vc_tta-panel-title
  a
  .vc_tta-controls-icon {
  right: 15px !important;
}

.accordion-style.vc_tta-accordion
  .vc_tta-panels
  .vc_tta-panel
  .vc_tta-panel-body {
  padding: 0 15px 25px !important;
}

.accordion-style.vc_tta-accordion .vc_tta-controls-icon:before,
.accordion-style.vc_tta-accordion .vc_tta-controls-icon:after {
  border-color: var(--acc-text) !important;
}

/* contact page---------------------------------------------------------------*/
.company-logo img {
  max-height: 70px;
  width: auto;
}

/*@media screen and (max-width: 767.98px) {*/
  /*.company-logo img {*/
  /*  max-height: 45px;*/
  /*}*/
/*}*/

.company-name {
  font-size: 20px;
}

.company-name small {
  font-size: 14px;
  color: var(--grey-20);
  font-weight: 400;
}

.company-name.inline small {
  display: inline-block;
}

.company-name.block small {
  display: block;
}

/*contact form*/
.contact-form .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

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

.contact-form .form label {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(30, 30, 30, 0.6);
}

.contact-form .form input {
  width: 100%;
  font-weight: 500;
  color: #000;
}

.contact-form .form textarea {
  width: 100%;
  font-weight: 500;
  color: #000;
  height: 60px;
  border-radius: 0 !important;
  resize: none;
}

.contact-form .form input,
.contact-form .form textarea {
  border: 0;
  border-bottom: 1px solid #141414;
  padding: 12px 10px;
}

.form select {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

::-webkit-input-placeholder {
  color: var(--placeholder-color) !important;
  font-size: 16px;
  font-weight: 400;
}

.form .enquiry::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--placeholder-color) !important;
  font-size: 16px;
  font-weight: 400;
  opacity: 1; /* Firefox */
}

/*.form .enquiry:focus {*/
/*  border: 1px solid transparent;*/
/*}*/

.contact-form #send {
  display: flex;
  position: relative;
  /*width: fit-content;*/
}

/*button align center*/
.contact-form #send.center {
  margin-left: auto;
  margin-right: auto;
  /*width: fit-content;*/
}

.contact-form #send > span.wpcf7-spinner {
  position: absolute;
  right: -70px;
  top: 15%;
  transform: translate(-50%);
}

.contact-form #send input {
  font-weight: 400;
  background-color: var(--theme-palette-color-1);
  border: 1px solid var(--theme-palette-color-1);
  font-size: var(--btn-font-size);
  min-height: auto;
  padding: 10px 35px;
  transition: 500ms ease;
}

.contact-form #send input:hover {
  background-color: transparent;
  border: 1px solid var(--theme-palette-color-1);
}

/*if use <button> tag, need to add loading icon*/
.contact-form .custom-button {
  position: relative;
}

.contact-form .custom-button .loading,
.contact-form .custom-button .loading {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact-form .custom-button span.loading {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 9;
  top: 35%;
  transform: translate(-50%);
  right: -35px;
  animation: 1.5s loading linear infinite;
  opacity: 0;
}

.contact-form .custom-button span.loading:before {
  content: "\f110";
  font-size: 18px;
  font-weight: 900;
  font-family: var(--fontAwesome);
  color: #000;
  display: block !important;
  animation: 1.5s loading linear infinite;
}


.wpcf7-form.submitting .readmore.arrow .vc_general.vc_btn3:after {
    content: "\f1ce";
    animation: 1.5s loading linear infinite;
    font-weight: 900;
    font-family: var(--fontAwesome);
    font-size: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}

@keyframes loading {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.wpcf7-form[data-status*="submitting"] .custom-button span.loading {
  opacity: 1;
}

/*readmore loading*/


.wpcf7-form.submitting .readmore.arrow .vc_general.vc_btn3 {
  --btn-font-color: #fff;
  --beforewidth: 100%;
  --btn-padding: var(--padding-tb) calc(10px + var(--btn-max-height))
    var(--padding-tb) 20px;
}

/*application form */
.contact-form.application .form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 15px;
}

.contact-form.application .form #name {
  grid-column: 1/3;
}
.contact-form.application .form #phone {
  grid-column: 3/5;
}
.contact-form.application .form #email {
  grid-column: 5/7;
}
.contact-form.application .form #job-title {
  grid-column: 1/4;
}
.contact-form.application .form #file {
  grid-column: 4/7;
}
.contact-form.application .form #msg {
  grid-column: 1/7;
}

.contact-form.application .form #file {
  position: relative;
  height: 50px;
}

.contact-form.application .form #file label {
  position: absolute;
  z-index: 9;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 0;
  color: var(--placeholder-color);
}

.contact-form.application .form #file span input {
  padding-left: 120px;
  padding-top: 13px;
}

/*post*/
body.archive:not(.woocommerce-page) #main > .ct-container,
.single-post #main > .ct-container {
  padding: var(--gap) 15px;
}

body:is(.archive, .single-post, .woocommerce) .page-title {
  font-family: var(--theme-font-family);
  padding-left: 15px;
  padding-right: 15px;
}

/*product page ---------------------------------------------------------------*/
.woocommerce #main .ct-container {
  /*padding-top: var(--gap);*/
  padding-top: calc(var(--gap) - 15px);
  /*padding-bottom: var(--gap);*/
  padding-bottom: calc(var(--gap));
}

.woocommerce .ct-breadcrumbs span {
  font-size: var(--btn-font-size);
  text-transform: capitalize;
}

.woocommerce .ct-breadcrumbs span.last-item {
  color: var(--theme-palette-color-2);
}

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

.woocommerce ul.products li span.ct-image-container {
  border-radius: 0;
}

.woocommerce ul.products li span.ct-image-container,
.woocommerce .product .woocommerce-product-gallery > .ct-image-container,
.woocommerce.single-product
  .woocommerce-product-gallery
  > .flexy-container
  > .flexy
  .flexy-items
  > div
  > .ct-image-container {
  /*    background-color: var(--grey-95);*/
  margin-bottom: 0;
}

/*.woocommerce ul.products li span.ct-image-container img,
.woocommerce .product .woocommerce-product-gallery > .ct-image-container img,
.woocommerce.single-product .woocommerce-product-gallery > .flexy-container > .flexy .flexy-items > div > .ct-image-container img {
    mix-blend-mode: multiply;
}*/

.woocommerce ul.products li span.ct-image-container img,
.woocommerce.single-product
  .woocommerce-product-gallery
  > .flexy-container
  > .flexy
  .flexy-items
  > div
  > .ct-image-container
  img {
  aspect-ratio: var(--aspect-ratio, 1/1) !important;
  object-fit: cover;
}

/*gallery thumbnail*/
.woocommerce.single-product .woocommerce-product-gallery .flexy-pills ol > li {
  opacity: 0.5;
}

.woocommerce.single-product
  .woocommerce-product-gallery
  .flexy-pills
  ol
  > li
  img {
  max-height: 80px;
  object-fit: contain;
}

.woocommerce.single-product
  .woocommerce-product-gallery
  .flexy-pills
  ol
  > li.active {
  opacity: 1;
}

.woocommerce.single-product
  .woocommerce-product-gallery
  li
  .ct-image-container:after {
  border: 1px solid var(--grey-80);
  /*border-radius: 1rem;*/
}

.woocommerce ul.products li .woocommerce-loop-product__title,
.woocommerce ul.products li .woocommerce-loop-category__title {
  text-align: center;
  font-weight: 600 !important;
  /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 7px 15px;*/
  transition: 500ms ease;
}

/*.woocommerce ul.products li:hover .woocommerce-loop-product__title,
.woocommerce ul.products li:hover .woocommerce-loop-category__title {
    top: calc(50% - 25px);
}*/

.woocommerce ul.products > li .ct-woo-card-actions {
  /*position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;*/
  transition: 300ms ease;
  /*padding-top: 0;*/
}

.woocommerce ul.products > li .ct-woo-card-actions a {
  /*background-color: transparent;
    color: #fff;*/
  text-transform: capitalize;
  font-size: var(--btn-font-size);
  font-weight: 400;
  display: block;
}

.woocommerce ul.products li:hover .ct-woo-card-actions {
  opacity: 1;
}

/*.woocommerce header.woocommerce-products-header {
    display: flex;
    align-items: center;
    column-gap: 50px;
}
.woocommerce header.woocommerce-products-header > .category-image {
    width: 45%;  
    object-fit: cover;
    max-height: 380px;
}

.woocommerce header.woocommerce-products-header > .category-info {
    width: 55%;
}
.woocommerce.archive.tax-product_cat header.woocommerce-products-header {
    margin-bottom: 70px;
}
*/

/*full width gallery*/
/*.woocommerce.single-product div.product .product-entry-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.woocommerce.single-product div.product .woocommerce-product-gallery {
    width: 100%;
}

.woocommerce .product .woocommerce-product-gallery > .ct-image-container img {
    max-height: 400px;
    object-fit: cover;

}

.woocommerce.single-product div.product .product-entry-wrapper {
    display: flex;
    align-items: center;
}*/

.woocommerce.single-product div.product p.price {
  margin-bottom: 0;
}

.woocommerce.single-product div.product .product_title {
  font-size: 27px;
}

/*custom button on product summary*/
.woocommerce.single-product div.product a.download-btn,
.woocommerce.single-product div.product .enquiry-btn {
  font-size: var(--btn-font-size);
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: 300ms ease;
}

.woocommerce.single-product div.product a.download-btn {
  background-color: var(--color-6);
  padding: 7px 15px 7px 35px;
}

.woocommerce.single-product div.product a.download-btn:before {
  content: "";
  position: absolute;
  background: url(./images/download.png) no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: block !important;
}

.woocommerce.single-product div.product .enquiry-btn {
  background-color: var(--theme-palette-color-1);
  padding: 8px 20px;
}

.woocommerce.single-product div.product .custom-button.enquiry {
  display: none;
}

.woocommerce.single-product
  div.woocommerce-Tabs-panel
  .product-desc-row
  .custom-button.enquiry {
  display: inline-block;
}

.woocommerce.single-product
  div.woocommerce-Tabs-panel
  .product-desc-row
  .custom-button.enquiry
  .vc_general {
  color: var(--theme-palette-color-1);
}

.woocommerce.single-product div.product a.download-btn:hover,
.woocommerce.single-product div.product .enquiry-btn:hover {
  background-color: var(--theme-palette-color-1);
}

.woocommerce.single-product
  div.product
  .woocommerce-product-details__short-description
  p:last-child {
  margin-bottom: 0;
}

.woocommerce.single-product
  div.product
  .woocommerce-product-details__short-description
  p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

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

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

/*.woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel > h2*/
.woocommerce div.product div.woocommerce-tabs ul.tabs {
  display: none !important;
}

.woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel > h2 {
  font-size: var(--title-font);
  font-family: var(--theme-font-family);
  display: none;
}

.woocommerce.single-product
  .woocommerce-tabs
  .woocommerce-Tabs-panel
  > .vc_row {
  margin-left: -15px;
  margin-right: -15px;
  max-width: unset !important;
  width: unset !important;
}

/*product page description - use tab*/
.woocommerce
  div.product
  div.woocommerce-tabs
  div.woocommerce-Tabs-panel
  .product-tab-row
  ul.vc_tta-tabs-list
  > li
  > a {
  padding: 12px 35px;
  font-weight: 500;
  transition: 500ms ease;
}

.woocommerce
  div.product
  div.woocommerce-tabs
  div.woocommerce-Tabs-panel
  .product-tab-row
  ul.vc_tta-tabs-list
  > li.vc_active
  > a,
.woocommerce
  div.product
  div.woocommerce-tabs
  div.woocommerce-Tabs-panel
  .product-tab-row
  ul.vc_tta-tabs-list
  > li:hover
  > a {
  background-color: var(--theme-palette-color-1) !important;
  color: #fff !important;
}

.woocommerce
  div.product
  div.woocommerce-tabs
  div.woocommerce-Tabs-panel
  .product-tab-row
  ul.vc_tta-tabs-list {
  border-bottom: 1px solid #000;
}

.woocommerce
  div.product
  div.woocommerce-tabs
  div.woocommerce-Tabs-panel
  .product-tab-row
  .vc_tta-panels
  .vc_tta-panel-body {
  padding: 35px 0 0;
}

/*related / upsells products*/
.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: 27px;
  text-transform: uppercase;
}

/*product page pagination*/
.woocommerce nav.ct-pagination {
  column-gap: 15px;
}

.woocommerce nav.ct-pagination .page-numbers {
  border-radius: 50%;
  font-weight: 400;
  border: 1px solid #000;
  width: 40px;
  height: 40px;
}

.woocommerce nav.ct-pagination .page-numbers.next,
.woocommerce nav.ct-pagination .page-numbers.prev {
  font-size: 0;
}

.woocommerce nav.ct-pagination .page-numbers.next {
  justify-self: self-start;
}
.woocommerce nav.ct-pagination .page-numbers.prev {
  justify-self: end;
}

.woocommerce nav.ct-pagination .page-numbers.current,
.woocommerce nav.ct-pagination .page-numbers:hover {
  background-color: var(--theme-palette-color-1);
  color: #fff;
  border: 0;
}

.woocommerce nav.ct-pagination .page-numbers.next svg,
.woocommerce nav.ct-pagination .page-numbers.prev svg {
  position: absolute;
  width: 10px;
  height: 10px;
}

/*sidebar widget*/
.woocommerce .ct-sidebar .ct-widget .widget-title {
  font-size: 16px;
  font-weight: 600 !important;
  margin-bottom: 0;
  display: none;
}

/*iks menu*/
.iksm-container .iksm-terms .iksm-term__inner {
  background-color: transparent !important;
}

.iksm-container .iksm-terms .iksm-term__link {
  padding: 0;
}

.iksm-container .iksm-terms span.iksm-term__text {
  font-weight: 400 !important;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

/*.iksm-container .iksm-terms .iksm-term--parent > .iksm-term__inner > a.iksm-term__link > span.iksm-term__text {
    font-weight: 400 !important;
}*/

.iksm-container
  .iksm-terms-tree--children
  > .iksm-terms-tree__inner
  > .iksm-term--child
  > .iksm-term__inner {
  min-height: auto;
  padding: 5px 0;
}

.iksm-container
  .iksm-term--current
  > .iksm-term__inner
  > a.iksm-term__link
  span.iksm-term__text,
.iksm-container
  .iksm-term
  > .iksm-term__inner
  > a.iksm-term__link:hover
  span.iksm-term__text {
  font-weight: 600 !important;
  color: var(--theme-palette-color-1) !important;
}

.iksm-term--parent.iksm-term--current
  .iksm-term--current
  > .iksm-term__inner
  > a.iksm-term__link
  span.iksm-term__text {
  color: #000 !important;
}

.iksm-container
  .iksm-terms
  .iksm-term--is-post
  > div
  > a.iksm-term__link
  > .iksm-term__shifts:before {
  content: "\f111";
  font-weight: 900;
  font-size: 5px;
  display: block;
  font-family: var(--fontAwesome);
}

.iksm-container .iksm-term__toggle {
  color: var(--grey-20) !important;
  font-size: 18px !important;
}

.iksm-container
  .iksm-terms
  > .iksm-terms-tree
  > .iksm-terms-tree__inner
  > .iksm-term {
  border-bottom: 1px solid var(--grey-20);
  padding-bottom: 10px;
  padding-top: 10px;
}

/*collapse sidebar menu*/
@media only screen and (max-width: 999.98px) {
  #main [data-sidebar] {
    grid-row-gap: 35px;
  }
  .iksm-widget .iksm-container {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 500ms ease;
  }
  .iksm-widget .iksm-container.display {
    opacity: 1;
    height: auto;
    visibility: visible;
  }
  .iksm-widget .widget-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--grey-80);
    font-weight: 400 !important;
  }
  .iksm-widget .widget-title:after {
    content: "\E817" !important;
    font-family: "IksIcons";
    font-size: 15px;
    font-weight: 900;
  }
  .iksm-widget .widget-title.minus:after {
    content: "\f068" !important;
    font-family: var(--fontAwesome);
    font-size: 15px;
    font-weight: 900;
  }
  .iksm-container .iksm-terms .iksm-term__link {
    padding: 0 10px;
  }
}

/*@media only screen and (max-width: 999.98px) {
    [data-sidebar] {
        grid-row-gap: 35px !important;
    }
    .ct-sidebar .iksm-widget .fa-chevron-down {
        position: absolute;
        top: 0;
        right: 0;
        width: 44px;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--theme-palette-color-1);
        transition: .3s ease;
        font-size: 14px;
   }
   .woocommerce .iksm-terms-tree > .iksm-terms-tree__inner {
        display: grid;
        position: relative;
        height: 70px;
        overflow: hidden;
        transition: all 0.3s ease-in;
    }
    .woocommerce .iksm-terms-tree > .iksm-terms-tree__inner > .iksm-term--current {
        order: -1;
    }
    .woocommerce .iksm-container.open .iksm-terms-tree > .iksm-terms-tree__inner {
        height: auto;
    }
    .woocommerce .iksm-container.open .fa-chevron-down {
        transform: rotate(180deg);
    }
    .woocommerce .iksm-terms-tree > .iksm-terms-tree__inner > .iksm-term {
        overflow: visible;
    }
    .iksm-container .iksm-terms > .iksm-terms-tree > .iksm-terms-tree__inner > .iksm-term {
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }
    .woocommerce-shop .iksm-terms > .iksm-terms-tree > .iksm-terms-tree__inner > .iksm-term:first-child,
    .iksm-terms > .iksm-terms-tree > .iksm-terms-tree__inner > .iksm-term.iksm-term--current {
        border: 1px solid #F5F5F5 !important;
        background-color: #F5F5F5;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
    .iksm-container .iksm-terms .iksm-term__link {
        padding: 15px;
    }
    .woocommerce .iksm-container.open {
        border: 1px solid var(--grey-80);
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }
    .woocommerce.single-product div.product div.woocommerce-tabs {
        padding-top: 0;
    }
}*/

/* slick slider arrow*/
.slick-arrow {
    font-size: 0;
    z-index: 9;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #15D04E;
    /* border-radius: 50%; */
    background-color: #15D04E;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    transition: all 2000ms ease;
    cursor: pointer;
}

.slick-arrow.slick-prev {
  left: 15px;
}
.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #fff;
  font-family: var(--fontAwesome);
  font-weight: 900;
  transition: all 500ms ease;
}

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

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

.slick-arrow:hover {
    background-color: #82F7A6;
    border-color: #15D04E;
}

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

/*disable arrow control on first and last slide*/
.slick-disabled {
  opacity: 0;
  pointer-events: none;
  transition: 500ms ease;
}

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

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

.slick-dots .slick-active button {
  background: #15D04E;
}

/*table styling - without border*/
.table {
  vertical-align: top;
}

.table.no-border table,
.table.no-border table th,
.table.no-border table tr,
.table.no-border table td {
  border: none;
}

.table.no-border table th,
.table.no-border table tr,
.table.no-border table td {
  padding: 7px;
}
.table.no-border table tr:first-child,
.table.no-border table td:first-child {
  padding-left: 0;
}

/*table scroll on mobile*/
@media only screen and (max-width: 767.98px) {
  .md-scroll {
    overflow: scroll;
    white-space: nowrap;
  }
}

ul li:not(.menu-item, :last-child),
ol li:not(:last-child) {
  padding-bottom: 13px;
}

li::marker {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible {
  outline: none;
}

/*--------------tablet / mobile style-----------------------------------------*/
@media only screen and (max-width: 767.98px) {
  #main .ct-container {
    width: 100%;
  }
  .woocommerce main#main .ct-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  #header .ct-container,
  #footer > div > .ct-container {
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 999.98px) {
  .woocommerce.archive.tax-product_cat header.woocommerce-products-header {
    margin-bottom: calc(70px - 35px);
  }
  .woocommerce.single-product div.product .product-entry-wrapper {
    flex-direction: column;
  }
  .woocommerce.single-product .woocommerce-product-gallery {
    margin-bottom: 35px;
  }
  .woocommerce.single-product .woocommerce-product-gallery {
    width: 100%;
  }
  .woocommerce header.woocommerce-products-header {
    flex-direction: column;
    row-gap: 15px;
  }
  .woocommerce header.woocommerce-products-header > .category-image,
  .woocommerce header.woocommerce-products-header > .category-info {
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .image-height-400 img,
  .image-height-450 img {
    height: 350px !important;
  }
  /*remove break on mobile*/
  .all-title br,
  .cta-title br,
  .mobile-inline br {
    display: none;
  }

  /*product details tab scroll*/
  .woocommerce
    div.product
    div.woocommerce-tabs
    div.woocommerce-Tabs-panel
    .product-tab-row
    ul.vc_tta-tabs-list {
    overflow-x: scroll;
    display: flex;
  }
  /*google map*/
  .wpb_gmaps_widget iframe {
    max-height: 350px;
  }
  .company-name.mobile-block small {
    display: block;
  }
  .contact-form .form,
  .contact-form.application .form {
    display: block;
  }
}

/*animation ------------------------------------------------------------------*/

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

/*image effect*/
/*grow Effect .photoblocks-gallery is for photoblock gallery*/
.grow-effect figure {
  overflow: hidden;
}

.grow-effect img,
.photoblocks-gallery .pb-block .pb-image {
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.grow-effect:hover img,
.photoblocks-gallery .pb-block:hover .pb-image {
  /*-moz-transition: -moz-transform 1s;*/
  /*-o-transition: -o-transform 1s;*/
  /*-webkit-transition: -webkit-transform 1s;*/
  /*transition: transform 1s;*/
  transform: scale(1.1);
}

/*background parallax*/
@supports not (-webkit-touch-callout: none) {
  .parallax {
    background-attachment: fixed !important;
  }
}

/*yoyo effects*/
/*change according to the class you want to apply*/
.yoyo:hover img {
  animation: yoyo 2s ease-out infinite;
}

@keyframes yoyo {
  0% {
    transform: translateY(15px);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(15px);
  }
}

/*button effects*/
/*background color slide form right*/
.custom-button.slide-right .vc_general.vc_btn3:hover {
  color: #fff !important;
  border-color: var(--color-5) !important;
}
.custom-button.slide-right .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  background-color: var(--color-5);
  width: 0;
  height: 100%;
  inset: 0;
  z-index: -1;
  display: block !important;
  transition: 500ms linear;
}

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

/*glow effect*/
.custom-button.glow .vc_general.vc_btn3:hover {
  box-shadow: var(--color-5) 0px 4px 7px;
}

/*shinny button*/
.custom-button.shiny .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/*alternate block*/
.custom-button.alternate {
  overflow: hidden !important;
  position: relative;
}

.custom-button.alternate .vc_general {
  z-index: 9;
  border: 1px solid var(--theme-palette-color-2) !important;
}

.custom-button.alternate:hover .vc_general {
  color: #fff !important;
  border-color: var(--theme-palette-color-2) !important;
}

.custom-button.alternate .vc_general:before,
.custom-button.alternate .vc_general:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--theme-palette-color-2);
  transition: 300ms ease-in-out;
  z-index: -1;
}

.custom-button.alternate .vc_general:before {
  transform: translate(0, -100%);
}

.custom-button.alternate .vc_general:after {
  transform: translate(0, 100%);
}

.custom-button.alternate:hover .vc_general:before {
  transform: translate(0, -50%);
}

.custom-button.alternate:hover .vc_general:after {
  transform: translate(0, 50%);
}

/*wiggle*/
.custom-button.wiggle .vc_general.vc_btn3 {
  backface-visibility: hidden;
  transform: translateZ(0px);
  animation: wiggle 5s linear infinite running;
}

@keyframes wiggle {
  2% {
    transform: translateX(3px) rotate(2deg);
  }
  4% {
    transform: translateX(-3px) rotate(-2deg);
  }
  6% {
    transform: translateX(3px) rotate(2deg);
  }
  8% {
    transform: translateX(-3px) rotate(-2deg);
  }
  10% {
    transform: translateX(2px) rotate(1deg);
  }
  12% {
    transform: translateX(-2px) rotate(-1deg);
  }
  14% {
    transform: translateX(2px) rotate(1deg);
  }
  16% {
    transform: translateX(-2px) rotate(-1deg);
  }
  18% {
    transform: translateX(1px) rotate(0deg);
  }
  20% {
    transform: translateX(-1px) rotate(0deg);
  }
}

/*master class end*/

/*step 2*/

/*Read More Button*/
.readmore {
  /*    --btn-font-size:14px;
    --btn-line-height:calc( var(--btn-font-size)*1.3);
    --btn-radius:0;
    --btn-border: 1px solid red;
    --btn-bg-color:red;
    --btn-font-color:#fff;
    --btn-text-transform:initial;
    --btn-font-weight:400;*/

  margin-bottom: 35px !important;
}

.readmore .vc_general.vc_btn3 {
  font-family: var(--theme-font-family) !important;
}

/*root for readmore*/
.readmore .vc_general.vc_btn3, [data-prefix="blog"] .entries .entry-card a.entry-button, .archive.category .entries .entry-card a.entry-button {
    padding: 15px 23px;
    min-width: unset;
    min-height: unset;
    font-size: var(--btn-font-size);
    line-height: var(--btn-line-height);
    font-weight: var(--btn-font-weight);
    text-transform: var(--btn-text-transform);
    color: var(--btn-font-color) !important;
    background-image: none !important;
    background-color: var(--btn-bg-color) !important;
    border: 1px solid #15D04E;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    isolation: isolate;
    -webkit-transition: var(--allTransition);
    transition: var(--allTransition);
    overflow: hidden;
}

.readmore .vc_general.vc_btn3:hover {
  --btn-bg-color: var(--green);
  --btn-font-color: #fff;
}

.readmore.red .vc_general.vc_btn3 {
  --btn-bg-color: #fff;
  --btn-font-color: var(--red);
}

.readmore.red .vc_general.vc_btn3:hover {
  --btn-bg-color: var(--red);
  --btn-font-color: #fff;
}

.readmore.arrow .vc_general.vc_btn3, [data-prefix="blog"] .entries .entry-card a.entry-button, .archive.category .entries .entry-card a.entry-button {
    --btn-bg-color: #15D04E;
    --btn-border: none;
    --btn-font-color: #fff;
    --arrow-bg-btn: var(--green);
    --btn-font-size: 16px;
    --btn-line-height: var(--btn-font-size);
    --btn-max-height: 45px;
    --padding-tb: calc((var(--btn-max-height) - var(--btn-line-height)) / 2);
    --btn-padding: var(--padding-tb) calc(10px + var(--btn-max-height)) var(--padding-tb) 0;
    --beforewidth: var(--btn-max-height);
    overflow: visible;
    justify-self: flex-end;
    font-weight:400;
}

[data-prefix="blog"] .entries .entry-card a.entry-button,
.archive.category .entries .entry-card a.entry-button {
  --btn-font-color: white;
}

.readmore.arrow .vc_general.vc_btn3:hover,
[data-prefix="blog"] .entries .entry-card a.entry-button:hover,
.archive.category .entries .entry-card a.entry-button:hover {
  --btn-font-color: #15D04E;
  --btn-bg-color: transparent;
  --btn-border: 1px solid #15D04E;
  border-color:#15D04E;
  --beforewidth: 100%;
  --btn-padding: var(--padding-tb) calc(10px + var(--btn-max-height))
    var(--padding-tb) 20px;
}

/*.readmore.arrow .vc_general.vc_btn3:after,*/
/*[data-prefix="blog"] .entries .entry-card a.entry-button:after,*/
/*.archive.category .entries .entry-card a.entry-button:after {*/
/*  content: "\f061";*/
/*  position: absolute;*/
/*  font-family: var(--fontAwesome);*/
/*  font-weight: 900;*/
/*  top: 50%;*/
/*  left: auto;*/
/*  right: 0;*/
/*  transform: translateY(-50%);*/
/*  background: var(--arrow-bg-btn);*/
/*  font-size: 15px;*/
/*  color: #fff;*/
/*  display: flex !important;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  transition: inherit;*/
/*  opacity: 1;*/
/*  width: var(--btn-max-height);*/
/*  height: var(--btn-max-height);*/
/*  border-radius: var(--btn-max-height);*/
/*  z-index: -1;*/
/*}*/

/*.readmore.arrow .vc_general.vc_btn3:before,*/
/*[data-prefix="blog"] .entries .entry-card a.entry-button:before,*/
/*.archive.category .entries .entry-card a.entry-button:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: auto;*/
/*  right: 0;*/
/*  transform: translateY(-50%);*/
/*  background: var(--arrow-bg-btn);*/
/*  font-size: 15px;*/
/*  color: #fff;*/
/*  display: flex !important;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  transition: inherit;*/
/*  opacity: 1;*/
/*  width: var(--beforewidth);*/
/*  height: var(--btn-max-height);*/
/*  border-radius: var(--btn-max-height);*/
/*  z-index: -1;*/
/*}*/

.readmore.arrow.red .vc_general.vc_btn3 {
  --btn-bg-color: transparent;
  --btn-border: none;
  --btn-font-color: var(--red);
  --arrow-bg-btn: var(--red);
}

.readmore.arrow.red .vc_general.vc_btn3:hover {
  --btn-font-color: #fff;
}

.black-round-button {
  margin-bottom: 35px !important;
  --btn-font-color: #3d3d3d;
  --btn-bg-color: transparent;
  --btn-border: 1px solid #3d3d3d;
  --btn-radius: 50%;
  --btn-size: 40px;
}

.black-round-button .vc_general.vc_btn3 {
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  color: var(--btn-font-color) !important;
  background-image: none !important;
  background-color: var(--btn-bg-color) !important;
  border: var(--btn-border) !important;
  border-radius: var(--btn-radius) !important;
  position: relative;
  z-index: 1;
  isolation: isolate;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  overflow: hidden;
}

.black-round-button .vc_general.vc_btn3:hover {
  --btn-border: 1px solid var(--green);
  --btn-bg-color: var(--green);
  --btn-font-color: #3d3d3d;
}

.black-round-button .vc_general.vc_btn3 .vc_btn3-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*themes button*/
.ct-button {
  --ct-color: var(--heading-color);
  /*--btn-font-size:14px;*/
  /*--btn-line-height:calc( var(--btn-font-size)*1.3);*/
  --btn-radius: 50px;
  /*--btn-border: 1px solid var(--ct-color);*/
  --btn-bg-color: transparent;
  /*--btn-font-color: var(--ct-color);*/
  /*--btn-text-transform:initial;*/
  --btn-font-weight: 700;
  --btn-font-size: 14px;

  padding: 10px 20px;
  /* min-width: 120px; */
  width: max-content;
  min-height: unset;
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  font-weight: var(--btn-font-weight);
  text-transform: var(--btn-text-transform);
  color: var(--btn-font-color) !important;
  background-image: none !important;
  background-color: var(--btn-bg-color) !important;
  border: var(--btn-border) !important;
  border-radius: var(--btn-radius) !important;
  position: relative;
  isolation: isolate;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  overflow: hidden;
}

[data-transparent-row="yes"] .ct-button {
  --ct-color: #fff;
}

.ct-button:hover {
  --btn-bg-color: var(--green);
  --btn-border: 1px solid var(--green);
  color: #fff !important;
}

.ct-button:before {
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  inset: 0 0 0 0;
}

/*home*/
.home-about > div > div > div {
  position: relative;
}

.home-about > div:nth-child(2) .absoluted-img {
  position: absolute;
  bottom: -35px;
  right: -35px;
  width: clamp(200px, 44%, 320px);
  height: auto;
}

.home-choose-us-section {
  position: relative;
  isolation: isolate;
}

.home-choose-us-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  /*height: 135px;*/
  display: block !important;
  z-index: -1;
  background: #fff;
}

.home-choose-us {
  left: 15px !important;
  /* padding-left: 30px; */
  padding-left: calc(var(--row-spacing) + 15px) !important;
  padding-right: calc(var(--row-spacing) + 15px) !important;
  width: calc(101% + var(--row-spacing)) !important;
}

.counter-all-plus .mega_count_content,
.counter-all-plus .wpb_text_column {
  text-align: left !important;
  position: relative;
  isolation: isolate;
  /* padding-bottom: 10px; */
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.counter-all-plus .mega_count_content:before,
.counter-all-plus .wpb_text_column::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 60px;
  border-bottom: 1px solid #fff;
  display: block !important;
}

.counter-all-plus .main-counter,
.counter-all-plus .wpb_text_column {
  position: relative;
  isolation: isolate;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #15D04E;
  -webkit-text-fill-color: transparent;
  font-size: clamp(40px, 5vw, 76px) !important;
  font-family: var(--manrope-font) !important;
  line-height: 1 !important;
  font-weight: 800;
}

.counter-all-plus .wpb_text_column,
.counter-all-plus .wpb_text_column p {
  display: inline-block;
}

.counter-all-plus .main-counter::after,
.counter-all-plus .wpb_text_column p::after {
  content: "+";
  font-size: clamp(28px, 3.5vw, 53px);
  position: absolute;
  top: 0;
  /*top: -8px;*/
  left: 100%;
  display: block !important;
}

.vc_row.wpb_row.home-choose-us > div > div > div > .vc_row.wpb_row.counter-all-plus > :nth-child(2) .mega_count_content span.main-counter:after {
    content: "%" !important;
    font-size: clamp(28px, 3.5vw, 53px);
    position: absolute;
    top: 0;
    /* top: -8px; */
    left: 100%;
    display: block !important;
}

.home-services-section {
}

.home-service-grid > div {
  overflow: hidden;
}

.home-service-grid > div > div {
  padding: 0 !important;
}

.home-service-grid > div > div > div {
  position: relative;
  isolation: isolate;
  height: 100%;
}

.home-service-grid > div > div > div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  /*height: 78%;*/
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.27) 25.58%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: block !important;
  z-index: -1;
}

.home-service-grid .flip-content {
  height: 100%;
  padding: 0 15px;
  opacity: 1;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  background-color: rgba(0, 0, 0, 0.3) !important;
  /*background-color: rgba(0, 0, 0, 0.7) !important; */
  color: #fff;
}

.home-service-grid .flip-content a {
  color: inherit;
}

.home-service-grid .flip-content .all-icon img {
  filter: brightness(0) invert(1) !important;
}

.home-service-grid .flip-content .all-icon.w-title .wpb_singleimage_heading {
  color: inherit;
}

.home-service-grid .flip-content ::marker {
  color: inherit;
}

.home-service-grid .flip-content a:hover {
  color: var(--theme-link-hover-color);
}

.home-service-grid > div:hover .flip-content {
  opacity: 1;
}

.home-service-grid .flip-content .black-round-button {
  text-align: center !important;
  display: block !important;
}

.home-service-grid .flip-content .all-icon.w-title .wpb_singleimage_heading,
.home-service-grid
  .hover-icon-w-title.all-icon.w-title
  .wpb_singleimage_heading {
  font-size: var(--title-font-small);
  font-weight: 800 !important;
}

.home-service-grid .hover-icon-w-title {
  position: absolute;
  left: 15px;
  bottom: 0;
  width: calc(100% - 30px);
  margin-bottom: 35px !important;
  opacity: 1;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
}

.home-service-grid > div:hover .hover-icon-w-title {
  opacity: 0;
}

.home-service-grid .wpb_text_column a {
  position: relative;
  isolation: isolate;
}

.home-service-grid .wpb_text_column a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 10px;
  vertical-align: middle;
  transition: all 250ms ease-out;
  transform: translateX(-100%);
  opacity: 0;
  display: inline-block;
}

.home-service-grid .wpb_text_column a:hover::after {
  transform: none;
  opacity: 1;
}

@media only screen and (max-width: 767.98px) {
  .home-about.pb-100 {
    padding-bottom: 35px !important;
  }

  .home-choose-us {
    left: 15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: calc(100% - 15px) !important;
  }

  .counter-all-plus.vc_row.wpb_row.vc_inner {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .counter-all-plus > div {
    flex: 1 1 50%;
  }
  /*.counter-all-plus > div:nth-child(2) {*/
  /*  padding-left: 15px;*/
  /*}*/

  .home-choose-us.pb-35.pt-35 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .home-service-grid .flip-content {
    padding: 0;
  }
}

/*footer*/
#footer [data-column="widget-area-1"] .widget_media_image img {
  width: auto;
  max-height: 80px;
}

#footer [data-column="widget-area-1"] .widget_media_image + .widget_text {
  margin-top: 20px;
}

.company-info-wp-code table {
  border: none;
  width: auto;
}

.company-info-wp-code p {
  padding: 0;
}

.company-info-wp-code table tr td {
  border: none;
  padding: 0 5px 20px;
  width: 25px;
  font-weight: 400;
}

.company-info-wp-code table tr td:first-child {
  padding-left: 0;
}
.company-info-wp-code table tr td:last-child {
  padding-right: 0;
      font-weight: 400 !important;
}
.company-info-wp-code table tr:last-child td {
  padding-bottom: 0;
}

.address .add {
  display: inline-block;
  padding-right: 3px;
}

/*#footer [data-column*='widget-area-3'] .widget_nav_menu .widget-menu {*/
/*  -webkit-column-count: 2;*/
/*  -moz-column-count: 2;*/
/*  column-count: 2;*/
/*  -webkit-column-gap: 30px;*/
/*  -moz-column-gap: 30px;*/
/*  column-gap: 30px;*/
/*}*/

#footer [data-column*="widget-area"] .widget_nav_menu .widget-menu li {
  margin-bottom: 15px;
}

#footer [data-row*="middle"] .ct-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 0;
  gap: 30px 30px !important;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area"] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-basis: -webkit-fit-content;
  flex-basis: -moz-fit-content;
  flex-basis: fit-content;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"] {
  width: min(328px, 30%);
  flex-basis: min(328px, 30%);
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex-basis: -webkit-fit-content;
  flex-basis: -moz-fit-content;
  flex-basis: fit-content;
}

#footer [data-row*="middle"] .ct-container [data-column*="widget-area-3"] {
  width: min(362px, 30%);
  flex-basis: min(362px, 30%);
}

/*#footer [data-row*='middle'] .ct-container [data-column*='widget-area-1'] {*/
/*  flex-basis: 340px;*/
/*}*/

/*#footer [data-row*='middle'] .ct-container [data-column*='widget-area-2'] {*/
/*  flex-basis: 250px;*/
/*}*/

/*#footer [data-row*='middle'] .ct-container [data-column*='widget-area-3'] {*/
/*  --last-col-width: calc(100% - 650px);*/
/*  flex-basis: clamp(240px, var(--last-col-width), 490px);*/
/*}*/

@media only screen and (max-width: 1550px) {
  #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"] {
    width: min(405px, 30%);
    flex-basis: min(405px, 30%);
  }
}

@media only screen and (max-width: 1230px) {
  /*#footer [data-row*='middle'] .ct-container [data-column*='widget-area-1'] {
    flex-basis: 250px;
  }

  #footer [data-row*='middle'] .ct-container [data-column*='widget-area-3'] {
    --last-col-width: calc(100% - 560px);
  }*/

  #footer [data-column*="widget-area-3"] .widget_nav_menu .widget-menu {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}

#footer [data-column*="widget-area-3"] .ct-widget:last-child {
  /*display: none;*/
}

@media only screen and (max-width: 999.98px) {
  #footer [data-column*="widget-area-1"] .ct-widget:last-child {
    display: none;
  }
  #footer [data-column*="widget-area-3"] .ct-widget:last-child {
    display: block;
  }

  #footer [data-row*="middle"] .ct-container [data-column*="widget-area-1"],
  #footer [data-row*="middle"] .ct-container [data-column*="widget-area-2"],
  #footer [data-row*="middle"] .ct-container [data-column*="widget-area-3"] {
    width: 100%;
    flex-basis: 100%;
  }

  #footer [data-column*="widget-area"] .widget_nav_menu .widget-menu li {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 689.98px) {
  #footer [data-column="widget-area-1"] .widget_media_image img {
    width: auto;
    max-height: 75px;
  }
}

@media only screen and (max-width: 420px) {

  #footer ul.widget-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #footer ul.widget-menu > li {
      padding-right: 15px;
      margin-right: 15px;
  }
  #footer ul.widget-menu > li:not(:last-child) {
      border-right: 1px solid;
  }
}

/*disable on specific pages*/
.page-id-222 #footer [data-row*="middle"] {
  display: none !important;
}

.page-id-222 #footer [data-row*="bottom"] > .ct-container {
  border: none !important;
}

/*about*/
.about-main-section {
  margin-top: -250px !important;
  float: left;
  position: relative;
  z-index: 1;
}

.inner-about-main {
  border-radius: 15px;
  padding: 0 15px;
}

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

.ct-breadcrumbs .separator {
  fill: var(--theme-link-initial-color) !important;
}

.about-vm > div > div {
  position: relative;
  isolation: isolate;
  padding: 35px 30px 0 !important;
  border-radius: 15px 15px 45px 15px;
  overflow: hidden;
}

.about-vm > div > div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 70px);
  background-image: url("./images/vm-background-logo.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block !important;
  z-index: -1;
}

.about-vm .all-icon.w-title {
  margin-bottom: 20px !important;
}

.about-vm .all-icon.w-title .wpb_singleimage_heading {
  --icon-title: 20px;
  font-weight: 700 !important;
}

@media only screen and (max-width: 999.98px) {
  .about-main-section {
    margin-top: 0px !important;
    padding-top: 100px;
  }

  .about-main-section .ct-breadcrumbs {
    --theme-link-initial-color: var(--body-color);
  }

  .inner-about-main.vc_row.wpb_row.vc_inner {
    border-radius: 0;
    padding: 0;
    margin-left: -15px;
    margin-right: -15px;
  }

  .about-main > div.vc_col-sm-8 {
    width: 100%;
  }

  .inner-about-main > div > div {
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .about-main-section {
    margin-top: 0px !important;
    padding-top: 70px;
  }
}

/*services*/
.service-row-section {
  margin-top: 0 !important;
  float: left;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.service-row .image-max-height {
  --max-height: 500px;
}

.service-row .all-icon {
  margin-bottom: 25px !important;
}

.service-row .all-icon.w-title .wpb_singleimage_heading {
  --icon-title: var(--title-font-medium);
  font-weight: 700 !important;
}

@media only screen and (max-width: 999.98px) {
  .service-row-section {
    margin-top: 0 !important;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767.98px) {
  .service-row-section {
    padding-top: 70px;
  }
}

/*Projects / post archive*/
[data-prefix="blog"] .ct-pagination,
.archive.category .ct-pagination {
  margin: 35px 0 !important;
}

[data-prefix="blog"] .ct-pagination.ct-last-page,
.archive.category .ct-pagination.ct-last-page {
  display: none !important;
}

[data-prefix="blog"] [data-cards="cover"] .entry-card,
.archive.category [data-cards="cover"] .entry-card {
  --card-inner-spacing: 30px;
}

[data-prefix="blog"] [data-cards="cover"] .entry-card .ct-media-container:after,
.archive.category [data-cards="cover"] .entry-card .ct-media-container:after {
  background-color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 999.98px) {
  [data-prefix="blog"] [data-cards="cover"] .entry-card,
  .archive.category [data-cards="cover"] .entry-card {
    --card-inner-spacing: 30px 15px;
  }
}

[data-prefix="blog"] .entries .entry-card,
.archive.category .entries .entry-card {
  /* aspect-ratio: 51/61; */
  /* justify-content: space-between !important; */
}

[data-prefix="blog"] .entries .entry-card .entry-meta .meta-categories,
.archive.category .entries .entry-card .entry-meta .meta-categories {
  margin-bottom: 0;
  font-size: var(--title-font);
  color: #fff;
  font-weight: 900;
}

[data-prefix="blog"] .entries .entry-card .entry-meta .meta-categories a,
.archive.category .entries .entry-card .entry-meta .meta-categories a {
  color: inherit;
  font-size: inherit;
}

[data-prefix="blog"] .entries .entry-card .entry-meta,
.archive.category .entries .entry-card .entry-meta {
  margin: 0 0 25px !important;
}

[data-prefix="blog"] .entries .entry-card .entry-title,
.archive.category .entries .entry-card .entry-title {
  margin-bottom: 25px;
  font-size: var(--title-font-medium);
  color: #fff;
  font-weight: 900;
  text-align: left;
  width: 100%;
}

[data-prefix="blog"] .entries .entry-card .entry-excerpt,
.archive.category .entries .entry-card .entry-excerpt {
  text-align: left;
  flex: 1;
}

[data-prefix="blog"] .entries .entry-card .entry-title a,
.archive.category .entries .entry-card .entry-title a {
  color: inherit;
  font-size: inherit;
}

/* [data-prefix='blog'] .entries .entry-card a.entry-button,
.archive.category .entries .entry-card a.entry-button {
  --btn-font-color: #fff;
  --btn-bg-color: transparent;
  --btn-border: 1px solid #fff;
  --btn-radius: 50%;
  --btn-size: 40px;
  width: var(--btn-size);
  height: var(--btn-size);
  min-width: unset;
  min-height: unset;
  padding: 0;
  color: var(--btn-font-color) !important;
  background-image: none !important;
  background-color: var(--btn-bg-color) !important;
  border: var(--btn-border) !important;
  border-radius: var(--btn-radius) !important;
  border: none !important;
  border-radius: 0 !important;
  position: relative;
  z-index: 1;
  isolation: isolate;
  -webkit-transition: var(--allTransition);
  transition: var(--allTransition);
  overflow: hidden;
} */

/* [data-prefix='blog'] .entries .entry-card a.entry-button:after,
.archive.category .entries .entry-card a.entry-button:after {
  content: '\f061';
  position: absolute;
  font-family: var(--fontAwesome);
  font-weight: 900;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: inherit;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: inherit;
  opacity: 1;
  z-index: -1;
} */

/* [data-prefix='blog'] .entries .entry-card a.entry-button:hover,
.archive.category .entries .entry-card a.entry-button:hover {
  --btn-border: 1px solid var(--green);
  --btn-bg-color: var(--green);
  --btn-font-color: #fff;
} */

[data-prefix="blog"] .entries .entry-card a.entry-button svg,
.archive.category .entries .entry-card a.entry-button svg {
  display: none;
}

.archive.category [data-cards="cover"] .entry-card {
  border-radius: 10px;
  overflow: hidden;
}

.archive.category [data-archive="default"][data-cards="cover"] .entry-card {
  /* justify-content: flex-end; */
  text-align: center;
}

.archive.category [data-archive="default"] .entry-card {
  align-items: center;
}

.archive.category .entry-button {
  align-self: flex-start;
}

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

.detail-desc-row table {
  border: none;
  width: auto;
}

.detail-desc-row table tr td {
  border: none;
  padding: 0 10px 20px;
  vertical-align: top;
  text-align: left;
}

.detail-desc-row table tr td:first-child {
  padding-left: 0;
  position: relative;
  isolation: isolate;
}

.detail-desc-row table tr td:first-child:after {
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  line-height: inherit;
}

.detail-desc-row table tr td strong {
  font-weight: 900;
}

/*media grid*/

.vc_grid-container .vc_gitem-animated-block {
  border-radius: 10px;
}

.project-media {
  aspect-ratio: 50/53;
  /*border-radius:10px;*/
}

/*contact page*/
.contact-main-section {
  margin-top: -35px !important;
  float: left;
  position: relative;
  z-index: 1;
}

.contact-main.vc_row {
  border-radius: 15px;
  overflow: hidden;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.company-logo + .company-name {
  margin-top: -15px !important;
  line-height: 1.3 !important;
  margin-bottom: 25px !important;
}

.contact-main-info {
  max-width: 400px;
}

/*.contact-main-info .company-info-wp-code [class*='fa'] {*/
/*  color: var(--blue);*/
/*}*/

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important;
}

@media only screen and (max-width: 999.98px) {
  .contact-main-section {
    margin-top: 0px !important;
    padding-top: 65px;
  }

  .contact-main.vc_row {
    border-radius: 0;
    overflow: hidden;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

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

@media only screen and (max-width: 767.98px) {
  .contact-main-section {
    padding-top: 35px;
  }
}

/*header menu*/
#header-menu-1 {
  width: 100%;
  margin: 0 !important;
  --default-color: var(--heading-color);
}

[data-transparent-row="yes"] #header-menu-1 {
  --default-color: #fff;
}

#header-menu-1 > .mega-menu-wrap {
  width: 100%;
  background: none !important;
}

#header-menu-1 > .mega-menu-wrap > ul.mega-menu {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-end;
  /*justify-content: space-between;*/
  /*align-items: flex-end;*/
  gap: 30px;
  margin-right: 15px !important;
}

/*#header-menu-1 > .mega-menu-wrap > ul.mega-menu > li {*/
/*  flex: 1 1;*/
/*border-top: 1px solid var(--default-color) !important;*/
/*}*/

#header-menu-1 .mega-menu-column > .mega-sub-menu {
  display: flex !important;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

#header-menu-1 .mega-menu-column > .mega-sub-menu > li {
  flex: 1 1 calc(100% / 3 - 30px * 2);
}

#header-menu-1 > .mega-menu-wrap > ul.mega-menu > li > a.mega-menu-link,
#header-menu-1 .mega-menu-column > .mega-sub-menu > li a.mega-menu-link {
  font-weight: 600 !important;
}

#header-menu-1 > .mega-menu-wrap > ul.mega-menu > li > a.mega-menu-link {
  color: var(--default-color) !important;
  text-transform: capitalize !important;
}

#header-menu-1 > .mega-menu-wrap > ul.mega-menu > li > a.mega-menu-link:hover {
  color: var(--green) !important;
}

#header-menu-1
  > .mega-menu-wrap
  > ul.mega-menu
  > li[class*="mega-current"]
  > a.mega-menu-link,
#header-menu-1
  .mega-menu-column
  > .mega-sub-menu
  > li[class*="mega-current"]
  > a.mega-menu-link {
  color: #15D04E !important;
  font-weight: 600 !important;
}

/*popmake*/
.pum-container.popmake.theme-8 {
  padding: 15px !important;
}

.pum-container.popmake .vc_row {
  padding-top: 35px;
}

/*slide rev 6*/
.blur-shape {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media only screen and (max-width: 777px) {
  .blur-shape {
    border-radius: 10px 10px 30px !important;
  }
}

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

.border-radius-img-10.border-radius-rb figure > div {
  border-bottom-right-radius: 30px;
}

/* jason continue */
@media screen and (min-width: 768px) {
  .home-choose-us .vc_row.vc_inner {
    display: flex;
    justify-content: space-around;
  }

  .home-choose-us .vc_row.vc_inner::before,
  .home-choose-us .vc_row.vc_inner::after {
    display: none !important;
  }

  .home-choose-us .vc_row.vc_inner > div {
    width: auto;
  }

  .home-choose-us > div > div > div > .vc_custom_heading {
    padding-left: calc(var(--heading-left-gap) + 15px);
  }
}

.single-post #main {
  padding-top: var(--gap);
  padding-bottom: calc(var(--gap) - 35px);
}

.single-post .wpb_text_column {
  text-align: left;
}

.single-post .wpb_text_column ul li,
.single-post .wpb_text_column :ish(h1, h2, h3, h4, h5, h6, strong) {
  text-align: left;
}

/* kao bei 2024 fix */
.entry-header .ct-breadcrumbs {
  --theme-link-initial-color: #3d3d3d;
}

body:is(.archive, .single-post, .woocommerce) .entry-header .ct-breadcrumbs {
  font-family: var(--theme-font-family);
  padding-left: 15px;
  padding-right: 15px;
}

.page-breadcrumb .ct-breadcrumbs {
  --theme-link-initial-color: #3d3d3d;
}

.page-breadcrumb + .subheading {
  margin-top: -15px !important;
}
.page-breadcrumb + .all-title {
  margin-top: -15px !important;
}

@media only screen and (max-width: 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

.home-services-section .all-title,
.service-row .all-title {
  --title-font: 27px;
}

.service-row .all-icon.w-title .wpb_singleimage_heading {
  --icon-title: 27px;
}

body:is(.archive, .single-post, .woocommerce) .page-title {
  --theme-font-size: 27px;
}

@media only screen and (max-width: 767.98px) {
  .home-services-section .all-title,
  .detail-service.all-title {
    --title-font: 23px;
  }

  .service-row .all-icon.w-title .wpb_singleimage_heading {
    --icon-title: 23px;
  }

  body:is(.archive, .single-post, .woocommerce) .page-title {
    --theme-font-size: 23px;
  }
}

/*amendment*/
.home-about-row > div > div > div,
.home-about-row .full-cover-image,
.home-about-row .full-cover-image * {
  height: 100%;
}

/*.home-service-grid > div {*/
/*  border-radius: 25px;*/
/*  overflow: hidden;*/
/*}*/

.home-service-grid .link-box ul {
  list-style-type: none;
  padding-left: 0;
}

.home-service-grid .link-box ul > li {
  border: 1px solid #fff;
  padding: 8px;
  margin-bottom: 15px;
  text-align: center;
}

.left-height .wpb_single_image.full-height img,
.right-height .wpb_single_image.full-height img {
  height: var(--height);
  object-fit: cover;
}

.col-fill-padding.vc_col-has-fill > div {
  padding: 70px 15px 35px !important;
}

[class*="blue-tick"] ul > li {
  list-style-type: none;
}

.blue-tick ul > li > ul {
  margin-top: 15px;
}

.blue-tick ul > li > ul > li,
.blue-tick-main ul > li {
  margin-left: 30px;
}
.blue-tick ul > li > ul > li:before,
.blue-tick-main ul > li:before {
  content: "\f00c";
  position: absolute;
  margin-left: -25px;
  font-family: var(--fontAwesome);
  font-weight: 900;
  font-size: 12px;
  width: 20px;
  height: 20px;
  background-color: #0072ce;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-solution-grid .vc_pageable-slide-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  > .vc_grid-item-mini,
.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  > .vc_grid-item-mini
  > .vc_gitem-zone,
.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-zone-mini,
.custom-solution-grid .vc_pageable-slide-wrapper > .vc_grid-item .vc_gitem_row {
  height: 100%;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-zone {
  border-radius: 10px;
  overflow: hidden;
}

.custom-solution-grid .vc_pageable-slide-wrapper > .vc_grid-item .vc_gitem-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
}

.custom-solution-grid .vc_pageable-slide-wrapper > .vc_grid-item .readmore {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-data-source-post_title
  > div {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
  min-height: var(--height);
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-meta-field-text_on_hover {
  /*position: absolute;*/
  /*top: calc(var(--height) + 30px + 35px);*/
  opacity: 0;
  height: 0;
  margin-bottom: 0 !important;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-data-source-post_title,
.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-data,
.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-meta-field-text_on_hover {
  margin-bottom: 35px;
}

.custom-solution-grid .vc_pageable-slide-wrapper > .vc_grid-item .readmore {
  margin-bottom: 0 !important;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .readmore:not(:hover)
  .vc_general.vc_btn3 {
  --btn-font-color: #000;
}

.custom-solution-grid ul li {
  padding-bottom: 5px;
}

.custom-solution-grid ul li::marker,
.black-li ul li::marker {
  color: #000;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-meta-field-text_on_hover,
.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item
  .vc_gitem-post-data-source-post_excerpt {
  transition: all 300ms ease;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item:hover
  .vc_gitem-post-data-source-post_excerpt {
  height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.custom-solution-grid
  .vc_pageable-slide-wrapper
  > .vc_grid-item:hover
  .vc_gitem-post-meta-field-text_on_hover {
  height: auto;
  opacity: 1;
  margin-bottom: 35px !important;
}

.custom-breadcrumb a {
  color: #3d3d3d;
}

.custom-breadcrumb a:hover {
  color: #3bd23d;
}
.custom-breadcrumb .active {
  color: #3bd23d;
  font-weight: 800;
}

.custom-breadcrumb i {
  font-size: 12px;
}

.custom-breadcrumb > div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mega_count_img {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .home-about-sec > .home-about-row:nth-child(2) > div.vc_col-has-fill {
    padding-right: 50px;
  }
  .home-about-row > div > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .home-about-row {
    margin-left: 0;
    margin-right: 0;
  }
  .home-about-row > .wpb_column.vc_col-has-fill > div > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .col-fill-padding.vc_col-has-fill > div {
    padding: 70px 50px 35px !important;
  }
  .col-fill-padding.pr > div {
    padding-right: 100px !important;
  }
  .col-fill-padding.pl > div {
    padding-left: 100px !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .home-about-sec > .home-about-row:nth-child(1) > div.vc_col-has-fill {
    margin-left: 15px;
    margin-right: 15px;
  }
  .home-about-sec > .home-about-row:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
  }
  .custom-solution-grid .vc_pageable-slide-wrapper {
    display: flex;
    flex-direction: column;
  }
  .row-gap-b {
    padding-bottom: calc(var(--gap) - 35px) !important;
  }
  .custom-solution-grid
    .vc_pageable-slide-wrapper
    > .vc_grid-item
    .vc_gitem-post-data-source-post_excerpt
    p,
  .custom-solution-grid
    .vc_pageable-slide-wrapper
    > .vc_grid-item
    .vc_gitem-post-meta-field-text_on_hover
    p {
    text-align: justify !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .m-side {
    margin-inline: 0 !important;
  }

  .service-row-section > .vc_row {
    margin-inline: 0 !important;
  }

  .single-post article > .entry-content {
    margin-inline: 15px !important;
  }
}






/*Start Style here*/
.home-cal-icon {
    max-width: 75px;
}

[data-header*="type-1"] .ct-header [data-transparent-row="yes"] [data-id="button"] .ct-button {
    background-color: #DC1010 !important;
    color: #fff !important;
    border-color:#DC1010 !important;
}

[data-header*="type-1"] .ct-header [data-id="button"] .ct-button {
    background-color: #DC1010 !important;
    color: #fff !important;
    border-color:#DC1010 !important;
}

[data-header*="type-1"] .ct-header [data-transparent-row="yes"] [data-id="button"] .ct-button:hover {
    border-color: #DC1010 !important;
    background-color: transparent !important;
    color: #DC1010 !important;
}

[data-header*="type-1"] .ct-header [data-id="button"] .ct-button:hover  {
    border-color: #DC1010 !important;
    background-color: #fff !important;
    color: #DC1010 !important;
}


#popmake-412 .wpcf7-form-control-wrap {
    --placeholder-color: transparent;
}


.home-cal-row .vc_row.wpb_row.vc_inner {
    display: flex;
    align-items: center;
}


.home-cal-sec .vc_row.vc_row-flex>.vc_column_container>.vc_column-inner {
    justify-content: center;
}


/*home-table*/

.rate-table-sec{
    font-family:'montserrat' !important;
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab.vc_active>a {
    border-color: #363636 !important;
    /*background-color: #363636 !important;*/
    color: #15D04E !important;
    font-weight:600 !important;
}
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab>a {
    border-color: #363636 !important;
    /*background-color: #363636 !important;*/
    color: #FFFFFF !important;
}
.vc_tta.vc_general .vc_tta-tab>a {
    padding: 14px 150px !important;
    display: block;
    box-sizing: border-box;
    border: solid transparent;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: background .2s ease-in-out, color .2s ease-in-out, border .2s ease-in-out;
    box-shadow: none;
}


.vc_tta.vc_tta-o-no-fill.vc_tta-tabs .vc_tta-tabs-container {
    border-bottom: 1px solid white;
}

table, th, td {
    font-size: var(--table-font-size);
    border-width: 0px !important;
    border-style: var(--table-border-style, solid);
    border-color: var(--table-border-color, var(--border-color));
    font-weight: 500 !important;
}

.rate-table-title{
    font-weight:600 !important;
    font-size:20px;
}


.vc_tta-container{
    position: relative; 
    padding-left: 20px; 
}
.vc_tta-tabs-container::after{
    content: ''; 
    position: absolute; 
    left: 50%; 
    top: 0; 
    width: 1px; 
    height: 80%; 
    background-color: #FFFFFF; 
    transform: translateX(-50%); 
}
.rate-table-row.vc_row>.vc_column_container>.vc_column-inner {
    padding-top: 0px;
}


/*Home-contact-section*/
section.vc_section.home-contact-sec {
    padding-top: 0px !important;
}

.vc_row.wpb_row.home-contact-row.vc_row-flex>.vc_column_container>.vc_column-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
    justify-content: center;
}

.home-contact-row .wpb_single_image.wpb_content_element.wpb_content_element {
    margin-bottom: 0px !important;
}



.home-cal-row > div.left-padding:first-child {
    padding-left: var(--row-spacing);
}

/*home contact section*/
.home-form .contact-form {
    border: 1px solid #15D04E;
    background-color: #15D04E;
    border-radius: 2em;
    padding: 65px 30px 5px;
    width:95%;
}

.home-form .contact-form .form {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.home-form .contact-form .form label {
    /* font-size: 16px !important; */
    /* font-weight: 400 !important; */
    display: none;
}

.home-form .contact-form .form input, .home-form .contact-form .form textarea {
    border-radius: 1em !important;
    border:1px solid transparent;
    
}

.home-form .readmore.arrow .vc_general.vc_btn3 {
    --btn-bg-color: #DC1010;
    /* --btn-border: none; */
    /* --btn-font-color: #fff; */
    /* --arrow-bg-btn: var(--green); */
    padding-left: 50px;
    padding-right: 50px;
}
.home-form .readmore.arrow .vc_general.vc_btn3:hover {
    --btn-font-color: #DC1010;
    --btn-bg-color: transparent;
    --btn-border: 1px solid #DC1010;
    border-color: #DC1010;
}


.home-form.wpb_column.vc_column_container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 55%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.home-contact-sec >.vc_row.vc_row-flex {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-cal-icon .wpb_single_image img {
    height: 35px;
    width: auto;
}

/*service page*/
section.vc_section.home-services-section .wpb_single_image.wpb_content_element {
    margin-bottom: 0px;
}


section.vc_section.home-services-section .wpb_text_column.wpb_content_element {
    padding: 60px 50px;
}

.home-service-grid > div > div > div .service-loan-text {
    transition:300ms ease;
    
}

.home-service-grid > div > div > div:hover .service-loan-text {
    background-color: #fff !important;
    border:1px solid #001E63 !important;
}

.home-service-grid li::marker{
    color:#fff;
}


.home-service-grid > div > div > div:hover .service-loan-text p,.home-service-grid > div > div > div:hover 
.service-loan-text li,.home-service-grid > div > div > div:hover .service-loan-text h5,.home-service-grid > div > div > div:hover li::marker{
    color:#001E63 !important;
    
}


.contact-main .wpcf7-form-control-wrap {
      --placeholder-color: transparent;
}

/*.customer-say-sec.vc_row-flex > .cust-say-btn  {*/
/*    flex-grow: 1;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    z-index: 1;*/
/*    justify-content: center !important;*/
/*}*/

/*.cust-say-btn .vc_btn3 {*/
/*    color: #fff !important;*/
/*    border-color: transparent !important;*/
/*    background-color: #15D04E !important;*/
/*}*/

/*.vc_pagination-color-grey.vc_pagination-style-flat .vc_pagination-trigger, .vc_pagination-color-grey.vc_pagination-style-outline .vc_active .vc_pagination-trigger, .vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger:hover {*/
/*    background-color: #001E63;*/
/*    opacity: 1;*/
/*    width: 30px;*/
/*    height: 5px;*/
/*}*/

/*.vc_pagination.vc_pagination-style-flat .vc_active .vc_pagination-trigger, .vc_pagination.vc_pagination-style-flat .vc_pagination-trigger:hover {*/
/*    opacity: 1;*/
/*    background-color: #15D04E !important;*/
/*}*/
div#slick-slide00 .wpb_wrapper,div#slick-slide02 .wpb_wrapper, div#slick-1 .wpb_wrapper {
    padding-right: 50px;
    padding-left: 50px;
}

ul.slick-dots li {
    padding-bottom: 0px;
}


.home-services-section .wpb_wrapper,.home-services-section .wpb_wrapper h5{
    color: #fff;
}

.home-services-section .wpb_wrapper h5{
    font-weight:600;
}



/*contact page*/

.contact-form .readmore.arrow .vc_general.vc_btn3 {
    --btn-bg-color: #DC1010;
    /* --btn-border: none; */
    /* --btn-font-color: #fff; */
    /* --arrow-bg-btn: var(--green); */
    border-color: #DC1010;
    padding-left: 50px;
    padding-right: 50px;
}
.contact-form .readmore.arrow .vc_general.vc_btn3:hover {
    --btn-font-color: #DC1010;
    --btn-bg-color: transparent;
    --btn-border: 1px solid #DC1010;
    border-color: #DC1010;
}


li.menu-item.current-menu-item.page_item {
    font-weight: 600;
}

@media only screen and (min-width: 992px){
    .home-contact-row {
        min-height: 600px;
    }
    .home-contact-row > div.wpb_column:nth-child(3) > div,
    .home-contact-row > div.wpb_column:nth-child(3) > div > div,
    .home-contact-row > div.wpb_column:nth-child(3) > div > div .wpb_single_image,
    .home-contact-row > div.wpb_column:nth-child(3) > div > div .wpb_single_image *{
        height: 100%;
    }
    .home-contact-row > div.wpb_column:nth-child(3) > div > div .wpb_single_image img {
        object-fit: cover;
        object-position: left center;
    }
    
    
}

@media only screen and (min-width: 1500px){
.home-about-sec > :nth-child(2).home-about-row .full-cover-image * {
    max-height: 500px !important;
}
}

/*Mobile View*/
@media only screen and (max-width: 767px){
    
    
    .home-about-sec > :nth-child(2).home-about-row .wpb_wrapper {
    text-align: justify;
    }
    
    .contact-main > div :nth-child(2) > .wpb_wrapper {
    text-align: justify;
    }
    
    
    .counter-all-plus.vc_row.wpb_row.vc_inner {
        margin-left: -15px;
        margin-right: -15px;
        display: block;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        }
        
        
        .home-cal-sec>:nth-child(3).vc_row.vc_row-flex {
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
        
        .vc_tta-tabs-container::after {
        display:none;
    }
        
        .vc_tta.vc_tta-o-no-fill.vc_tta-tabs .vc_tta-tabs-container {
        border-bottom: 5px solid white;
    }
        
        .vc_tta.vc_general .vc_tta-panel-body>:last-child {
        margin-bottom: 0;
        overflow-y: auto;
    }
    
    
    .rate-table-sec .vc_tta-container {
        padding-left: 0;
    }
    
     .home-form .contact-form {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .home-form.wpb_column.vc_column_container {
        display: contents;
        
    }
        
    section.vc_section.home-about-sec {
        padding-bottom: 35px !important;
    }    
    
    section.rate-table-sec {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
        
    /*.vc_row.wpb_row.home-contact-row {*/
    /*    padding-top: 70px;*/
    /*}    */
        
    .about-main-row h4.vc_custom_heading.all-title {
        padding-top: 0px !important;
    }    
        
    .about-main-row .vc_btn3-container.readmore.arrow {
        padding-bottom: 0px !important;
        /*margin-bottom: 0px !important;*/
    }    
    
    
    section.vc_section.home-process-sec .wpb_single_image .vc_single_image-wrapper {
        max-width: 45px;
    }
    
    section.vc_section.home-services-section .wpb_text_column.wpb_content_element {
        padding: 60px 15px;
    }
    
    .slick-arrow.slick-prev {
        left: 30px;
    }
    
    .slick-arrow.slick-next {
        right: 30px;
    }
    
    
    section.vc_section.about-main-sec {
        padding-top: 70px !important;
    }
    
    .home-about-sec .home-about-row:nth-child(2) > div:nth-child(1) > .vc_column-inner > .wpb_wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    
    section.vc_section.home-choose-us-section {
        padding-top: 70px !important;
    }
    .rate-table-row ul.vc_tta-tabs-list {
        display: flex !important;
        justify-content: center;
    }
    .vc_tta.vc_general .vc_tta-tab>a {
        padding: 10px 20px !important;
    }
}





@media only screen and (max-width: 991.98px){


 .home-form .contact-form {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    
}

.home-form .wpb_wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

.home-form.wpb_column.vc_column_container {
    display: contents;
    
}

.vc_col-sm-4 {
    width: 100%;
}
  .vc_tta-tabs-container::after {
    display:none;
}
    
    .vc_tta.vc_tta-o-no-fill.vc_tta-tabs .vc_tta-tabs-container {
    border-bottom: 2px solid white;
}
    
    .vc_tta.vc_general .vc_tta-panel-body>:last-child {
    margin-bottom: 0;
    overflow-y: auto;
}


section.vc_section.home-contact-sec {
     padding-top: 70px !important; 
}


}

@media only screen and (min-width: 1500px) {
    .address .add {
        display: block;
    }
}
