/******************************
INDEX:
    00 - General
    01 - Typography
    02 - Text Color & Background Color
    03 - Background Position & Size
    04 - Helper class
    05 - Social icons
    06 - Header
    07 - Bootstrap Overwrite 
    08 - Swiper 
    09 - Scroll To Top 
    10 - Search Box
******************************/

/*----------------------------------------*/
/* 00 - General 
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --pbmit-global-color: #f99d1c;
  --pbmit-secondary-color: #2b343b;
  --pbmit-light-color: #f2f0ee;
  --pbmit-white-color: #ffffff;
  --pbmit-blackish-color: #2b343b;
  --pbmit-link-color-normal: #2b343b;
  --pbmit-link-color-hover: #f99d1c;
  --pbmit-global-color-rgb: rgb(157, 202, 0);
  --pbmit-secondary-color-rgb: rgb(43, 52, 59);
  --pbmit-responsive-breakpoint: 1200px;
  --pbmit-body-typography-font-family: "Roboto", sans-serif;
  --pbmit-body-typography-variant: regular;
  --pbmit-body-typography-font-size: 16px;
  --pbmit-body-typography-line-height: 26px;
  --pbmit-body-typography-color: #666666;
  --pbmit-heading-typography-font-family: "Roboto", serif;
  --pbmit-heading-color: #6e361a;
  --pbmit-heading-font-variant: regular;
  --pbmit-btn-typography-font-family: "Roboto Condensed", sans-serif;
  --pbmit-btn-typography-variant: 500;
  --pbmit-btn-typography-font-size: 13px;
  --pbmit-btn-typography-line-height: 24px;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
}
p {
  margin: 0 0 25px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: 1px dotted;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
code,
kbd,
pre,
samp {
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
select {
  text-transform: none;
}
button {
  overflow: visible;
}
button,
input,
select,
textarea {
  max-width: 100%;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
  opacity: 0.5;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0.4375em;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #d1d1d1;
  margin: 0 0 1.75em;
  padding: 0.875em;
}
fieldset > :last-child {
  margin-bottom: 0;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
optgroup {
  font-weight: bold;
}
textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
.form-control:focus {
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.form-select {
  padding: 15px 15px;
  font-size: 15px;
  color: #848484;
  border: 1px solid #eeeeee;
  border-radius: 0;
  font-family: var(--pbmit-heading-typography-font-family);
  font-weight: 500;
}
.form-select:focus {
  border-color: #1bbde4;
  outline: 0;
  box-shadow: none;
}
/*----------------------------------------*/
/* 01 - Typography 
/*----------------------------------------*/
body {
  font-family: var(--pbmit-body-typography-font-family);
  font-weight: var(--pbmit-body-typography-variant);
  color: var(--pbmit-body-typography-color);
  font-size: var(--pbmit-body-typography-font-size);
  line-height: var(--pbmit-body-typography-line-height);
  color: #545454;
  text-transform: none;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pbmit-heading-typography-font-family);
  font-weight: var(--pbmit-heading-font-variant);
  color: var(--pbmit-heading-color);
}
h1 {
  font-size: 48px;
  line-height: 54px;
  letter-spacing: 0px;
}
h2 {
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0px;
}
h3 {
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0px;
}
h4 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
}
h5 {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
}
h6 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  color: var(--pbmit-link-color-normal);
  text-decoration: none;
}
a:focus {
  text-decoration: none !important;
}
a:hover {
  color: var(--pbmit-link-color-hover);
  text-decoration: none !important;
}
a.link-btn,
.link-btn a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
a.link-btn i,
.link-btn a i {
  padding-left: 10px;
}
.pbmit-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-family: var(--pbmit-btn-typography-font-family);
  font-size: var(--pbmit-btn-typography-font-size);
  font-weight: var(--pbmit-btn-typography-variant);
  line-height: var(--pbmit-btn-typography-line-height);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-style: normal;
  padding: 13px 25px;
  border: none;
  border-radius: 50px;
  transition: 0.5s ease;
  z-index: 1;
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-global-color);
}
.pbmit-btn .pbmit-button-content-wrapper {
  display: flex;
  justify-content: center;
  text-decoration: inherit;
}
.pbmit-btn .pbmit-align-icon-right {
  margin-left: 5px;
  order: 15;
}
.pbmit-btn svg line {
  stroke: var(--pbmit-white-color);
}
.pbmit-btn:hover {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-blackish {
  padding: 12px 30px;
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-blackish:hover {
  background-color: var(--pbmit-global-color);
}
.pbmit-btn.pbmit-btn-global {
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--pbmit-blackish-color);
  background-color: var(--pbmit-global-color);
}
.pbmit-btn.pbmit-btn-global svg line {
  stroke: var(--pbmit-blackish-color);
}
.pbmit-btn.pbmit-btn-global:hover {
  color: var(--pbmit-white-color);
  background-color: var(--pbmit-blackish-color);
}
.pbmit-btn.pbmit-btn-global:hover svg line {
  stroke: var(--pbmit-white-color);
}

/** Divider **/
.sep-line {
  height: 1px;
  border-top: 1px solid #ebebeb;
  display: block;
  position: relative;
  top: 1px;
  width: 100%;
}

/*----------------------------------------*/
/* 02 - Background Color 
/*----------------------------------------*/
body .pbmit-bg-color-global {
  background-color: var(--pbmit-global-color);
}
body .pbmit-bg-color-secondary {
  background-color: var(--pbmit-secondary-color);
}
body .pbmit-bg-color-light {
  background-color: var(--pbmit-light-color);
}
body .pbmit-bg-color-blackish {
  background-color: var(--pbmit-blackish-color);
}
body .pbmit-color-global {
  color: var(--pbmit-global-color);
}

/*----------------------------------------*/
/* 03 - Background Position & Size 
/*----------------------------------------*/
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-pos-l {
  background-position: left;
}
.bg-pos-r {
  background-position: right;
}
.bg-pos-rt {
  background-position: right top;
}
.bg-pos-lt {
  background-position: left top;
}
.bg-pos-rb {
  background-position: right bottom;
}
.bg-pos-lb {
  background-position: left bottom;
}

/*----------------------------------------*/
/* 04 - Helper Class 
/*----------------------------------------*/
.section-lgx {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-md {
  padding-top: 130px;
  padding-bottom: 100px;
}
.section-xl {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-lgt {
  padding-top: 120px;
}
.section-lgb {
  padding-bottom: 120px;
}

/*----------------------------------------*/
/* 05 - Social icons 
/*----------------------------------------*/
.pbmit-social-links {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.pbmit-social-li,
.pbmit-contact-info li {
  display: inline-block;
  vertical-align: top;
}
.pbmit-social-links .pbmit-social-li:not(:last-child),
.pbmit-contact-info li:not(:last-child) {
  padding: 0 20px 0 0;
}

/*----------------------------------------*/
/* 06 - Header 
/*----------------------------------------*/
.navbar-brand .navbar-brand-item {
  height: 60px;
  display: block;
  width: auto;
}
.site-header {
  z-index: 999;
  position: relative;
}
.site-header .site-branding img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  max-height: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.site-navigation ul.navigation > li > a {
  font-size: 16px;
  font-weight: 600;
  display: block;
  line-height: 24px;
  padding: 0px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.main-menu .navigation > li > ul a {
  display: block;
  position: relative;
  /*display: table-cell;*/
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: none;
  font-style: normal;
  color: #545454;
  font-family: var(--pbmit-heading-typography-font-family);
}
.main-menu .navigation > li > ul a:after {
  display: none;
}
.site-navigation ul.navigation a {
  font-family: "Roboto Condensed";
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 500;
  color: #545454;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu .navigation > li > ul > li > ul {
  left: 100%;
  top: 0;
}
.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 999;
}
.header-button .pbmit-btn {
  padding: 15px 24px;
}
.header-button .pbmit-btn i {
  font-size: 20px;
}
.site-header .search-btn {
  margin-right: 15px;
  font-size: 17px;
}
.site-header .social-icons li > a {
  height: 50px;
  line-height: 50px;
}
.ipad-view-search {
  display: none;
}
.pbmit-link li {
  margin: 0 10px;
}
.closepanel,
.pbmit-mobile-menu-bg,
.site-header .righticon {
  display: none;
}
/** sticky-header **/
.sticky-header {
  position: fixed !important;
  top: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  margin: 0;
  -webkit-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
  padding: 0;
}
.site-header-menu .logo-img.stickylogo,
.site-header-menu.sticky-header .logo-img {
  max-height: 55px;
}
.site-header-menu.sticky-header .logo-img.stickylogo {
  display: inline-block;
}
.sticky-header .site-navigation ul.navigation > li > a {
  height: 90px;
  line-height: 90px;
}
/* Pre Header */
.pre-header {
  height: 60px;
  line-height: 60px;
  background-color: var(--pbmit-light-color);
}
.list-unstyled i {
  font-size: 14px;
  color: #666;
}

/*----------------------------------------*/
/* 07 - Bootstrap Overwrite 
/*----------------------------------------*/
.g-lg-4,
.gy-lg-4,
.g-4,
.gy-4 {
  --bs-gutter-y: 2rem;
}
.g-lg-4,
.gx-lg-4,
.g-4,
.gx-4 {
  --bs-gutter-x: 2rem;
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.6);
  padding-left: calc(var(--bs-gutter-x) * 0.6);
}

/*----------------------------------------*/
/* 08 - Swiper 
/*----------------------------------------*/
.swiper-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
}
.swiper-pagination-bullet {
  border: 0;
  outline: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
  margin-right: 10px !important;
  background: rgb(42, 72, 64, 0.3);
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  left: 0px;
  text-align: center;
}
.swiper-slider[data-dots="true"] {
  padding-bottom: 0px;
}
.swiper-pagination-bullet-active {
  background-color: var(--pbmit-global-color);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "pbminfotech-base-icons";
  content: "\e891";
  font-size: 40px;
  color: var(--pbmit-white-color);
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  transform: rotate(180deg);
  position: absolute;
  left: 14px;
}
.swiper-slider.home-case-studies {
  overflow: visible;
}
.home-case-studies .swiper-buttons {
  position: absolute;
  top: -100px;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  padding: 0 15px;
  text-align: right;
}
.swiper-button-next,
.swiper-button-prev {
  text-align: center;
  position: static;
  z-index: 15;
  cursor: pointer;
  width: inherit;
  height: inherit;
  line-height: 50px;
  border-radius: 0;
  transition: all 500ms ease;
  background-color: transparent;
  color: var(--pbmit-white-color);
}
.swiper-button-next {
  margin-left: 20px;
}
.home-case-studies .swiper-button-prev {
  left: initial;
  right: 75px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: transparent;
}
.swiper-slider.marquee .swiper-slide {
  display: flex;
  width: auto !important;
}
.swiper-slider.marquee .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
/*----------------------------------------*/
/* 09 - Scroll To Top 
/*----------------------------------------*/
.pbmit-progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pbmit-progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pbmit-progress-wrap::before {
  position: absolute;
  content: "\e812";
  font-family: pbminfotech-base-icons;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pbmit-progress-wrap svg.pbmit-progress-circle path {
  stroke: var(--pbmit-global-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  fill: rgba(7, 19, 35, 0.1);
}
.pbmit-progress-wrap::after {
  position: absolute;
  content: "\e812";
  font-family: "pbminfotech-base-icons";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--pbmit-global-color);
  left: 2px;
  top: 2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pbmit-body-bg-dark .pbmit-progress-wrap svg.pbmit-progress-circle path {
  stroke: var(--pbmit-white-color);
}
.pbmit-body-bg-dark .pbmit-progress-wrap::after {
  color: var(--pbmit-white-color);
}

/*----------------------------------------*/
/*  10 - Search Box
/*----------------------------------------*/
.pbmit-search-overlay {
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}
.pbmit-search-overlay.st-show {
  opacity: 1;
  top: 0;
}
.pbmit-icon-close {
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.8;
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  cursor: pointer;
  border-color: var(--pbmit-white-color);
  color: var(--pbmit-white-color);
}
.pbmit-icon-close:hover {
  opacity: 1;
}
.pbmit-icon-close svg {
  fill: var(--pbmit-white-color);
}
.pbmit-icon-close svg rect {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pbmit-icon-close:hover svg rect {
  animation: pbmit-closer-line-draw 0.6s;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pbmit-closer-line-draw;
}
@keyframes pbmit-closer-line-draw {
  0%,
  100% {
    clip-path: inset(-1px 0 -1px 0);
    -webkit-clip-path: inset(-1px 0 -1px 0);
  }
  55% {
    clip-path: inset(-1px 0 -1px 100%);
    -webkit-clip-path: inset(-1px 0 -1px 100%);
  }
  56% {
    clip-path: inset(-1px 100% -1px 0);
    -webkit-clip-path: inset(-1px 100% -1px 0);
  }
}
.pbmit-icon-close:hover svg rect:nth-of-type(2) {
  animation-delay: 0.17s;
}
.pbmit-search-outer {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pbmit-search-overlay .pbmit-site-searchform {
  position: relative;
}
.pbmit-search-overlay .pbmit-site-searchform:before {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform: scale3d(0, 1, 1);
  -ms-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.pbmit-search-overlay .pbmit-site-searchform:after {
  font-family: "pbminfotech-base-icons";
  content: "\e80d";
  position: absolute;
  right: 10px;
  top: 15px;
  color: var(--pbmit-white-color);
  font-size: 25px;
  line-height: normal;
}
.pbmit-search-overlay.st-show .pbmit-site-searchform:before {
  -webkit-animation-name: fadeInMove;
  animation-name: fadeInMove;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: scale3d(0, 1, 1);
  }
  10% {
    opacity: 1;
    transform: scale3d(0.1, 1, 1);
  }
  100% {
    opacity: 0.14;
    transform: scale3d(1, 1, 1);
  }
}
.pbmit-search-overlay input[type="search"] {
  height: 65px;
  line-height: 26px;
  font-size: 16px;
  background-color: transparent;
  text-align: left;
  border: none;
  border-bottom: 1px solid #ffffff54;
  padding: 0 50px 0 20px;
  border-radius: 0;
  letter-spacing: 1px;
  color: var(--pbmit-white-color);
}
.pbmit-search-overlay input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.pbmit-search-overlay .pbmit-site-searchform button {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 0;
  right: 0;
  background-color: transparent;
  text-indent: -9999px;
  line-height: 58px;
  font-size: 16px;
  outline: none;
  padding: 0;
  border: none;
  z-index: 1;
  color: var(--pbmit-white-color);
}

.project-j {
  height: 350px;
  background-size: cover !important;
  background-position: right !important;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  position: relative;
}

.project-j .category-j {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 0.3s;
  font-family: "Roboto";
}

.project-j:hover .category-j {
}

.project-j .category-j .content {
  z-index: 1;
  position: relative;
  padding: 60px 30px;
  color: #fff;
  display: none;
}

.project-j:hover .category-j .content {
  display: block;
}

.project-j .category-j .content .cat-list a {
  color: #fff;
  font-size: 17px;
}

.project-j .category-j .content .cat-list a:hover {
  color: #f99d1c;
}

.project-j .category-j .content .cat-list li {
  width: 49%;
  padding-left: 22px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.project-j .category-j .content .cat-list li:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("../images/ico.png") no-repeat;
  top: 7px;
  left: 0px;
  position: absolute;
}

.project-j:hover h3 {
  color: #fff;
}

.project-j:hover .category-j:after {
  width: 100%;
}
.project-j .category-j:after {
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(110, 54, 26, 0.9) 0%,
    rgba(196, 115, 15, 0.9) 100%
  );
  top: 0px;
  left: 0;
  position: absolute;
  z-index: 0;
  transition: width 0.3s;
}

.project-j .category-j:before {
  content: "";
  width: 250px;
  height: 200px;
  background: url("../images/shape-logo.png") no-repeat;
  bottom: 0px;
  left: 0px;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
}

.project-j:after {
  content: "";
  width: 500px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(227, 228, 230, 1) 50%,
    transparent 100%
  );
  top: 0px;

  position: absolute;
  z-index: 0;
}

.project-j h3 {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.why_bg {
  position: relative;
  background: #fff6e9 url(../images/why.png) no-repeat;
  background-position: center 300px;
  background-attachment: fixed;
}

.why_bg .content-j {
  padding-top: 800px;
}
.why_bg .content-j .story {
}

.why_bg:before {
  content: "";
  width: 800px;
  height: 546px;
  background: url("../images/shape2.png") no-repeat;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
}

.pbmit-blog-style-3 .post-item {
  background: #f5f5f5;
  border-radius: 5px;
  overflow: hidden;
}
.pbmit-blog-style-3 .pbminfotech-box-content {
  padding: 0px 30px 10px 30px;
}

/* Style the tab */
.news-tab {
  overflow: hidden;
  float: right;
  margin-bottom: 20px;
}

/* Style the buttons inside the tab */
.news-tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 26px;
  transition: 0.3s;
  font-size: 18px;
  border-bottom: solid #ccc;
}

/* Change background color of buttons on hover */
.news-tab button:hover {
  color: #fa9516;
}

/* Create an active/current tablink class */
.news-tab button.active {
  border-color: #6f361a;
  color: #6f361a;
}

/* Style the tab content */
.tabcontent {
  display: none;
}
.footer-global {
  background: #fff6e9;
  position: relative;
}

.footer-global .gl-right {
  position: absolute;
  right: 50px;
  bottom: 0;
}
.footer-global .bg-gl {
  padding: 70px 0;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.footer-global .bg-gl:before {
  content: "";
  width: 500px;
  height: 413px;
  background: url("../images/Group.png") no-repeat;
  top: -50px;
  left: -110px;
  position: absolute;

  z-index: 1;
  opacity: 0.8;
}

.footer-global h3 {
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
}
.pbmit-info li {
  margin-bottom: 10px;
}

.pbmit-info li i {
  margin-right: 10px;
}

.menu-bottom {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: rgba(0, 0, 0, 0.13) 0px 0px 10px;
  border-top: solid 1px #f7f9fa;
}

.menu-bottom ul {
  text-align: center;
}
.menu-bottom li {
  display: inline-block;
  /* background: #e8e8e8;*/
  border-radius: 8px 8px 0px 0px;
  padding: 7px 50px;
  margin: 0 10px;
}

.menu-bottom li:hover {
  /*background: linear-gradient(180deg, rgba(250,154,26,1) 0%, rgba(255,124,1,1) 100%);*/
}
.menu-bottom li a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  font-family: "Roboto Condensed";
  color: #2b2b2b;
  padding-left: 10px;
  top: 3px;
  position: relative;
}

.menu-bottom li:hover a {
  color: #6e361a;
}
.menu-bottom li img {
  max-width: 49px;
}
.menu-bottom li img.main {
  padding: 8px;
  background: linear-gradient(
    180deg,
    rgb(180, 108, 7) 0%,
    rgb(110, 54, 26) 100%
  );
  border-radius: 8px;
}
.about-lpbs-menu {
  background: #f7f9fa;
}
.about-lpbs-menu .menu-about-us {
  text-align: center;
}
.about-lpbs-menu .menu-about-us li {
  display: inline-block;
}
.about-lpbs-menu .menu-about-us li a {
  color: #414d63;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  padding: 16px 0px;
  margin: 0px 20px;
  display: block;
  transition: all 0s ease-out 0s;
}

.about-lpbs-menu .menu-about-us li.active a {
  color: #f99d1c;
  border-bottom: solid #f99d1c 2px;
  font-weight: 700;
}

.about-lpbs-menu .menu-about-us li:hover a {
  color: #f99d1c;
  border-bottom: solid #f99d1c 2px;
}

.reward-lpbs {
  padding: 80px 0 100px 0;
}
.about-lpbs {
  padding: 80px 0 100px 0;
}
.about-lpbs .pbmit-heading-subheading {
  margin-bottom: 30px;
}
.about-lpbs h2 {
  font-family: "Roboto Condensed";
  text-transform: uppercase;
  font-size: 36px;
  line-height: 54px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-lpbs h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
  max-width: 400px;
}
.about-lpbs-content {
  height: 500px;
  vertical-align: middle;
  display: table-cell;
}
.about-lpbs-content p {
  margin-bottom: 10px;
}

.value-lpbs {
  background: url(../images/map-v.png) no-repeat;
  background-size: cover;
  padding: 120px 0 250px 0;
}

.quote-lpbs {
  padding: 140px 0 100px 0;
  background: linear-gradient(
    180deg,
    rgba(179, 108, 7, 1) 0%,
    rgba(112, 55, 27, 1) 100%
  );
  position: relative;
  color: #fff;
}

.quote-lpbs .quote {
  font-size: 24px;
  line-height: 34px;
  text-align: justify;
  position: relative;
}
.quote-lpbs .quote strong {
  font-weight: 700;
  color: #f99d1c;
}
.quote-lpbs .quote:before {
  content: "\e805";
  font-family: "pbminfotech-base-icons";
  font-size: 44px;
  top: 10px;
  left: -60px;
  position: absolute;
  opacity: 0.6;
}
.quote-lpbs:before {
  content: "";
  width: 809px;
  height: 821px;
  background: url("../images/shape-a.png") no-repeat;
  top: -70px;
  right: 0px;
  position: absolute;
  opacity: 0.8;
}

.quote-lpbs .avatar {
  margin-bottom: 30px;
  position: relative;
}
.quote-lpbs .avatar img {
  position: absolute;
  bottom: 8px;
}
.quote-lpbs .avatar h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #fff;
  border-left: 4px solid;
  padding-left: 12px;
}
.quote-lpbs .avatar h3 span {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  display: block;
  padding-top: 4px;
}
.counter-lpbs {
  padding: 100px 0;
}
.partner-lpbs {
  padding: 100px 0 120px 0;
  background: #f5f5f5;
}
.partner-lpbs .pbmit-featured-wrapper .img-fluid {
  /*filter: grayscale(100%);*/
}

.partner-lpbs .swiper-slide {
  margin-bottom: 10px;
}
.partner-lpbs .swiper-button-next::after,
.partner-lpbs .swiper-button-prev::after {
  color: #444;
}
.pbmit-client-with-hover-img img {
  height: 85px;
}
.partner-lpbs .swiper-button-next {
  margin-left: 20px;
  float: right;
}

.partner-lpbs .swiper-button-next::after,
.partner-lpbs .swiper-button-prev::after {
  content: "\e84e";
  font-size: 20px;
  color: #6e361a;
}

.partner-lpbs .swiper-buttons {
  float: right;
  margin-top: 60px;
}

.history-lpbs {
  position: relative;
  background: linear-gradient(
    0deg,
    rgba(110, 54, 26, 0.9) 0%,
    rgba(196, 115, 15, 0.9) 100%
  );
  padding: 80px 0 90px 0;
  color: #fff;
}

.history-lpbs:before {
  content: "";
  width: 1400px;
  height: 100%;
  background: url("../images/map.png") no-repeat;
  top: 0px;
  left: 0px;
  position: absolute;
  opacity: 0.7;
}

.history-lpbs:after {
  content: "";
  width: 575px;
  height: 100%;
  background: url("../images/shape-h.png") no-repeat;
  bottom: -410px;
  right: 0px;
  position: absolute;
  opacity: 0.9;
}

.about-lpbs .table-striped {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
}
.about-lpbs .table-striped th {
  background: linear-gradient(
    180deg,
    rgba(250, 154, 26, 1) 0%,
    rgba(255, 124, 1, 1) 100%
  );
  color: #fff;
  text-align: center;
}

.about-lpbs .table-striped th p{margin: 0;}
.about-lpbs .table-striped,
.about-lpbs .table-striped > tbody > tr:nth-of-type(2n + 1) > * {
  color: #545454;
}
.card-lpbs {
  max-width: 1100px;
  font-size: 14px;
  line-height: 21px;
  color: #414d63;
  position: relative;
  text-align: left;
}

.card-lpbs .card-title {
  margin-bottom: 30px;
  margin-top: 20px;
  border-left: 3px solid #f99d1c;
  padding-left: 20px;
}
.card-lpbs:after {
  content: "";
  width: 369px;
  height: 273px;
  background: url("../images/sah.png") no-repeat;
  bottom: 0px;
  right: 0px;
  position: absolute;
  opacity: 0.9;
}

.card-lpbs .card-title h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #f99d1c;
  margin-bottom: 0px;
}
.card-lpbs .card-title h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #414d63;
}

.service-lpbs {
  padding: 80px 0 80px 0;
}
.reward-lpbs {
  padding: 80px 0 80px 0;
}
.menu-reward {
  text-align: center;
  margin-bottom: 50px;
}
.menu-reward li {
  display: inline-block;
  border-bottom: solid 1px #ccc;
}
.menu-reward li a {
  color: #414d63;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  padding: 2px 0px;
  margin: 0px 20px;
  display: block;
  transition: all 0s ease-out 0s;
  font-family: "Roboto Condensed";
}

.menu-reward li.active a {
  color: #894716;
  font-weight: 700;
}

.menu-reward li.active {
  border-bottom: solid #894716 3px;
}

.menu-reward li:hover {
  border-bottom: solid #894716 3px;
}

.service-lpbs .menu-reward li {
  border: none;
}
.service-lpbs .menu-reward {
  border-bottom: solid 1px #ccc;
}

.service-lpbs .menu-reward li.active {
  border-bottom: solid #894716 3px;
}
.service-lpbs .menu-reward li:hover {
  border-bottom: solid #894716 3px;
}

/*
.service-lpbs-content {text-align: justify; }
  .service-lpbs-content h3 {
	font-family: 'Roboto Condensed';
  
  font-size: 36px;
  line-height: 46px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 16px;  
	  
  }
 .service-lpbs .ser-lpbs {   }
.service-lpbs .ser-btn {display:inline-block;}
.service-lpbs .ser-lpbs img{object-fit: cover; height:156px; width: 335px; border-radius:20px;}
.service-lpbs .ser-lpbs-content {position: relative; color: #fff;}
.service-lpbs .ser-lpbs-box-content { margin: 0;
  position: absolute;
  bottom: 0;
  padding: 20px;
  text-align: left;}
.service-lpbs .ser-lpbs h3 {
font-weight:700;
font-size:18px;
line-height:24px;
color:#894716;
max-width:160px;
}
*/

.news-lpbs {
  padding: 80px 0;
}
.news-lpbs .swiper-button-next::after,
.swiper-button-prev::after {
  color: #444;
}
.news-lpbs .news-title a {
  font-family: "Roboto Condensed", sans-serif;
  color: var(--pbmit-link-color-hover);
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.news-lpbs img {
  border-radius: 10px;
  margin-bottom: 16px;
}
.news-lpbs .news-info li {
  display: inline-block;
  font-size: 14px;
  color: #67728a;
  margin-right: 10px;
}
.news-lpbs .news-info {
  margin-top: 10px;
}
.news-lpbs .news-info i {
  padding-right: 6px;
  color: #935013;
}
.news-lpbs .swiper-pagination-bullet {
  height: 5px;
  width: 40px;
  border-radius: 4px;
}

.news-lpbs .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-top: 0px;
  width: auto;
  position: relative;
  float: right;
  top: -75px;
  margin-right: 47px;
}

.news-lpbs .swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "FontAwesome";
  content: "\f105";
}

.news-lpbs .swiper-button-next {
  margin-left: 0px;
  top: -83px;
  position: relative;
}
.news-lpbs .swiper-button-prev {
  top: -81px;
  margin-right: 350px;
  position: relative;
}

.news-lpbs .news-plbs-2 .news-title {
  line-height: 25px;
}
.news-lpbs .news-plbs-2 .news-title a {
  color: #444;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
}
.news-lpbs .news-plbs-2 .news-title a:hover {
  color: #f99d1c;
}
.news-plbs-2 {
  margin-bottom: 20px;
}

.news-plbs-2 img {
  width: 300px;
  height: 150px;
  object-fit: cover;
}
.newscat-title {
  font-size: 25px;
  border-bottom: dotted 1px #ccc;
  color: #555;
  font-family: "Roboto Condensed", sans-serif;
  padding-bottom: 5px;
  margin-bottom: 30px;
  padding-right: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.newscat-title a {
  font-size: 16px;
  color: #f99d1c;
  float: right;
  text-transform: none;
  font-weight: 400;
}

.lis-similar {
  margin-top: 20px;
  border-left: dashed 1px #ccc;
  list-style: none !important;
  padding: 0 !important;
}
.lis-similar li {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}

.lis-similar li:before {
  content: "\f111";
  font-family: "FontAwesome";
  font-size: 10px;
  top: -2px;
  left: 10px;
  position: absolute;
  color: #f99d1c;
}
.lis-similar li a {
  font-size: 17px;
  line-height: 27px;
  display: block;
}

.lis-similar li span {
  color: #8f8f8f;
  font-size: 13px;
  line-height: 23px;
}
.support-lpbs-main {
  padding: 80px 0;
}
.support-lpbs {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  border: solid #f0f0f0 2px;
}

.support-lpbs:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(227, 228, 230, 1) 30%,
    transparent 230%
  );
  top: 0px;
  border-radius: 6px;
  position: absolute;
  z-index: 0;
  right: 0;
}
.support-lpbs:before {
  content: "";
  width: 108px;
  height: 89px;
  background: url("../images/sh.png") no-repeat;
  bottom: 0px;
  left: 0px;
  position: absolute;

  z-index: 1;
  opacity: 0.8;
}

.support-lpbs img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.support-lpbs-title {
  top: 53px;

  position: absolute;
  z-index: 1;
  text-align: left;
  padding: 0 10px;
}

.support-lpbs-title h3 {
  padding-left: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-lpbs-title span {
  font-size: 14px;
  padding-left: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #444;
  text-transform: uppercase;
}

.support-j .support-lpbs-title {
  max-width: none;
}
.support-j .support-lpbs-title h3 {
  font-size: 18px !important;
  line-height: 28px !important;
}
.support-j .support-lpbs:after {
  background: linear-gradient(90deg, rgb(227, 228, 230) 30%, transparent 140%);
}

.about-lpbs-menu .dropdown {
  display: none;
  margin: 10px 0;
}

.about-lpbs-menu .dropdown-content {
  width: 100%;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.about-lpbs-menu .dropbtn:after {
  font-family: "FontAwesome";
  content: "\f107";
  font-size: 20px;
  color: #fff;
  right: 20px;
  position: absolute;
}
.about-lpbs-menu .dropdown-content a {
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  width: 100%;
  font-size: 15px;
}

.about-lpbs-menu .dropbtn {
  cursor: pointer;
  background: #f99d1c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
.about-lpbs-menu .show {
  display: block;
}

/*******menu mobile****/

.menu-item img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(62%) saturate(4680%)
    hue-rotate(40deg) brightness(100%) contrast(85%);
  width: 25px;
}
.menu-mlpbs {
  display: none;
}

.menu-open-button {
  padding-top: 5px;
}
.menu-open-button i {
  color: #f99d1c;
}
.menu-item,
.menu-open-button {
  background: #e8e8e8;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  margin-left: -40px;
  position: absolute;
  color: #ffffff;
  text-align: center;
  line-height: 38px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.menu-open {
  display: none;
}

.lines {
  width: 25px;
  height: 3px;
  background: #f99d1c;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

.line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

.line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);
}

.menu-open:checked + .menu-open-button .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu-mlpbs {
  margin: auto 20px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  box-sizing: border-box;
  font-size: 26px;
  z-index: 9;
}

/* .menu-item {
   transition: all 0.1s ease 0s;
} */

.menu-item:hover {
  background: #eeeeee;
  color: #3290b1;
}

.menu-item:nth-child(3) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(4) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(5) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(6) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(7) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(8) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(9) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-open-button {
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.04);
}

.menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.menu-open:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 180ms;
  -webkit-transition-duration: 180ms;
  -webkit-transform: translate3d(0px, -70px, 0);
  transform: translate3d(0px, -70px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 280ms;
  -webkit-transition-duration: 280ms;
  -webkit-transform: translate3d(50px, -50px, 0);
  transform: translate3d(50px, -50px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(70px, 0px, 0);
  transform: translate3d(70px, 0px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
  transition-duration: 480ms;
  -webkit-transition-duration: 480ms;
  -webkit-transform: translate3d(50px, 50px, 0);
  transform: translate3d(50px, 50px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
  transition-duration: 580ms;
  -webkit-transition-duration: 580ms;
  -webkit-transform: translate3d(0px, 70px, 0);
  transform: translate3d(0px, 70px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(8) {
  transition-duration: 680ms;
  -webkit-transition-duration: 680ms;
  -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
  transform: translate3d(-91.03006px, -52.33095px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(9) {
  transition-duration: 780ms;
  -webkit-transition-duration: 780ms;
  -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
  transform: translate3d(-0.25084px, -104.9997px, 0);
}

/*****************/

.footer-ekyc {
  background: url(../images/ekyc.png) no-repeat top right;
  position: relative;
  padding: 100px 0;
  background-size: cover;
  overflow: hidden;
}

.footer-ekyc .pbmit-svg-btn a {
  background: linear-gradient(
    180deg,
    rgba(170, 100, 9, 1) 0%,
    rgba(114, 57, 25, 1) 100%
  );
}

.footer-ekyc .pbmit-svg-btn svg line {
  stroke: #fff;
}

.pbmit-svg-btn a:hover {
  color: #fff;
}
.footer-ekyc .footer-ekyc-content {
  z-index: 2;
  position: relative;
}

.footer-ekyc .footer-ekyc-content p {
  max-width: 550px;
  line-height: 35px;
}

.footer-ekyc:before {
  content: "";
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(227, 228, 230, 1) 60%,
    transparent 100%
  );
  top: 0px;

  position: absolute;
  z-index: 0;
}

.footer-ekyc:after {
  content: "";
  width: 500px;
  height: 413px;
  background: url("../images/Group.png") no-repeat;
  bottom: -40px;
  left: -110px;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
}

.footer-ekyc .footer-ekyc-content h3 {
  font-family: "Roboto Condensed";

  font-size: 36px;
  line-height: 54px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 16px;
}

.do-dong-art {
  margin-bottom: 20px;
}
.do-dong-art img {
  width: 100%;
}
.do-dong-art h3 {
  font-size: 20px;
  line-height: 30px;
  color: #3c3c3c;
  margin-top: 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
}

.recruit-lpbs {
  padding: 80px 0;
}
.join-us {
  background: url(../images/bg-join.png) no-repeat center top;
  padding: 200px 0;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
  color: #f99d1c;
}

.join-us p {
  max-width: 600px;
  margin: 0 auto;
}

.join-lpbs {
  background: #fef5e8;
  border-radius: 10px;
  padding: 40px 40px;
  font-size: 18px;
  line-height: 28px;
  height: 100%;
}
.join-lpbs h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 36px;
  color: #f99d1c;
  margin-bottom: 30px;
  margin-top: 10px;
}

.join-lpbs strong {
  color: #f99d1c;
}
.job-lpbs {
  padding: 80px 0;
  background: #f7f9fa;
}
.job-lpbs h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  color: #545454;
  font-family: "Roboto Condensed", sans-serif;
}
.job-lpbs .job-info {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: rgba(99, 99, 99, 0.03) 0px 2px 8px 0px;
}
.job-lpbs .job-info h4 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #111b2b;
}
.job-lpbs .job-info .pbmit-svg-btn {
  text-align: right;
  margin-top: 16px;
}
.job-lpbs .job-info li {
  display: inline-block;
  padding-right: 20px;
  margin-right: 20px;
  border-right: solid 1px #e1e1e1;
}

.job-lpbs .job-info li:last-child {
  border-right: none;
}

.job-lpbs .job-info li strong {
  padding-right: 5px;
  font-weight: 500;
}
.pagination {
  display: inline-block;
}

.pagination a {
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}
.pagination a.active {
  color: #f99d1c;
}
.other-job-info {
  margin-bottom: 30px;
  border-bottom: solid 1px #cfd9e0;
}
.ul-jb li {
  display: inline-block;
  margin-right: 80px;
  color: #67728a;
}
.ul-jb {
  margin-bottom: 40px;
}
.ul-jb li i {
  padding-right: 6px;
}
.ul-jb li strong {
  font-weight: 500;
}
.job-info-detail {
  margin-bottom: 20px;
  display: flex;
}
.job-info-detail strong {
  font-weight: 500;
}
.support-detail {
  padding: 80px 0;
  background: #f2f2f2;
}

.support-detail .widget {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  line-height: 30px;
  margin-bottom: 20px;
}

.support-detail .widget h3 {
  font-family: "Roboto Condensed";
  text-transform: uppercase;
  font-size: 25px;
  line-height: 35px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 25px;
}
.support-detail .widget .lis-c li {
  padding: 14px;
  border-bottom: solid 1px #ebebeb;
  line-height: 22px;
}

.support-detail .widget .lis-c li:last-child {
  border-bottom: none;
}

.support-detail .widget .lis-c li:hover {
  background: #fffae1;
}

.support-detail .widget .lis-c li a {
  display: block;
}

.support-detail .widget .lis-c {
  border: solid 1px #ebebeb;
  margin-bottom: 40px;
}

.support-detail .widget .lis-c li a.active,
.support-detail .widget .lis-c li a.hover {
  color: #6e361a;
  font-weight: 500;
}
.support-detail .widget .h-title {
  font-family: "Roboto Condensed";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #6e361a;
  margin-bottom: 30px;
}

.lis-anchor {
  max-width: 220px;
}
.lis-anchor li {
  font-size: 15px;
  border-left: solid 1px #d2d2d7;
  padding: 3px 0px 13px 20px;
  line-height: 24px;
}

.lis-anchor li:hover {
  border-color: #6e361a;
}
.lis-anchor li:hover a {
  color: #6e361a;
}

.pbmit-right-box {
  color: #6e361a;
  font-weight: 500;
}
.pbmit-right-box img {
  padding-right: 10px;
}
.service-lpbs .support-lpbs-title {
  bottom: 10px;
  left: 30px;
  text-align: left;
  top: auto;
}

.service-lpbs .support-lpbs-title h3 {
  padding-left: 0;
}
.service-lpbs .support-lpbs:after {
  background: linear-gradient(90deg, rgb(227, 228, 230) 20%, transparent 130%);
}

.news-j .pbmit-blog-style-3 .post-item {
  margin-bottom: 30px;
}
.post-prev a,
.post-next a {
  font-weight: 500;
  color: #6e361a;
}
.post-prev {
}
.post-next {
  text-align: right;
}

.news-right .post-item {
  background: #fff;
}
.news-right .pbmit-blog-style-3 .pbmit-featured-img-wrapper {
  margin-bottom: 20px;
}
.news-right .pbmit-blog-style-3 .pbminfotech-box-content {
  padding: 0;
}
.news-right .pbmit-blog-style-3 .pbmit-post-title a {
  min-height: auto;
  font-size: 16px;
  line-height: 26px;
}

#solution-box {
  color: #fff;
}
#supportList {
  position: absolute;
  width: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 0 0 10px 10px;
  text-align: left;
}

#solutionList {
  position: absolute;
  width: 100%;
  background: #fff;

  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 0 0 10px 10px;
  text-align: left;
}

#supportList div {
  border-bottom: dotted 1px #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}

#solutionList div {
  border-bottom: dotted 1px #ccc;
  padding-bottom: 5px;
  position: relative;
  padding-left: 20px;
  margin: 5px 20px 5px 20px;
}

#supportList a,
#solutionList a {
  max-width: 70%;
  display: inline-block;
}
#supportList span,
#solutionList span {
  float: right;
  font-size: 13px;
}

#supportList div:before,
#solutionList div:before {
  position: absolute;
  font-family: "pbminfotech-base-icons";
  content: "\e80d";
  left: 0px;
  top: 6px;
  font-size: 13px;
  color: #fa9516;
  line-height: normal;
  font-weight: 400;
  opacity: 0.8;
}

.change-c section:nth-child(2n + 0) {
  background: #f2f2f2;
}

.footer-global::after {
  content: "";
  width: 468px;
  height: 426px;
  background: url("../images/users.png") no-repeat;
  bottom: 0px;
  right: 50px;
  position: absolute;
  z-index: 0;
}

.split-j .box-step-j {
  margin-bottom: 30px;
}
.split-j .box-step-j img {
  margin-top: 20px;
}
.split-j .box-step-j .box-number {
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 0px;
  -webkit-text-size-adjust: 0%;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  -moz-text-stroke-color: rgba(65, 43, 118, 0.3);
  -webkit-text-stroke-color: rgba(65, 43, 118, 0.3);
  -moz-text-stroke-width: 1px;
  -webkit-text-stroke-width: 1px;
}

.split-j .box-step-j .box-title {
  font-size: 20px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 32px;
  z-index: 1;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-right: 0px;
  border-bottom: 1px solid rgba(65, 43, 118, 0.2);
}
.title-j {
  font-size: 20px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 30px;
}

.slider-lpbs .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100%;
  position: absolute;
  bottom: 30px;
  margin: 0 auto;
  top: auto;
}

.slider-lpbs .swiper-slide {
  text-align: center;
}
.slider-lpbs .swiper-slide img {
  width: 100%;
}

.menu-about-us li:nth-child(4) {
  display: none;
}

.menu-about-us.support li:nth-child(4) {
  display: inline-block;
}

.page-content .content-j ul {
  list-style: revert;
  padding: revert;
}

.content-j table {
  width: 100% !important;
  max-width: 100% !important;
}
.content-j table td,
.content-j table th {
  border-style: revert;
  border: solid 1px #d0bfbe;
  padding: 10px;
  line-height: 22px;
}

.content-j table th {
  background: linear-gradient(
    180deg,
    rgba(250, 154, 26, 1) 0%,
    rgba(255, 124, 1, 1) 100%
  );
  color: #fff;
}

.content-j table tr:nth-child(2n + 2) td {
  background-color: #fef5e8;
}

/*
 @media screen and (max-width: 600px) {
.content-j table {
    border: 0;
  }

.content-j table caption {
    font-size: 1.3em;
  }
  
.content-j table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
.content-j table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
.content-j table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
.content-j table td::before {
    
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
.content-j table td:last-child {
    border-bottom: 0;
  }
}
*/

.orther-tit h2 {
  color: #545454;
  background: none;
  -webkit-text-fill-color: revert;
}

.lp-trade h1 {
  font-size: 50px;
  color: #1b273a;
  font-weight: 500;
  line-height: 60px;
}
.lp-trade .bg-x {
  position: relative;
  margin-bottom: 40px;
}
.lp-trade .bg-x::before {
  content: "";
  background-color: #eeffe3;
  width: 200%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: -100%;
  border-radius: 0 16px 16px 0;
}

.lp-trade h3 {
  color: #153564;
  font-size: 30px;
  text-align: center;
  margin: 20px auto 50px;
  position: relative;
}
.lp-trade h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100px;
  background: #153564;
  top: 120%;
  left: 36%;
}

.lp-trade h3.title-2 {
  margin: 20px 0px;
  text-align: left;
}
.lp-trade h3.title-2::after {
  left: 0%;
}
.lp-trade .lpbs-box img {
  max-height: 235px;
  margin-bottom: 22px;
}

.accordion-container {margin-bottom:20px;}
.accordion-container .accordion-title {
 position: relative;
  margin: 0;
  padding: 10px 14px;
  background: -webkit-linear-gradient(#c6730d, #7c4016);
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  cursor: pointer;
  margin-bottom:3px;
  line-height: 26px;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background: -webkit-linear-gradient(#c6730d, #7c4016);
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 2px;
  transform: rotate(90deg);
  background: #fff;
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 2px;
  background: #fff;
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content  {
 border: solid 1px #ebebeb;
}

.accordion-content p{
  padding: 10px 14px;
  border-bottom: solid 1px #ebebeb;
  line-height: 22px;
  margin: 0;
}

.accordion-content p a{
 display:block
}

.accordion-content p.active{background:#fffabf}
  
  .accordion-content p.active a{color: #6e361a;
  font-weight: 500;
  }

@media (max-width: 1440px) {
  .footer-global::after {
    right: 0px;
    width: 350px;
  }
}

@media (max-width: 1280px) {
  .tex-j p {
    font-size: 14px;
    line-height: 24px;
    margin: 15px 0 !important;
  }

  .tex-j img {
    height: 32px;
  }
  .lp-trade .lpbs-box img {
    max-height: 197px;
  }
  .quote-lpbs .col-sm-12 {
    width: 70% !important;
  }
  .menu-bottom li {
    padding: 12px 20px;
  }

  .project-j .category-j .content .cat-list a {
    font-size: 14px;
  }

  .footer-global::after {
    right: 0px;
    width: 290px;
  }
}

@media (max-width: 1080px) {
	.dis-ipa {display:none}
	.support-detail .col-md-9.column {width:100%}
	.support-detail .col-md-6.column {width: 75%;}

	.job-info-detail {
  
  font-size: 14px;
}


  .lp-trade .lpbs-box img {
    max-height: 154px;
  }

  .lp-trade h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .lp-trade h1 img {
    height: 56px;
  }
  .lp-trade .tex-1 {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  .footer-global::after {
    display: none;
  }

  .quote-lpbs .quote::before {
    font-size: 24px;
    top: 0px;
    left: -30px;
  }

  .about-lpbs-menu .menu-about-us li a {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
	.rec-box .col-md-3 {width:50%}
	.pbmit-blog-style-3 .pbmit-meta-line {font-size: 12px;}
  .lp-trade .col-md-4 {
    width: 100%;
  }
  
  .about-lpbs h3 {
 
  font-size: 20px;
  line-height: 30px;
 
}

.job-lpbs .job-info h4 {font-size: 18px;
  line-height: 28px;}
  .lp-trade .lpbs-box img {
    max-height: 222px;
  }

  .lp-trade .lpbs-box-j .col-md-4 {
    text-align: center !important;
  }

  .lp-trade .lpbs-box-why .col-md-6 {
    width: 100%;
  }

  .pbmit-tbar-title {
    font-size: 30px;
  }

  .lis-anchor {
    display: none;
  }
  .job-lpbs .job-info li {
    border-right: none;
  }
  .job-lpbs .job-info .pbmit-svg-btn {
    text-align: left;
  }

  .join-lpbs {
    padding: 20px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 0px;
  }

  .join-us {
    font-size: 30px;
    line-height: 40px;
  }
  .join-lpbs h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-ekyc {
    background: none;
    padding: 60px 0;
  }

  .menu-mlpbs {
    display: block !important;
  }
  .footer-style-2 .pbmit-footer-text-area {
    margin-bottom: 0;
  }
  .menu-bottom {
    display: none;
  }
  /*.support-lpbs-main .col-md-4 {width:50%}*/
  .support-lpbs-title h3 {
    padding-left: 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .pbmit-service-style-3 .pbmit-service-title {
    font-size: 22px;
    line-height: 32px;
  }
  .about-lpbs-content {
    height: auto;
  }
  .quote-lpbs .col-sm-12 {
    width: 100% !important;
  }
  .menu-bottom li {
    padding: 12px 20px;
    margin: 0;
  }

  .menu-bottom li a {
    font-size: 14px;
    line-height: 24px;
  }

  .project-j .category-j .content {
    display: block;
    padding: 30px;
  }
  .project-j .category-j:after {
    width: 100%;
  }

  .project-j h3 {
    font-size: 20px;
    line-height: 30px;
    bottom: 20px;
    left: 30px;
    z-index: 1;
    color: #fff;
  }
  .project-j {
    margin-bottom: 40px;
    height: 380px;
  }
  .project-j .category-j .content .cat-list li {
    width: 100%;
    margin-bottom: 15px;
  }

  .why_bg {
    background: #fff6e9 url(../images/why2.png) no-repeat;
    background-position: center 50px;
    background-size: contain;
  }

  .why_bg:before {
    display: none;
  }
  .why_bg .content-j {
    padding-top: 450px;
  }

  .pbmit-portfolio-style-1 .pbmit-portfolio-title {
    font-size: 35px;
    line-height: 45px;
  }
  .pbmit-portfolio-style-1 .pbmit-port-cat {
    font-size: 16px;
  }
  .pbmit-blog-style-3 .pbmit-post-title a {
    min-height: 87px;
    font-size: 18px;
    line-height: 28px;
  }
  .footer-global .gl-right {
    display: none;
  }

  .news-lpbs .news-title,
  .news-lpbs .news-title a {
    font-size: 20px;
    line-height: 30px;
    margin-top: 0px;
  }

  .news-lpbs .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .news-lpbs .swiper-button-next,
  .news-lpbs .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
	.support-detail .col-md-6.column {width: 100%;}
  .pbminfotech-ele-fid-style-2 {
    margin-bottom: 20px;
  }

  h1.pbmit-tbar-title span {
    margin-bottom: 0 !important;
  }
  .project-j .category-j .content .cat-list a {
    font-size: 16px;
  }

  #solutionList a {
    font-size: 12px;
    line-height: 17px;
  }
  .support-j .support-lpbs-title h3 {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .rbox-content img {
    height: 250px !important;
  }

  .pbmit-right-box .hotline {
    display: none;
  }
  .nodis {
    display: none !important;
  }
  .menu-bottom li img {
    width: 18px;
  }
  .menu-bottom li {
    padding: 8px 10px;
    margin: 0;
  }

  .menu-bottom li a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    padding-left: 5px;
    top: 2px;
  }

  .footer-global .gl-right {
    display: none;
  }

  .why_bg {
    padding: 80px 0px 40px 0px;
    position: relative;
    background: #fff6e9 url(../images/why2.png) no-repeat;
    background-position: center 30px;
    background-attachment: scroll;
    background-size: contain;
  }
  .why_bg:before {
    content: "";
    width: 100%;
    height: 100%;
  }
  .why_bg .content-j {
    padding-top: 150px;
  }

  .pbmit-portfolio-style-1 .pbmit-port-cat {
    /*display: none;*/
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer-global h3 {
    font-size: 32px;
  }
  .pbmit-portfolio-style-1 .pbminfotech-box-content {
    padding: 30px 20px 20px !important;
  }

  .pbmit-portfolio-style-1 .pbmit-portfolio-title {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 0px;
  }
  .pbmit-portfolio-style-1 {
    margin-bottom: 30px;
  }

  .project-j .category-j .content {
    display: block;
    padding: 30px;
  }
  .project-j .category-j:after {
    width: 100%;
  }

  .project-j h3 {
    font-size: 20px;
    line-height: 30px;
    bottom: 20px;
    left: 30px;
    z-index: 1;
    color: #fff;
  }
  .project-j {
    margin-bottom: 40px;
    height: 380px;
  }
  .project-j .category-j .content .cat-list li {
    width: 100%;
    margin-bottom: 10px;
  }

  .about-lpbs-content {
    height: auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .about-lpbs-menu .menu-about-us li a {
    font-size: 12px;
    padding: 8px 0px;
  }

  .about-lpbs-menu .menu-about-us {
    display: none;
  }
  .about-lpbs-menu .dropdown {
    display: block;
  }
}

 /*popup*/
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
  z-index:999;
  overflow-y: auto;
}

.overlay.close-j {
   
  visibility: hidden;
  opacity: 0;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 10px auto;
  padding: 0;
  background: #fff;
  border-radius: 5px;
  max-width: 700px;
  position: relative;
  /*transition: all 5s ease-in-out;*/
}
 
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #6e3517;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 1440px){
  .popup{
    width: 660px;
  }  
}

@media screen and (max-width: 1280px){
  .popup{
    width: 600px;
  }  
}
 
@media screen and (max-width: 767px){
  .popup{
    width: 96%;
	margin-top:50%;
  }  
}
