:root {
  --primary-color: black;
  --secondary-color: white;
  --text-color: black;
  --gap: 100px;
  --mobile-gap: 70px;
  --theme-line-height: 1.3;
  --h1: 45px;
  --h2: 40px;
  --h3: 30px;
  --h4: 25px;
  --h5: 20px;
  --h6: 18px;
  --mobile-h1: 35px;
  --mobile-h2: 30px;
  --mobile-h3: 27px;
  --mobile-h4: 23px;
  --mobile-h5: 20px;
  --mobile-h4: 18px;
  --p: 16px;
  --max-height: min(60vh, 450px);
  --theme-font-family: "poppins" !important;
}

* {
  margin: 0;
  box-sizing: border-box;
}

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

  #main > .ct-container,
  body.single #main > [class*="ct-container"],
  body.archive #main > [class*="ct-container"] {
    width: calc(100% - (var(--gap) * 2));
  }
}

body {
  line-height: 1.3 !important;
  font-family: "poppins" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3 !important;
  text-align: left;
  margin-top: 0 !important;
  font-family: "poppins" !important;
  font-weight: 600 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

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

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

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

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

.text-26 {
  color: #262626 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.company-registration,
.copyright {
  font-size: 14px !important;
}

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

.wpb_text_column ul li,
.wpb_text_column ol li {
  margin-bottom: 5px;
}

.mobile_view {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

.background-fixed {
  background-attachment: fixed !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-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-align-center {
  display: flex;
  align-items: center;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

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

@media screen and (min-width: 768px) {
    .services-row .wpb_text_column{
    width: 60%;
  }
  
  .director-row .vc_inner.vc_row > div > div{
      padding:0 !important;
  }
}

@media screen and (max-width: 768px) {
    .services-row .wpb_text_column{
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .mobile-pt-35 {
    padding-top: 35px !important;
  }

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

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

  .mobile-pb-70 {
    padding-bottom: 70px !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-text-justify,
  .mobile-text-justify-last {
    text-align: justify;
  }

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

  .mobile-mb-50 {
    margin-bottom: 50px !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-35 {
    margin-top: 35px !important;
  }

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

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

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

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

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

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

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

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

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

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

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }
}

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

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

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

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

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

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

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

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

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

  #contact_form textarea {
    height: 100px;
  }

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

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

  #footer ul.widget-menu > li:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
  }
 
}

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

@supports not (-webkit-touch-callout: none) {
  .parallax,
  .full-bg-row > div > div {
    background-attachment: fixed !important;
  }
}

/***Animation Delay***/
.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

.delay4 {
  animation-delay: 0.8s;
}

.delay5 {
  animation-delay: 1s;
}

.delay6 {
  animation-delay: 1.8s;
}

.max-height > div > div,
.max-height > div > div > .wpb_single_image,
.max-height > div > div > .wpb_single_image > figure,
.max-height > div > div > .wpb_single_image > figure > div,
.max-height > div > div > .wpb_single_image > figure > div > img {
  height: 100%;
}

/***Placeholder customization***/

::-webkit-input-placeholder {
  color: #747474 !important;
}

::placeholder {
  color: #747474 !important;
  opacity: 1 !important;
  font-weight: 400;
}

.company-registration small {
  font-size: 14px;
  /* font-family:''; */
}

.break {
  display: inline-block;
}

.custom-button {
  margin-bottom: 0 !important;
}

.custom-button .vc_general.vc_btn3 {
  background-image: none !important;
  padding: 10px 30px;
  position: relative;
  border-radius: 50px;
  background-color: #fff !important;
  color: #000 !important;
  font-weight: 500;
  border: 1px solid;
  line-height: 1 !important;
  z-index: 1;
  border: 1px solid #000;
}

.custom-button.blue .vc_general.vc_btn3{
  background-color: #2986ad !important;
  color: #fff !important;
}

.career-position-row .custom-button.blue .vc_general.vc_btn3:hover {
  border-color: #2986ad !important;
}

.custom-button.transparent .vc_general.vc_btn3 {
  background-color: transparent !important;
  color: #2986ad !important;
}

.custom-button.button-effect .vc_general.vc_btn3:hover {
  color: #fff !important;
  border: 1px solid #000;
}

.custom-button.underline .vc_general.vc_btn3 {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent !important;
  padding-bottom: 5px;
}

.career-position-row .custom-button .vc_general.vc_btn3 {
  border-color: #2986ad;
}

.custom-button.underline .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  width: 45%;
  height: 2px;
  background-color: #2986ad;
  bottom: 0;
  left: 0;
  display: block !important;
  transition: 0.3s all;
}

.ct-header-cta .ct-button {
  border-radius: 50px;
  padding: 10px 25px;
  position: relative;
  z-index: 1;
  border: 1px solid #2986ad;
}

.ct-header-cta .ct-button:before,
#send button:before  {
  content: "";
  position: absolute;
  width: 50px;
  height: 0;
  bottom: 0 !important;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  left: 50% !important;
  transform: translateX(-50%);
  background-color: #fff;
  transition: 0.5s all;
  z-index: -1;
}

#send button{
  background-color: #2986AD;
}

#send input{
  background-color: transparent !important;
  z-index: 3;
  transition:0.5s all;
}

#send button:hover input{
  color:#2986AD;
}

#send button:before{
  z-index: 1;
}

.custom-button.underline .vc_general.vc_btn3:hover:before {
  width: 100%;
  color: #2986ad;
}

.custom-button.button-effect .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 0;
  bottom: 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2986ad;
  transition: 0.5s all;
  z-index: -1;
}

.custom-button.button-effect .vc_general.vc_btn3:hover:before,
.ct-header-cta .ct-button:hover:before,
#send button:hover:before {
  height: 100%;
  width: 100%;
  border-radius: 50px;
  transition: height 0.2s ease, width 0.2s ease 0.2s; /* Delay width expansion */
}

.career-cta-row .custom-button .vc_general.vc_btn3,
.cta-row .custom-button .vc_general.vc_btn3,
.job-desc-sec .custom-button .vc_general.vc_btn3 {
  background-color: #2986ad !important;
  color: #fff !important;
  border: 0;
}

.career-cta-row .custom-button .vc_general.vc_btn3:before,
.cta-row .custom-button .vc_general.vc_btn3:before,
.job-desc-sec .custom-button .vc_general.vc_btn3:before {
  background-color: #fff;
}

.career-cta-row .custom-button .vc_general.vc_btn3:hover,
.cta-row .custom-button .vc_general.vc_btn3:hover,
.job-desc-sec .custom-button .vc_general.vc_btn3:hover {
  color: #2986ad !important;
  border: 0;
}

.ct-header-cta .ct-button:hover {
  color: #2986ad !important;
  border: 1px solid #2986ad;
}

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

.background-layer {
  position: relative;
}

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

.all-title p {
  font-family: "poppins" !important;
  line-height: 1.3 !important;
  font-size: 30px;
  font-weight: 600;
}

.background-img {
  position: relative;
}

.background-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: block !important;
}

#header ul.mega-menu > li > ul.mega-sub-menu {
  text-align: center !important;
}

#header ul.mega-menu ul.mega-sub-menu ul.widget-menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
}

#header ul.mega-menu ul.mega-sub-menu ul.widget-menu > li {
  flex-basis: 33.33%;
  text-align: center;
}

#header ul.mega-menu ul.mega-sub-menu ul.widget-menu > li > a {
  color: #fff;
  font-weight: 500;
}

#mega-menu-wrap-menu_1 #mega-menu-menu_1 li > a:hover,
#mega-menu-wrap-menu_1 #mega-menu-menu_1 li.mega-current-menu-item > a{
    color:#2986AD !important;
    font-weight:500 !important;
}


#header ul.mega-menu ul.mega-sub-menu {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#header
  ul.mega-menu
  ul.mega-sub-menu
  .menu-services-container
  ul.widget-menu
  li {
  flex-basis: 25%;
}

#header [data-column="middle"] > [data-items] {
  display: unset;
}

#header [data-column="middle"] > [data-items] > div > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header [data-column="middle"] > [data-items] > div {
  height: 100%;
  margin:0 !important;
}

#header [data-column="middle"] > [data-items] > div > div > div p {
  margin-bottom: 0 !important;
}

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

.header-icons{
  display: flex;
}

.header-icons > div{
  display: flex; 
  column-gap: 15px;
  align-self: center;
}


.header-icons > div:first-child i{
  margin-right:10px; 
}

/***custom code***/

.go-down .wpb_single_image {
  min-height: 65px;
  max-height: 65px;
  margin-top: -65px;
  position: relative;
  z-index: 10;
}

.go-down .wpb_single_image a {
  position: relative;
}

.go-down .wpb_single_image a:before {
  content: "\f078";
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Free";
  color: #374b5c;
}

.home-about-row > div:first-child .wpb_single_image {
  overflow: hidden;
  border-radius: 5px;
}

.home-about-row .slider-img > div > div {
  position: relative;
  height:100%;
}

.home-about-row .slider-img > div > div:before {
  content: "";
  position: absolute;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  bottom: -15px;
  right: -15px;
  background-color: #2986ad;
  display: block !important;
  border-radius: 5px;
}

.home-about-row .slider-img > div > div::after {
  content: "";
  position: absolute;
  width: 205px;
  height: 80px;
  bottom: 25px;
  background-color: #2986ad;
  left: 0;
  display: block !important;
  border-bottom-left-radius: 5px;
}

.home-about-row .icon img {
  max-width: 45px !important;
  max-height: unset;
  padding: 10px;
}

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

.home-about-row .vc_inner.vc_row {
  gap: 35px;
}

.home-about-row .vc_inner.vc_row .wpb_single_image img {
  transition: 0.5s all;
  position: relative;
  z-index: 2;
}

.home-about-row .vc_inner.vc_row .wpb_single_image {
  position: relative;
}

.home-about-row .vc_inner.vc_row .wpb_single_image:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2986ad;
  transition: 0.5s all;
  z-index: 1;
}

.home-about-row .vc_inner.vc_row .wpb_single_image:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2986ad;
  opacity: 0.5;
  z-index: 0;
  transition: 0.5s all;
}

.home-about-row .vc_inner.vc_row > div:hover .wpb_single_image img {
  transform: scale(1.05);
  filter: brightness(0) saturate(100%) invert(41%) sepia(85%) saturate(407%)
    hue-rotate(152deg) brightness(93%) contrast(89%);
}

.home-about-row .vc_inner.vc_row > div:hover .wpb_single_image:before {
  width: 60px;
  height: 60px;
  background-color: #fff;
}

.home-about-row .vc_inner.vc_row > div:hover .wpb_single_image:after {
  width: 70px;
  height: 70px;
}

.home-about-row .vc_inner.vc_row > div:hover .icon img {
  padding: 5px;
}

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

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

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

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

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

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

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

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

.home-about-row > div:last-child .vc_inner.vc_row > div > div > div {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #848484;
}

.home-about-row > div:last-child .vc_inner.vc_row {
  padding-bottom: 35px;
}

.home-gallery-row h3 strong {
  font-weight: 600;
}

.home-about-row.background-img:before {
  background-image: url(./images/backgroud-layer-img-1.png);
}

.custom-button.arrow-right .vc_general.vc_btn3 {
  background-color: transparent !important;
  color: #fff !important;
  padding: 0;
  border: 0 !important;
  padding-right: 0 !important;
  font-weight: 600;
  text-transform: uppercase;
}

.custom-button.arrow-right .vc_general.vc_btn3 i {
  position: absolute;
  right: -15px !important;
}

.home-images-row {
  gap: 35px;
  padding: 0 50px;
}

.home-images-row > div > div > div {
  position: relative;
  transition: 300ms ease;
}

.home-images-row .vc_inner.vc_row {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 15px;
}

.home-images-row .custom-button {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(0, 50px);
  opacity: 0;
}

.home-images-row .custom-button.arrow-right .vc_general.vc_btn3 {
  color: #2986ad !important;
  text-transform: capitalize;
  padding-right: 30px !important;
  font-weight: 500 !important;
}

.home-images-row .custom-button.arrow-right .vc_general.vc_btn3 i {
  right: 0 !important;
}

.home-images-row .wpb_text_column {
  color: #374b5c;
  opacity: 0;
  transform: translateY(50px);
}

.home-images-row .wpb_text_column strong {
  font-weight: 600;
}

.home-images-row .wpb_single_image {
  position: relative;
}

.home-images-row .wpb_single_image:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
  top: 0;
}

.home-images-row > div > div > div:hover .wpb_single_image:before {
  width: 100%;
  transition: 0.3s all;
}

.home-images-row > div > div > div:hover .wpb_text_column {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

.home-images-row > div > div > div:hover .custom-button {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: 0.8s ease;
}

.home-feature-row.background-img:before {
  background-image: url(./images/backgroud-layer-img-2.png);
  bottom: 0;
  left: 0;
  right: unset;
  background-position: left;
}

.home-feature-row .custom-button .vc_general.vc_btn3{
  border-color: #2986AD;
  color:#2986AD !important;
}

.home-feature-row .custom-button .vc_general.vc_btn3:hover{
  border-color: #2986AD;
  color:#fff !important;
}

.home-map-row.background-layer::before {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 56%
  );
  opacity: 0.8;
}

.home-map-row.background-layer {
  background-position: top !important;
}

.home-map-row .vc_inner.vc_row > div:first-child .wpb_single_image img {
  max-width: 550px;
  width: auto;
}

.home-map-row .vc_inner.vc_row > div:first-child > div > div {
  position: relative;
  max-width: 550;
  margin: auto;
}

.home-map-row .vc_inner.vc_row > div:first-child .wpb_text_column {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.home-map-row .vc_inner.vc_row > div:first-child .wpb_text_column:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block !important;
  background-color: #005a80;
}

.home-map-row
  .vc_inner.vc_row
  > div:first-child
  .wpb_text_column
  > .wpb_wrapper {
  width: max-content;
  position: absolute;
  isolation: isolate;
  padding: 10px;
  background-color: #fff;
  color: #2986ad;
  font-weight: 600;
  border-radius: 100px;
  visibility: hidden;
  opacity: 0;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  height:auto;
}

.home-map-row
  .vc_inner.vc_row
  > div:first-child
  .wpb_text_column
  > .wpb_wrapper:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 14px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: block !important;
}

.home-map-row
  .vc_inner.vc_row
  > div:first-child
  .wpb_text_column:hover
  > .wpb_wrapper {
  opacity: 1;
  visibility: visible;
  transition: 0.7s all;
}

#vietnam {
  top: 52%;
  left: 63%;
}

#malaysia {
  top: 64%;
  left: 54%;
}

#melb {
  top: 93%;
  left: 77%;
}

#perth {
  top: 83%;
  left: 62%;
}

.home-contact-row.background-layer:before {
  background-color: rgba(40, 40, 40, 0.5);
}

.home-contact-row .form {
  margin-bottom: 15px;
}

.home-contact-row .form .custom-file-upload{
  background-color: #fff;
  opacity: 0.9;
  border:0;
}

.home-contact-row .form input,
.home-contact-row .form textarea {
  background-color: #fff;
  opacity: 0.9;
  border-radius: 5px;
  width: 100%;
}

.home-contact-row .form input {
  height: 60px !important;
}

.home-contact-row .form textarea {
  height: 140px !important;
}

.cta-row {
  background-image: url(./images/contact-row.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px;
}

.cta-row .custom-button {
  text-align: center;
}

.cta-row p {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cta-row.background-layer:before {
  background-color: rgba(40, 40, 40, 0.5);
}

.cta-row .cta-wrapper {
  position: relative;
}

.right-images {
  float: right;
  width: 40%;
}

.right-images > div > div {
  padding-left: 70px !important;
}

.right-images > div > div > div {
  position: relative;
}

.right-images .wpb_single_image:first-child {
  padding-left: 50px;
  padding-bottom: 50px;
  width: fit-content;
  margin-left: auto;
}

.right-images .wpb_single_image:first-child img {
  max-height: 400px;
  width: auto;
}

.right-images .wpb_single_image:last-child {
  position: absolute;
  bottom: 0;
  width: fit-content;
}

.right-images .wpb_single_image:last-child:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -15px;
  right: -15px;
  display: block;
  background-color: #fff;
}

.right-images .wpb_single_image figure {
  border-radius: 5px;
  overflow: hidden;
}

.right-images .wpb_single_image:last-child img {
  max-width: 280px;
  position: relative;
}

.about-who-row .wpb_text_column:not(:last-child) p {
  margin-bottom: 35px !important;
}

.about-story-row > div:last-child > div > div {
  padding: 100px 100px 100px 70px;
}

.about-story-row > div:first-child > div,
.about-story-row > div:first-child > div > div,
.about-story-row > div:first-child > div > div > div,
.about-story-row > div:first-child > div > div > div > figure,
.about-story-row > div:first-child > div > div > div > figure > div,
.about-story-row > div:first-child > div > div > div > figure > div > img {
  height: 100%;
}

.about-story-row.background-img:before {
  background-image: url(./images/backgroud-layer-img-1.png);
}

.about-mission-row {
  column-gap: 70px;
}

.esg-description.background-img::before {
  background-image: url(./images/background-layer-img-5.png);
  bottom:0;
  background-position:bottom;
}

.director-row .wpb_single_image img {
  object-fit: contain;
  max-height: 250px;
  position: relative;
  z-index: 2;
  transition: 0.5s all;
}

.popmake .wpb_raw_code i.fa-linkedin-in{
    color:#333;
}

.director-row .wpb_single_image {
  position: relative;
}

.director-row .wpb_single_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 50px);
  bottom: 0;
  left: 0;
  display: block !important;
  background-color: #f7f9fa;
  z-index: 0;
  border-radius: 5px;
}

.director-row .wpb_single_image:hover:before{
  display: none !important;
}

.director-row .wpb_single_image:after,
.vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body
  .wpb_single_image:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 80%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  background: rgb(41, 134, 173);
  background: linear-gradient(
    180deg,
    rgba(41, 134, 173, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 145px 145px 0 0;
  z-index: 1;
}

.director-inner-row .wpb_single_image figure,
.employee-row .wpb_single_image figure{
  position:relative;
  width: 100%;
  transition: 0.5s all;
  z-index: 2;
}

.director-inner-row .wpb_text_column p:not(:last-child){
    margin-bottom:10px !important;
}

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


@media only screen and (max-width: 1000px) {
    .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .employee-row.grid-column-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 767.98px) {
    .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .employee-row.grid-column-5 {
        grid-template-columns: 1fr 1fr;
        gap: 85px 35px !important;
    }
}



.director-inner-row .wpb_single_image figure:before{
  content: '';
  position: absolute;
  width: 100%;
  height:calc(100% + 50px);
  bottom: 0;
  left:0;
  z-index: 0;
  background-color: rgba(120, 120, 120, 0.3);
  display: block !important;
  border-radius: 5px;
  opacity: 0;
  transition:0.5s all;
}

.vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body .wpb_single_image:hover:before{
  display: none !important;
}

.employee-row .wpb_single_image figure:before{
  content: '';
  position: absolute;
  width: 100%;
  height:calc(100% + 50px);
  bottom: 0;
  left:0;
  z-index: 0;
  background-color: rgba(121, 121, 121, 0.3);
  display: block !important;
  border-radius: 5px;
  opacity: 0;
  transition:0.5s all;
}

.employee-row .wpb_single_image:hover figure:before{
  opacity: 1;
  box-shadow:0 4px 21.3px 0 #2986AD;
}

.employee-row .wpb_single_image:hover figure {
  transform:scale(1.05);
}

.director-inner-row .wpb_single_image:hover figure:before{
  opacity: 1;
  box-shadow:0 4px 40px 0 #2986AD;
}

.director-row .wpb_single_image:hover figure {
  transform:scale(1.05);
}

.employee-row .wpb_single_image img{
  transition: 0.5s all;
}

.employee-row .wpb_single_image > figure > div,
.director-inner-row .wpb_single_image > figure > div {
  position: relative;
}

.employee-row .wpb_single_image > figure > div:before,
.director-inner-row .wpb_single_image > figure > div:before{
  content:'Read More';
  position: absolute;
  width: max-content;
  height:20px;
  display: flex;
  justify-content: center;
  align-items: center;
  top:calc(50% - 20px);
  left:50%;
  transform:translate(-50%,-50%);
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  color:#fff;
  z-index: 3;
  transition:0.5s all;
}

.employee-row .wpb_single_image:hover > figure > div:before,
.director-inner-row .wpb_single_image:hover > figure > div:before{
  opacity: 1;
}

.director-row .wpb_single_image:hover img{
  z-index: -1;
}

.card-box .wpb_single_image {
  border-radius: 5px;
  overflow: hidden;
}

.card-box.team .wpb_single_image{
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  margin:5px;
}

.pum-container.popmake .pum-content.popmake-content {
  overflow-x: hidden !important;
  overflow-y: auto;
}

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

.vc_tta-container .vc_tta-tabs-container .vc_tta-tab a {
  background-color: transparent !important;
  border: 0 !important;
  color:#333 !important;
  font-weight: 400;
}

.vc_tta-container .vc_tta-tabs-container .vc_tta-tab.vc_active a{
  font-weight: 600;
}

.vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body {
  padding-top: 120px !important;
  padding-bottom: 0 !important;
}

.vc_tta-container .vc_tta-panels-container .vc_tta-panels {
  background-color: transparent !important;
  border: 0 !important;
}

.vc_tta-container .vc_tta-tabs-container ul {
  border-bottom: 1px solid #d2d2d2;
}

.vc_tta-container .vc_tta-tabs-container ul li.vc_active {
  position: relative;
}

.vc_tta-container .vc_tta-tabs-container ul li.vc_active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2986ad;
  bottom: 0;
  left: 0;
  transition: 0.3s all;
  display: block !important;
  z-index: 1;
}

.vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow:visible;
}

.vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body
  .wpb_single_image {
  position: relative;
  border-radius: 5px;

}

.vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body
  .wpb_single_image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 50px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block !important;
  background-color: #f7f9fa;
  border-radius: 5px;
}

.vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body
  .wpb_single_image
  img {
  position: relative;
  max-height: 180px;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

.vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body
  .vc_inner.vc_row
  > div
  > div {
  padding: 0 !important;
}

.career-culture-row .wpb_single_image {
  border-radius: 5px;
  overflow: hidden;
}

.career-value-row .wpb_text_column h2 {
  color: #2986ad;
  font-weight: 700 !important;
  text-align: center;
}

.career-value-row .wpb_text_column small {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.career-value-sec.background-img:before {
  background-image: url(./images/backgroud-layer-img-2.png);
  background-position: left;
}

.career-prompt-row .wpb_single_image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto auto 35px auto !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.career-prompt-row .slick-track .vc_inner.vc_row{
    display:flex;
    height:auto;
}

.career-prompt-row .slick-track .vc_inner.vc_row > div,
.career-prompt-row .slick-track .vc_inner.vc_row > div > div{
    height:100%;
}

.career-prompt-row > div > div > div .slick-track {
  display: flex;
  gap: 70px;
  justify-content: center;
}

.career-prompt-row .vc_inner.vc_row > div > div > div {
  position: relative;
  padding: 35px;
  min-height: 750px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.career-prompt-row .vc_inner.vc_row .client-name h5{
    font-size:16px;
    text-align:right !important;
}

.home.career-prompt-row .vc_inner.vc_row > div > div > div {
    min-height: unset;
}

.career-prompt-row .vc_inner.vc_row > div > div > div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: block !important;
  background-color: #f7f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.career-prompt-row .slick-arrow {
  border: 0;
  
}

.career-prompt-row .slick-prev {
  bottom: unset;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.career-prompt-row .slick-prev:before {
  content: "\f053";
  color: #333;
}

.career-prompt-row .slick-next:before {
  content: "\f054";
  color: #333;
}

.career-prompt-row .slick-next {
  bottom: unset;
  top: 50%;
  left: unset;
  right: -25px;
  transform: translateY(-50%);
}

.career-prompt-row .slick-list {
  overflow: clip !important;
  overflow-clip-margin: 10px;
}

.career-position-row .vc_inner.vc_row > div:last-child > div > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career-position-sec.background-img:before {
  background-image: url(./images/background-layer-img-3.png);
  height: 50%;
  bottom: 100px;
}

.career-cta-row.background-layer:before {
  background-color: rgba(40, 40, 40, 0.5);
}

.career-cta-row .wpb_text_column{
  font-weight: 500;
}

.job-desc-sec.background-img:before {
  background-image: url(./images/background-layer-img-4.png);
  background-position: bottom;
}

.job-desc-sec h4 {
  font-size: 23px;
}

.job-desc-sec h6 {
  font-weight: 500 !important;
}

.service-sec > .vc_row .wpb_single_image:before {
  background-color: rgba(0, 0, 0, 0.3);
}

.service-sec > .vc_row .wpb_single_image:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s all;
}

.service-sec > .vc_row:hover .wpb_single_image::after {
  width: 100%;
}

.service-sec > .vc_row .wpb_single_image {
  border-radius: 5px;
  overflow: hidden;
}

.service-sec {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 15px;
}

.service-sec > .vc_row > div > div > div {
  position: relative;
}

.service-sec > .vc_row .vc_inner.vc_row {
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  min-width: 180px;
  transition: 0.5s all;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  margin: 0 !important;
}

.service-sec > .vc_row .vc_inner.vc_row h4,
.service-sec > .vc_row .vc_inner.vc_row .custom-button {
  text-align: center !important;
  width: 100%;
}

.service-sec > .vc_row:hover .vc_inner.vc_row {
  left: 50%;
  opacity: 1;
  pointer-events: all;
}

.service-sec > .vc_row:first-child .wpb_single_image img {
  min-height: 415px;
  max-height: 415px;
}

.service-sec > .vc_row:not(:first-child) .wpb_single_image img {
  min-height: 200px;
  max-height: 200px;
}

.service-sec > .vc_row .custom-button .vc_general.vc_btn3 {
  background: transparent !important;
  color: #fff !important;
  padding: 0;
  border: 0;
  font-weight: 400;
}

.service-sec > .vc_row .custom-button .vc_general.vc_btn3 i {
  right: -20px;
}

.service-info-sec .wpb_single_image {
  border-radius: 5px;
  overflow: hidden;
}



.services-row-content.left-1.background-img:before {
  background-image: url(./images/background-layer-img-5.png);
  background-position: bottom left;
  background-size: cover;
}

.services-row-content.left-2.background-img:before {
  background-image: url(./images/background-layer-img-5.png);
  background-position: bottom right;
  background-size: cover;
}

.services-row-content {
  overflow: visible !important;
}

.post-sec .wpb_single_image {
  border-radius: 5px;
  overflow: hidden;
}

.blog-archive-row .ct-posts-shortcode .entries {
  grid-template-columns: repeat(12, 1fr);
}

.blog-archive-row .ct-posts-shortcode .entries > .entry-card {
  flex-direction: unset;
}

.ct-posts-shortcode .entries > .entry-card .ct-media-container {
  border-radius: 5px !important;
}

.blog-archive-row .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list {
  display: flex;
  justify-content: space-between;
}

.project-client-row .wpb_single_image img {
  object-fit: contain;
  max-width: 150px;
}

.blog-archive-row.insights
  .vc_tta-container
  .vc_tta-tabs-container
  .vc_tta-tabs-list {
  justify-content: center;
  gap:100px;
}

.blog-archive-row.insights .entries .ct-media-container:before{
  display: none;
}

.insights-sec.background-img:before {
  background-image: url(./images/background-layer-img-4.png);
}

.ct-posts-shortcode .entries .entry-card {
  position: relative;
}

.ct-posts-shortcode .entries .action-card {
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 0 15px;
  opacity: 0;
  transition: 0.5s all;
  pointer-events: none;
}

.ct-posts-shortcode .entries .entry-card:hover .action-card {
  left: 50%;
  opacity: 1;
  pointer-events: all;
}

.small-img-col.height100 > div > .wpb_wrapper > .wpb_single_image,
.small-img-col.height100 > div > .wpb_wrapper > .wpb_single_image > figure,
.small-img-col.height100 > div > .wpb_wrapper > .wpb_single_image > figure > div,
.small-img-col.height100 > div > .wpb_wrapper > .wpb_single_image > figure > div > img{
    height:100%;
}

.ct-posts-shortcode .entries .action-card .entry-title {
  text-align: center;
  color: #fff;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.ct-posts-shortcode .entries .action-card .entry-button {
  padding: 0;
  background-color: transparent !important;
  color: #fff;
  min-height: unset !important;
  position: relative;
  font-weight: 400;
}

.ct-posts-shortcode .entries .action-card .entry-button:before {
  content: "\f178";
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  top: 50% !important;
  transform: translateY(-50%);
  right: -30px !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 16px;
  z-index: 99;
}

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

.blog-archive-row .entries .ct-media-container {
  position: relative;
}

.blog-archive-row
  .vc_tta-container
  .vc_tta-panels-container
  .vc_tta-panel
  .vc_tta-panel-body {
  padding-top: 35px !important;
}

.blog-archive-row .entries .ct-media-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.blog-archive-row .entries .ct-media-container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s all;
}

.blog-archive-row .entries .entry-card:hover .ct-media-container:after {
  width: 100%;
}

.contact-tab .vc_tta-container .vc_inner.vc_row {
  margin: 0 !important;
}

.contact-tab .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body{
    padding-top:70px !important;
}

.contact-tab .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}

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

#send button {
  position: relative;
  border-radius: 25px;
}

#send .wpcf7-spinner {
  position: absolute;
  top: 8px;
}

.wpcf7-response-output {
  color: #fff !important;
}

#send {
  display: flex;
  justify-content: center;
}

#send input {
  border-radius: 0;
}

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

#popmake-724 .pum-content.popmake-content{
  overflow-y:hidden;
}

#popmake-724 .pum-content.popmake-content .form #upload .custom-file-upload{
  background-color: #fff;
  border-color:#000;
}

#popmake-724 .pum-content.popmake-content .form input{
  height:60px !important;
  border-color:#000 !important;
}

#popmake-724 .pum-content.popmake-content .form textarea{
  height:120px !important;
  border-color:#000 !important;
}

.custom-file-upload {
  border: 1px solid #000;
  padding: 6px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size:16px !important;
  color: #747474;
  font-family: "poppins";
  font-weight:400 !important;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  height: 60px;
  display: flex !important;
  align-items: center;
  background-color: rgba(41, 134, 173, 0.1);
}

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

#file {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 5px !important;
}

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

.job.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.job.form > div input,
.job.form textarea {
  background-color: rgba(41, 134, 173, 0.1) !important;
  border: 1px solid #000;
  border-radius: 5px !important;
  height:60px !important;
}

.job.form textarea{
  height:140px !important;
}

.job.form input::placeholder {
  color: #5b5b5b !important;
  opacity: 1;
  font-weight: 300;
}

/***footer***/

#footer [data-column="copyright"] p {
  font-family: "montserrat";
  font-weight: 500;
}

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

#footer [data-row*="middle"] .ct-container > div:first-child > div:nth-child(3) {
  margin-bottom: 35px !important;
}

#footer [data-row*="middle"] .ct-container > div:first-child > div:nth-child(3) img{
  max-height: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7491%) hue-rotate(270deg) brightness(109%) contrast(102%);
}

#footer [data-row*="middle"] .ct-container > div:first-child > div:nth-child(3) > div > div{
  display: flex;
  gap:15px;
}

#footer .widget-title {
  font-weight: 600;
  color: #2986AD;
  font-size: 20px;
}

#footer .custom-button .vc_general.vc_btn3 {
  background-color: #32a7d9 !important;
  color: #fff !important;
  border-color: #32a7d9;
  font-weight: 500;
}

#footer .custom-button.button-effect .vc_general.vc_btn3:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 0;
  bottom: 0;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: 0.5s all;
  z-index: -1;
}

#footer .custom-button.button-effect .vc_general.vc_btn3:hover:before {
  height: 100%;
  width: 100%;
  border-radius: 50px;
  transition: height 0.2s ease, width 0.2s ease 0.2s; /* Delay width expansion */
}

#footer .custom-button.button-effect .vc_general.vc_btn3:hover {
  color: #2986ad !important;
}

#footer .custom-table table td {
  padding: 5px;
  padding-bottom: 10px;
  font-weight: 500;
}

#footer ul.widget-menu li > a {
  font-weight: 500;
}

#footer ul.widget-menu li:not(:last-child) {
  margin-bottom: 15px;
}


@media only screen and (min-width: 1000px) {
  .service-sec > .vc_row:nth-child(1) {
    grid-area: 1/1/3/7;
  }

  .service-sec > .vc_row:nth-child(2) {
    grid-area: 1/7/2/13;
  }

  .service-sec > .vc_row:nth-child(3) {
    grid-area: 2/7/3/10;
  }

  .service-sec > .vc_row:nth-child(4) {
    grid-area: 2/10/3/13;
  }

  .service-sec > .vc_row:nth-child(5) {
    grid-area: 3/1/4/5;
  }

  .service-sec > .vc_row:nth-child(6) {
    grid-area: 3/5/4/9;
  }

  .service-sec > .vc_row:nth-child(7) {
    grid-area: 3/9/4/13;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(1) {
    grid-area: 1/1/5/7 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(2) {
    grid-area: 1/7/3/13 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(3) {
    grid-area: 3/7/5/10 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(4) {
    grid-area: 3/10/5/13 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(5) {
    grid-area: 5/1/7/5 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(6) {
    grid-area: 5/5/7/9 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(7) {
    grid-area: 5/9/7/13 !important;
  }

  .blog-archive-row.insights
    .ct-posts-shortcode
    .entries
    > .entry-card:nth-child(1) {
    grid-area: 1/1/3/7 !important;
  }

  .blog-archive-row.insights
    .ct-posts-shortcode
    .entries
    > .entry-card:nth-child(2) {
    grid-area: 1/7/3/13 !important;
  }

  .blog-archive-row.insights
    .ct-posts-shortcode
    .entries
    > .entry-card:nth-child(3) {
    grid-area: 3/1/7/9 !important;
  }

  .blog-archive-row.insights
    .ct-posts-shortcode
    .entries
    > .entry-card:nth-child(4) {
    grid-area: 3/9/5/13 !important;
  }

  .blog-archive-row.insights
    .ct-posts-shortcode
    .entries
    > .entry-card:nth-child(5) {
    grid-area: 5/9/7/13 !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(even) {
    grid-column: span 4;
  }

  .blog-archive-row .ct-posts-shortcode .entries > .entry-card:nth-child(odd) {
    grid-column: span 4;
  }
}

@media only screen and (min-width: 768px) {
    
    #footer [data-row*="middle"] ul.widget-menu {
        display:grid;
        grid-template-columns:1fr 1fr;
    }
    
    #footer [data-row*="middle"] ul.widget-menu li:not(:last-child){
        grid-column:1/2;
    }
    
    #footer [data-row*="middle"] ul.widget-menu li:last-child{
        grid-column:2/3;
        grid-row:1/2;
    }
    
    
    
	#mega-menu-wrap-menu_1 #mega-menu-menu_1 li.mega-menu-megamenu > ul.mega-sub-menu{
		overflow-y:unset !important;
	}
	
  .home-about-row > div:first-child > div {
    padding-right: 50px !important;
  }

  .home-about-row > div:last-child > div {
    padding-left: 50px !important;
  }
  
  .home-about-row .slider-img > div > div,
  .home-about-row .slider-img > div > div > .slick-list,
  .home-about-row .slider-img > div > div > .slick-list > .slick-track,
  .home-about-row .slider-img > div > div > .slick-list > .slick-track > .wpb_single_image,
  .home-about-row .slider-img > div > div > .slick-list > .slick-track > .wpb_single_image > figure,
  .home-about-row .slider-img > div > div > .slick-list > .slick-track > .wpb_single_image > figure > div,
  .home-about-row .slider-img > div > div > .slick-list > .slick-track > .wpb_single_image > figure > div > img{
    height:100%;
  }

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

  .home-gallery-sec > .home-gallery-row {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    inset: 0;
  }

  .home-gallery-sec > .home-gallery-row > div,
  .home-gallery-sec > .home-gallery-row > div > div,
  .home-gallery-sec > .home-gallery-row > div > div > div {
    height: 100%;
    position: relative;
  }

  .home-gallery-sec > .home-gallery-row .wpb_single_image {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 0;
    transition: 500ms ease;
    transform-origin: left;
  }

  .home-gallery-sec > .home-gallery-row .wpb_single_image > figure,
  .home-gallery-sec
    > .home-gallery-row
    .wpb_single_image
    > figure
    > .vc_single_image-wrapper,
  .home-gallery-sec
    > .home-gallery-row
    .wpb_single_image
    > figure
    > .vc_single_image-wrapper
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-gallery-sec > .home-gallery-row .wpb_single_image:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  .home-gallery-sec > .home-gallery-content-row {
    position: relative;
    z-index: 9;
  }

  .home-gallery-sec > .home-gallery-content-row > div {
    padding: 20px 25px;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgb(51,51,51);
    background: linear-gradient(180deg, rgba(51,51,51,0) 80%, rgba(51,51,51,1) 100%);
  }
  .home-gallery-sec > .home-gallery-content-row > div > div {
    height: auto;
  }
  .home-gallery-sec > .home-gallery-content-row > div > div > .wpb_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .home-gallery-sec > .home-gallery-content-row > div > div > .wpb_wrapper * {
    position: relative;
    z-index: 9;
  }

  .home-gallery-sec > .home-gallery-content-row > div:before,
  .home-gallery-sec > .home-gallery-content-row > div:after {
    content: "";
    position: absolute;
    z-index: 0;
    transition: 600ms ease;
  }

  .home-gallery-sec > .home-gallery-content-row > div:before {
    top: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 50%
    );
    transition: height 600ms ease, top 600ms ease;
  }
  .home-gallery-sec > .home-gallery-content-row > div:after {
    background: #fff;
    height: 100%;
    border-right: 1px solid #fff;
    right: 0;
    bottom: 0;
  }

  .home-gallery-sec > .home-gallery-content-row > div .vc_row.vc_inner {
    transition: all 600ms ease;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div:not(.active)
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec
    > .home-gallery-content-row
    > div:not(.active)
    .vc_row.vc_inner
    .wpb_single_image
    img {
    opacity: 0;
    height: 0;
    margin-bottom: 0 !important;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div:not(.active)
    .vc_row.vc_inner
    h3 {
    font-size: 27px;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div.active
    .vc_inner.vc_row
    h2 {
    margin-bottom: 20px !important;
  }

  .home-gallery-sec > .home-gallery-content-row > div.active:before {
    height: 100%;
    left: auto;
    top: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.7);
  }

  .home-gallery-sec > .home-gallery-content-row .all-icon img {
    max-height: 35px;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div
    .vc_row.vc_inner
    .all-icon
    img {
    max-height: 50px;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec
    > .home-gallery-content-row
    > div
    .vc_row.vc_inner
    .wpb_single_image
    img {
    transform: translateY(50px);
    opacity: 0;
    transition: 600ms ease;
  }

  .home-gallery-sec
    > .home-gallery-content-row
    > div.active
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec
    > .home-gallery-content-row
    > div
    .vc_row.vc_inner
    .wpb_single_image
    img {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 300ms;
  }

  .home-gallery-content-row .vc_inner.vc_row > div > div > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-gallery-content-row .custom-button .vc_general.vc_btn3 {
    background-color: transparent !important;
    color: #fff !important;
    padding: 0;
    border: 0 !important;
    padding-right: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
  }

  .home-gallery-content-row .custom-button .vc_general.vc_btn3 i {
    position: absolute;
    right: -15px !important;
  }

  .home-gallery-sec > .home-gallery-content-row > div.active {
    align-items: center;
  }

  .home-gallery-sec-2 {
    position: relative;
  }

  .home-gallery-sec-2 > .home-gallery-row-2 {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    inset: 0;
  }

  .home-gallery-sec-2 > .home-gallery-row-2 > div,
  .home-gallery-sec-2 > .home-gallery-row-2 > div > div,
  .home-gallery-sec-2 > .home-gallery-row-2 > div > div > div {
    height: 100%;
    position: relative;
  }

  .home-gallery-sec-2 > .home-gallery-row-2 .wpb_single_image {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    opacity: 0;
    transition: 500ms ease;
    transform-origin: left;
  }

  .home-gallery-sec-2 > .home-gallery-row-2 .wpb_single_image > figure,
  .home-gallery-sec-2
    > .home-gallery-row-2
    .wpb_single_image
    > figure
    > .vc_single_image-wrapper,
  .home-gallery-sec-2
    > .home-gallery-row-2
    .wpb_single_image
    > figure
    > .vc_single_image-wrapper
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-gallery-sec-2 > .home-gallery-row-2 .wpb_single_image:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  .home-gallery-sec-2 > .home-gallery-content-row-2 {
    position: relative;
    z-index: 9;
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 > div {
    padding: 20px 25px;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(180deg, rgba(51,51,51,0) 80%, rgba(51,51,51,1) 100%);
  }
  .home-gallery-sec-2 > .home-gallery-content-row-2 > div > div {
    height: auto;
  }
  .home-gallery-sec-2 > .home-gallery-content-row-2 > div > div > .wpb_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div
    > div
    > .wpb_wrapper
    * {
    position: relative;
    z-index: 9;
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 > div:before,
  .home-gallery-sec-2 > .home-gallery-content-row-2 > div:after {
    content: "";
    position: absolute;
    z-index: 0;
    transition: 600ms ease;
  }
  .home-gallery-sec-2 > .home-gallery-content-row-2 > div:before {
    top: 100%;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 50%
    );
    transition: height 600ms ease, top 600ms ease;
  }
  .home-gallery-sec-2 > .home-gallery-content-row-2 > div:after {
    background: #fff;
    height: 100%;
    border-right: 1px solid #fff;
    right: 0;
    bottom: 0;
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 > div .vc_row.vc_inner {
    transition: all 600ms ease;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div:not(.active)
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div:not(.active)
    .vc_row.vc_inner
    .wpb_single_image
    img {
    opacity: 0;
    height: 0;
    margin-bottom: 0 !important;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div:not(.active)
    .vc_row.vc_inner
    h3 {
    font-size: 27px;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div.active
    .vc_inner.vc_row
    h2 {
    margin-bottom: 20px !important;
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 > div.active:before {
    height: 100%;
    left: auto;
    top: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.7);
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 .all-icon img {
    max-height: 35px;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div
    .vc_row.vc_inner
    .all-icon
    img {
    max-height: 50px;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div
    .vc_row.vc_inner
    .wpb_single_image
    img {
    transform: translateY(50px);
    opacity: 0;
    transition: 600ms ease;
  }

  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div.active
    .vc_row.vc_inner
    .custom-button,
  .home-gallery-sec-2
    > .home-gallery-content-row-2
    > div
    .vc_row.vc_inner
    .wpb_single_image
    img {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 300ms;
  }

  .home-gallery-content-row-2 .vc_inner.vc_row > div > div > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-gallery-sec-2 > .home-gallery-content-row-2 > div.active {
    align-items: center;
  }

  .home-map-row .vc_inner.vc_row > div:first-child > div {
    padding-right: 35px !important;
  }

  .home-map-row .vc_inner.vc_row > div:last-child > div {
    padding-left: 35px !important;
  }

  .home-contact-row .form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  .esg-intro-row > div:first-child > div {
    padding-right: 35px !important;
  }

  .esg-intro-row > div:last-child > div {
    padding-left: 35px !important;
  }

  .director-row > div > div > div > .wpb_text_column {
    width: 75%;
    margin: auto;
  }

  .director-row .vc_inner.vc_row {
   
   row-gap:85px;
  }

  .career-value-row .wpb_text_column h3 {
    width: 55%;
    margin: auto;
  }

  .career-value-row .vc_inner.vc_row,
  .career-value-row .wpb_text_column.strong-600 {
    width: 80%;
    margin-left: auto;
    margin-right:auto;
  }

  .career-position-sec .font-18 {
    width: 70%;
    margin: auto;
  }

  .career-cta-row .wpb_text_column {
    width: 60%;
    margin: auto;
  }

  .career-culture-row > div:first-child > div {
    padding-right: 35px !important;
  }

  .career-culture-row > div:last-child > div {
    padding-left: 35px !important;
  }

  .career-culture-row > div:first-child .wpb_text_column {
    line-height: 1.5 !important;
  }

  .service-info-sec .font-20 {
    width: 70%;
  }

  .service-info-sec {
    padding-left: 200px !important;
    padding-right: 200px !important;
  }

  .small-img-col > div > .wpb_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .services-row-content > div:first-child > div {
    padding-right: 35px !important;
  }

  .services-row-content > div:last-child > div {
    padding-left: 35px !important;
  }
  
  .services-row-content.Geotechnical > div:last-child > div {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .services-row .wpb_text_column{
    width: 60%;
  }

  .post-result-row > div:first-child > div {
    padding-right: 100px !important;
  }


  .contact-tab
    .vc_tta-container
    .vc_tta-panels-container
    .vc_tta-panel
    .vc_tta-panel-body
    .vc_inner.vc_row
    > div:first-child
    > div {
    padding-right: 35px !important;
  }

  .contact-tab
    .vc_tta-container
    .vc_tta-panels-container
    .vc_tta-panel
    .vc_tta-panel-body
    .vc_inner.vc_row
    > div:last-child
    > div {
    padding-left: 35px !important;
  }

  #first-name {
    grid-column: 1/3;
  }

  #last-name {
    grid-column: 3/5;
  }

  #email {
    grid-column: 5/7;
  }

  #phone {
    grid-area: 2 / 1 /3 /4;
  }

  #upload {
    grid-column: 4/7;
  }

  #msg {
    grid-column: 1 /7;
  }

  .job.form #first-name,
  .job.form #subject,
  .job.form #email{
    grid-column: 1/2;
  }

  .job.form #last-name,
  .job.form #phone,
  .job.form #apply{
    grid-column: 2/3;
  }

  .job.form #upload,
  .job.form #msg{
    grid-column: 1/3;
  }
}

@media only screen and (max-width: 999.98px) {
  .service-sec {
    grid-template-columns: 1fr 1fr;
  }
  
    #footer [data-row*="middle"] .ct-container > div:first-child img{
      max-width:190px !important;
  }

  .blog-archive-row .ct-posts-shortcode .entries {
    grid-template-columns: 1fr 1fr;
  }

  .service-sec > .vc_row:nth-child(1) {
    grid-area: 1/1/2/2;
  }

  .service-sec > .vc_row .wpb_single_image img {
    min-height:350px !important;
    max-height:350px !important;
  }
  
  .service-sec{
      grid-template-rows:unset;
  }
  
  #footer [data-row*="middle"] .ct-container > div:nth-child(1){
      order:-1;
  }
  
  #footer [data-row*="middle"] .ct-container > div:nth-child(2){
      order:3;
  }
  
  #footer [data-row*="middle"] .ct-container > div:first-child(3){
      order:2;
  }
}

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

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

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

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

  .home-about-row .slider-img > div > div:before {
    bottom: 0;
  }

  .home-about-row > div:last-child {
    padding-top: 35px;
  }
  
  .home-about-row .vc_inner.vc_row{
      gap:35px;
  }

  .home-about-row > div:last-child .vc_inner.vc_row {
    grid-template-columns: 1fr;
  }

  .home-gallery-row > div > div,
  .home-gallery-row-2 > div > div {
    padding: 0 15px !important;
  }

  .home-gallery-row > div > div > div > .wpb_single_image img,
  .home-gallery-row-2 > div > div > div > .wpb_single_image img {
    min-height: 200px;
  }

  .home-gallery-row .vc_inner.vc_row .wpb_single_image img,
  .home-gallery-row-2 .vc_inner.vc_row .wpb_single_image img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(27%) saturate(1199%)
      hue-rotate(152deg) brightness(93%) contrast(86%);
    max-height:45px;
  }
  

  .home-gallery-row .vc_inner.vc_row h3,
  .home-gallery-row-2 .vc_inner.vc_row h3 {
    font-size: 23px;
    color: #333 !important;
    margin-bottom:10px !important;
  }

  .home-gallery-row .vc_inner.vc_row .custom-button .vc_general.vc_btn3,
  .home-gallery-row-2 .vc_inner.vc_row .custom-button .vc_general.vc_btn3 {
    color: #333 !important;
  }

  .home-gallery-row .vc_inner.vc_row > div > div > div,
  .home-gallery-row-2 .vc_inner.vc_row > div > div > div {
    padding: 20px 0 50px 0;
  }

  .home-image-sec {
    padding-top: 20px !important;
  }

  .home-image-sec .wpb_text_column br {
    display: none;
  }

  .home-images-row {
    padding: 0 15px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .home-images-row .font-20 {
    font-size: 18px;
  }

  .home-images-row .wpb_single_image:before {
    width: 100%;
  }

  .home-images-row .wpb_text_column {
    opacity: 1;
    transform: translateY(0);
  }
  
  .home-images-row .wpb_single_image img{
      min-height:350px;
      max-height:350px;
      aspect-ratio:1/1;
  }

  .home-images-row .custom-button.arrow-right {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .home-feature-inner-row {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
    margin-left: -15px !important;
    margin-right: -15px !important;
  }

  .home-map-row .vc_inner.vc_row > div:first-child .wpb_single_image img {
    max-width: 100%;
  }

  .form > div {
    margin-bottom: 15px;
  }
	
	.director-row .vc_inner.vc_row{
		grid-template-columns:1fr;
		gap:85px;
	}

  .right-images {
    width: 100%;
  }

  .about-who-row > div > div > div {
    display: flex;
    flex-direction: column;
  }

  .about-who-row .vc_inner.vc_row {
    margin: 0 !important;
  }

  .about-who-row > div > div > div h3 {
    padding-top: 35px;
  }

  .right-images > div > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-who-row .wpb_text_column:not(:last-child) p {
    margin-bottom: 20px !important;
  }

  .about-who-row .wpb_text_column {
    margin-bottom: 0 !important;
  }

  .about-story-row > div > div {
    padding: 0 15px !important;
  }

  .about-story-row > div:last-child > div > div {
    padding: 35px 0 70px;
  }

  .about-mission-row {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .cta-row {
    padding: 70px 15px;
  }

  .cta-row p {
    width: 100%;
  }

  .esg-intro-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .esg-intro-row > div:last-child h3 br {
    display: none;
  }

/*   .director-inner-row > div:first-child {
    padding-bottom: 85px;
  } */
  
  .director-inner-row > div > div{
      padding:0px !important;
  }
  
  .director-inner-row.pt-100{
      padding-top:100px !important;
  }

  .pum-container {
    padding: 70px 15px !important;
  }

  .pum-container .wpb_single_image {
    margin-bottom: 20px !important;
  }

  .pum-container .wpb_text_column {
    text-align: justify;
  }

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

  .vc_tta-panels-container .vc_tta-panel-heading {
    display: none;
  }

  .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list {
    display: flex !important;
    overflow-x:auto !important;
  }

  .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list li a {
    padding-left: 0 !important;
  }

  .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body {
    padding-top: 85px !important;
    background-color: transparent !important;
    border: 0 !important;
  }

  .vc_tta-container
    .vc_tta-panels-container
    .vc_tta-panel
    .vc_tta-panel-body
    .grid-column-5 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .ct-posts-shortcode .entries > .entry-card .ct-media-container img {
    aspect-ratio: 1/1 !important;
  }

  .career-value-row .vc_inner.vc_row > div > div > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .career-value-row h3 {
    text-align: left !important;
  }

  .career-value-row > div > div > div > .wpb_text_column p {
    text-align: justify !important;
  }

  .career-prompt-row > div > div > div .slick-track {
    display: block !important;
  }

  .font-18 {
    margin-bottom: 0 !important;
  }

  .career-position-sec .vc_separator {
    margin-top: 35px !important;
  }

  .career-position-row .vc_inner.vc_row > div:last-child > div > div {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-sec > .vc_row .wpb_single_image::after {
    width: 100%;
  }

  .service-sec > .vc_row .vc_inner.vc_row {
    left: 50%;
    opacity: 1;
  }

  .service-sec {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .blog-archive-row .ct-posts-shortcode .entries {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ct-posts-shortcode .entries .action-card .entry-title {
    width: 100%;
    font-size: 20px;
  }

  .blog-archive-row .entries .ct-media-container:after {
    width: 100%;
  }

  .ct-posts-shortcode .entries .action-card {
    left: 50%;
    opacity: 1;
  }

  .contact-tab > div .vc_inner.vc_row > div:first-child {
    padding-bottom: 35px;
  }

  .post-sec .grid {
    grid-template-columns: 1fr;
  }

  .post-gallery > div > div {
    padding: 0 15px !important;
  }
  
  .blog-archive-row.insights .vc_tta-container .vc_tta-tabs-container .vc_tta-tabs-list{
      gap:0;
  }
  
  .contact-tab .vc_tta-container .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-body{
      padding-top:35px !important;
  }
  
  .job.form{
      grid-template-columns:1fr;
      gap:0;
  }
  
  .vc_tta-container .vc_tta-tabs-container .vc_tta-tab > a{
      width:max-content;
  }
  
  .career-prompt-row .slick-list{
      overflow:hidden !important;
  }
  
  .service-sec > .vc_row .vc_inner.vc_row h4{
      font-size:20px;
  }
  
  .about-story-row.background-img:before{
      display:none !important;
  }
  
  .vc_row.wpb_row.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    #vietnam {
      top: 49%;
    }
    
    #malaysia {
      left: 56%;
    }
    
    #melb {
      top: 88%;
    }
    
    #perth {
      top: 79%;
    }
  
}

@media only screen and (max-width:480px){
    #vietnam {
      top: 47%;
    }
    
    #malaysia {

      top:61%;
    }
    
    #melb {
      top: 85%;
    }
    
    #perth {
      top: 77%;
    }
}

.services-row .wpb_text_column{
    width: 60%;
   
  }
  
.services-row-text .wpb_text_column{
    width: 100%;
   }

.img-services-text img{
    max-width:280px !important;
    /*padding-top:20px !important;*/
}

@media only screen and (max-width:767.98px){
    .img-services-text img{
    /*max-width:338px !important;*/
    padding-top:35px !important;

}
}

/*.employee-row .wpb_column.vc_col-sm-1\/5.pum-trigger > .vc_column-inner,*/
/*.employee-row .wpb_column.vc_col-sm-1\/5.pum-trigger > .vc_column-inner > .wpb_wrapper,*/
/*.employee-row .wpb_column.vc_col-sm-1\/5.pum-trigger > .vc_column-inner > .wpb_wrapper > :first-child.wpb_single_image.wpb_content_element,*/
/*.employee-row .wpb_column.vc_col-sm-1\/5.pum-trigger > .vc_column-inner > .wpb_wrapper > :first-child.wpb_single_image.wpb_content_element > .vc_single_image-wrapper,*/
/*.employee-row .wpb_column.vc_col-sm-1\/5.pum-trigger > .vc_column-inner > .wpb_wrapper > :first-child.wpb_single_image.wpb_content_element > .vc_single_image-wrapper > img.vc_single_image-img {*/
/*    height:100% !important;*/
/*}*/


.employee-row img.vc_single_image-img{
    max-height:130px !important;
}

/*.employee-row .wpb_column.vc_col-sm-1\/5 > div > .wpb_wrapper {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/



