@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Graphik';
  src: url('./fonts/Graphik-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

:root {
  --primary-color: black;
  --secondary-color: white;
  --text-color: black;
  --gap: 100px;
  --mobile-gap: 70px;
  --line-height: 1.5;
  --header-line-height: 1.2;
  --h1: 45px;
  --h2: 40px;
  --h3: 35px;
  --h4: 30px;
  --h5: 25px;
  --h6: 20px;
  --h7: 18px;
  --mobile-h1: 30px;
  --mobile-h2: 25px;
  --mobile-h3: 20px;
  --p: 16px;
  --max-height: min(60vh, 450px);
  --fontFamily: 'Graphik', sans-serif;
  /* --container-width-base: calc(100% - 170px); */
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  line-height: var(--line-height);
  font-family: 'Graphik', sans-serif;
}

/* alignment */
/* body {
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: '';
  height: 100%;
  width: 1px;
  background: var(--paletteColor2);
  z-index: 100;
  position: absolute;
  top: 0;
}

body::before {
  left: calc((100% - var(--container-width-base)) / 2 + 15px);
  transform: translateX(-50%);
}

body::after {
  right: calc((100% - var(--container-width-base)) / 2 + 15px);
  transform: translateX(50%);
} */
/* alignment */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--header-line-height);
  text-align: left;
  margin-top: 0 !important;
}

.wpb_text_column h1,
h1.vc_custom_heading {
  font-size: var(--h1);
}

.wpb_text_column h2,
h2.vc_custom_heading {
  font-size: var(--h2);
}

.wpb_text_column h3,
h3.vc_custom_heading {
  font-size: var(--h3);
}

.wpb_text_column h4,
h4.vc_custom_heading {
  font-size: var(--h4);
}

.wpb_text_column h5,
h5.vc_custom_heading {
  font-size: var(--h5);
}

.wpb_text_column h6,
h6.vc_custom_heading {
  font-size: var(--h6);
}

.text_justify,
.text_justify_last {
  text-align: justify;
}

.text_justify_last {
  text-align-last: center;
}

.text_center,
.text_center :is(h1, h2, h3, h4, h5, h6) {
  text-align: center !important;
}

.text_left,
.text_left :is(h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.text_right,
.text_right :is(h1, h2, h3, h4, h5, h6) {
  text-align: right !important;
}

.text_white,
.text_white h1,
.text_white h2,
.text_white h3,
.text_white h4,
.text_white h5,
.text_white h6,
.text_white a {
  color: white !important;
}

.text_black,
.text_black h1,
.text_black h2,
.text_black h3,
.text_black h4,
.text_black h5,
.text_black h6,
.text_black a {
  color: black !important;
}

.image-w-full,
.image-w-full * {
  width: 100%;
}

.image-w-full img {
  object-fit: cover;
}

.image-hover-scale {
  overflow: hidden;
}

.image-hover-scale img {
  transition: transform 500ms ease-out;
}

.image-hover-scale:hover img {
  transform: scale(1.05);
}

.image-br {
  border-radius: 15px;
  overflow: hidden;
}

.image-mh img {
  max-height: var(--max-height);
}

.image-mh-300 img {
  max-height: 300px;
}

.image-mh-400 img {
  max-height: 400px;
}

.image-mh-500 img {
  max-height: 500px;
}

@media screen and (min-width: 350px) {
  .span-inline-block span {
    display: inline-block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-table table {
  width: auto;
}

.custom-table table,
.custom-table table td {
  border: none;
}

.custom-table table td {
  padding: 2.5px 5px;
  vertical-align: top;
}

.custom-table table td:first-child {
  padding-left: 0 !important;
}

.custom-table table td:last-child {
  padding-right: 0 !important;
}

.custom-table table tr:first-child td {
  padding-top: 0 !important;
}

.custom-table table tr:last-child td {
  padding-bottom: 0 !important;
}

.wpcf7 p::after {
  display: none;
}

.wpb_text_column ul,
.wpb_text_column ol {
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.ul-gap :is(ul, ol) > li:not(:last-child) {
  margin-bottom: 15px;
}

.ul-gap :is(ul, ol) :is(ul, ol) {
  margin-top: 15px;
}

.ul-gap :is(ul, ol) ul {
  list-style-type: circle;
}

.ul-gap :is(ul, ol) > li {
  text-align: left;
}

.reg_no h1 span,
.reg_no h2 span,
.reg_no h3 span,
.reg_no h4 span,
.reg_no h5 span,
.reg_no h6 span {
  font-size: 16px !important;
  font-weight: 400;
}

.lh-header {
  line-height: var(--header-line-height);
}

.fs-h1,
.span-fs-h1 span {
  font-size: var(--h1);
}

.fs-h2,
.span-fs-h2 span {
  font-size: var(--h2);
}

.fs-h3,
.span-fs-h3 span {
  font-size: var(--h3);
}

.fs-h4,
.span-fs-h4 span {
  font-size: var(--h4);
}

.fs-h5,
.span-fs-h5 span {
  font-size: var(--h5);
}

.fs-h6,
.span-fs-h6 span {
  font-size: var(--h6);
}

.fs-h7,
.span-fs-h7 span {
  font-size: var(--h7);
}

.fs-p,
.span-fs-p span {
  font-size: var(--p);
}

.fw-100,
.span-fw-100 span:first-child,
.title-100 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 100;
}

.fw-200,
.span-fw-200 span:first-child,
.title-200 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 200;
}

.fw-300,
.span-fw-300 span:first-child,
.title-300 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 300;
}

.fw-400,
.span-fw-400 span:first-child,
.title-400 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
}

.fw-500,
.span-fw-500 span:first-child,
.title-500 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 500;
}

.fw-600,
.span-fw-600 span:first-child,
.title-600 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
}

.fw-700,
.span-fw-700 span:first-child,
.title-700 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
}

.fw-800,
.span-fw-800 span:first-child,
.title-800 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 800;
}

.fw-900,
.span-fw-900 span:first-child,
.title-900 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 900;
}

.title-fs-h7 :is(h1, h2, h3, h4, h5, h6) {
  font-size: var(--h7);
}

.background-fixed {
  background-attachment: fixed !important;
}

.mb {
  margin-bottom: 35px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-half {
  margin-bottom: calc(var(--gap) / 2) !important;
}

.mt {
  margin-top: 35px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-half {
  margin-top: calc(var(--gap) / 2) !important;
}

.gap {
  padding-top: var(--gap) !important;
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap-t {
  padding-top: var(--gap) !important;
}

.gap-b {
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap.full,
.gap-b.full {
  padding-bottom: var(--gap) !important;
}

.gap-m {
  margin-top: var(--gap) !important;
  margin-bottom: var(--gap) !important;
}

.gap-m-t {
  margin-top: var(--gap) !important;
}

.gap-m-b {
  margin-bottom: var(--gap) !important;
}

.row-mb-10 > div > div > div > *:not(:last-child) {
  margin-bottom: 10px;
}

.row-mb-20 > div > div > div > *:not(:last-child) {
  margin-bottom: 20px;
}

.row-mb-30 > div > div > div > *:not(:last-child) {
  margin-bottom: 30px;
}

.vc_section.column-inner-0,
.vc_row.column-inner-0 > div > div {
  padding-top: 0 !important;
}

.grid {
  display: grid !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 30px;
}

.grid::before,
.grid::after {
  display: none !important;
}

.grid > div {
  width: 100% !important;
}

.grid > div > div {
  height: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* .grid > div > div > div > *:last-child {
  margin-bottom: 0;
} */

.grid-row-gap {
  row-gap: var(--gap);
}

.grid-row-gap-half {
  row-gap: calc(var(--gap) / 2);
}

.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);
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.display-none {
  display: none !important;
}

@media screen and (min-width: 576px) {
  .grid-sm {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-sm::before,
  .grid-sm::after {
    display: none !important;
  }

  .grid-sm > div {
    width: 100% !important;
  }

  .grid-sm > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-sm > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .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) {
  /* body:not(.single-product) .vc_row > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .desktop_text_center,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .desktop_text_left,
  .desktop_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .desktop_text_right,
  .desktop_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .desktop-mb {
    margin-bottom: 35px !important;
  }

  .desktop-mb-0 {
    margin-bottom: 0 !important;
  }

  .desktop-mb-10 {
    margin-bottom: 10px !important;
  }

  .desktop-mb-20 {
    margin-bottom: 20px !important;
  }

  .desktop-mb-30 {
    margin-bottom: 30px !important;
  }

  .desktop-mb-50 {
    margin-bottom: 50px !important;
  }

  .desktop-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .column-gap {
    --column-gap: max(30px, 2vw);
  }

  .column-gap > div {
    padding-left: var(--column-gap) !important;
    padding-right: var(--column-gap) !important;
  }

  .column-gap > div:first-child {
    padding-left: 0 !important;
  }

  .column-gap > div:last-child {
    padding-right: 0 !important;
  }

  .column-gap.vc_row-no-padding,
  .vc_row-no-padding .column-gap {
    --column-gap: max(30px, 2.5vw);
  }

  .column-gap .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .desktop-image-mh-300 img {
    max-height: 300px;
  }

  .desktop-image-mh-400 img {
    max-height: 400px;
  }

  .desktop-image-mh-500 img {
    max-height: 500px;
  }

  .padding-left-gap.vc_row:not(.vc_inner) > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-left-gap.vc_row-no-padding:not(.vc_inner) > div:first-child,
  .vc_row.vc_row-no-padding .padding-left-gap.vc_row.vc_inner > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  }

  .padding-right-gap:not(.vc_inner) > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-right-gap.vc_row-no-padding:not(.vc_inner) > div:last-child,
  .vc_row.vc_row-no-padding .padding-right-gap.vc_row.vc_inner > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  }

  .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-md::before,
  .grid-md::after {
    display: none !important;
  }

  .grid-md > div {
    width: 100% !important;
  }

  .grid-md > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-md > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .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);
  }

  .align-center {
    display: flex;
    align-items: center;
  }

  .align-end {
    display: flex;
    align-items: flex-end;
  }

  .equal-height {
    display: flex;
  }

  .equal-height > div > div {
    height: 100%;
  }
}

@media screen and (min-width: 992px) {
  .grid-lg {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-lg::before,
  .grid-lg::after {
    display: none !important;
  }

  .grid-lg > div {
    width: 100% !important;
  }

  .grid-lg > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-lg > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .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);
  }
}

@media screen and (min-width: 1200px) {
  .grid-xl {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-xl::before,
  .grid-xl::after {
    display: none !important;
  }

  .grid-xl > div {
    width: 100% !important;
  }

  .grid-xl > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-xl > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .grid-column-xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-column-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-column-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-gap-0 {
  gap: 0;
}

@media screen and (max-width: 991px) {
  :root {
    --gap: var(--mobile-gap);
    --h1: var(--mobile-h1);
    --h2: var(--mobile-h1);
    --h3: var(--mobile-h2);
    --h4: var(--mobile-h2);
    --h5: var(--mobile-h3);
    --h6: var(--mobile-h3);
  }
}

@media screen and (max-width: 767px) {
  .gap.full,
  .gap-b.full {
    padding-bottom: var(--gap) !important;
  }

  .mobile_text_center,
  .mobile_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .mobile_text_left,
  .mobile_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .mobile_text_right,
  .mobile_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .mobile-image-br {
    border-radius: 15px;
    overflow: hidden;
  }

  .mobile-mb {
    margin-bottom: 35px !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }

  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }

  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }

  .mobile-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .mobile-mt {
    margin-top: 35px !important;
  }

  .mobile-mt-0 {
    margin-top: 0 !important;
  }

  .mobile-mt-10 {
    margin-top: 10px !important;
  }

  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mt-30 {
    margin-top: 30px !important;
  }

  .mobile-mt-50 {
    margin-top: 50px !important;
  }

  .mobile-mt-half {
    margin-top: calc(var(--gap) / 2) !important;
  }

  .mobile-image-mh-300 img {
    max-height: 300px;
  }

  .mobile-image-mh-400 img {
    max-height: 400px;
  }

  .mobile-image-mh-500 img {
    max-height: 500px;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }

  .mobile-br-none br {
    display: none;
  }
  
  .mobile-gap-t-15 {
      padding-top: 15px !important;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

/* Blocksy */

[data-vertical-spacing*='top'] {
  padding-top: 0;
}

[data-vertical-spacing*='bottom'] {
  padding-bottom: 0;
}

.entry-content > * {
  margin-bottom: 0;
}

.vc_btn3-container,
.vc_tta-container {
  margin-bottom: 35px;
}

.ct-menu-link:not(:empty) {
  padding-left: 0;
  padding-right: 0;
}

ul.menu {
  display: flex;
  column-gap: 35px;
}

.vc_section:not([data-vc-full-width]) {
  padding-left: 0;
  padding-right: 0;
}

.vc_row:not([vc-full-width-init], .vc_grid, .vc_gitem_row),
.vc_section[data-vc-full-width]:not([data-vc-stretch-content]) > .vc_row:not(.vc_row-has-fill) {
  margin-left: -15px;
  margin-right: -15px;
}

/* .vc_row.vc_row-has-fill:not(.vc_inner) {
  margin-left: 0;
  margin-right: 0;
} */

/* .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner {
  padding-top: 0;
} */

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

.ct-footer-copyright > *:not(:first-child) {
  margin-top: 0;
}
#footer [data-row='bottom'] .inspiren br {
  display: none;
}

/* .woocommerce-page.archive #header > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
} */

.post-edit-link,
.vc_inline-link {
  display: none !important;
}

.inspiren {
  font-size: 14px;
}

.inspiren span {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .ct-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .ct-container {
    width: calc(100% - 30px);
  }

  .wpb_gmaps_widget .wpb_map_wraper iframe {
    height: 300px;
  }

  .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;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar {
    --admin-bar: 46px;
  }
}

/* Custom End */
.wpb_text_column :is(h1, h2, h3, h4, h5, h6) strong {
  font-weight: 600;
}

.font-graphik {
  font-family: var(--fontFamily) !important;
}

.with-line {
  position: relative;
  isolation: isolate;
}

.with-line::before {
  content: '';
  position: absolute;
  bottom: -12.5px;
  left: 0;
  width: 45px;
  height: 5px;
  display: block !important;
  background: var(--paletteColor2);
  transform: translateY(50%);
}

.with-line.line-center::before {
  left: 50%;
  transform: translate(-50%, 50%);
}

.with-line.line-space {
  margin-bottom: 47.5px;
}

.ul-check ul {
  list-style: none;
  padding-left: 25px;
}

.ul-check ul li {
  position: relative;
  isolation: isolate;
}

.ul-check ul li::before {
  content: '';
  position: absolute;
  top: 1px;
  left: -25px;
  z-index: -1;
  display: block !important;
  background: center / contain no-repeat url(https://9.inspiren.dev/uni-facility/wp-content/uploads/2023/08/check.png);
  width: 18px;
  height: 18px;
}

.custom-button .vc_general,
#contact_button [type='submit'] {
  color: var(--paletteColor1) !important;
  background: none !important;
  outline: none !important;
  border-radius: 0 !important;
  padding: 13px 25px !important;
  font-family: var(--fontFamily);
  font-weight: 600;
  border: 1px solid var(--paletteColor1) !important;
  line-height: 1;
}

.custom-button.white-button .vc_general {
  color: white !important;
  border-color: white !important;
}

.custom-button.contact-button .vc_general,
#contact_button [type='submit'] {
  color: white !important;
  border-color: #c7803d !important;
  background: #c7803d !important;
}

.custom-button .vc_general {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.custom-button .vc_general::before,
.custom-button .vc_general::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: all 250ms ease-in-out;
  z-index: -1;
}

.custom-button .vc_general::before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 42px solid var(--paletteColor1);
  transform: translateX(-100%);
}

.custom-button .vc_general::after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 42px solid var(--paletteColor1);
  transform: translateX(100%);
}

.custom-button .vc_general:hover::before {
  transform: translateX(-49%);
}

.custom-button .vc_general:hover::after {
  transform: translateX(49%);
}

.custom-button .vc_general:hover {
  color: white !important;
}

.custom-button.hover-white-button .vc_general::before,
.custom-button.hover-white-button .vc_general::after,
.custom-button.contact-button .vc_general::before,
.custom-button.contact-button .vc_general::after {
  border-bottom-color: white;
  border-top-color: white;
}

.custom-button.hover-white-button .vc_general:hover {
  color: var(--paletteColor1) !important;
}

.custom-button.contact-button .vc_general:hover {
  color: #c7803d !important;
}

#contact_button [type='submit'] {
  text-transform: uppercase;
}

.home-welcome-row > div:first-child > div {
  padding-top: var(--gap) !important;
  padding-bottom: var(--gap) !important;
}

.home-welcome-row .welcome-image img {
  aspect-ratio: 684 / 667;
}

.home-services-row .services-image img {
  aspect-ratio: 3 / 2;
}

.home-services-row .vc_row.vc_inner {
  margin-left: 0;
  margin-right: 0;
}

.home-services-row .services-icon img {
  height: 60px;
  width: auto;
}

.home-contact-sec {
  position: relative;
  isolation: isolate;
}

.home-contact-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block !important;
  background: linear-gradient(to right, rgb(255 255 255 / 0.8), transparent);
}

.home-contact-row {
  position: relative;
  isolation: isolate;
}

.home-contact-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 50%;
  aspect-ratio: 1;
  display: block !important;
  background: #c82227;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.38;
  transform: translate(-120%, -60%);
}

.home-contact-row::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 130%;
  aspect-ratio: 1;
  display: block !important;
  background: white;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
  transform: translate(25%, 40%);
}

.about-intro-row .intro-image img {
  aspect-ratio: 588 / 821;
}

.about-intro-row .intro-icon img {
  height: 80px;
  width: auto;
  aspect-ratio: 197 / 155;
  object-fit: contain;
  object-position: bottom left;
}

.about-intro-row .vc_row.vc_inner > div > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.service-intro-row .intro-image img {
  aspect-ratio: 98 / 113;
}

.service-intro-row .intro-icon img {
  height: 60px;
  width: auto;
}

ul.wpb_image_grid_ul {
  height: auto !important;
  display: grid;
  gap: 35px;
}

ul.wpb_image_grid_ul > li {
  position: static !important;
  float: none !important;
  margin: 0 !important;
  /* transform: none !important; */
}

ul.wpb_image_grid_ul > li * {
  width: 100%;
  height: 100% !important;
}

ul.wpb_image_grid_ul > li img {
  object-fit: cover;
}

.service-why-row > div > div > div {
  padding-top: calc(var(--gap) - 35px);
  padding-bottom: calc(var(--gap) - 35px);
}

.service-why-row .why-icon img {
  height: 60px;
  width: auto;
}

.contact-company-row .company-icon img {
  height: 30px;
  width: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-company-row {
  position: relative;
  isolation: isolate;
}

.contact-company-row::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
  display: block !important;
  background: #333;
  width: calc(100% - 30px);
  height: 1px;
}

#contact_form > p {
  display: grid;
  gap: 20px;
}

#contact_form {
  margin-bottom: 20px;
}

#contact_form textarea {
  height: auto;
}

#contact_button {
  margin-top: 20px;
}

#contact_button [type='submit'] {
  float: none;
  display: inline-block;
}

#contact_button > p {
  text-align: center;
  position: relative;
}

#contact_button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#contact_form ::placeholder {
  opacity: 1;
  color: #333;
}

.contact-message-row.vc_row-has-fill {
  position: relative;
  isolation: isolate;
}

.contact-message-row.vc_row-has-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block !important;
  background: linear-gradient(to bottom, white 35%, rgb(255 255 255 / 0.5));
}

#header .ct-button {
  font-size: 14px;
  margin-left: 25px;
}

#header .ct-button::before {
  content: '\f0c1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  display: inline-block !important;
  position: static;
  opacity: 1;
  filter: none;
  background: none;
  z-index: auto;
}

ul.menu > li > .ct-menu-link {
  height: auto;
  position: relative;
  isolation: isolate;
}

ul.menu > li > .ct-menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--paletteColor2);
  top: auto;
  right: auto;
  transition: all 250ms ease-out;
}

ul.menu > li > .ct-menu-link:hover::before,
ul.menu > li[class*='current'] > .ct-menu-link::before {
  width: 20px;
  opacity: 1;
}

ul[role='menubar'] li[class*='current'] > a {
  font-weight: 500;
}

ul.menu ul.sub-menu > li {
  padding-left: 20px;
  padding-right: 20px;
}

#footer .widget_media_image img {
  width: 140px;
}

#footer .custom-contact-container table td:first-child {
  color: var(--paletteColor2);
  font-weight: 500;
}

#footer [data-row='bottom'] {
  display: none !important;
}

body.page-id-146 #footer [data-row='bottom'] {
  display: block !important;
  background: white;
}

body.page-id-146 #footer [data-row='middle'] {
  display: none !important;
}

.custom-image-animation {
  clip-path: circle(0% at 50% 50%);
  transition: all 1500ms ease-out;
  overflow: hidden;
}

.custom-image-animation img {
  transform: scale(1.5);
  transition: all 1000ms ease-out;
}

.custom-image-animation.custom-start {
  clip-path: circle(100% at 50% 50%);
}

.custom-image-animation.custom-start img {
  transform: scale(1);
}

#popmake-244 {
    border: none;
    padding: 0;
}

#popmake-244 .wpb_text_column {
    padding-left: 35px;
    padding-right: 35px;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]) {
    padding-right: 0;
}

body:not(.home) #pum-244 {
    display: none !important;
}

@media screen and (min-width: 768px) {
  .home-welcome-row .welcome-image img {
    height: var(--height);
  }

  .home-services-row .vc_row.vc_inner {
    padding: 10px 20px;
  }

  .home-services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-services-row::before,
  .home-services-row::after {
    display: none !important;
  }

  .home-services-row > div {
    width: auto !important;
  }

  .home-services-row > div > div,
  .home-services-row > div > div > div {
    height: 100%;
  }

  .home-services-row > div > div > div {
    display: flex;
    flex-direction: column;
  }

  .home-services-row .vc_row.vc_inner {
    flex: 1;
  }

  .about-intro-row .intro-image img {
    height: var(--height);
  }

  .service-intro-row .intro-image img {
    height: var(--height);
  }

  .service-intro-row > div:last-child {
    padding-top: var(--gap);
    padding-bottom: var(--gap);
  }

  ul.wpb_image_grid_ul {
    gap: 20px;
  }

  .service-gallery-row ul.wpb_image_grid_ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-gallery-row ul.wpb_image_grid_ul > li:nth-child(4n-3),
  .service-gallery-row ul.wpb_image_grid_ul > li:nth-child(4n-1) {
    grid-row: span 2;
  }

  .service-gallery-row ul.wpb_image_grid_ul > li:nth-child(4n-2) img,
  .service-gallery-row ul.wpb_image_grid_ul > li:nth-child(4n) img {
    aspect-ratio: 133 / 90;
  }

  .service-why-row > div:first-child > div {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
    padding-right: max(60px, 4vw) !important;
  }

  .service-why-row > div:last-child > div {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
    padding-left: max(60px, 4vw) !important;
  }

  .design-gallery-row ul.wpb_image_grid_ul {
    grid-template-columns: repeat(30, 1fr);
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-13),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-12),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-11),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-10),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-9),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-8) {
    grid-column: span 10;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-13),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-11),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-10) {
    grid-row: span 4;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-12) img,
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-9) img,
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-8) img {
    aspect-ratio: 399 / 290;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-7),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-6) {
    grid-column: span 12;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-5) {
    grid-column: span 6;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-7) img {
    aspect-ratio: 60 / 47;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-4),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-2) {
    grid-column: span 8;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-3) {
    grid-column: span 14;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-4) img,
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-2) img {
    aspect-ratio: 459 / 614;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-1),
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n) {
    grid-column: span 15;
  }

  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n-1) img,
  .design-gallery-row ul.wpb_image_grid_ul > li:nth-child(14n) img {
    aspect-ratio: 795 / 581;
  }

  #contact_form > p {
    grid-template-columns: repeat(3, 1fr);
  }

  #contact_form [data-name='contact_email'] ~ * {
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 1000px) {
  #footer [data-row='middle'] > div {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1200px) {
  .home-welcome-row .ul-gap ul {
    column-count: 2;
  }
}

@media screen and (min-width: 1600px) {
  .about-intro-row.left-height > div:first-child,
  .about-intro-row.right-height > div:last-child {
    padding-top: var(--gap);
    padding-bottom: var(--gap);
  }

  #footer [data-row='middle'] > div {
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 999px) {
  #footer #text-2 {
    display: none !important;
  }

  #footer [data-row='bottom'] {
    display: block !important;
  }

  #footer,
  #footer .widget-title {
    text-align: center;
  }

  #footer .custom-table table {
    margin-left: auto;
    margin-right: auto;
  }

  #footer .widget_media_image img {
    width: 100px;
  }
}

@media screen and (max-width: 991px) {
  .contact-company-row .company-icon img {
    height: 30px;
  }

  .contact-company-row .company-icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .home-welcome-row > div:first-child > div {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .home-services-row {
    display: grid;
    gap: 35px;
  }

  .home-services-row::before,
  .home-services-row::after {
    display: none !important;
  }

  .service-why-row > div > div {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  #popmake-244 .wpb_text_column {
    padding-left: 15px;
    padding-right: 15px;
}
}

/*header company name*/
#header [data-id*=logo] .site-title {
    line-height: 1;
}
#header [data-id*=logo] .site-title small {
    font-weight: 400;
    font-size: 12px;
}

