/*------------------------------------------------------------------
[Master Stylesheet]
- Burger Menu
- Pre Header setting
- Header setting
- Heading Subheading Element
- Icon Heading Box
- Titlebar section
- Blog Box
- Portfolio Section
- Team Member Section
- Contact Form 7
- Client Logo Section
- Progress Bar Section
- Service Style
- Progress Bar
- Contact form
- error-404
- Search Popup Area CSS
- Tab and Accordion
- Button Section
- Custom css
-------------------------------------------------------------------*/
body {
	counter-reset: listnumber;
	background-color: var(--pbmit-gudfin-body-bg-color);
}
.pbmit-form .wpcf7-submit,
html input[type=button],
input[type=reset] {
	font-size: 12px;
    text-transform: uppercase;
	padding: 13px 15px 14px 25px;
    outline: none;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
	overflow: hidden;
}
.pbmit-form .wpcf7-submit:hover,
html input[type=button]:hover,
input[type=reset]:hover {
	padding: 13px 25px 14px 15px;
}
html input[type=button]:hover,
input[type=reset]:hover {
	margin: 8px 0 0 8px;
}
html input[type=button]::before,
input[type=reset]::before {
	position: absolute;
	display: block;
	content: "";
	right: -8px;
	bottom: -8px;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: transparent;
	transition: 0.9s;
	border: 2px solid var(--pbmit-gudfin-white-color);
}
html input[type=button]:hover::before,
input[type=reset]:hover::before {
	right: 0px;
	bottom: 0px;
	top: -8px;
	left: -8px;
}
.elementor-element.elementor-widget:not(:last-child) {
	margin-bottom: 0;
}
/* --------------------------------------
* Header setting
* ---------------------------------------*/
.site-title,
.site-title a {
	-webkit-transition: none;
	transition: none;
	line-height: inherit;
}
.pbmit-header-box span {
	display: block;
}
.pbmit-right-box {
	position: relative;
}
.navigation-top-wrapper {
	display: flex;
	flex-grow: 1;
}
.pbmit-slider-bottom-section {
	display: none;
}
.pbmit-sticky-header .pbmit-header-menu-area {
	background-color: transparent !important;
}
.pbmit-navbar ul.sub-menu::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 10px;
	background-image: none !important;
}
.pbmit-sticky-header .pbmit-main-header-area{
	background-color: transparent;
}
.pbmit-navigation-menu-wrapper ul>li>ul>li>a>span.new-tag {
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(var(--pbmit-gudfin-blackish-bg-color-rgb), .7);
    color: var(--pbmit-gudfin-white-color);
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-left: 10px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
/* pbmit-infostack-header */
.pbmit-header-info-inner .pbmit-header-box a,
.pbmit-header-info-inner .pbmit-header-box,
.pbmit-header-info-inner {
	display: flex;
	align-items: center;
}
.pbmit-header-info-inner .pbmit-header-box {
	padding-left: 60px;
}
.pbmit-header-info-inner .pbmit-header-box:first-child {
	padding-left: 0;
}
.pbmit-header-info-inner .pbmit-header-box-icon {
	padding-right: 20px;
}
.pbmit-header-info .pbmit-header-info-inner .pbmit-header-icon-wrap {
	width: 55px;
	height: 55px;
	line-height: 50px;
	text-align: center;
	border-radius: 50px;
	color: var(--pbmit-gudfin-white-color);
	fill: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-header-info-inner .pbmit-header-box-icon .pbmit-header-icon-wrap svg {
	width: 20px;
	height: 20px;
}
.pbmit-header-box:hover .pbmit-header-box-icon .pbmit-header-icon-wrap svg {
	animation: pbmit_verticle_icon 1.1s ease-out;
}
@keyframes pbmit_verticle_icon {
	16.65% {
		transform: translateY(8px)
	}

	33.3% {
		transform: translateY(-6px)
	}

	49.95% {
		transform: translateY(4px)
	}

	66.6% {
		transform: translateY(-2px)
	}

	83.25% {
		transform: translateY(1px)
	}

	100% {
		transform: translateY(0)
	}
}
.pbmit-header-info-inner .pbmit-header-box-icon .pbmit-header-icon-wrap svg g,
.pbmit-header-info-inner .pbmit-header-box-icon .pbmit-header-icon-wrap svg {
	fill: var(--pbmit-gudfin-white-color);
}
.pbmit-header-info-inner .pbmit-header-box .pbmit-header-content-wrap .pbmit-header-box-title {
	font-size: 14px;
	line-height: 14px;
	padding-bottom: 6px;
}
.pbmit-header-info-inner .pbmit-header-box .pbmit-header-content-wrap .pbmit-header-box-content {
	font-size: 17px;
	line-height: 17px;
	color: var(--pbmit-gudfin-secondary-color);
}
/* --------------------------------------
* Burger-menu
* ---------------------------------------*/
.pbmit-burger-menu-area  {
	background-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-blackish-color);
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: -100%;
	z-index: 9999;	
	visibility: hidden;
	-webkit-transition: all 0.9s!important;
	transition: all 0.9s!important;
}
.body-overflow-hidden{
	overflow: hidden;
}
.pbmit-burger-menu-area.show  {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.admin-bar .pbmit-burger-menu-area {
	margin-top: 32px;
}
.pbmit-burger-menu-area a {
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-burger-menu-area-inner{
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 2fr 0.75fr;
	padding-top: 150px;
	margin: 0 320px;
}
/* Menu Design */
.pbmit-burger-menu-area .menu-main-menu-container ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}
.pbmit-burger-menu-area .menu-main-menu-container{
	padding: 1rem;
	padding-top: 0;
	max-height: 540px;
	overflow-y: auto;
	margin-right: 30px;
}
.pbmit-burger-menu-area .menu-main-menu-container::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.pbmit-burger-menu-area .menu-main-menu-container::-webkit-scrollbar{
	width: 12px;
	background-color: #F5F5F5;
}
.pbmit-burger-menu-area .menu-main-menu-container::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,.3);
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-burger-menu-area .closepanel,
.pbmit-burger-menu-area .pbmit-burger-menu-link{
	display: none;
}
.pbmit-burger-menu-area .menu-main-menu-container ul > li {
	position: relative;
	padding: 0 0 25px 0;
}
.pbmit-burger-menu-area .menu-main-menu-container ul > li >ul > li,
.pbmit-burger-menu-area .menu-main-menu-container ul > li:last-child{
	padding: 0;
}
.pbmit-burger-menu-area .menu-main-menu-container ul > li > a{
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-burger-menu-area .menu-main-menu-container ul > li li > a{
	display: inline-block;
	padding: 20px 10px 0px;
}
.pbmit-burger-menu-area .menu-main-menu-container ul ul{
	display: none;
	padding-left: 10px;
}
.pbmit-burger-menu-area .menu-main-menu-container ul .sub-menu.show, 
.pbmit-burger-menu-area .menu-main-menu-container ul .children.show {
	display: block;
}
.pbmit-burger-menu-area .menu-main-menu-container .sub-menu-toggle{
	display: inline-block;
	cursor: pointer;
	font-size: 30px;
	line-height: normal;
	margin-left: 15px;
}
.pbmit-burger-menu-area .menu-main-menu-container ul ul .sub-menu-toggle{
	font-size: 20px;
	line-height: normal;
}
.pbmit-burger-content-address{
	font-size: 24px;
	font-weight: 500;
	line-height: 34px;
}
.pbmit-burger-content-address .pbmit-burger-info{
	display:block;
	margin-bottom: 15px;
}
.pbmit-burger-content-address .pbmit-burger-info:last-child{
	margin-bottom: 0;
}
.pbmit-burger-content .pbmit-burger-content-4{
	font-size: 18px;
	line-height: 28px;
}
.pbmit-burger-content-scoialbox{
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid var(--pbmit-gudfin-blackish-color);
	color: #6a6a6a;
}
.pbmit-burger-content-scoialbox-icon{
	padding-top: 40px;
}
.pbmit-burger-content-scoialbox-icon a{
	font-size: 20px;
}
.pbmit-burger-content-scoialbox-icon a:hover{
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-burger-headerarea{
	display: flex;
	padding: 0 25px;
}
.pbmit-burger-headerarea .pbmit-search-cart-box{
	margin-left: auto;
	margin-right: 90px;
}
.pbmit-burger-headerarea .pbmit-search-cart-box .pbmit-cart-wrapper a, 
.pbmit-burger-headerarea .pbmit-search-cart-box .pbmit-header-search-btn a{
	color: var(--pbmit-gudfin-blackish-color);
	background-color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.15);
}
.pbmit-burger-headerarea .pbmit-closepanel{
	position: absolute;
	width: 90px;
	display: block;
	right: 0;
	background-color: var(--pbmit-gudfin-global-color);
	fill: var(--pbmit-gudfin-white-color);
	text-align: center;
	height: var(--pbmit-gudfin-sticky-header-height);
	line-height: var(--pbmit-gudfin-sticky-header-height);
	cursor: pointer;
}
.pbmit-burger-headerarea .pbmit-closepanel:hover svg rect {
	animation: pbmit-closer-line-draw .6s;
	animation-name: pbmit-closer-line-draw;
	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;	
}
@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-burger-headerarea .pbmit-closepanel:hover svg rect:nth-of-type(2) {
	animation-delay: .17s;
}
.pbmit-burger-headerarea .pbmit-closepanel:hover svg rect,
.pbmit-burger-headerarea .pbmit-closepanel:hover svg{
	fill: var(--pbmit-gudfin-white-color);
}
.pbmit-burger-headerarea .pbmit-closepanel svg rect{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.pbmit-burger-menu-area.pbmit-burger-menu-yes.show .pbmit-logo-area .pbmit-burger-logo{
	display: block;
}
.pbmit-burger-menu-area.pbmit-burger-menu-yes.show .pbmit-logo-area .pbmit-responsive-logo,
.pbmit-burger-menu-area.pbmit-burger-menu-yes.show .pbmit-logo-area .pbmit-sticky-logo,
.pbmit-burger-menu-area.pbmit-burger-menu-yes.show .pbmit-logo-area .pbmit-main-logo{
	display: none;
}
.pbmit-burger-menu-area.pbmit-burger-menu-yes .pbmit-search-cart-box>*:nth-child(2)::after {
	background-color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.10);
}
/* --------------------------------------
* pbmit-header-social-wrapper
* ---------------------------------------*/
.pbmit-header-social-wrapper .pbmit-social-links {
	padding: 0;
	margin: 0;
	list-style: none;
}
.pbmit-header-social-wrapper .pbmit-social-links li {
	display: inline-block;
}
.pbmit-pre-header-left .pbmit-contact-info li {
	padding-right: 15px;
}
/* --------------------------------------
* pbmit-right-box
* ---------------------------------------*/
.pbmit-right-box>* {
	padding: 0 30px;
	position: relative;
	line-height: normal;
}
.pbmit-right-box>*:first-child {
	padding-left: 0;
}
.pbmit-right-box>*:last-child {
	padding-right: 0;
}
.pbmit-right-box .pbmit-cart-wrapper a {
	position: relative;
}
/* --------------------------------------
*	pbmit-button-box
* ---------------------------------------*/
.pbmit-button-box {
	display: flex;
	align-items: center;
	padding: 0;
}
.pbmit-button-box>* {
	padding: 0 30px;
	line-height: normal;
}
.pbmit-button-box>*:first-child {
	padding-left: 0;
}
.pbmit-button-box>*:last-child {
	padding-right: 0;
}
/* --------------------------------------
* pbmit-search-cart-box
* ---------------------------------------*/
.pbmit-search-cart-box {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0;
	padding-left: 30px;
}
.rtl .pbmit-search-cart-box>*,
.pbmit-search-cart-box>* {
	padding: 0 15px;
	position: relative;
}
.pbmit-search-cart-box>*:first-child {
	padding-left: 0;
}
.rtl .pbmit-search-cart-box>*:first-child{
	padding: 0 0 0 15px;
}
.pbmit-search-cart-box>*:last-child {
	padding-right: 0;
}
.rtl .pbmit-search-cart-box>*:last-child{
	padding: 0 15px 0 0;
}
.pbmit-search-cart-box .pbmit-header-search-btn a,
.pbmit-search-cart-box .pbmit-cart-wrapper a {
	font-size: 26px;
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-search-cart-box .pbmit-cart-wrapper a {
	font-size: 24px;
	line-height: 24px;
	display: flex;
	align-items: center;
}
.pbmit-search-cart-box .pbmit-cart-wrapper a .woocommerce-Price-amount {
	margin-left: 5px;
}
.pbmit-cart-wrapper.pbmit-cart-style-1.pbmit-show-cart-amount-yes a:hover::before,
.pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-search-cart-box .pbmit-cart-details {
	position: relative;
}
.pbmit-search-cart-box>*:nth-child(2)::after {
	content: '';
	width: 1px;
	height: 30px;
	background-color: rgba(var(--pbmit-gudfin-secondary-color-rgb), 0.15);
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.rtl .pbmit-search-cart-box>*:nth-child(2)::after{
	left: inherit;
	right: 0;
}
.pbmit-search-cart-box .pbmit-cart-count {
	position: absolute;
	top: -9px;
	right: -6px;
	height: 18px;
	line-height: 18px;
	width: 18px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-global-color);
	transition: all 0.3s ease-in;
}
.pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-search-cart-box .pbmit-cart-wrapper a .amount {
	font-size: 15px;
	display: block;
	line-height: 20px;
	margin-top: 0;
}
/*=== pbmit-sticky-header ===*/
.pbmit-sticky-header .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-sticky-header .pbmit-search-cart-box .pbmit-header-search-btn a{
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-sticky-header .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-sticky-header .pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-global-color);
}
/*=== Header background color ===*/
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-header-search-btn a,
.pbmit-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-bg-color-blackish .pbmit-search-cart-box .pbmit-header-search-btn a,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-header-search-btn a {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-bg-color-blackish .pbmit-search-cart-box .pbmit-header-search-btn a:hover,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-bg-color-globalcolor .pbmit-search-cart-box>*:nth-child(2)::after,
.pbmit-bg-color-blackish .pbmit-search-cart-box>*:nth-child(2)::after,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box>*:nth-child(2)::after {
	background-color: rgba(var(--pbmit-gudfin-white-bg-color-rgb), 0.15);
}
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count,
.pbmit-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count,
.pbmit-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-count {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
/*=== pbmit-sticky-header-background-color ===*/
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-header-search-btn a,
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box .pbmit-header-search-btn a,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-wrapper a,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-header-search-btn a {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box .pbmit-header-search-btn a:hover,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-wrapper a:hover,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-header-search-btn a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box>*:nth-child(2)::after,
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box>*:nth-child(2)::after,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box>*:nth-child(2)::after {
	background-color: rgba(var(--pbmit-gudfin-white-bg-color-rgb), 0.15);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-blackish .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count,
.pbmit-sticky-header.pbmit-sticky-bg-color-secondarycolor .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-count {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-sticky-header.pbmit-sticky-bg-color-globalcolor .pbmit-search-cart-box .pbmit-cart-link:hover .pbmit-cart-count {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/*=== mobile header cart Search color  ===*/
.site-header .pbmit-responsive-header-bgcolor-blackish .pbmit-search-cart-box .pbmit-cart-wrapper a,
.site-header .pbmit-responsive-header-bgcolor-blackish .pbmit-search-cart-box .pbmit-header-search-btn a {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-responsive-header-bgcolor-blackish .pbmit-search-cart-box>*:nth-child(2)::after {
	background-color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.15);
}
.site-header .pbmit-responsive-header-bgcolor-globalcolor .pbmit-search-cart-box .pbmit-cart-wrapper a,
.site-header .pbmit-responsive-header-bgcolor-globalcolor .pbmit-search-cart-box .pbmit-header-search-btn a {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-responsive-header-bgcolor-globalcolor .pbmit-search-cart-box>*:nth-child(2)::after {
	background-color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.15);
}
/* --------------------------------------
 * Heading Subheading Element
 * ---------------------------------------*/
 .pbmit-heading-subheading.pbmit-desc-yes {
	display: flex;
	align-items: end;
	gap: 30px;
 }
 .pbmit-ele-header-align-right .pbmit-heading-subheading.pbmit-desc-yes {
	flex-direction: row-reverse;
 }
  .pbmit-heading-subheading.pbmit-desc-yes > div{
	    width: 40%;
  }
 .pbmit-heading-subheading.pbmit-desc-yes .pbmit-heading-desc {
    margin-bottom: 15px;
    width: 35%;
}
.pbmit-heading-subheading .pbmit-element-subtitle {
	position: relative;
	display: inline-block;
}
.pbmit-heading-subheading h4.pbmit-element-subtitle a {
	color: rgba(var(--pbmit-gudfin-blackish-bg-color-rgb), 0.6)
}
.pbmit-heading-subheading h4.pbmit-element-subtitle a:hover {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-heading-subheading .pbmit-element-subtitle a:hover {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-heading-subheading .pbmit-element-title a:hover {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-ele-header-align-center .pbmit-heading-subheading.pbmit-desc-yes {
	display: block;
}
.pbmit-ele-header-align-center .pbmit-heading-subheading.pbmit-desc-yes > div,
.pbmit-ele-header-align-center .pbmit-heading-subheading.pbmit-desc-yes .pbmit-heading-desc {
	width: 100%;
}
.pbmit-elementor-bg-color-blackish .pbmit-heading-subheading h4.pbmit-element-subtitle a:hover,
.pbmit-elementor-bg-color-blackish .pbmit-heading-subheading .pbmit-element-title,
.pbmit-elementor-bg-color-blackish .pbmit-heading-subheading .pbmit-element-title a,
.pbmit-elementor-bg-color-secondary .pbmit-heading-subheading h4.pbmit-element-subtitle a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-heading-subheading .pbmit-element-title,
.pbmit-elementor-bg-color-secondary .pbmit-heading-subheading .pbmit-element-title a {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-blackish .pbmit-heading-subheading .pbmit-element-title a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-heading-subheading .pbmit-element-title a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-elementor-bg-color-blackish .pbmit-heading-subheading .pbmit-heading-desc,
.pbmit-elementor-bg-color-secondary .pbmit-heading-subheading .pbmit-heading-desc {
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.7);
}
.pbmit-heading-subheading .pbmit-element-title a .pbmit-button-icon,
.pbmit-heading-subheading .pbmit-element-subtitle a .pbmit-button-icon {
	display: none;
}
/* --------------------------------------
* Icon Heading Box
* ---------------------------------------*/
.pbmit-ihbox-btn a {
	position: relative;
}
.pbmit-ihbox-svg-wrapper svg {
	width: 2em;
	height: 2em;
	position: relative;
}
body.rtl .bmit-ihbox text {
	direction: ltr;
}
/* --------------------------------------
* Blog box style
* ---------------------------------------*/
.pbmit-meta-line a,
.pbmit-meta-line {
	font-size: 13px;
    line-height: 15px;
    line-height: 28px;
    letter-spacing: 0.78px;
    text-transform: uppercase;
	color: #7c898d;
}
.pbmit-meta-line a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-meta-line {
	margin-bottom: 5px;
	display: inline-block;
	position: relative;
}
.rtl .pbmit-meta-line{
	margin-left: 10px;
	margin-right: 0;
}
.pbmit-meta-line:last-child {
	margin-right: 0;
}
.rtl .pbmit-meta-line:last-child{
	margin-left: 0;
}
.pbminfotech-element-blog .pbmit-meta-comment-wrapper.pbmit-meta-line:hover::before {
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-meta-line i,
.pbminfotech-element-blog .pbmit-meta-author-wrapper i,
.pbminfotech-element-blog .pbmit-meta-comment-wrapper i {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-meta-line .pbmit-meta-category a {
	display: block;
}
.pbmit-meta-line .pbmit-meta-comments .pbmit-comment-title {
	padding-left: 5px;
}
.pbmit-meta-wraper>*:not(:last-child) {
	padding-right: 17px;
    margin-right: 8px;
}
.pbmit-meta-wraper>*:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	border-radius: 50px;
	background-color: var(--pbmit-gudfin-blackish-color);
	-khtml-transform: translateX(0%) translateY(-50%);
	-moz-transform: translateX(0%) translateY(-50%);
	-ms-transform: translateX(0%) translateY(-50%);
	-o-transform: translateX(0%) translateY(-50%);
	transform: translateX(0%) translateY(-50%);
}
.pbmit-meta-line .pbmit-post-author {
	padding-left: 2px;
}
/*=== Classic blog ===*/
.pbmit-blog-classic {
	margin-bottom: 60px;
	position: relative;
}
.pbmit-entry-content .wp-caption:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .wp-audio-shortcode:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .wp-block-pullquote:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .wp-block-media-text:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .wp-block-cover.has-background-dim {
	margin-bottom: 25px;
}
body.single-post .pbmit-blog-classic .pbmit-blog-classic-inner .wp-block-columns .wp-block-image img {
	margin: 15px 0 0px;
	border-radius: 5px;
	width: 100%;
}
article.format-status.pbmit-no-img .pbmit-blog-classic {
	padding: 15px 50px 50px!important;
}
.format-status.pbmit-no-img .pbmit-blog-classic .pbmit-blog-classic-inner {
	padding-top: 5px;
}
.pbmit-blog-classic .pbmit-featured-wrapper img{
	border-radius: 5px;
}
body:not(.search-results) .site-main article:last-of-type .pbmit-blog-classic {
	margin-bottom: 0px;
}
.pbmit-blog-classic .pbmit-post-thumbnail {
	margin-bottom: 60px;
}
.pbmit-blog-classic .pbmit-post-title {
	font-size: 30px;
	line-height: 30px;
}
.pbmit-blog-classic .pbmit-post-title a {
	display: inline-block;
}
.pbmit-blog-classic .pbmit-post-title a:empty {
	display: block;
	margin-top: -15px;
}
.pbmit-blog-classic .pbmit-entry-content {
	margin-bottom: 0px;
}
.single .pbmit-blog-classic .pbmit-blog-classic-inner .pbmit-entry-content {
	margin-top: 0px;
}
article.post.pbmit-no-img {
	margin-top: 0px;
}
.pbmit-blog-classic .pbmit-meta-category-wrapper {
	background-color: var(--pbmit-gudfin-global-color);
	font-weight: 400;
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 9;
	padding: 6px 14px;
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.rtl .pbmit-blog-classic .pbmit-meta-category-wrapper {
	left: inherit;
	right: 40px;
}
.pbmit-blog-classic .pbmit-meta-category-wrapper:hover {
	background-color: var(--pbmit-gudfin-blackish-bg-color);
}
.single-post .pbmit-no-img .pbmit-blog-classic .pbmit-blog-classic-inner {
	padding-top: 0;
}
.pbmit-no-img .pbmit-blog-classic .pbmit-meta-category-wrapper {
	display: none !important;
}
.pbmit-blog-classic .pbmit-meta-category-wrapper span {
	display: block;
	color: var(--pbmit-gudfin-white-color);
	text-transform: uppercase;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0px;
}
.pbmit-blog-classic .pbmit-meta-category-wrapper span a {
	color: var(--pbmit-gudfin-white-color);
	letter-spacing: 1px;
}
.pbmit-blog-classic .pbmit-meta-category-wrapper span i {
	display: none;
}
.pbmit-blog-classic .pbmit-blog-classic-inner {
	background: transparent;
	padding: 0;
	position: relative;
}
.pbmit-blog-classic .pbmit-blog-classic-inner .pbmit-entry-content ul:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .pbmit-entry-content table:last-child,
.pbmit-blog-classic .pbmit-blog-classic-inner .pbmit-entry-content p:last-child {
	margin-bottom: 0;
}
article.format-quote .pbmit-meta-date-wrapper,
.pbmit-no-img .pbmit-blog-classic .pbmit-meta-date-wrapper {
	display: none;
}
article.format-quote .pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) {
	margin-bottom: 25px;
	padding: 30px 130px 30px 45px;
	margin: 0;
	margin-left: 0;
	border-left: 5px solid var(--pbmit-gudfin-global-color);
}
article.format-quote .pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) a {
	color: var(--pbmit-gudfin-secondary-color);
}
article.format-quote .pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color)::before {
	display: none;
}
article.format-quote .pbmit-blog-classic {
	background: transparent;
	border: 1px solid rgba(var(--pbmit-gudfin-white-color-rgb), 0.1);
	padding: 45px 45px;
	position: relative;
}
.pbmit-blog-classic .pbmit-meta-date-top {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 70px;
	height: 70px;
	text-align: center;
	color: var(--pbmit-gudfin-white-color);
	font-size: 30px;
	line-height: 34px;
	font-weight: bold;
	padding-top: 10px;
	border-radius: 0px;
}
.pbmit-blog-classic .pbmit-meta-date-top span {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 13px;
}
.pbmit-no-img .pbmit-blog-classic .pbmit-meta-date-top {
	display: none;
}
.pbmit-blog-meta.pbmit-blog-meta-bottom {
	margin-top: 50px;
    padding: 16px 30px 14px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
}
.wp-block-pullquote.pbmit-blog-single-quote {
	padding: 0;
	border: none;
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color){
	border: 0;
	padding: 42px 50px 37px 140px;
    border-radius: 5px;
    font-size: 17px;
    line-height: 28px;
    margin: 30px 0;
    position: relative;
    letter-spacing: 0px;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.rtl .pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color){
	padding:  60px 70px 25px 0;
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) a {
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) a:hover {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-blog-classic blockquote {
	border-color: var(--pbmit-gudfin-global-color);
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) p {
	margin-bottom: 20px;
    padding-bottom: 25px;
	position: relative;
	z-index: 1;
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.8);
	border-bottom: 1px solid rgba( var(--pbmit-gudfin-white-color-rgb), 0.2);
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color)::before {
	font-family: "pbminfotech-base-icons";
    content: "\e842";
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    position: absolute;
    left: 44px;
    top: 50px;
    color: var(--pbmit-gudfin-secondary-color);
    background-color: var(--pbmit-gudfin-white-bg-color);
}
.rtl .pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color)::before{
	left: inherit;
	right: 44px;
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) cite{
    display: inline-block;
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) cite em {
	position: relative;
}
.pbmit-blog-classic blockquote:not(.wp-block-quote):not(.has-text-color) cite em::before {
	content: '-';
	padding-right: 5px;
	display: inline-block;
}
.pbmit-blog-classic .pbmit-entry-content .has-text-color strong {
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-blog-classic blockquote .authorOrTitle {
	display: block;
	margin-top: 15px;
	font-size: 14px;
	line-height: 15px;
}
.wp-block-quote.is-style-large cite::before {
	display: none;
}
blockquote.wp-block-quote.is-style-large {
	padding: 40px 48px 50px;
	margin-top: 62px;
	margin-bottom: 30px;
}
blockquote small {
	display: block;
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
	font-style: normal !important;
	margin-top: 15px;
	opacity: 1;
	font-weight: 500;
	letter-spacing: 1.2px;
}
.wp-block-pullquote.is-style-solid-color blockquote {
	background-color: var(--pbmit-gudfin-white-color);
}
blockquote cite,
blockquote small {
	display: block;
    font-size: 20px;
    line-height: 30px;
    font-style: normal !important;
    letter-spacing: 0;
    color: var(--pbmit-gudfin-global-color);
}
blockquote cite em,
blockquote small em {
	font-style: normal;
}
.pbmit-blog-classic-inner .wp-block-column p {
	margin-right: 35px;
}
.pbmit-blog-classic .pbmit-read-more-link a:hover {
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-blog-classic .pbmit-read-more-link a {
	margin-top: 20px;
}
article .pbmit-blog-classic .pbmit-img-wrapper .pbmit-meta-cat{
	position: absolute;
	top: 30px;
	left: 30px;
}
.pbmit-blog-meta-top .pbmit-meta {
	margin-bottom: 5px;
}
.pbmit-blog-classic .pbmit-img-wrapper .pbmit-meta-cat a {
	font-size: 13px;
	line-height: 20px;
	display: inline-block;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 0;
	padding: 4px 15px 4px 15px;
	border-radius: 15px;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-blog-classic .pbmit-img-wrapper .pbmit-meta-cat a:hover{
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-blog-classic .pbmit-meta:nth-child(3)::before,
.pbmit-blog-classic .pbmit-meta:last-child::before {
	content: unset;
	position: inherit;
}
.pbmit-blog-classic .pbmit-blog-meta-top .pbmit-meta .pbmit-author-link {
	margin-left: 5px;
}
.pbmit-team-single .pbmit-entry-content span > u,
.pbmit-portfolio-single .pbmit-entry-content span > u,
.single .pbmit-blog-classic .pbmit-entry-content span > u {
	text-underline-offset: 2px;
}
.pbmit-no-img .pbmit-blog-classic .pbmit-img-wrapper .pbmit-meta-cat,
.pbmit-no-img .pbmit-blog-classic .pbmit-img-wrapper .pbmit-feature-meta-data {
	display: none;
}
/*=== pbmit-blog-single-list ===*/
.pbmit-blog-single-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.pbmit-blog-single-list li {
	position: relative;
	margin-bottom: 10px;
}
.pbmit-blog-single-list li::before {
	counter-increment: listnumber;
	content: counters(listnumber, '.')  '.';
	padding-right: 8px;
	font-weight: 600;
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-blog-single-list li span {
	font-weight: 600;
	position: relative;
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-blog-single-list li span::after {
	content: ':';
	padding: 0 2px 0 5px;
	display: inline-block;
}
/*===Classic Social media===*/
.pbmit-blog-classic .pbmit-blog-meta-social-share .pbmit-social-icon {
	height: 60px;
	text-align: center;
	width: 60px;
	line-height: 60px;
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-blog-classic .pbmit-blog-meta-social-share {
	position: absolute;
	right: 30px;
	bottom: 35px;
	z-index: 1;
}
.pbmit-blog-classic .pbmit-blog-meta-social-share .pbmit-social-share {
	content: '';
	position: absolute;
	right: 100%;
	top: 0;
	width: max-content;
	height: 100%;
	opacity: 0;
	z-index: -1;
	transition: all 500ms ease;
	margin-right: -30px;
}
.pbmit-blog-classic .pbmit-blog-meta-social-share:hover .pbmit-social-share {
	opacity: 1;
	transform: translateX(-30px) translateZ(0px);
}
.pbmit-blog-classic .pbmit-blog-meta-social-share .pbmit-social-share li a {
	border: 0;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	display: block;
	color: var(--pbmit-gudfin-white-color);
	border-radius: 50%;
}
.pbmit-blog-classic .pbmit-blog-meta-social-share .pbmit-social-share li {
	display: inline-block;
	padding-right: 6px;
}
.pbmit-blog-classic .pbmit-blog-meta-social-share .pbmit-social-share li i {
	font-size: 17px;
	padding: 0;
}
.pbmit-blog-classic .pbmit-blog-meta span.pbmit-meta:last-child::after {
	content: unset;
}
body.rtl .pbmit-blog-classic .pbmit-blog-meta span.pbmit-meta:not(:first-child) {
	padding: 0 6px 0 0;
}
/*=== Single Post ===*/
.dropcap {
	position: relative;
	z-index: 1;
	float: left;
	width: 40px;
	height: 50px;
	padding-top: 1px;
	margin-top: 0px;
	margin-right: calc(0.2em + -5px);
	font-size: 50px;
	line-height: 50px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--pbmit-gudfin-blackish-color);
	text-align: center;
	overflow: hidden;
	background-color: transparent;
	display: block;
}
.rtl .dropcap {
	float: right;
	margin-left: calc(0.2em + 6px);
	margin-right: 0;
}
.single-post .pbmit-no-img .pbmit-blog-classic .pbmit-meta-category-wrapper {
	left: 0px;
}
.single-post .pbmit-blog-classic .pbmit-meta-date-wrapper {
	display: none;
}
.single-post .pbmit-blog-classic .pbmit-post-title {
	margin-bottom: 25px;
}
.single-post .pbmit-blog-list-ele .wp-block-columns {
	margin-bottom: 15px;
}
.single-post .pbmit-blog-list-ele li{
	display: flex;
	align-items: self-start;
	font-size: 16px;
	line-height: 24px;
	margin: 15px 0;
	color: var(--pbmit-gudfin-blackish-color);
	font-weight: 500;
}
ul.pbmit-blog-list-number {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-gap: 20px 30px;
    grid-template-columns: repeat(2, 1fr);
}
ul.pbmit-blog-list-number li span {
	display: block;
    color: var(--pbmit-gudfin-secondary-color);
    padding-bottom: 8px;
}
ul.pbmit-blog-list-number li {
	padding-bottom: 8px;
}
ul.pbmit-blog-list-number li:last-child {
	padding-bottom: 0;
}
ul.pbmit-blog-list-ele {
	list-style: none;
	padding: 0;
	margin: 10px 0 30px 0;
	line-height: 40px;
}
.pbmit-blog-title {
	font-size: 28px;
	line-height: 38px;
	font-weight: 500;
}
ul.pbmit-blog-list-ele > li > i {
	font-size: 25px;
	line-height: 26px;
	margin-right: 10px;
	top: -1px;
	position: relative;
	color: var(--pbmit-gudfin-global-color);
}
.rtl ul.pbmit-blog-list-ele>li>i {
	margin: 0 0 0 10px;
}
.single-post .pbmit-blog-classic-inner .pbmit-entry-content h2.pbmit-title,
.pbmit-blog-classic .pbmit-blog-classic-inner h3.pbmit-post-title {
	margin-bottom: 20px;
	font-size: 36px;
	line-height: 40px;
}
.single-post .pbmit-blog-classic-inner .pbmit-entry-content h4 {
	margin-bottom: 20px;
}
.single-post .content-area.col-md-9 .single-post .pbminfotech-sidebar.col-md-3 {
	padding-right: 20px;
	padding-left: 20px;
}

.pbmit-comment-content .pbmit-comment-author .pbmit-comment-author-inner a,
.pbmit-comment-content .pbmit-comment-author .pbmit-comment-author-inner{
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-comment-content .pbmit-comment-author .pbmit-comment-author-inner a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.comments-area .form-submit {
	z-index: 1 !important;
	padding-bottom: 0;
}
.comments-area .form-submit input::before {
	display: none;
}
.comments-area .form-submit input {
	margin: 0;
}
/*=== Sticky post ===*/
.post.sticky {
	overflow: hidden;
	margin-bottom: 60px;
}
.post.sticky .pbmit-blog-classic {
	position: relative;
	border: 10px solid var(--pbmit-gudfin-global-color);
}
.pbmit-no-img.post.sticky .pbmit-blog-classic {
	padding: 70px 39px 40px 37px;
}
.post.sticky .pbmit-blog-classic .pbmit-blog-meta-wrapper {
	border-top-color: rgb(255 255 255 / 36%);
}
.post.sticky .pbmit-blog-classic .pbmit-meta-category-wrapper {
	left: 0px;
	background-color: var(--pbmit-gudfin-secondary-color);
}
.post.sticky .pbmit-blog-classic code {
	padding: 2px 6px;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.post.sticky .pbmit-blog-classic .pbmit-blog-classic-inner,
.post.sticky .pbmit-blog-classic {
	background-color: transparent;
}
.post.sticky .pbmit-blog-classic .pbmit-blog-classic-inner {
	padding: 0px;
	border: 0;
	box-shadow: none;
}
.post.sticky .pbmit-read-more-link a::after {
	background-color: #272727;
}
.post.sticky .pbmit-blog-classic {
	margin-bottom: 0px;
	box-shadow: none;
	overflow: visible;
	border-radius: 0;
}
.post.sticky .pbmit-blog-classic::after {
	font-family: "pbminfotech-base-icons";
	content: "\e830";
	font-size: 25px;
	position: absolute;
	opacity: 1;
	right: 0px;
	top: 0px;
	padding: 0;
	width: 50px;
	line-height: 50px;
	height: 50px;
	text-align: center;
	border-radius: 0;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.single .pbmit-post-related .pbmit-element-posts-wrapper .pbmit-post-ele {
	margin-bottom: 0;
}
.single.single-post.pbmit-sidebar-no .site-main {
	padding: 0 128px;
}
/*=== Single-blog-meta-bottom ===*/
.pbmit-blog-meta-bottom {
	display: -ms-flexbox !important;
	display: flex !important;
	align-items: center;
}
.pbmit-blog-meta-bottom .pbmit-meta-tags .pbmit-meta-title {
	color: #424d6c;
	font-size: 16px;
	font-weight: 600;
}
.pbmit-blog-meta-bottom .pbmit-meta-tags {
	display: block;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
}
body.rtl .pbmit-blog-meta-bottom .pbmit-meta-tags {
	text-align: right;
}
.pbmit-blog-meta-bottom .pbmit-meta-tags a {
	margin: 0 5px 5px 0px;
	border: none;
}
body.rtl .pbmit-blog-meta-bottom .pbmit-meta-tags a {
	margin-left: 5px;
	margin-right: 0;
}
.pbmit-blog-meta-bottom-right {
	width: 50%;
	text-align: right;
}
body.rtl .pbmit-blog-meta-bottom-right {
	text-align: left;
}
.pbmit-blog-meta-bottom ul {
	margin: 0;
	padding: 0;
}
.pbmit-blog-meta-bottom ul li {
	margin-right: 5px;
	display: inline-block;
	margin-bottom: 5px;
}
.pbmit-blog-meta-bottom ul li:last-child {
	margin: 0;
}
.pbmit-blog-meta-bottom .pbmit-social-share li a {
	position: relative;
    display: block;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    color: var(--pbmit-gudfin-white-color);
    font-size: 14px;
    border-radius: 50px;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.pbmit-blog-meta-bottom .pbmit-social-share li a:hover {
	transform: translate(0, -3px);
}
.pbmit-blog-meta-bottom .pbmit-tag-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	line-height: 45px;
	font-size: 18px;
	text-align: center;
	background: var(--pbmit-gudfin-white-color);
	margin: 0 auto;
	display: none;
}
.pbmit-blog-meta-bottom-left {
	position: relative;
	overflow: hidden;
	width: 50%;
}
/* --------------------------------------
* Portfolio Section
* ---------------------------------------*/
.pbminfotech-overlay-box:hover img {
	transform: scale(1, 1);
	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-ms-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	filter: blur(4px);
	-webkit-filter: blur(1px);
	-moz-filter: blur(1px);
	-ms-filter: blur(1px);
	-o-filter: blur(1px);
}
/*=== Portfolio Single ===*/
.pbmit-portfolio-single .pbmit-featured-wrapper img{
	border-radius: 5px;
	width: 100%;
}
.pbmit-sep-heading {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 35px;
}
.pbmit-sep-heading::after {
	position: absolute;
	content: "";
	width: 72px;
	height: 2px;
	bottom: 0;
	left: 0;
}
/*=== pbmit-portfolio-single-style-1===*/
.pbmit-portfolio-single .pbmit-short-description::first-letter{
	font-size: 50px;
	line-height: 50px;
	float: left;
	margin-right: 15px;
	color: var(--pbmit-gudfin-secondary-color);
}
/*=== pbmit-portfolio-lines-wrapper ===*/
.pbmit-portfolio-single .pbmit-desc-info {
	padding-bottom: 30px;
}
.pbmit-portfolio-single .pbmit-desc-info .pbmit-portfolio-line-title {
	font-size: 34px;
	line-height: 38px;
	margin-bottom: 30px;
}
.pbmit-portfolio-single .pbmit-single-project-details-list-wrapper {
	padding-bottom: 50px;
}
.pbmit-portfolio-single .pbmit-portfolio-lines-wrapper {
	padding: 45px 40px 35px 40px;
    border-radius: 0 0 5px 5px;
    margin-top: -10px;
	background-color: var(--pbmit-gudfin-blackish-bg-color);
}
.pbmit-portfolio-lines-wrapper ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
}
.pbmit-portfolio-lines-wrapper ul li {
	position: relative;
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-title{
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0;
	position: relative;
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-value {
	display: block;
	font-size: 16px;
	line-height: 24px;
	color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.7);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-li a {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-li a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-portfolio-lines-wrapper li.pbmit-portfolio-line-li {
    padding-left: 75px;
    position: relative
}
.pbmit-portfolio-lines-wrapper li.pbmit-portfolio-line-li::after {
    position: absolute;
    content: '\e850';
    font-family: "pbminfotech-base-icons";
    width: 55px;
    height: 55px;
    line-height: 55px;
    left: 0;
    top: -4px;
    text-align: center;
    background-color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.1);
    border-radius: 50%;
    color: var(--pbmit-gudfin-white-color);
    font-size: 25px
}
.pbmit-portfolio-lines-wrapper li.pbmit-portfolio-line-li.Timeline::after {
 	content: '\e84b';
}
.pbmit-portfolio-lines-wrapper li.pbmit-portfolio-line-li.Location::after {
 	content: '\e84d';
}
.pbmit-portfolio-lines-wrapper li.pbmit-portfolio-line-li.Category::after {
 	content: '\e851';
}
.pbmit-single-project-details-list-wrapper .pbmit-portfolio-info-title {
    padding-right: 60px;
	width: 63.5%;
}
.pbmit-single-project-details-list-wrapper .pbmit-list-area {
    padding-left: 0;
	width: 36.5%;
}
.pbmit-single-project-details-list-wrapper .pbmit-list-area ul {
    list-style: none;
    padding: 0;
}
.pbmit-single-project-details-list-wrapper .pbmit-list-area ul li {
	font-size: 16px;
	color: var(--pbmit-gudfin-blackish-color);
	padding-left: 35px;
	position: relative;
	padding-bottom: 15px;
}
.pbmit-single-project-details-list-wrapper .pbmit-list-area ul li::after {
	content: '\e83b';
	font-family: "pbminfotech-base-icons";
	position: absolute;
	left: 0;
	top: 1px;
    font-size: 25px;
    line-height: 25px;
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-list-area .pbmit-icon-heading-wrapper h6 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 500 !important;
}
.pbmit-list-area .pbmit-icon-heading-wrapper {
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 25px;
    padding-bottom: 0px;
    padding-top: 65px;
}
.pbmit-list-area .pbmit-icon-heading-one {
    padding: 0 30px 0 35px;
	position: relative;
}
.pbmit-list-area .pbmit-icon-heading-two {
	padding-left: 35px;
	position: relative;
}
.pbmit-list-area .pbmit-icon-heading-two::after,
.pbmit-list-area .pbmit-icon-heading-one::after {
    position: absolute;
    content: '\e853';
    font-family: "pbminfotech-base-icons";
    line-height:25px;
    left: 0;
    top: 2px;
    color: var(--pbmit-gudfin-global-color);
    font-size: 26px;
}
.pbmit-list-area .pbmit-icon-heading-one::after {
	content: '\e852';
}
/*=== single-pbmit-service ===*/
.archive .pbminfotech-ele-portfolio {
	margin-bottom: 30px;
}
.pbmit-sortable-list-ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
	display: block;
	text-align: center;
}
.pbmit-sortable-list-ul li {
	display: inline-block;
}
.pbmit-sortable-list-ul li::before {
	content: ' ';
	margin: 0 10px;
}
.pbmit-sortable-list-ul li:first-child::before {
	display: none;
}
.pbmit-sortable-list a {
	display: inline-block;
	font-size: 16px;
	padding: 8px 20px;
	font-weight: 500;
	min-width: 100px;
	border-radius: 20px;
}
.pbmit-sortable-list a.pbmit-selected {
	background: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
}
/* --------------------------------------
* Team Member Section
* ---------------------------------------*/
.pbminfotech-ele-team .pbminfotech-overlay {
	background-color: rgba(var(--pbmit-gudfin-global-color-rgb), 0.50);
}
/*=== single-pbmit-teammember ===*/
.pbmit-team-summary .pbmit-team-designation {
	color: var(--pbmit-gudfin-blackish-color);
	background-color: var(--pbmit-gudfin-global-color);
    font-size: 12px;
    line-height: 26px;
    display: inline-block;
	padding: 2px 13px;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: 0.96px;
}
.pbmit-team-single-style-2 .pbmit-single-team-info {
	margin-top: 0px;
}
.pbmit-team-single-style-2 .pbmit-team-summary .pbmit-team-title {
    font-size: 44px;
    line-height: 45px;
}
.pbmit-team-single-style-2 .pbmit-team-detail .pbmit-short-description {
    margin: 15px 0 25px;
	padding: 0;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pbmit-team-single-style-2 .pbmit-team-summary .pbmit-team-designation{
	margin-bottom: 10px;
}
.pbmit-team-summary .pbmit-team-title {
	font-size: 48px;
	line-height: 50px;
	letter-spacing: -0.48px;
	margin-bottom: 0;
}
.pbmit-team-single-style-1 .pbmit-team-summary .pbmit-team-title{
    margin: 10px 0 20px 0;
}
.pbmit-team-detail .pbmit-short-description {
	padding-bottom: 25px;
}
.pbmit-team-single .pbmit-team-detail .pbmit-single-team-info li span {
	font-size: 18px;
	line-height: 26px;
	display: block;
	color: var(--pbmit-gudfin-white-color);
}
.single-pbmit-team-member #secondary{
	padding-top: 0px;
}
.tax-pbmit-team-group.pbmit-sidebar-no #primary.content-area {
	margin-top: 60px;
}
.tax-pbmit-team-group .pbmit-element-team-wrapper {
	margin-top: 40px;
}
.pbmit-team-single-pbar {
	margin-top: 60px;
}
.pbmit-single-team-info {
	grid-gap: 40px 0px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    padding: 60px 50px 57px 60px;
    background: var(--pbmit-gudfin-blackish-color);
    border-radius: 5px;
	margin-top: 10px;
	position: relative;
}
.pbmit-single-team-info::before,
.pbmit-single-team-info::after {
    content: "";
    position: absolute;
    width: 108px;
    height: 30px;
    top: 0px;
    background-color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.1);
    right: 0px !important;
    left: inherit !important;
}
.pbmit-single-team-info::before {
	width: 30px;
    height: 108px;
}
.pbmit-single-team-info li {
	border-bottom: 1px solid rgba(var(--pbmit-gudfin-white-color-rgb), 0.1);
	margin-bottom: 0;
	padding-bottom: 42px;
	position: relative;
	padding-left: 70px;
}
.pbmit-single-team-info li::after {
	content: "\e835";
    font-family: pbminfotech-base-icons;
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 23px;
    z-index: 1;
    width: 55px;
    height: 55px;
    line-height: 55px;
    display: inline-block;
    text-align: center;
    background-color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.1);
    color: var(--pbmit-gudfin-white-color);
    border-radius: 50px;
    transition: 0.4s;
}
.pbmit-single-team-info li.email::after{
	content: "\e821";
}
.pbmit-single-team-info li.phone::after {
	content: "\e847";
}
.pbmit-single-team-info li.location::after {
	content: "\e848";
}
.pbmit-single-team-info li.position::after {
	content: "\e846";
}
.pbmit-single-team-info li:nth-last-child(2),
.pbmit-single-team-info li:last-child {
	border: none;
	padding-bottom: 0;
}
.pbmit-single-team-info li,
.pbmit-single-team-info li a {
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.7);
	font-size: 16px;
	line-height: 28px;
}
.pbmit-single-team-info li a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-team-left-inner {
	background: none;
}
.pbmit-team-single .pbmit-entry-content {
	margin: 0;	
}
.pbmit-team-single .pbmit-entry-content .elementor-widget-text-editor p {
	margin-bottom: 0;
}
.pbmit-team-share-btn .pbmit-team-box-links {
    align-items: center;
	justify-content: center;
}
.pbmit-team-share-btn .pbmit-team-box-links h6 {
	font-size: 18px;
	margin-bottom: 5px;
	padding-right: 15px;
}
/*=== pbmit-team-single-style-1 ===*/
.pbmit-team-single-style-1 .pbmit-team-social-links a{
	color: var(--pbmit-gudfin-blackish-color);
	border: 1px solid rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.1);
}
.pbmit-team-single-style-2 .pbmit-team-single-info .pbmit-team-bottom{
	overflow: hidden;
}
.pbmit-team-single-style-1 .pbmit-team-single .pbmit-team-detail {
	padding-bottom: 40px;
}
.pbmit-team-single-style-1 .pbmit-team-single .pbmit-featured-wrapper img {
	width: 100%;
	box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.15);
}
.pbmit-team-single-style-1 .pbmit-team-single .pbmit-featured-wrapper img {
	border-radius: 5px;
}
.pbmit-team-single-style-1 .pbmit-team-single .pbmit-entry-content {
	padding: 0 0 0 15px;
}
.pbmit-team-single-style-1 .pbmit-team-left-wrapper {
    padding-right: 17px;
}
.pbmit-team-single-style-1  .pbmit-team-share-btn {
    background: #fff;
    text-align: center;
    padding: 25px 20px 50px;
    border-radius: 5px;
    margin-top: -50px;
    margin: -50px 15px 0;
    z-index: 1;
    position: relative;
}
.single.single-pbmit-team-member .pbmit-team-single-style-1 .pbmit-sticky-col {
	padding-top: 100px;
}
/*=== Single Team Member Style 2 ===*/
.pbmit-team-single-style-2 .pbmit-featured-wrapper img {
	border-radius: 10px;
}
.pbmit-team-single-style-2 .pbmit-team-image-wrap{
	position: relative;
	text-align: center;
}
.pbmit-team-single-style-2 .pbmit-team-image-wrapper{
	padding: 0 30px 0 0;
}
.pbmit-team-single-style-2 .pbmit-team-social-wrap{
	position: absolute;
	bottom: 20px;
    width: 100%;
	padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pbmit-team-single-style-2 .pbmit-single-team-info {
	grid-gap: 35px 0px;
}
.pbmit-team-single-style-2 .pbmit-team-single-info {
    margin-bottom: 50px;
}
.pbmit-team-single-style-2 .pbmit-team-single-info .pbmit-team-bottom {
	display: block;
	border-bottom: 1px solid rgba(var(--pbmit-gudfin-secondary-color-rgb),0.3);
	text-align: right;
}
.pbmit-team-single-style-2 .pbmit-team-single-info .pbmit-team-bottom .pbmit-team-designation {
	font-size: 100px;
    line-height: 100px;
    font-weight: 700;
	display: block;
	text-transform: uppercase;
    -webkit-text-size-adjust: 0%;
    overflow: visible !important;
    text-shadow: 1px 1px 0 rgba(var(--pbmit-gudfin-secondary-color-rgb),0.2), -1px -1px 0 rgba(var(--pbmit-gudfin-secondary-color-rgb),0.2), 1px -1px 0 rgba(var(--pbmit-gudfin-secondary-color-rgb),0.2), -1px 1px 0 rgba(var(--pbmit-gudfin-secondary-color-rgb),0.2), 1px 1px 0 rgba(var(--pbmit-gudfin-secondary-color-rgb),0.2);
    color: var(--pbmit-gudfin-body-bg-color);
    -webkit-text-fill-color: inherit;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: rgba(var(--pbmit-gudfin-global-color-rgb), 0.3);
	margin-bottom: -12px;
}
/*--- sidebar ---*/
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-1 .pbmit-team-single .pbmit-team-left-inner {
	margin-bottom: 50px;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-1 .pbmit-team-single .pbmit-entry-content {
	padding: 0;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-team-single .pbmit-team-detail,
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-team-single .pbmit-team-detail-wrapper {
	width: 100%;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-featured-wrapper {
	text-align: left;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-featured-wrapper img {
	width: 100%;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-team-detail-wrapper .pbmit-featured-img-wrapper {
	padding: 0 0 50px 0;
}
.pbmit-sidebar-exists .pbmit-team-single-style-2 .pbmit-team-image-wrapper{
	padding: 0;
}
.pbmit-sidebar-exists .content-area .pbmit-team-single-style-2 .pbmit-team-detail-wrapper .pbmit-featured-img-wrapper{
	padding: 0;
}
/* --------------------------------------
 * Post navigation
 * ---------------------------------------*/
/*=== Post navigation ===*/
.post-navigation .nav-links {
	margin-top: 0;
	margin-bottom: 0;
	padding: 40px 0 0 0;
	margin: 40px 0 0 0;
	display: -ms-flexbox;
	display: flex;
	align-items: normal;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.1);
}
.post-navigation .nav-links .nav-previous {
	margin-right: auto;
}
.post-navigation .nav-links .nav-next {
	margin-left: auto;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
	width: calc(50% - 15px);
}
.post-navigation .nav-links .nav-next a,
.post-navigation .nav-links .nav-previous a {
	display: flex;
	align-items: center;
}
.post-navigation .nav-links .nav-previous a {
	text-align: left;
}
.post-navigation .nav-links .nav-next a {
	text-align: right;
}
.post-navigation .nav-links .nav-next a {
	justify-content: end;
}
.post-navigation .nav-links .pbmit-nav-thumbnail img {
	width: 90px;
	height: 90px;
	min-height: 90px;
	max-width: 90px;
	border-radius: 50%;
}
.post-navigation .nav-links .nav-previous .pbmit-nav-thumbnail {
	margin-right: 25px;
}
.post-navigation .nav-links .nav-next .pbmit-nav-thumbnail {
	margin-left: 25px;
}
.post-navigation .nav-links a .pbmit-nav-wrapper * {
	display: block;
}
.post-navigation .nav-links .pbmit-nav-wrapper .pbmit-nav-head {
	font-size: 14px;
    line-height: 20px;
	margin-bottom: 17px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #7C898D;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
	position: relative;
}
.post-navigation .nav-links .nav-previous .pbmit-nav-wrapper .pbmit-nav-head {
	padding-left: 43px;
}
.post-navigation .nav-links .nav-previous .pbmit-nav-wrapper .pbmit-nav-head::after{
	position: absolute;
	left: 0;
	margin: 0;
	top: -7px;
	transform: scale(-1);
}
.post-navigation .nav-links .pbmit-nav-wrapper .pbmit-nav-head::after {
	font-family: 'pbminfotech-base-icons';
    content: "\e82f";
    font-style: normal;
    text-align: center;
	display: inline-block;
    font-size: 11px;
    border: 1px solid #e4e4e4;
    width: 33px;
    height: 33px;
    line-height: 33px;
    border-radius: 50px;
	margin-left: 10px;
    color: var(--pbmit-gudfin-blackish-color);
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
}
.post-navigation .nav-links a:hover .pbmit-nav-wrapper .pbmit-nav-head::after {
	background-color: var(--pbmit-gudfin-global-color);
	border-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-color);
	 -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
}
.post-navigation .nav-links .pbmit-nav-wrapper .pbmit-nav-title {
	font-size: 20px;
	line-height: 22px;
	color: var(--pbmit-gudfin-secondary-color);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	text-transform: capitalize;
}
.post-navigation .nav-links a:hover .pbmit-nav-wrapper .pbmit-nav-head {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-portfolio-single .post-navigation .nav-links {
	padding: 50px 0 0 0;
	margin: 70px 0 0 0;
}
/* --------------------------------------
 * Contact Form 7
 * ---------------------------------------*/
.wpcf7-form .input-group {
	display: block;
	margin-bottom: 20px;
}
.pbmit-form .input-group textarea{
	padding-top: 20px;
	line-height: 20px;
}
.pbmit-form.pbmit-contact-form .input-group textarea {
	height: 150px;
}
.pbmit-form .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}
.pbmit-form .wpcf7-checkbox .wpcf7-list-item:not(:last-child) label {
	margin-right: 20px;
}
.pbmit-form .wpcf7-form-control .wpcf7-list-item:first-child {
	margin-left: 0;
}
.pbmit-form .input-group p {
	margin-bottom: 20px;
}
/*Appointment Form */
.pbmit-appointment-form input,
.pbmit-appointment-form textarea,
#page .pbmit-appointment-form .select2-container--default .select2-selection--single{
	border: none;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-appointment-form .pbmit-form-btn{
	height: 190px;
	width: 190px;
	padding: 20px;
	text-align: center;
	border-radius: 50%;
	background: radial-gradient(56.09% 56.09% at 50% 43.91%, rgba(var(--pbmit-gudfin-secondary-color-rgb), 0.70) 0%, var(--pbmit-gudfin-secondary-color) 100%);
	transform: perspective(100px) rotateY(-3deg);
	transition: 0.9s;
}
.pbmit-appointment-form .pbmit-form-btn:hover {
	transform: rotateY(10deg);
}
.pbmit-appointment-form .row{
	align-items: center;
}
.pbmit-appointment-form .row.pbmit-input-field{
	margin: 0 -5px;
}
.pbmit-appointment-form .row.pbmit-input-field>*{
	padding: 0 5px;
}
.pbmit-appointment-form .input-group,
.pbmit-appointment-form .input-group p{
	margin-bottom: 10px;
}
.pbmit-appointment-form .input-group.input-button p,
.pbmit-appointment-form .input-group.input-button{
	margin: 0;
}
.pbmit-elementor-bg-color-light .pbmit-appointment-form input,
.pbmit-elementor-bg-color-light .pbmit-appointment-form textarea,
#page .pbmit-elementor-bg-color-light .pbmit-appointment-form .select2-container--default .select2-selection--single{
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-appointment-form .pbmit-form-btn{
	background: radial-gradient(56.09% 56.09% at 50% 43.91%, rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.70) 0%, var(--pbmit-gudfin-blackish-color) 100%);
}
.pbmit-appointment-form .select2.select2-container--open {
	border: 1px solid rgba(var(--pbmit-gudfin-blackish-color-rgb),0.1);
}
.pbmit-appointment-form .select2.select2-container--below.select2-container--open {
	border-radius: 10px 10px 0 0;
	border-bottom: none;
}
.pbmit-appointment-form .select2.select2-container--open.select2-container--above {
	border-radius: 0 0 10px 10px;
	border-top: none;
}
/*Slider Form */
.pbmit-appointment-form-two .input-group,
.pbmit-appointment-form-two .input-group p,
.pbmit-slider-form .input-group,
.pbmit-slider-form .input-group p {
	margin-bottom: 12px;
}
.pbmit-appointment-form-two .pbmit-form-group-one .col-sm-12:nth-child(even),
.pbmit-slider-form .pbmit-form-group-one .col-sm-12:nth-child(even) {
	padding-left: 6px;
}
.pbmit-appointment-form-two .pbmit-form-group-one .col-sm-12:nth-child(odd),
.pbmit-slider-form .pbmit-form-group-one .col-sm-12:nth-child(odd) {
	padding-right: 6px;
}
.pbmit-slider-form.pbmit-form input[type="date"]::-webkit-calendar-picker-indicator,
.pbmit-slider-form.pbmit-form input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(0.6);
}
.pbmit-slider-form input[type="date"],
.pbmit-slider-form input[type="number"],
.pbmit-slider-form input[type="text"],
.pbmit-slider-form input[type="email"],
.pbmit-slider-form input[type="password"],
.pbmit-slider-form input[type="tel"],
.pbmit-slider-form input[type="url"],
.pbmit-slider-form input[type="search"],
.pbmit-slider-form select,
.pbmit-slider-form textarea {
	border: 1px solid rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.1);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
#page .pbmit-slider-form .select2-container--default .select2-selection--single {
	border: 1px solid rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.1);
	background-color: var(--pbmit-gudfin-white-bg-color);
}

.pbmit-appointment-form-two .input-group.input-button,
.pbmit-slider-form .input-group.input-button {
	justify-content: center;
	display: flex;
	margin-top: 13px;
}
.pbmit-appointment-form-two .input-button .pbmit-form-btn,
.pbmit-slider-form .input-button .pbmit-form-btn {
	display: flex;
	justify-content: center;
	padding: 0;
	background-color: transparent;
}
.pbmit-form-btn .pbmit-slider-button-text {
	border-radius: 50px;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
	transition: all 0.4s ease;
	display: inline-flex;
	padding: 0 !important;
}
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text {
	position: relative;
	display: inline-block;
}
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text {
	transition: all ease 0.4s;
	transform-style: preserve-3d;
}
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-hover,
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal {
	display: block;
	transition: all ease 0.4s;
	transform-style: preserve-3d;
}
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-hover {
	display: block;
	top: 100%;
	height: 100%;
	position: absolute;
	transition: all ease 0.4s;
	transform-style: preserve-3d;
}
.pbmit-form-btn .pbmit-button-icon-wrapper {
	font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    border-radius: 50px;
    transition: all 0.4s ease;
    background-color: var(--pbmit-gudfin-white-color);
    color: var(--pbmit-gudfin-blackish-color);
    margin-left: 12px;
}
@media (max-width: 400px) {
  	.pbmit-form-btn .pbmit-button-icon-wrapper {
  		width: 48px;
	}
}
.pbmit-appointment-form-two .pbmit-form-btn .pbmit-slider-button-text {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-appointment-form-two .pbmit-form-btn .pbmit-button-icon-wrapper {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/* --------------------------------------
* Client Logo Section
* ---------------------------------------*/
.pbmit-client-wrapper {
	position: relative;
	text-align: center;
	z-index: 1;
	height: -webkit-max-content;
	display: inline-block;
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
}
.owl-carousel .pbminfotech-ele-client img {
	width: auto !important;
	max-width: 100%;
	display: inline-block !important;
}
/* --------------------------------------
* Progress Bar Section
* ---------------------------------------*/
body .elementor-progress-bar {
	background-color: var(--pbmit-gudfin-global-color);
	border-radius: 100px;
}
body .elementor-element .elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar{
	background-color: var(--pbmit-gudfin-global-color);
}
body .elementor-progress-percentage {
	padding-right: 0;
	position: absolute;
	right: 0;
	left: auto;
	top: -28px;
	font-size: 14px;
    line-height: 18px;
	color: var(--pbmit-gudfin-secondary-color);
}
body.rtl .elementor-progress-percentage {
	left: 10px;
	right: inherit;
	padding-left: 0;
}
body .elementor-widget-progress .elementor-title {
	font-size: 16px;
	line-height: 20px;
	position: relative;
	top: -6px;
}
body .elementor-progress-wrapper {
	overflow: visible !important;
	padding: 2px;
	border-radius: 50px;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
body .elementor-widget-progress .elementor-title {
	color: var(--pbmit-gudfin-blackish-color);
}
body .pbmit-elementor-bg-color-light .elementor-progress-wrapper {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
body .pbmit-elementor-bg-color-blackish .elementor-progress-percentage,
body .pbmit-elementor-bg-color-secondary .elementor-progress-percentage,
body .pbmit-elementor-bg-color-globalcolor .elementor-progress-percentage,
body .pbmit-elementor-bg-color-blackish .elementor-widget-progress .elementor-title,
body .pbmit-elementor-bg-color-secondary .elementor-widget-progress .elementor-title {
	color: var(--pbmit-gudfin-white-color);
}
/* --------------------------------------
* Service Style
* ---------------------------------------*/
.pbmit-service-icon img,
.pbmit-service-icon svg{
	width: 1em;
	height: 1em;
}
.pbmit-service-icon svg{
	fill: var(--pbmit-gudfin-blackish-color);
}
.pbmit-service-icon{
	font-size: 40px;
	line-height: 40px;
}
.pbmit-sidebar-exists .site-content.container .pbmit-service-single-style-1 .container {
	padding: 0;
}
/* --------------------------------------
* Timebox List Section
* ---------------------------------------*/
ul.pbmit-timelist-list {
	padding: 0px;
	margin: 0;
}
ul.pbmit-timelist-list li {
	list-style: none;
	padding: 5px 0px;
}
ul.pbmit-timelist-list li:first-child {
	padding-top: 0;
}
ul.pbmit-timelist-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
ul.pbmit-timelist-list .pbmit-timelist-li-value {
	float: right;
}
.rtl ul.pbmit-timelist-list .pbmit-timelist-li-value{
	float: left;
}
ul.pbmit-timelist-list li .pbmit-timelist-li-title {
	font-weight: 400;
	font-size: 15px;
}
.pbmit-timelist-ele-wrapper p {
	color: var(--pbmit-gudfin-global-color);
	font-style: italic;
	font-size: 13px;
}
ul.pbmit-timelist-list .pbmit-timelist-li-value {
	color: #ffffff;
}
.pbmit-element-timetable-list-style-1 .pbmit-element-posts-wrapper {
	display: inline-block;
}
.pbmit-element-timetable-list-style-1 .pbmit-timetable-wrapper {
	border-radius: 20px;
	padding: 20px 40px 30px 40px;
	position: relative;
}
.pbmit-element-timetable-list-style-1 .pbmit-timetable-wrapper::before {
	position: absolute;
	content: '';
	border-radius: 20px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: var(--pbmit-gudfin-secondary-color);
	-webkit-mask: url(../images/titmetable-bg.png) bottom right no-repeat;
	mask: url(../images/titmetable-bg.png) top left no-repeat;
	mask-size: cover;
}
.pbmit-element-timetable-list-style-1 .pbmit-ihbox-icon {
	position: absolute;
	top: 5px;
	left: 5px;
}
.pbmit-element-timetable-list-style-1 .pbmit-icon-type-icon svg {
	width: 45px;
	height: 45px;
	fill: var(--pbmit-gudfin-global-color);
}
.pbmit-element-timetable-list-style-1 .pbmit-timetable-title {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 0;
	padding-left: 50px;
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-element-timetable-list-style-1  ul.pbmit-timelist-list {
	padding-top: 40px;
}
.pbmit-element-timetable-list-style-1 .pbmit-timetable-day {
	width: 120px;
	display: inline-block;
	color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.8);
}
.pbmit-element-timetable-list-style-1 .pbmit-timetable-hours {
	color: var(--pbmit-gudfin-white-color);
}
/* --------------------------------------
* error-404
* ---------------------------------------*/
body.error404 .site-footer, 
body.error404 .site-header {
    display: none;
}
.error-404 {
	margin: 0;
	width: 100%;
	padding: 130px 0px 120px 0px;
	position: relative;
	text-align: center;
}
.pbmit-parent-header-style-3 .error-404 {
	padding: 220px 0px;
}
.error-404 .error-message {
	color: #2c2c2c;
}
.error-404 .error-message {
	display: inline-block;
	font-size: 290px;
	line-height: 290px;
	font-weight: 900;
}
.error-404 .footer-message {
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	margin-top: 15px;
}
.error-404 .search-form {
	margin: 45px auto;
	max-width: 400px;
}
.error404 .wrap {
	width: 100%;
}
.error404 .search-form {
	position: relative;
}
.error404 .search-form input[type="search"] {
	padding: 0px 30px;
	padding-right: 70px;
	border-radius: 5px;
}
.error404 .search-form input[type="search"]::-webkit-input-placeholder {
	color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .search-form input[type="search"]:-ms-input-placeholder {
	color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .search-form input[type="search"]::placeholder {
	color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .search-form .search-submit::after {
	position: absolute;
	font-family: 'pbminfotech-base-icons';
	content: '\e822';
	right: 50%;
	top: 50%;
	font-size: 20px;
	color: var(--pbmit-gudfin-white-color);
	line-height: normal;
	font-weight: normal;
	-webkit-transform: translateX(50%) translateY(-50%);
	-ms-transform: translateX(50%) translateY(-50%);
	transform: translateX(50%) translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.error404 .search-form .search-submit:hover::after {
	color: var(--pbmit-gudfin-white-color);
}
.error404 .search-form label {
	display: none;
}
.error404 .search-form button {
	position: absolute;
	top: 2px;
    right: 2px;
	width: 51px;
	height: 51px;
	font-size: 16px;
	z-index: 1;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 5%;
	outline: none;
	color: var(--pbmit-gudfin-white-color);
	background: var(--pbmit-gudfin-global-color);
}
.error404 .search-form button:hover {
	background-color: var(--pbmit-gudfin-blackish-bg-color);
}
.error404 #primary {
	flex: none !important;
	max-width: none !important;
}
.error404 a.pbmit-home-back {
	font-size: 18px;
	letter-spacing: 0;
	display: inline-block;
	margin-top: 15px;
	position: relative;
	font-weight: 500;
}
.error404 a.pbmit-home-back::after {
	font-family: "pbminfotech-base-icons";
	content: '\e810';
	margin-left: 11px;
	font-size: 13px;
	font-weight: normal;
}
.error404 .pbmit-text-color-white a.pbmit-home-back {
	color: var(--pbmit-gudfin-white-color);
}
.error404 .pbmit-text-color-white a:hover.pbmit-home-back {
	color: var(--pbmit-gudfin-global-color);
}
.error404 .pbmit-text-color-white.pbmit-bg-color-globalcolor a:hover.pbmit-home-back {
	color: var(--pbmit-gudfin-secondary-color);
}
.error404 .pbmit-breadcrumb,
.error404 .pbmit-title-bar-wrapper {
	display: none;
}
.error404 h2.page-title {
	font-size: 200px;
	line-height: 210px;
	font-weight: bold;
}
.error404 .pbmit-header-style-2{
	margin: 0;
}
.error404 .pbmit-parent-header-style-4 .site-content-wrap {
	margin-top: -80px;
}
@media (max-width: 1200px) {
	.error404 h2.page-title {
		font-size: 150px;
		line-height: 160px;
	}
}
.error404 .site-content-wrap {
	position: relative;
}
.error404 .site-content-wrap::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: none !important;
}
.error404 .pbmit-bg-color-globalcolor .search-form button {
	background-color: var(--pbmit-gudfin-secondary-color);
}
.error404 .pbmit-text-color-white .search-form button:hover {
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
}
.error404 .pbmit-text-color-white .search-form .search-submit:hover::after {
	color: var(--pbmit-gudfin-white-color);
}
.error404 .pbmit-text-color-white .search-form input[type="search"] {
	color: var(--pbmit-gudfin-blackish-color);
	border-color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.3);
}
.error404 .pbmit-text-color-white .search-form input[type="search"]:focus {
	border-color: var(--pbmit-gudfin-blackish-color);
}
.error404 .pbmit-text-color-white .search-form input[type="search"]:focus::placeholder {
	color: var(--pbmit-gudfin-blackish-color);
}
.error404 .pbmit-text-color-white .search-form input[type="search"]::-webkit-input-placeholder {
	color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .pbmit-text-color-white .search-form input[type="search"]:-ms-input-placeholder {
	color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .pbmit-text-color-white .search-form input[type="search"]::placeholder {
	color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.5);
}
.error404 .pbmit-bg-color-globalcolor .site-content-wrap::before {
	background-color: rgba( var(--pbmit-gudfin-global-color-rgb), 0.20);
}
.error404 .pbmit-bg-color-secondarycolor .site-content-wrap::before {
	background-color: rgba( var(--pbmit-gudfin-secondary-color-rgb), 0.20);
}
.error404 .pbmit-bg-color-blackish .site-content-wrap::before {
	background-color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.20);
}
.error404 .pbmit-bg-color-white .site-content-wrap::before {
	background-color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.20);
}
.error404 .pbmit-bg-color-light .site-content-wrap::before {
	background-color: rgba( var(--pbmit-gudfin-light-bg-color-rgb), 0.20);
}
.error404 .pbmit-text-color-blackish a.pbmit-home-back:hover {
	opacity: 0.9;
}
.error404 .footer-wrap.pbmit-footer-big-area::after,
.error404 .footer-wrap.pbmit-footer-big-area::before {
	content: none;
}
.error404 .pbmit-bg-color-secondarycolor > .site-content-wrap::before{
	background-color: rgba( var(--pbmit-gudfin-secondary-color-rgb), 0.30);
}
.error404 .pbmit-bg-color-globalcolor > .site-content-wrap::before{
	background-color: rgba( var(--pbmit-gudfin-global-color-rgb), 0.30);
}
.error404 .pbmit-bg-color-white > .site-content-wrap::before{
	background-color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.30);
}
.error404 .pbmit-bg-color-light > .site-content-wrap::before{
	background-color: rgba( var(--pbmit-gudfin-light-bg-color-rgb), 0.30);
}
.error404 .pbmit-bg-color-blackish > .site-content-wrap::before{
	background-color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.30);
}
.error404  .pbmit-custom-template.pbmit-custom-titlebar-template {
	display: none;
}
/*=== search-no-results ===*/
.search-no-results #primary {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.search-no-results-content {
	padding: 80px 50px;
	text-align: center;
	margin-bottom: 100px;
}
.search-no-results-content p {
	margin-bottom: 30px;
	display: inline-block;
	font-size: 22px;
	line-height: 30px;
	max-width: 480px;
}
.search-no-results .search-no-results-content .search-form {
	position: relative;
}
.search-no-results .search-no-results-content .search-form input[type="search"] {
	height: 60px;
	line-height: 60px;
	padding-right: 60px;
	border-radius: 5px;
	outline: none;
	border: none;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
/* clears the 'X' from Chrome */
.search-no-results .search-no-results-content .search-form input[type="search"]::-webkit-search-decoration,
.search-no-results .search-no-results-content .search-form input[type="search"]::-webkit-search-cancel-button,
.search-no-results .search-no-results-content .search-form input[type="search"]::-webkit-search-results-button,
.search-no-results .search-no-results-content .search-form input[type="search"]::-webkit-search-results-decoration {
	display: none;
}
.search-no-results .search-no-results-content .search-form button {
	position: absolute;
    top: 3px;
    right: 3px;
    width: 54px;
    height: 54px;
    font-size: 16px;
    z-index: 1;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 5px;
    outline: none;
    color: var(--pbmit-gudfin-white-color);
    background: var(--pbmit-gudfin-secondary-color);
}
.search-no-results .search-no-results-content .search-form button:hover {
	background-color: var(--pbmit-gudfin-global-color);
}
body.rtl.search-no-results .search-no-results-content .search-form button {
	left: 5px;
	right: inherit;
}
.search-no-results .search-no-results-content .search-form button::after {
	position: absolute;
	font-family: 'pbminfotech-base-icons';
	content: '\e822';
	right: 50%;
	top: 50%;
	font-size: 20px;
	line-height: normal;
	font-weight: normal;
	color: var(--pbmit-gudfin-white-color);
	-webkit-transform: translateX(50%) translateY(-50%);
	-ms-transform: translateX(50%) translateY(-50%);
	transform: translateX(50%) translateY(-50%);
}
.search-no-results .search-no-results-content .search-form button:hover::after {
	color: var(--pbmit-gudfin-white-color);
}
/* --------------------------------------
* Search Popup Area CSS
* ---------------------------------------*/
.pbmit-header-search-form {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	-khtml-transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	-moz-transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	-ms-transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	-o-transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	transition: all 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.pbmit-header-search-form .pbmit-search-close {
	position: absolute;
	top: 0;
	right: 60px;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-width: 11px;
	z-index: 99;
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	-o-animation-delay: 0.3s;
	animation-delay: 0.3s;
	opacity: 0;
	visibility: hidden;
	-webkit-border-radius: 45px;
	-khtml-border-radius: 45px;
	-moz-border-radius: 45px;
	-ms-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
	-webkit-transform: translate(-50%, 0);
	-khtml-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.pbmit-header-search-form .pbmit-search-close:before,
.pbmit-header-search-form .pbmit-search-close:after {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-header-search-form .pbmit-header-search-form-wrapper {
	position: absolute;
	padding: 0 30px;
	top: -500px;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 500px;
	will-change: top, box-shadow;
	background-color: rgba(var(--pbmit-gudfin-blackish-bg-color-rgb), 0.8);
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	-khtml-box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	-ms-box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	-o-box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 000000.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-khtml-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-moz-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-ms-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-o-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.pbmit-header-search-form .pbmit-header-search-form-wrapper form {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.pbmit-header-search-form .pbmit-header-search-form-wrapper form .search-field {
	height: 80px;
	padding: 0 50px 0 20px;
	font-size: 24px;
	font-weight: 400;
	border: none;
	background-color: transparent;
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-header-search-form .pbmit-header-search-form-wrapper form .search-field:focus {
	background: none;
}
.pbmit-header-search-form .pbmit-header-search-form-wrapper form .search-submit {
	position: absolute;
	top: 50%;
	right: 0;
	text-align: right;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 92px;
	color: var(--pbmit-gudfin-white-color);
	opacity: 0.9;
	padding: 0;
	z-index: 99;
	cursor: pointer;
	-webkit-transform: translate(0, -50%);
	-khtml-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.pbmit-header-search-form .pbmit-search-line {
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--pbmit-gudfin-white-color);
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
	animation-delay: 0.8s;
	visibility: hidden;
	transform-origin: left center;
	-webkit-transform: scale3d(0, 1, 1);
	-khtml-transform: scale3d(0, 1, 1);
	-moz-transform: scale3d(0, 1, 1);
	-ms-transform: scale3d(0, 1, 1);
	-o-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
}
.pbmit-header-search-form .pbmit-search-overlay{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.6);
	z-index: -1;
	-webkit-transition: 0.5s;
	-khtml-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.pbmit-header-search-form.active {
	opacity: 1;
	visibility: visible;
}
.pbmit-header-search-form.active .pbmit-search-close {
	top: 60px;
	-webkit-animation-name: pbmit_fade_in;
	animation-name: pbmit_fade_in;
	opacity: 1;
	visibility: visible;
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.pbmit-header-search-form.active .pbmit-header-search-form-wrapper {
	top: 0;
	-webkit-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-khtml-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-moz-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-ms-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-o-transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	transition: top 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	-khtml-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	-ms-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	-o-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.pbmit-header-search-form.active .pbmit-header-search-form-wrapper form {	
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 1;
	visibility: visible;
	-webkit-animation-name: pbmit_fade_in;
	animation-name: pbmit_fade_in;
}
.pbmit-header-search-form.active .pbmit-search-line {
	-webkit-animation-name: pbmit_fade_in_move;
	animation-name: pbmit_fade_in_move;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	visibility: visible;
	-webkit-animation-duration: 0.7s;
	animation-duration: 0.7s;
}
.pbmit-search-animation-out .pbmit-header-search-form .pbmit-header-search-form-wrapper form {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	-o-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-name: pbmit_fadeout;
	animation-name: pbmit_fadeout;
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
}
.pbmit-search-animation-out .pbmit-header-search-form .pbmit-header-search-form-wrapper form .pbmit-search-line {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	visibility: visible;
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	-o-animation-delay: 0.1s;
	animation-delay: 0.1s;
	-webkit-animation-name: pbmit_fade_move_out;
	animation-name: pbmit_fade_move_out;
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
}
.pbmit-search-animation-out .pbmit-header-search-form .pbmit-search-close {	
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
	visibility: visible;
	-webkit-animation-name: pbmit_fadeout;
	animation-name: pbmit_fadeout;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}
@-webkit-keyframes pbmit_fade_move_out {
	0% {
		opacity: .8;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	100% {
		opacity: .14;
		-webkit-transform: scale3d(0, 1, 1);
		transform: scale3d(0, 1, 1)
	}
}
@keyframes pbmit_fade_move_out {
	0% {
		opacity: .8;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	100% {
		opacity: .14;
		-webkit-transform: scale3d(0, 1, 1);
		transform: scale3d(0, 1, 1)
	}
}
@-webkit-keyframes pbmit_fade_in_move {
  0% {
	opacity: 0;
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
  }
  10% {
	opacity: 1;
	-webkit-transform: scale3d(0.1, 1, 1);
	transform: scale3d(0.1, 1, 1);
  }
  100% {
	opacity: 0.14;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
  }
}

@keyframes scale {
  25% {
	transform: scale(1.1);
  }
  75% {
	transform: scale(0.9);
  }
}
@keyframes pbmit_fade_in {
  0% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
.pbmit-header-search-form-wrapper .search-form .search-submit::after {
	font-family: "pbminfotech-base-icons";
	content: '\e822';
	position: absolute;
	right: 10px;
	top: 15px;
	color: var(--pbmit-gudfin-white-color);
	font-size: 25px;
	line-height: normal;
	font-weight: normal;
}
.pbmit-header-search-form-wrapper .search-form button::before {
	display: none;
}
.pbmit-header-search-form-wrapper .search-form input[type="search"]::placeholder {
	color: #a4a4a4;
	opacity: 1;
}
.pbmit-header-search-form-wrapper .search-form input[type="search"]:-ms-input-placeholder {
	color: #a4a4a4;
}
.pbmit-header-search-form-wrapper .search-form input[type="search"]::-ms-input-placeholder {
	color: #a4a4a4;
}
.pbmit-header-search-form-wrapper .search-form [type=submit] {
	position: absolute;
	height: 50px;
	width: 50px;
	top: 0;
	right: 0;
	background-color: transparent;
	text-indent: -9999px;
}
.pbmit-header-search-form-wrapper .pbmit-search-close {
	position: absolute;
	top: 40px;
	right: 40px;
	border-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-white-color);
	opacity: 0.8;
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-o-transition: .4s;
	-ms-transition: .4s;
	transition: .4s;
	text-align: center;
	cursor: pointer;
}
.pbmit-header-search-form-wrapper .pbmit-search-close:hover {
	opacity: 1;
}
@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-navbar > div .closepanel:hover svg rect,
.pbmit-header-search-form-wrapper .pbmit-search-close:hover svg rect {
	animation: pbmit-closer-line-draw .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;
}
.pbmit-navbar > div .closepanel:hover svg rect:nth-of-type(2),
.pbmit-header-search-form-wrapper .pbmit-search-close:hover svg rect:nth-of-type(2) {
	animation-delay: .17s;
}
.pbmit-navbar > div .closepanel svg rect,
.pbmit-header-search-form-wrapper .pbmit-search-close svg rect {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.pbmit-header-search-form-wrapper .pbmit-search-close svg {
	fill: var(--pbmit-gudfin-white-color);
}
.pbmit-navbar > div .closepanel svg {
	fill: var(--pbmit-gudfin-blackish-color);
}
/* --------------------------------------
* Tab and Accordion
* ---------------------------------------*/
/* == Accordian == */
.elementor-widget-n-accordion .e-n-accordion-item{
	border: 1px solid rgba(var(--pbmit-gudfin-secondary-color-rgb), 0.1);
	border-radius: 10px;
}
.elementor-widget-n-accordion .e-n-accordion-item[open]{
	background-color: var(--pbmit-gudfin-secondary-color);
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title{
	padding: 17px 0;
	margin: 0 25px;
}
.elementor-widget-n-accordion .e-n-accordion-item>.e-con{
	padding: 0px 25px 25px 25px
}
.elementor-widget-n-accordion .e-n-accordion-item>.e-con,
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title{
	border: none;
}
.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title{
	border-bottom: 1px solid rgba(var(--pbmit-gudfin-white-color-rgb), 0.3);
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(var(--pbmit-gudfin-secondary-color-rgb), 0.1);
	align-items: center;
	justify-content: center;
	color: var(--pbmit-gudfin-secondary-color);
	fill: var(--pbmit-gudfin-secondary-color);
}
.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon{
	border-color: rgba(var(--pbmit-gudfin-white-bg-color-rgb),0.4);
}
.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title .e-n-accordion-item-title-icon span,
.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title .e-n-accordion-item-title-icon span>svg{
	color: var(--pbmit-gudfin-white-color);
	fill: var(--pbmit-gudfin-white-color);
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-text {
	color: var(--pbmit-gudfin-secondary-color);
	font-size: 20px;
	line-height: 26px;
}
/* == pbmit-accordion-style-01 == */
.pbmit-accordion-style-01.elementor-widget-n-accordion .e-n-accordion-item {
	border-radius: 10px;
	border: 1px solid #dddddd;
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-accordion-style-01 .e-n-accordion-item .elementor-element .elementor-widget-text-editor .elementor-widget-container,
.pbmit-accordion-style-01 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text{
	position: relative;
}
.pbmit-accordion-style-01 .e-n-accordion-item .elementor-element .elementor-widget-text-editor .elementor-widget-container::before,
.pbmit-accordion-style-01 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text::before {
	content: 'Q:';
	position: relative;
	top: 0;
	left: 0;
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-accordion-style-01 .e-n-accordion-item .elementor-element .elementor-widget-text-editor .elementor-widget-container{
	display: flex;
	grid-gap: 12px;
}
.pbmit-accordion-style-01 .e-n-accordion-item .elementor-element .elementor-widget-text-editor .elementor-widget-container::before {
	content: 'A:';
	color: var(--pbmit-gudfin-secondary-color);
}

/* == pbmit-accordion-style-02 == */
.pbmit-accordion-style-02.pbmit-accordion-style-01 .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-text::before{
	display: none;
}
.pbmit-accordion-style-02.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-text {
    font-size: 18px;
    line-height: 27px;
}
.pbmit-accordion-style-02.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title {
    padding: 24px 0;
    margin: 0 20px 0 30px;
}
.pbmit-accordion-style-02.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon {
    width: 23px;
    height: 23px;
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-accordion-style-02.elementor-widget-n-accordion .e-n-accordion-item>.e-con {
    padding: 0px 30px 25px 30px;
}

.pbmit-elementor-bg-color-blackish .pbmit-accordion-style-01.elementor-widget-n-accordion .e-n-accordion-item,
.pbmit-elementor-bg-color-secondary .pbmit-accordion-style-01.elementor-widget-n-accordion .e-n-accordion-item {
	border-color: rgba( var(--pbmit-gudfin-global-color-rgb), 0.30);
}
.pbmit-elementor-bg-color-white .pbmit-accordion-style-01.elementor-widget-n-accordion .e-n-accordion-item {
	background-color: var(--pbmit-gudfin-light-bg-color);
}
/* ---------
-----------------------------
* Button Section
* ---------------------------------------*/
.pbmit-btn-align-center.elementor-widget-button .elementor-button-wrapper {
	text-align: center;
}
.pbmit-btn-align-left.elementor-widget-button .elementor-button-wrapper {
	text-align: left;
}
.pbmit-btn-align-right.elementor-widget-button .elementor-button-wrapper {
	text-align: right;
}
/*=== elementor-widget-button ===*/
button:focus {
	outline: 0;
}
.elementor-button {
	position: relative;
}
.elementor-button::after .elementor-widget-button .elementor-button.elementor-size-sm::after {
	right: 18px;
}
.elementor-button {
	border-radius: 0;
}
.elementor-widget-button.pbmit-btn-style-outline.pbmit-btn-shape-square .elementor-button,
.elementor-widget-button.pbmit-btn-style-flat.pbmit-btn-shape-square .elementor-button {
	border-radius: 0;
}
.elementor-widget-button.pbmit-btn-shape-round .elementor-button-wrapper::before,
.elementor-widget-button.pbmit-btn-style-outline.pbmit-btn-shape-round .elementor-button,
.elementor-widget-button.pbmit-btn-style-flat.pbmit-btn-shape-round .elementor-button {
	border-radius: 50px;
}
.elementor-widget-button.pbmit-btn-shape-rounded .elementor-button-wrapper::before,
.elementor-widget-button.pbmit-btn-style-outline.pbmit-btn-shape-rounded .elementor-button,
.elementor-widget-button.pbmit-btn-style-flat.pbmit-btn-shape-rounded .elementor-button {
	border-radius: 5px;
	overflow: hidden;
}
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button .elementor-button-content-wrapper::after,
.elementor-widget.elementor-widget-button {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-btn-color-blackish .elementor-button:hover {
	color: var(--pbmit-gudfin-blackish-color);
}
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button:not(:hover),
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button {
	background-color: var(--pbmit-gudfin-white-color);
}
.elementor-element.pbmit-btn-color-white .elementor-button {
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button:hover .elementor-button-content-wrapper::after {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button .elementor-button-text .pbmit-button-text span:after{
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button {

}
.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-text .pbmit-button-text span:after,
.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-text .pbmit-button-text span::before,
.pbmit-btn-color-white .elementor-button .elementor-button-text .pbmit-button-text span::before {
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.elementor-widget-button .elementor-button {
	padding: 0;
}
.elementor-button .pbmit-gudfin-icon-next {
	font-size: 10px;
	line-height: normal;
	position: relative;
}
.elementor-button .elementor-align-icon-right {
	margin-left: 10px;
}
.elementor-button .elementor-align-icon-left{
	margin-right: 10px;
	-webkit-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}
/*=== pbmit-btn-style-outline ===*/
.elementor-editor-active .elementor-element.pbmit-btn-style-outline.elementor-widget-button .elementor-button:not(:hover){
	background-color: transparent;
}
.pbmit-btn-style-outline.elementor-widget-button .elementor-button {
	background-image: none !important;
	background-color: transparent;
	border: 1px solid var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-white .elementor-button {
	border-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-white .elementor-button:hover {
	background-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-globalcolor .elementor-button {
	color: var(--pbmit-gudfin-global-color);
	border-color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-secondary .elementor-button {
	border-color: var(--pbmit-gudfin-secondary-color);
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-blackish .elementor-button {
	border-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-light .elementor-button {
	border-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-light .elementor-button {
	border-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-white .elementor-button {
	border-color: var(--pbmit-gudfin-white-bg-color);
	color: var(--pbmit-gudfin-white-color);
}

.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-globalcolor .elementor-button .elementor-button-text .pbmit-button-text span:after{
	background-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-blackish .elementor-button .elementor-button-text .pbmit-button-text span:after{
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-secondary .elementor-button .elementor-button-text .pbmit-button-text span:after{
	background-color: var(--pbmit-gudfin-secondary-color);
	color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-color-light .elementor-button .elementor-button-text .pbmit-button-text span:after{
	background-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-blackish-color);
}
/* Outline hover color Hover */
.elementor-editor-active .pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-globalcolor .elementor-button:hover,
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-globalcolor .elementor-button:hover {
	background-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-color);
	border-color: var(--pbmit-gudfin-global-color);
}
.elementor-editor-active .pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-secondary .elementor-button:hover,
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-secondary .elementor-button:hover {
	background-color: var(--pbmit-gudfin-secondary-color);
	color: var(--pbmit-gudfin-white-color);
	border-color: var(--pbmit-gudfin-secondary-color);
}
.elementor-editor-active .pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-blackish .elementor-button:hover,
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-blackish .elementor-button:hover {
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
	border-color: var(--pbmit-gudfin-blackish-color);
}
.elementor-editor-active .pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-light .elementor-button:hover,
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-light .elementor-button:hover {
	background-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-secondary-color);
	border-color: var(--pbmit-gudfin-light-bg-color);
}
.elementor-editor-active .pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-white .elementor-button:hover,
.pbmit-btn-style-outline.elementor-widget-button.pbmit-btn-hover-color-white .elementor-button:hover {
	background-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-secondary-color);
	border-color: var(--pbmit-gudfin-white-color);
}

/*=== pbmit-btn-style-hover color ===*/
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-hover-color-globalcolor .elementor-button:hover,
.pbmit-btn-style-flat.pbmit-btn-hover-color-globalcolor .elementor-button:hover {
	background-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-color);
}
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-hover-color-blackish .elementor-button:hover,
.pbmit-btn-style-flat.pbmit-btn-hover-color-blackish .elementor-button:hover {
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
}
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-hover-color-secondary .elementor-button:hover,
.pbmit-btn-style-flat.pbmit-btn-hover-color-secondary .elementor-button:hover{
	background-color: var(--pbmit-gudfin-secondary-color);
	color: var(--pbmit-gudfin-white-color);
}
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-hover-color-light .elementor-button:hover,
.pbmit-btn-style-flat.pbmit-btn-hover-color-light .elementor-button:hover{
	background-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-secondary-color);
}
.elementor-editor-active .pbmit-btn-style-flat.pbmit-btn-hover-color-white .elementor-button:hover,
.pbmit-btn-style-flat.pbmit-btn-hover-color-white .elementor-button:hover {
	background-color: var(--pbmit-gudfin-white-color);
	color: var(--pbmit-gudfin-secondary-color);
}
/*=== pbmit-btn-style-text ===*/
.elementor-editor-active .elementor-element-edit-mode.elementor-element.pbmit-btn-style-text .elementor-button,
.elementor-element.pbmit-btn-style-text .elementor-button {
	padding: 0;
	background-color: transparent !important;
}
.pbmit-btn-style-text.pbmit-btn-color-white .elementor-button {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-text.pbmit-btn-color-light .elementor-button {
	color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-text.pbmit-btn-color-secondary .elementor-button {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-text.pbmit-btn-color-globalcolor .elementor-button {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-style-text.pbmit-btn-color-globalcolor .elementor-button .elementor-button-text .pbmit-button-text span:before,
.pbmit-btn-style-text.pbmit-btn-color-globalcolor .elementor-button .elementor-button-text .pbmit-button-text span:after {
	background-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-text.pbmit-btn-color-blackish .elementor-button .elementor-button-text .pbmit-button-text span:before,
.pbmit-btn-style-text.pbmit-btn-color-blackish .elementor-button .elementor-button-text .pbmit-button-text span:after {
	background-color: var(--pbmit-gudfin-blackish-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-text.pbmit-btn-color-secondary .elementor-button .elementor-button-text .pbmit-button-text span:before,
.pbmit-btn-style-text.pbmit-btn-color-secondary .elementor-button .elementor-button-text .pbmit-button-text span:after {
	background-color: var(--pbmit-gudfin-secondary-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-text.pbmit-btn-color-light .elementor-button .elementor-button-text .pbmit-button-text span:before,
.pbmit-btn-style-text.pbmit-btn-color-light .elementor-button .elementor-button-text .pbmit-button-text span:after {
	background-color: var(--pbmit-gudfin-light-bg-color);
	color: var(--pbmit-gudfin-white-color);
}
/* hover img */
.pbmit-hover-img {
	position: absolute;
	z-index: 1;
	opacity: 0;
	margin-top: -100px;
	margin-left: 50px;
	transform: translateX(100%) scale(0.4);
	transform-origin: 50% 50%;
}
body.rtl .pbmit-hover-img {
	margin-left: 0;
	margin-right: 50px;
	transform: translateX(0%) scale(0.4);
}
/* --------------------------------------
* List
* ---------------------------------------*/
body .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon,
body .elementor-widget .elementor-icon-list-item .elementor-icon-list-text {
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
body .elementor-icon-list-item .elementor-icon-list-icon i {
	color: var(--pbmit-gudfin-global-color);
}
body .pbmit-elementor-bg-color-secondary .elementor-icon-list-item:hover a .elementor-icon-list-text,
body .pbmit-elementor-bg-color-secondary .elementor-icon-list-item:hover a .elementor-icon-list-icon i {
	color: var(--pbmit-gudfin-global-color);
}
body .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon,
body .elementor-widget .elementor-icon-list-items .elementor-icon-list-text {
	color:var(--pbmit-gudfin-secondary-color);
}
body .pbmit-elementor-bg-color-blackish .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon,
body .pbmit-elementor-bg-color-secondary .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon,
body .pbmit-elementor-bg-color-blackish .elementor-widget .elementor-icon-list-items .elementor-icon-list-text,
body .pbmit-elementor-bg-color-secondary .elementor-widget .elementor-icon-list-items .elementor-icon-list-text {
	color: var(--pbmit-gudfin-white-color);
}
body .pbmit-elementor-bg-color-blackish.pbmit-footer-style-2 .elementor-widget .elementor-icon-list-items .elementor-icon-list-text,
body .pbmit-elementor-bg-color-secondary.pbmit-footer-style-2 .elementor-widget .elementor-icon-list-items .elementor-icon-list-text {
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.7)
}
/* Svg Icon */
body .elementor-widget .elementor-icon-list-item .elementor-icon-list-icon svg{
	fill: var(--pbmit-gudfin-global-color);
}
 .elementor-icon-list-item .elementor-icon-list-icon svg.e-font-icon-svg.e-fas-dot-circle {
	background-color: var(--pbmit-gudfin-global-color);
	border-radius: 50%;
}
.pbmit-list-border.elementor-widget-icon-list .elementor-icon-list-items,
.pbmit-list-bgcolor.elementor-widget-icon-list .elementor-icon-list-items {
	display: inline-grid;
}
.pbmit-list-bgcolor .elementor-icon-list-items .elementor-icon-list-item {
	margin-bottom: 5px;
	width: fit-content;
	border-radius: 5px;
	padding: 8px 30px 6px 15px !important;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-list-border .elementor-icon-list-items .elementor-icon-list-item {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 5px;
	border-radius: 5px;
	padding: 8px 30px 6px 15px !important;
	border: 1px solid rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.1);
}
body .pbmit-elementor-bg-color-blackish .elementor-icon-list-item .elementor-icon-list-icon i,
body .pbmit-elementor-bg-color-secondary .elementor-icon-list-item .elementor-icon-list-icon i,
body .pbmit-elementor-bg-color-globalcolor .elementor-icon-list-item .elementor-icon-list-icon i {
	color: var(--pbmit-gudfin-white-color);
}
body .pbmit-elementor-bg-color-blackish .elementor-icon-list-item .elementor-icon-list-icon svg,
body .pbmit-elementor-bg-color-globalcolor .elementor-icon-list-item .elementor-icon-list-icon svg {
	fill: var(--pbmit-gudfin-white-color);
}
body .pbmit-elementor-bg-color-blackish .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon i,
body .pbmit-elementor-bg-color-secondary .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon i,
body .pbmit-elementor-bg-color-globalcolor .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon i {
	color: var(--pbmit-gudfin-global-color);
}
body .pbmit-elementor-bg-color-blackish .pbmit-list-bgcolor .elementor-icon-list-items .elementor-icon-list-text,
body .pbmit-elementor-bg-color-secondary .pbmit-list-bgcolor .elementor-icon-list-items .elementor-icon-list-text {
	color: var(--pbmit-gudfin-secondary-color);
}
body .pbmit-elementor-bg-color-blackish .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon svg,
body .pbmit-elementor-bg-color-secondary .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon svg,
body .pbmit-elementor-bg-color-globalcolor .pbmit-list-bgcolor .elementor-icon-list-item .elementor-icon-list-icon svg {
	fill: var(--pbmit-gudfin-global-color);
}
body .pbmit-elementor-bg-color-blackish .pbmit-list-border .elementor-icon-list-items .elementor-icon-list-item,
body .pbmit-elementor-bg-color-secondary .pbmit-list-border .elementor-icon-list-items .elementor-icon-list-item,
body .pbmit-elementor-bg-color-globalcolor .pbmit-list-border .elementor-icon-list-items .elementor-icon-list-item {
	border-color: rgba(var(--pbmit-gudfin-white-color-rgb), 0.8);
}
body .pbmit-elementor-bg-color-light .pbmit-list-bgcolor .elementor-icon-list-items .elementor-icon-list-item {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.elementor-icon-list-items-style-2 .elementor-icon-list-icon {
	position: absolute !important;
    right: 7px;
}
.elementor-icon-list-items-style-2 .pbmit-gudfin-icon-arrow:before {
	content: "\e841";
	font-family: pbminfotech-base-icons !important;
}
/* --------------------------------------
* drop-cap
* --------------------------------------*/
body .elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap {
	font-size: 0;
	line-height: 0;
	margin-block-start: 3px;
}

/* --------------------------------------
* Page box
* ---------------------------------------*/
.page.pbmit-sidebar-exists .comments-area {
	margin-top: 0px;
}
.pbmit-service-single blockquote {
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	font-style: italic;
	padding: 30px 60px;
	padding-top: 40px;
	padding-right: 40px;
	position: relative;
	border: none;
	background: transparent;
	margin: 40px 12px 40px;
	border-left: 4px solid var(--pbmit-gudfin-global-color);
	color: #05006d;
	border-radius: 0px;
	box-shadow: 0px 3px 12px 0px rgb(0 0 0 / 8%);
	background: var(--pbmit-gudfin-white-color);
}
/* --------------------------------------
* Selectbox
* ---------------------------------------*/
#page .select2-container {
	width: 100% !important;
}
.rtl #page .select2-container{
	direction: rtl;
}
#page .select2-container--default .select2-selection--single {
	border-radius: 0px;
	padding-left: 25px;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
#page .select2-container .select2-selection--single {
	height: 60px;
	outline: none;
}
#page .select2-container--default .select2-selection--single {
	border-radius: 10px;
	padding-left: 15px !important;
	padding-right: 40px !important;
}
.rtl #page .select2-container--default .select2-selection--single{
	padding-left: 100px !important;
	padding-right: 15px !important;
}
#page .select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 60px;
	line-height: 60px;
	color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.8);
	padding-top: 0;
}
#page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 60px;
	right: 15px;
}
#page .widget.widget_block.widget_categories .select2-container--default .select2-selection--single .select2-selection__arrow b,
#page .widget.widget_block.widget_archive .select2-container--default .select2-selection--single .select2-selection__arrow b,
#page .widget.widget_categories .select2-container--default .select2-selection--single .select2-selection__arrow b,
#page .widget.widget_archive .select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin-left: -24px;
	margin-top: 16px;
}
.rtl #page .select2-container--default .select2-selection--single .select2-selection__arrow{
	left: 15px;
	right: inherit;
}
#page .select2-container--default .select2-selection--single {
	background-color:transparent;
}
.select2-dropdown,
#page .select2-container--default .select2-selection--single {
	font-size: 15px;
    color: #5a5a5a;
	background-color: var(--pbmit-gudfin-light-bg-color);
}
#page .select2-container--default .select2-results__option {
	padding: 6px 15px;
}
.rtl #page .select2-container--default .select2-results__option{
	text-align: right;
}
#page .select2-search--dropdown .select2-search__field{
	padding: 4px 15px;
}
body .select2-dropdown .select2-results__option,
#page .select2-container--default .select2-search--dropdown .select2-search__field,
#page .select2-container--default .select2-dropdown {
	border-radius: 0;
	color: var(--pbmit-gudfin-blackish-color);
	border-color: rgba(var(--pbmit-gudfin-blackish-color-rgb),0.1);
}
body .select2-container--default .select2-results__option--highlighted[aria-selected],
body .select2-container--default .select2-results__option--highlighted[data-selected] {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
#page .select2-container .select2-dropdown.select2-dropdown--below{
	border-top: 0 !important;
	padding: 0 15px;
    margin-top: -20px;
}
#page .select2-container .select2-dropdown.select2-dropdown--above{
	border-bottom: 0 !important;
}
#page .select2-container.select2-container--below.select2-container--open .select2-selection--single{
	border-radius: 10px 10px 0 0;
}
#page .select2-container.select2-container--above.select2-container--open .select2-selection--single{
	border-radius: 0 0 10px 10px;
}
/* --------------------------------------
* Marquee
* ---------------------------------------*/
.pbmit-element-testimonial-style-2 .pbmit-marquee-effect-section .swiper-wrapper,
.pbminfotech-element-marquee-effect .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
	position: relative;
}
.pbminfotech-element-marquee-effect .pbmit-marquee-container{
	display: flex;
}
.pbminfotech-element-marquee-effect .pbmit-ele-marquee-effect,
.pbminfotech-element-marquee-effect .swiper-slide {
	display: flex;
	width: auto;
	flex-shrink: 0;
}
.pbminfotech-element-marquee-effect .pbmit-element-title {
	line-height: normal;
	width: auto;
	position: relative;
	overflow: hidden;
	transition: transform 1s cubic-bezier(.22, .61, .36, 1);
	margin: 0;
	padding: 0;
}
.pbminfotech-element-marquee-effect .pbmit-tag-wrapper {
	position: relative;
}
/* --------------------------------------
* Img Animation
* ---------------------------------------*/
.pbmit-animation-style1.elementor-widget-image,
.pbmit-animation-style2.elementor-widget-image,
.pbmit-animation-style3.elementor-widget-image,
.pbmit-animation-style4.elementor-widget-image,
.pbmit-animation-style5.elementor-widget-image,
.pbmit-animation-style6.elementor-widget-image,
.pbmit-animation-style1 .elementor-widget-container,
.pbmit-animation-style2 .elementor-widget-container,
.pbmit-animation-style3 .elementor-widget-container,
.pbmit-animation-style4 .elementor-widget-container,
.pbmit-animation-style5 .elementor-widget-container,
.pbmit-animation-style6 .elementor-widget-container {
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style1.elementor-widget-image img,
.pbmit-animation-style2.elementor-widget-image img,
.pbmit-animation-style3.elementor-widget-image img,
.pbmit-animation-style4.elementor-widget-image img,
.pbmit-animation-style5.elementor-widget-image img,
.pbmit-animation-style6.elementor-widget-image img,
.pbmit-animation-style1 .elementor-widget-container img,
.pbmit-animation-style2 .elementor-widget-container img,
.pbmit-animation-style3 .elementor-widget-container img,
.pbmit-animation-style4 .elementor-widget-container img,
.pbmit-animation-style5 .elementor-widget-container img,
.pbmit-animation-style6 .elementor-widget-container img {
	transform-origin: 50% 50%;
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
@media(min-width:1025px){
	.pbmit-animation-style1.active.elementor-widget-image,
	.pbmit-animation-style2.active.elementor-widget-image,
	.pbmit-animation-style3.active.elementor-widget-image,
	.pbmit-animation-style4.active.elementor-widget-image,
	.pbmit-animation-style5.active.elementor-widget-image,
	.pbmit-animation-style6.active.elementor-widget-image,

	.pbmit-animation-style1.active .elementor-widget-container,
	.pbmit-animation-style2.active .elementor-widget-container,
	.pbmit-animation-style3.active .elementor-widget-container,
	.pbmit-animation-style4.active .elementor-widget-container,
	.pbmit-animation-style5.active .elementor-widget-container,
	.pbmit-animation-style6.active .elementor-widget-container {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	.pbmit-animation-style1.active.elementor-widget-image img,
	.pbmit-animation-style2.active.elementor-widget-image img,
	.pbmit-animation-style3.active.elementor-widget-image img,
	.pbmit-animation-style4.active.elementor-widget-image img,
	.pbmit-animation-style5.active.elementor-widget-image img,
	.pbmit-animation-style6.active.elementor-widget-image img,

	.pbmit-animation-style1.active .elementor-widget-container img,
	.pbmit-animation-style2.active .elementor-widget-container img,
	.pbmit-animation-style3.active .elementor-widget-container img,
	.pbmit-animation-style4.active .elementor-widget-container img,
	.pbmit-animation-style5.active .elementor-widget-container img,
	.pbmit-animation-style6.active .elementor-widget-container img {
		transform: scale(1) translate(0px, 0px);
	}
	.elementor-editor-active.elementor-widget-image,
	.elementor-editor-active .elementor-widget-image .elementor-widget-container {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		overflow: hidden;
	}
	.elementor-editor-active.elementor-widget-image img,
	.elementor-editor-active .elementor-widget-image .elementor-widget-container img {
		transform: scale(1) translate(0px, 0px);
		overflow: hidden;
	}
	.pbmit-animation-style1.elementor-widget-image,	
	.pbmit-animation-style1 .elementor-widget-container {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
		border-radius: 20px;
	}
	.pbmit-animation-style1.elementor-widget-image img,	
	.pbmit-animation-style1 .elementor-widget-container img {
		transform: scale(1.5) translate(-100px, 0px);
	}
	.pbmit-animation-style2.elementor-widget-image,
	.pbmit-animation-style2 .elementor-widget-container {
		clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
		border-radius: 20px;
	}
	.pbmit-animation-style2.elementor-widget-image img,	
	.pbmit-animation-style2 .elementor-widget-container img {
		transform: scale(1.5) translate(100px, 0px);
	}
	.pbmit-animation-style3.elementor-widget-image,		
	.pbmit-animation-style3 .elementor-widget-container {
		clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
		border-radius: 20px;
	}
	.pbmit-animation-style3.elementor-widget-image img,
	.pbmit-animation-style3 .elementor-widget-container img {
		transform: scale(1.5) translate(0, 100px);
	}
	.pbmit-animation-style4.elementor-widget-image,
	.pbmit-animation-style4 .elementor-widget-container {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		border-radius: 20px;
	}
	.pbmit-animation-style4.elementor-widget-image img,	
	.pbmit-animation-style4 .elementor-widget-container img {
		transform: scale(1.5) translate(0, -100px);
	}
	.pbmit-animation-style5.elementor-widget-image,
	.pbmit-animation-style5 .elementor-widget-container {
		clip-path: inset(0 15%);
		transform: translate3d(0, 150px, 0);
		border-radius: 20px;
	}
	.pbmit-animation-style5.active.elementor-widget-image,	
	.pbmit-animation-style5.active .elementor-widget-container {
		clip-path: inset(0 0);
		transform: translate3d(0, 0, 0);
		border-radius: 20px;
	}
	.pbmit-animation-style5.elementor-widget-image img,	
	.pbmit-animation-style5 .elementor-widget-container img {
		transform: scale(1.5) translate(0, -10%);
	}
	.pbmit-animation-style6.elementor-widget-image,	
	.pbmit-animation-style6 .elementor-widget-container {
		clip-path: circle(15% at 50% 50%);
		border-radius: 20px;
	}
	.pbmit-animation-style6.active.elementor-widget-image,	
	.pbmit-animation-style6.active .elementor-widget-container {
		clip-path: circle(100% at 50% 50%);
	} 
	.pbmit-animation-style6.elementor-widget-image img,
	.pbmit-animation-style6 .elementor-widget-container img {
		transform: scale(1.5) translate(0, 0);
	}
	.pbmit-animation-style7.elementor-widget-image img,
	.pbmit-animation-style7 .elementor-widget-container img {
		transform:  scale(0.5);
		transition: 0.9s;
		border-radius: 20px;
	}
	.pbmit-animation-style7.active.elementor-widget-image img,
	.pbmit-animation-style7.active .elementor-widget-container img {
		transform:  scale(1);
	}
}
.elementor-element-edit-mode.pbmit-animation-style6.elementor-widget-image,
.elementor-element-edit-mode.pbmit-animation-style5.elementor-widget-image,
.elementor-element-edit-mode.pbmit-animation-style4.elementor-widget-image,
.elementor-element-edit-mode.pbmit-animation-style3.elementor-widget-image,
.elementor-element-edit-mode.pbmit-animation-style2.elementor-widget-image,
.elementor-element-edit-mode.pbmit-animation-style1.elementor-widget-image,

.elementor-element-edit-mode.pbmit-animation-style6 .elementor-widget-container,
.elementor-element-edit-mode.pbmit-animation-style5 .elementor-widget-container,
.elementor-element-edit-mode.pbmit-animation-style4 .elementor-widget-container,
.elementor-element-edit-mode.pbmit-animation-style3 .elementor-widget-container,
.elementor-element-edit-mode.pbmit-animation-style2 .elementor-widget-container,
.elementor-element-edit-mode.pbmit-animation-style1 .elementor-widget-container {
	clip-path: unset;
}
.pbmit-hover-img {
	position: absolute;
	z-index: 1;
	opacity: 0;
	margin-top: -100px;
	margin-left: 50px;
	transform: scale(0.4);
	transform-origin: 50% 50%;
}
.pbmit-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 6;
}
/* pbmit-image-animation-01 */
.pbmit-image-animation-01 img {
	-webkit-animation: animation01 3s linear infinite alternate;
	-o-animation: animation01 3s linear infinite alternate;
	-ms-animation: animation01 3s linear infinite alternate;
	-moz-animation: animation01 3s linear infinite alternate;
	animation: animation01 3s linear infinite alternate
}
@keyframes animation01 {
	0%{
		transform: translateY(-10px)
	}
	100% {
		transform: translateY(10px)
	}
}
/* --------------------------------------
* firstletter
* ---------------------------------------*/
.pbmit-firstletter .elementor-widget-container::first-letter,
.pbmit-firstletter::first-letter{
	font-size: 28px;
	min-width: 50px !important;
	max-width: 50px !important;
	width: 44px !important;
	height: 44px;
	line-height: 44px;
	text-align: center;
	padding: 0 12px;
	border-radius: 5px;
	float: left;
	font-weight: 700;
	margin-right: 10px;
	margin-top: 5px;
	color: var(--pbmit-gudfin-blackish-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.rtl .pbmit-firstletter .elementor-widget-container::first-letter,
.rtl .pbmit-firstletter::first-letter{
	float: right;
	margin: 0 0 0 10px;
}
.single-pbmit-portfolio .pbmit-firstletter .elementor-widget-container::first-letter,
.single-pbmit-portfolio .pbmit-firstletter::first-letter {
	padding: 0 8px;
}
/* --------------------------------------
* Titlebar Wrapper
* ---------------------------------------*/
.pbmit-title-bar-wrapper .pbmit-breadcrumb a span::after {
	background-color: rgba(var(--pbmit-gudfin-titlebar-breadcrumb-typography-color-rgb), 0.80);
}
.pbmit-breadcrumb .pbmit-breadcrumb-inner {
	padding-left: 5px;
}
.pbmit-breadcrumb .pbmit-breadcrumb-inner span {
	display: inline-block;
	font-size: 15px;
}
.pbmit-breadcrumb .pbmit-breadcrumb-inner span.sep {
	line-height: 15px;
}
.pbmit-title-bar-content .pbmit-tbar-inner{
	margin-bottom: 5px;
}
.single-post .pbmit-title-bar-wrapper.pbmit-titlebar-style-left .pbmit-title-bar-content-inner {
	width: 60%;
}
.single-post .pbmit-title-bar-wrapper.pbmit-titlebar-style-center .pbmit-title-bar-content-inner {
	width: 60%;
	margin: 0 auto;
}
.single-post .pbmit-title-bar-wrapper.pbmit-titlebar-style-center .pbmit-title-bar-content h1.pbmit-tbar-title,
.single-post .pbmit-title-bar-wrapper.pbmit-titlebar-style-left .pbmit-title-bar-content h1.pbmit-tbar-title{
	font-size: 50px;
	line-height: 60px;
}
.pbmit-header-style-1-inner {
	backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.site-header:not(.pbmit-header-style-1) .pbmit-title-bar-wrapper {
	overflow: hidden;
}
.site-header:not(.pbmit-header-style-1) .pbmit-title-bar-wrapper .pbmit-title-bar-content {
	position: relative;
}
.site-header:not(.pbmit-header-style-1) .pbmit-title-bar-wrapper .pbmit-title-bar-content::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	width: 1400px;
	height: 600px;
	z-index: -1;
	opacity: 0.4;
	filter: blur(100px);
	background-color: var(--pbmit-gudfin-blackish-color);
	-khtml-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.pbmit-header-style-4 .pbmit-gudfin-icon-location:before {
    content: "\e848";
	font-family: pbminfotech-base-icons !important;
	font-style: normal;
}
.pbmit-header-style-4 .pbmit-gudfin-icon-mail:before {
    content: "\e821";
	font-family: pbminfotech-base-icons !important;
	font-style: normal;
}
/*=== pbmit-pricing-table ===*/
.pbmit-ptable-line svg{
	width: 1em;
	height: 1em;
}
.pbmit-ptable-line svg,
.pbmit-ptable-line i{
    margin-right: 10px;
}
.rtl .pbmit-ptable-line svg,
.rtl .pbmit-ptable-line i{
	margin: 0 0 0 10px;
}
/* Infinite Scroll button */
.pbmit-ajax-load-more-btn {
	text-align: center;
	margin-top: 20px;
}
.pbmit-ajax-load-more-btn a:hover {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-ajax-load-more-btn a {
	padding: 20px 35px;
	background-color: var(--pbmit-gudfin-global-color);
	display: inline-block;
	color: var(--pbmit-gudfin-white-color);
	border-radius: 30px;
}
.pbmit-infinite-scroll-last {
	text-align: center;
	font-weight: 600;
	padding: 5px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 10px;
	background: var(--pbmit-gudfin-white-bg-color);
}
/* --------------------------------------
* Back to top animation
* ---------------------------------------*/
.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 200ms linear;
	transition: all 200ms linear;
}
.pbmit-progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.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-gudfin-global-color);
	left: 2px;
	top: 2px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.pbmit-progress-wrap::before {
	position: absolute;
	content: '\e812';
	font-family: 'pbminfotech-base-icons';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-clip: text;
	-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 200ms linear;
	transition: all 200ms linear;
}
.pbmit-progress-wrap:hover::before {
	opacity: 1;
}
.pbmit-progress-wrap svg path {
	fill: rgba( var(--pbmit-gudfin-global-color-rgb), 0.2);
}
.pbmit-progress-wrap svg.pbmit-progress-circle path {
	stroke: var(--pbmit-gudfin-global-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.pbmit-no-data-message {
	text-align: center;
	background: #00000057;
	padding: 40px 10px;
}
.pbmit-backtotop {
	position: fixed;
	bottom: -50px;
	right: 35px;
	width: 50px;
	height: 50px;
	font-size: 24px;
	border-radius: 25px;
	text-align: center;
	opacity: 0;
	overflow: hidden;
	z-index: 9999999;
	color: var(--pbmit-gudfin-white-color);
	background: var(--pbmit-gudfin-global-color);
	border: 2px solid var(--pbmit-gudfin-white-color);
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.pbmit-backtotop.active {
	bottom: 15px;
	opacity: 1;
}
.pbmit-backtotop > div {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.pbmit-backtotop > div.pbmit-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
}
.pbmit-backtotop > div.pbmit-hover-arrow {
	font-size: 24px;
	line-height: 24px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0;
	margin-top: 1px;
}
.pbmit-backtotop:hover {
	transform: scale(1.1);
	bottom: 20px;
	cursor: pointer;
	box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
}
.pbmit-backtotop:hover > div.pbmit-arrow {
	transform: translateY(-150%) translateX(-50%);
	opacity: 0;
}
.pbmit-backtotop:hover > div.pbmit-hover-arrow {
	transform: translateY(-50%) translateX(-50%);
	opacity: 1;
}
@-webkit-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@-moz-keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes AnimationName {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} 
/* --------------------------------------
* Elementor Svg icon Global Css
* ---------------------------------------*/
/* Svg icon set Globaly */

.pbmit-ihbox-icon-wrapper svg,
.pbmit-ihbox-svg-wrapper svg,
.pbmit-sbox-icon-wrapper svg,
.pbmit-fidbox-svg-wrapper svg {
	width: 1em;
	height: 1em;
}
footer .pbmit-default-footer .pbmit-footer-text-inner {
	padding: 20px 0;
	border-top: 1px solid rgba(var(--pbmit-gudfin-blackish-color-rgb), .1);
}
/* Footer Menu */
.pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item{
	font-size: 12px;
	line-height: 24px;
	margin: 0 35px 0 8px !important;
	text-transform: uppercase;
}
.rtl .pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item{
	margin: 0 8px 0 35px !important;
}
.pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item::before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: -22px;
	left: auto;
	width: 6px;
	height: 6px;
	background-color: var(--pbmit-gudfin-global-color);
	border-radius: 50%;
}
.rtl .pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item::before{
	left: -22px;
	right: inherit;
}
.pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item:last-child::before{
	display: none;
}
.pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item a .elementor-icon-list-text{
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-footer-menu-top.elementor-widget .elementor-icon-list-items .elementor-icon-list-item a:hover .elementor-icon-list-text{
	color: var(--pbmit-gudfin-global-color);
}
/* infobox css */
.bmit-ihbox .pbmit-ihbox-btn {
	display: inline-block;
	padding-top: 15px;
}
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-ihbox-btn a,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-ihbox-btn a,
.pbmit-elementor-bg-color-globalcolor .pbmit-ihbox .pbmit-ihbox-btn a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-subtitle,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-title,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-subtitle a,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-title a,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-subtitle,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-title,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-subtitle a,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-title a {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-ihbox-btn a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-ihbox-btn a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-subtitle a:hover,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-element-title a:hover,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-subtitle a:hover,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-element-title a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-ihbox .pbmit-element-subtitle a:hover,
.pbmit-elementor-bg-color-globalcolor .pbmit-ihbox .pbmit-element-title a:hover {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-ihbox .pbmit-heading-desc {
	color: rgba(var(--pbmit-gudfin-secondary-color-rgb),0.6);
}
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-heading-desc,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-heading-desc {
	color: rgba(var(--pbmit-gudfin-white-color-rgb),0.8);
}
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-ihbox-svg,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-icon-type-icon,
.pbmit-elementor-bg-color-blackish .pbmit-ihbox .pbmit-ihbox-icon-type-text,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-ihbox-svg,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-icon-type-icon,
.pbmit-elementor-bg-color-secondary .pbmit-ihbox .pbmit-ihbox-icon-type-text {
	color: var(--pbmit-gudfin-global-color);
	fill: var(--pbmit-gudfin-global-color);
}
.pbmit-ihbox .pbmit-element-title a .pbmit-button-icon,
.pbmit-ihbox .pbmit-element-subtitle a .pbmit-button-icon {
	display: none;
}
/*=== Header Button ===*/
.pbmit-navbar div > ul > li > a {
	position: relative;
}
.pbmit-button-box .pbmit-header-button a span {
	display: block;
}
.site-header .pbmit-right-box .pbmit-button-box-second{
	padding: 0 0 0 30px;
	margin-left: 0;
	position: relative;
}
.rtl .site-header .pbmit-right-box .pbmit-button-box-second {
	padding: 0 30px 0 0;
}
span > u {
	display: inline-block;
}
/*=== pbmit-header-button ===*/
/* pbmit-header-button */
.site-header .pbmit-button-box .pbmit-header-button {
	padding: 0;
}
.site-header .pbmit-button-box .pbmit-header-button a {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--pbmit-gudfin-secondary-color);
}
.site-header .pbmit-button-box .pbmit-header-button a:hover {
	color: var(--pbmit-gudfin-global-color);
}
.site-header .pbmit-button-box .pbmit-header-button a::before {
	display: inline-block;
	content: "\e824";
	font-family: "pbminfotech-base-icons";
	font-size: 40px;
	line-height: 40px;
	margin-right: 15px;
	color: var(--pbmit-gudfin-global-color);
}
.site-header .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1 {
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 8px;
	font-weight: normal;
	color: var(--pbmit-gudfin-secondary-color);
}
.site-header .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-2 {
	font-size: 16px;
	line-height: 16px;
}
/*=== pbmit-header-button2 ===*/
.site-header .pbmit-button-box .pbmit-header-button2 a {
	display: inline-flex;
	align-items: center;
	padding: 17px 30px;
	border-radius: 50px;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.site-header .pbmit-button-box .pbmit-header-button2 a:hover {
	background-color: var(--pbmit-gudfin-secondary-color);
}
/*=== Sticky Header ===*/
/* Sticky pbmit-header-button2 */
.site-header .pbmit-sticky-header .pbmit-right-box .pbmit-header-button2 a {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.site-header .pbmit-sticky-header .pbmit-right-box .pbmit-header-button2 a:hover {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
/*=== Background Header color ===*/
.site-header .pbmit-bg-color-blackish .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1,
.site-header .pbmit-bg-color-blackish .pbmit-button-box .pbmit-header-button a,
.site-header .pbmit-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1,
.site-header .pbmit-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-bg-color-blackish .pbmit-button-box .pbmit-header-button a:hover,
.site-header .pbmit-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a:hover {
	color: var(--pbmit-gudfin-global-color)
}
.site-header .pbmit-bg-color-globalcolor .pbmit-button-box .pbmit-header-button a:hover {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-bg-color-globalcolor .pbmit-button-box .pbmit-header-button a::before {
	color: var(--pbmit-gudfin-white-color);
}
/* pbmit-header-button2 */
.site-header .pbmit-bg-color-blackish .pbmit-button-box .pbmit-header-button2 a:hover,
.site-header .pbmit-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button2 a:hover {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.site-header .pbmit-bg-color-globalcolor .pbmit-button-box .pbmit-header-button2 a {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.site-header .pbmit-bg-color-globalcolor .pbmit-button-box .pbmit-header-button2 a:hover {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/*=== Sticky Background Header color ===*/
.site-header .pbmit-sticky-bg-color-secondarycolor .nav-menu-toggle,
.site-header .pbmit-sticky-bg-color-blackish .nav-menu-toggle,
.site-header .pbmit-sticky-bg-color-globalcolor .nav-menu-toggle,
.site-header .pbmit-sticky-bg-color-blackish .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1,
.site-header .pbmit-sticky-bg-color-blackish .pbmit-button-box .pbmit-header-button a,
.site-header .pbmit-sticky-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1,
.site-header .pbmit-sticky-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-sticky-bg-color-blackish .pbmit-button-box .pbmit-header-button a:hover,
.site-header .pbmit-sticky-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button a:hover {
	color: var(--pbmit-gudfin-global-color)
}
.site-header .pbmit-sticky-bg-color-globalcolor .pbmit-button-box .pbmit-header-button a:hover {
	color: var(--pbmit-gudfin-white-color);
}
.site-header .pbmit-sticky-bg-color-globalcolor .pbmit-button-box .pbmit-header-button a::before {
	color: var(--pbmit-gudfin-white-color);
}
/* sticky-pbmit-header-button2 */
.site-header .pbmit-sticky-bg-color-blackish .pbmit-button-box .pbmit-header-button2 a:hover,
.site-header .pbmit-sticky-bg-color-secondarycolor .pbmit-button-box .pbmit-header-button2 a:hover {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.site-header .pbmit-sticky-bg-color-globalcolor .pbmit-button-box .pbmit-header-button2 a {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.site-header .pbmit-sticky-bg-color-globalcolor .pbmit-button-box .pbmit-header-button2 a:hover {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/* Elementor border width */
body .elementor-element.e-con.e-flex {
	--border-style: none !important;
}
/* --------------------------------------
* 			Tab CSS
* ---------------------------------------*/
.pbmit-tab-content-title,
.pbmit-tab-content {
	display: none;
}
.pbmit-tab-content.pbmit-tab-active {
	display: block;
	animation: pbmit-faded 1s;
}
@keyframes pbmit-faded {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
.pbmit-tabs {
	display: flex;
    width: 100%;
}
.pbmit-tabs .pbmit-tab-content-inner {
	padding: 33px 42px;
    background: var(--pbmit-gudfin-white-bg-color);
    border-radius: 5px;
}
.pbmit-tabs .pbmit-tab-content-wrapper {
	padding: 0px 0 0 40px;
}
.pbmit-tabs .pbmit-tabs-links{
	margin-bottom: 30px;
	text-align: center;
	flex-direction: row;
	display: block;
	text-align: left;
	position: relative;
	padding: 0;
	align-self: center;
}
.pbmit-tab-link,
.pbmit-tabs .pbmit-tab-heading-wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pbmit-tab-discount-wrap h3 {
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    margin: 0;
    color: #7C898D;
	background-color: var(--pbmit-gudfin-light-bg-color);
	border-radius: 5px;
	padding: 0 10px;
	margin-left: -45px;
	transition: all 0.30s ease-in-out;
}
.pbmit-tab-link:hover .pbmit-tab-discount-wrap h3,
.pbmit-tab-li-active .pbmit-tab-discount-wrap h3 {
	background-color: var(--pbmit-gudfin-global-color);
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-tab-link{
	padding: 28px 40px 28px 25px;
    background-color: var(--pbmit-gudfin-white-color);
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.30s ease-in-out;
}
.pbmit-tab-link:hover,
.pbmit-tab-link.pbmit-tab-li-active{
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-tabs .pbmit-tab-heading{
	display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 30px;
    transition: all 0.30s ease-in-out;
    margin: 0;
}
.pbmit-tabs .pbmit-tab-heading::before{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	content: "\e89a";
	font-family: "pbminfotech-base-icons";
	height: 25px;
	width: 25px;
	font-size: 8px;
	line-height: 25px;
	margin-right: 12px;
	border-radius: 50%;
	color: var(--pbmit-gudfin-white-color);
	 transition: all 0.30s ease-in-out;
	background-color: transparent;
	border: 1px solid var(--pbmit-gudfin-blackish-color);
}
.pbmit-tabs .pbmit-tab-link:hover .pbmit-tab-heading::before,
.pbmit-tabs .pbmit-tab-li-active .pbmit-tab-heading::before {
	border: 1px solid var(--pbmit-gudfin-white-color);
}
.pbmit-tabs .pbmit-tab-price-w{
	display: flex;
	align-items: center;
	font-size: 34px;
    line-height: 40px;
	 transition: all 0.30s ease-in-out;
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-tabs .pbmit-tab-price_freq{
	font-size: 17px;
	transition: all 0.30s ease-in-out;
}
.pbmit-tabs .pbmit-tab-price-wrapper{
	display: flex;
	align-items: flex-end;
}
.pbmit-tabs .pbmit-tab-highlight i{
	font-size: 20px;
	line-height: 20px;
	color: var(--pbmit-gudfin-global-color);
	padding-left: 15px;
}
.pbmit-tab-link:hover .pbmit-tab-heading,
.pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-heading,
.pbmit-tab-link:hover .pbmit-tab-price-w,
.pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-price-w{
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-tab-link:hover .pbmit-tab-price_freq,
.pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-price_freq{
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.80);
}
.pbmit-tab-content-heading {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 25px;
}
.pbmit-tabs .pbmit-tab-btn-wrap{
	border-top: 1px solid #e4e4e4;
    padding-top: 20px;
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-icon{
	display: none;
}
.pbmit-tabs .pbmit-tabs-btn a{
	padding: 11px 15px 12px 25px !important;
	background-color: transparent !important;
	color: var(--pbmit-gudfin-blackish-color) !important;
	border: 2px solid var(--pbmit-gudfin-blackish-color);
	overflow: hidden;
}
.pbmit-tabs .pbmit-tabs-btn a:hover{
	padding: 11px 25px 12px 15px !important;
}
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-render span::before,
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-render span::after {
	background-color: var(--pbmit-gudfin-blackish-color) !important;
	color: var(--pbmit-gudfin-white-color) !important;
}
.pbmit-tabs .pbmit-tabs-btn a:hover .pbmit-button-text{
	animation: pbmit_horizontal_slide 1.1s ease-out;
}
@keyframes pbmit_horizontal_slide {
	16.65% {
		transform: translateY(8px)
	}

	33.3% {
		transform: translateY(-6px)
	}

	49.95% {
		transform: translateY(4px)
	}

	66.6% {
		transform: translateY(-2px)
	}

	83.25% {
		transform: translateY(1px)
	}

	100% {
		transform: translateY(0)
	}
}
.pbmit-tab-content-title{
	margin-bottom: 50px;
	cursor: pointer;
	font-size: 20px;
	line-height: 24px;
	text-transform: capitalize;
	color: var(--pbmit-gudfin-secondary-color);
	transition: all 0.4s ease-in-out;
}
.pbmit-tab-link:last-child{
	margin-bottom: 0;
}
.pbmit-tab-active .pbmit-tab-content-title{
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.elementor-widget-pbmit_tabs_element .pbmit-heading-subheading.pbmit-desc-yes .pbmit-heading-desc {
    margin-bottom: 15px;
    padding-left: 70px;
    width: 44%;
}
.pbmit-tab-notification {
	width: 60%;
    color: #7C898D;
    font-family: "Be Vietnam Pro";
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    line-height: 22px;
    padding-left: 58px;
    text-align: left;
	position: relative;
	overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.pbmit-tab-notification::after {
	content: '\e854';
	font-family: "pbminfotech-base-icons";
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	line-height: 45px;
	background-color: var(--pbmit-gudfin-light-bg-color);
	border-radius: 50%;
	text-align: center;
	font-size: 18px;
	color: var(--pbmit-gudfin-blackish-color);
	font-style: normal;
}
/* Latest css */
.pbmit-tabs .pbmit-tab-img img{
	border-radius: 30px;
}
.pbmit-tabs .tab-content-wrap{
	align-items: center;
}
.pbmit-tabs .pbmit-tab-list h2{
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 0;
}
.pbmit-tabs .pbmit-tab-list ul{
	list-style-type: none;
	padding: 0;
	margin-bottom: 0;
}
.pbmit-tabs .pbmit-tab-list ul li{
	display: inline-block;
    width: 50%;
	padding-left: 27px;
	position: relative;
	color: var(--pbmit-gudfin-secondary-color);
	margin-bottom: 11px;
	font-size: 16px;
}
.pbmit-tabs .pbmit-tab-list ul li.pbmit-faded-line{
	color: rgba(var(--pbmit-gudfin-blackish-color-rgb), 0.2);
}
.pbmit-tabs .pbmit-tab-list ul li.pbmit-faded-line::before{
	color: rgba(var(--pbmit-gudfin-global-color-rgb), 0.2)
}
.rtl .pbmit-tabs .pbmit-tab-list ul li{
	padding: 0 40px 0 0;
}
.pbmit-tabs .pbmit-tab-list ul li:last-child{
	margin-bottom: 0;
}
.pbmit-tabs .pbmit-tab-list ul li::before{
	font-family: "pbminfotech-base-icons";
    position: absolute;
    content: "\e89a";
    font-size: 10px;
    line-height: 22px;
    left: 0;
    top: 3px;
    color: var(--pbmit-gudfin-global-color);
}
.rtl .pbmit-tabs .pbmit-tab-list ul li::before{
	right: 0;
	left: inherit;
}
.pbmit-tabs .pbmit-tab-list li span{
	word-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
/* Tabs icon */
.pbmit-tabs .pbmit-tab-content .pbmit-tab-icon-wrap {
	display: flex;
	align-items: center;
}
.pbmit-tabs .pbmit-tab-content .pbmit-tabs-box-svg,
.pbmit-tabs .pbmit-tab-content .pbmit-tabs-box-icon {
	width: 85px;
	min-width: 85px;
	height: 85px;
	line-height: 100px;
	font-size: 50px;
	margin-right: 25px;
	text-align: center;
	display: inline-block;
	position: relative;
	border-radius: 10px;
	color: var(--pbmit-gudfin-secondary-color);
	fill: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-tabs .pbmit-tab-content .pbmit-tabs-box-svg {
	line-height: 85px;
}
.pbmit-tabs .pbmit-tab-content .pbmit-tab-icon-wrap svg {
	width: 50px;
	height: 50px;
	fill: var(--pbmit-gudfin-secondary-color);
}
.pbmit-tabs .pbmit-tab-content .pbmit-desc-tabs {
	padding-bottom: 40px;
	display: inline-block;
}
.pbmit-portfolio-tab-btn a{
	padding: 18px 30px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	color: var(--pbmit-gudfin-global-color);
	border: 1px solid var(--pbmit-gudfin-global-color);
}
.pbmit-portfolio-tab-btn a {
	border-radius: 10px;
	color: var(--pbmit-gudfin-white-color);
	border-color: var(--pbmit-gudfin-white-color);
}
.pbmit-portfolio-tab-btn a:hover {
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/* Tabs bg-color */
.pbmit-elementor-bg-color-secondary .pbmit-tab-link,
.pbmit-elementor-bg-color-blackish .pbmit-tab-link,
.pbmit-elementor-bg-color-secondary .pbmit-tabs .pbmit-tab-content-title,
.pbmit-elementor-bg-color-blackish .pbmit-tabs .pbmit-tab-content-title{
	border-color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.5);
}
.pbmit-elementor-bg-color-blackish .pbmit-tab-link:hover, 
.pbmit-elementor-bg-color-blackish .pbmit-tab-link.pbmit-tab-li-active,
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-link.pbmit-tab-li-active {
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover .pbmit-tab-discount-wrap h3, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-li-active .pbmit-tab-discount-wrap h3,
.pbmit-elementor-bg-color-blackish .pbmit-tab-link:hover .pbmit-tab-discount-wrap h3, 
.pbmit-elementor-bg-color-blackish .pbmit-tab-li-active .pbmit-tab-discount-wrap h3 {
    background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-elementor-bg-color-blackish .pbmit-tab-link:hover .pbmit-tab-highlight i, 
.pbmit-elementor-bg-color-blackish .pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-highlight i,
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover .pbmit-tab-highlight i, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-highlight i {
	color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tabs .pbmit-tab-heading::before{
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tabs .pbmit-tab-price_freq,
.pbmit-elementor-bg-color-blackish .pbmit-tabs .pbmit-tab-price_freq{
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.80)
}
.pbmit-elementor-bg-color-blackish .pbmit-tab-link:hover,
.pbmit-elementor-bg-color-blackish .pbmit-tab-link.pbmit-tab-li-active{
	border-color: var(--pbmit-gudfin-descondary-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover .pbmit-tab-heading, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-heading{
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tab-content.pbmit-tab-active .pbmit-tab-content-title,
.pbmit-elementor-bg-color-blackish .pbmit-tab-content.pbmit-tab-active .pbmit-tab-content-title{
	color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover .pbmit-tab-price-w, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-price-w{
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-secondary .pbmit-tab-link:hover .pbmit-tab-price_freq, 
.pbmit-elementor-bg-color-secondary .pbmit-tab-link.pbmit-tab-li-active .pbmit-tab-price_freq{
	color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.80);
}
.pbmit-elementor-bg-color-secondary .pbmit-tabs .pbmit-tabs-btn a{
	color: var(--pbmit-gudfin-secondary-color);
	background: linear-gradient(180deg, var(--pbmit-gudfin-white-bg-color) 0%, rgba(var(--pbmit-gudfin-white-color-rgb), 0.87) 53.85%);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-tab-content-heading{
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-tabs .pbmit-tab-list ul li::before {
	color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-elementor-bg-color-globalcolor .pbmit-tabs .pbmit-tab-list ul li.pbmit-faded-line::before{
    color: rgba(var(--pbmit-gudfin-secondary-color-rgb), 0.2);
}
.pbmit-text-color-white .pbmit-tabs .pbmit-tab-list ul li{
	color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.80);
}
.pbmit-text-color-blackish .pbmit-tabs .pbmit-tab-list ul li{
	color: rgba( var(--pbmit-gudfin-blackish-color-rgb), 0.80);
}
.pbmit-elementor-bg-color-white .pbmit-tab-link:not(.pbmit-tab-li-active),
.pbmit-elementor-bg-color-white .pbmit-tabs .pbmit-tab-content-inner {
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-elementor-bg-color-white .pbmit-tab-notification::after,
.pbmit-elementor-bg-color-white .pbmit-tab-link:not(.pbmit-tab-li-active) .pbmit-tab-discount-wrap h3 {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
/***
===============================
	Custom Css
===============================
***/
/* pbmit-btn-style-text */
.pbmit-btn-style-text .elementor-button-wrapper .elementor-button .elementor-button-text {
	padding: 0;
}
.pbmit-btn-style-text .elementor-button-wrapper .elementor-button .elementor-button-icon {
	width: 20px;
}
/* elementor-button */
.pbmit-slider-btn a div > div,
.pbmit-blog-classic .pbmit-read-more-link a,
.pbmit-slider-button-text span.pbmit-button-text-normal,
.pbmit-team-btn a,
.pbmit-service-btn,
.pbmit-price-btn a,
.pbmit-ihbox-btn a,
.elementor-button .elementor-button-content-wrapper {
	display: inline-flex;
}
.pbmit-team-style-2 .pbmit-ihbox-btn a,
.pbmit-slider-button-text,
.elementor-widget-button .elementor-button{
	padding: 14px 15px 13px 25px;
	display: inline-flex;
	transition: all 0.4s ease;
}
.pbmit-team-style-2 .pbmit-ihbox-btn a:hover,
.elementor-widget-button .elementor-button:hover {
	padding: 14px 25px 13px 15px;
}
.pbmit-btn-style-text.elementor-widget-button .elementor-button:hover {
	padding: 0;
}
.pbmit-tabs .pbmit-tabs-btn a,
.pbmit-footer-newsletter .pbmit-form-btn,
.pbmit-search-results-load-btn a,
.pbmit-blog-classic .pbmit-read-more-link a,
.pbmit-slider-button-text,
.pbmit-header-area-btn a,
.pbmit-price-btn a{
	border-radius: 5px;
	padding: 13px 15px 14px 25px;
	display: inline-flex;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
	transition: all 0.4s ease;
	align-items: center;
}
.pbmit-tabs .pbmit-tabs-btn a:hover,
.pbmit-footer-newsletter .pbmit-form-btn:hover,
.pbmit-search-results-load-btn a:hover,
.pbmit-blog-classic .pbmit-read-more-link a:hover,
.pbmit-slider-button-text:hover,
.pbmit-header-area-btn a:hover,
.pbmit-price-btn a:hover {
	padding: 13px 25px 14px 15px;
}
.pbmit-ihbox-btn .pbmit-btn-wrapper,
.pbmit-blog-btn .pbmit-btn-wrapper{
	display: inline-flex;
	transition: all 0.4s ease;
}
.n2-ss-slider .pbmit-slider-btn a,
.pbmit-footer-newsletter .pbmit-form-btn,
.pbmit-search-results-load-btn a,
.pbmit-price-btn a,
.pbmit-blog-classic .pbmit-read-more-link a,
.pbmit-button-wrapper,
.elementor-widget-button.pbmit-btn-style-flat.pbmit-btn-shape-square .elementor-button {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.pbmit-slider-btn a div > div,
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-render span,
.pbmit-footer-newsletter .pbmit-form-btn span.pbmit-button-render,
.pbmit-search-results-load-btn a span,
.pbmit-blog-classic .pbmit-read-more-link .pbmit-btn-text span,
.pbmit-slider-button-text span.pbmit-button-text-normal,
.pbmit-service-btn .pbmit-button-text span,
.pbmit-header-area-btn .pbmit-btn-wrapper .pbmit-button-render span,
.pbmit-ihbox-btn .pbmit-btn-wrapper .pbmit-button-render span,
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal,
.pbmit-price-btn .pbmit-btn-wrapper .pbmit-button-render span,
.elementor-button .elementor-button-text .pbmit-button-text span {
	display: flex;
    align-items: center;
	padding-right: 45px;
	padding-left: 2px;
	position: relative;
	transition: all 0.4s ease;
}
.pbmit-slider-btn a div > div::after,
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-render span::after,
.pbmit-footer-newsletter .pbmit-form-btn span.pbmit-button-render::after,
.pbmit-search-results-load-btn a span::after,
.pbmit-blog-classic .pbmit-read-more-link .pbmit-btn-text span::after,
.pbmit-slider-button-text span.pbmit-button-text-normal::after,
.pbmit-service-btn .pbmit-button-text span::after,
.pbmit-header-area-btn .pbmit-btn-wrapper .pbmit-button-render span::after,
.pbmit-ihbox-btn .pbmit-btn-wrapper .pbmit-button-render span::after,
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal::after,
.pbmit-price-btn .pbmit-btn-wrapper .pbmit-button-render span::after,
.elementor-button .elementor-button-text .pbmit-button-text span:after {
	content: "\e82f";
    font-family: "pbminfotech-base-icons";
    position: absolute;
    top: 0;
    right: 2px;
    width: 1em;
    font-size: 10px;
    height: auto;
    z-index: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    background-color: var(--pbmit-gudfin-white-color);
    color: var(--pbmit-gudfin-blackish-color);
    margin-left: 12px;
  	transition: all 0.4s ease;
}
.pbmit-slider-btn a div > div::before,
.pbmit-tabs .pbmit-tabs-btn .pbmit-button-render span::before,
.pbmit-footer-newsletter .pbmit-form-btn span.pbmit-button-render::before,
.pbmit-search-results-load-btn a span::before,
.pbmit-blog-classic .pbmit-read-more-link .pbmit-btn-text span::before,
.pbmit-slider-button-text span.pbmit-button-text-normal::before,
.pbmit-service-btn .pbmit-button-text span::before,
.pbmit-header-area-btn .pbmit-btn-wrapper .pbmit-button-render span::before,
.pbmit-ihbox-btn .pbmit-btn-wrapper .pbmit-button-render span::before,
.pbmit-form-btn .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal::before,
.pbmit-price-btn .pbmit-btn-wrapper .pbmit-button-render span::before,
.elementor-button .elementor-button-text .pbmit-button-text span::before {
	content: "\e82f";
    font-family: "pbminfotech-base-icons";
    position: relative;
    top: 0;
    left: 2px;
    width: 1em;
    font-size: 10px;
    height: auto;
    z-index: 1;
    width: 33px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--pbmit-gudfin-white-color);
    color: var(--pbmit-gudfin-blackish-color);
    margin-left: 12px;
	transition: all 0.4s ease;
	order: -2;
    opacity: 0;
    transform: translateX(-1em);
	margin-left: -35px;
	display: inline-block;
}
.pbmit-slider-btn a:hover > div > div,
.pbmit-tabs .pbmit-tabs-btn a:hover .pbmit-button-render span,
.pbmit-footer-newsletter .pbmit-form-btn:hover span.pbmit-button-render,
.pbmit-search-results-load-btn a:hover span,
.pbmit-blog-classic .pbmit-read-more-link a:hover .pbmit-btn-text span,
.pbmit-slider-button-text:hover span.pbmit-button-text-normal,
.pbmit-service-btn:hover .pbmit-button-text span,
.pbmit-header-area-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span,
.pbmit-ihbox-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span,
.pbmit-form-btn:hover .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal,
.pbmit-price-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span,
.elementor-button:hover .elementor-button-text .pbmit-button-text span {
	padding-right: 0;
}
.pbmit-slider-btn a:hover > div > div::after,
.pbmit-tabs .pbmit-tabs-btn a:hover .pbmit-button-render span::after,
.pbmit-footer-newsletter .pbmit-form-btn:hover span.pbmit-button-render::after,
.pbmit-search-results-load-btn a:hover span::after,
.pbmit-blog-classic .pbmit-read-more-link a:hover .pbmit-btn-text span::after,
.pbmit-slider-button-text:hover span.pbmit-button-text-normal::after,
.pbmit-service-btn:hover .pbmit-button-text span::after,
.pbmit-header-area-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::after,
.pbmit-ihbox-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::after,
.pbmit-form-btn:hover .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal::after,
.pbmit-price-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::after,
.elementor-button:hover .elementor-button-text .pbmit-button-text span:after {
	transform: translateX(4.5em);
	opacity: 0;
	 transition: all 0.4s ease;
}
.pbmit-slider-btn a:hover > div > div::before,
.pbmit-tabs .pbmit-tabs-btn a:hover .pbmit-button-render span::before,
.pbmit-footer-newsletter .pbmit-form-btn:hover span.pbmit-button-render::before,
.pbmit-search-results-load-btn a:hover span::before,
.pbmit-blog-classic .pbmit-read-more-link a:hover .pbmit-btn-text span::before,
.pbmit-slider-button-text:hover span.pbmit-button-text-normal::before,
.pbmit-service-btn:hover .pbmit-button-text span::before,
.pbmit-header-area-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::before,
.pbmit-ihbox-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::before,
.pbmit-form-btn:hover .pbmit-slider-button-text .pbmit-button-text .pbmit-button-text-normal::before,
.pbmit-price-btn a:hover .pbmit-btn-wrapper .pbmit-button-render span::before,
.elementor-button:hover .elementor-button-text .pbmit-button-text span::before {
	opacity: 1;
    transform: translateX(0);
	transition: all 0.4s ease;
	margin-left: 0px;
	margin-right: 10px;
}
.pbmit-blog-btn .pbmit-btn-wrapper .pbmit-button-text span,
.elementor-button .elementor-button-text span {
	display: block;
	transition: all ease 0.4s;
	transform-style: preserve-3d;
}
.pbmit-team-btn a .pbmit-button-icon,
.elementor-button .elementor-button-icon,
.pbmit-price-btn .pbmit-button-icon {
	width: 33px;
    height: 33px;
    line-height: 33px;
	margin-left: 12px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 10px;
   text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.pbmit-ihbox-btn .pbmit-button-icon,
.pbmit-blog-btn .pbmit-button-icon {
	transition: all 0.4s ease;
}
.pbmit-price-btn a .pbmit-button-icon,
.pbmit-team-btn a .pbmit-button-icon {
	border-radius: 50%;
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-shape-square:not(.pbmit-btn-style-outline) .elementor-button .elementor-button-icon {
	width: 40px;
}
.pbmit-btn-shape-round .elementor-button .elementor-button-icon {
	border-radius: 50px;
}
.pbmit-btn-shape-rounded .elementor-button .elementor-button-icon {
	border-radius: 15px;
}
.elementor-button .elementor-button-icon svg {
	width: 20px;
}
.pbmit-ihbox-btn .pbmit-button-icon,
.pbmit-blog-btn .pbmit-button-icon {
	font-size: 12px;
}
.elementor-button .elementor-button-icon svg path,
.pbmit-price-btn .pbmit-button-icon svg path,
.elementor-button .elementor-button-icon svg,
.pbmit-price-btn .pbmit-button-icon svg {
	fill: var(--pbmit-gudfin-white-color);
}
.elementor-editor-active .elementor-widget-button .elementor-widget-container .elementor-button:not(:hover),
.elementor-editor-active .elementor-widget-button .elementor-widget-container .elementor-button:hover,
.elementor-editor-active .elementor-widget-button .elementor-widget-container .elementor-button,
body .elementor-widget-button .elementor-widget-container .elementor-button:hover,
body .elementor-widget-button .elementor-widget-container .elementor-button {
	background-color: transparent;
}
body .elementor-widget-button .elementor-button .elementor-button-icon svg path,
body .elementor-widget-button .elementor-button .elementor-button-icon svg,
body .elementor-widget-button .elementor-button .elementor-button-icon {
	transition: all 0.4s ease;
}
/* elementor-button pbmit-btn-style-flat */
.pbmit-btn-color-white.pbmit-btn-style-flat .elementor-button .elementor-button-icon {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
.pbmit-btn-color-light.pbmit-btn-style-flat .elementor-button .elementor-button-icon {
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-color-blackish.pbmit-btn-style-flat .elementor-button .elementor-button-icon {
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-color-globalcolor.pbmit-btn-style-flat .elementor-button .elementor-button-icon {
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-color-secondary.pbmit-btn-style-flat .elementor-button .elementor-button-icon {
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon {
	background-color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon {
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-blackish .elementor-button:hover .elementor-button-icon {
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-globalcolor .elementor-button:hover .elementor-button-icon {
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-secondary .elementor-button:hover .elementor-button-icon {
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-flat.pbmit-btn-color-white.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-color-white.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-flat.pbmit-btn-color-light .elementor-button:not(:hover) .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-color-light .elementor-button:not(:hover) .elementor-button-icon svg,
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button .elementor-button-icon svg,
.pbmit-btn-style-flat.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-color-white .elementor-button:hover .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-flat.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-flat.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-color-globalcolor.pbmit-btn-style-flat.pbmit-btn-hover-color-secondary .elementor-button:hover .elementor-button-icon {
	color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
/* elementor-button pbmit-btn-style-outline */
.pbmit-btn-style-text .elementor-button .elementor-button-content-wrapper {
	gap: 16px;
}
.pbmit-btn-style-text .elementor-button:hover .elementor-button-icon {
	transform: translateX(-6px);
}
.pbmit-btn-style-text .elementor-button:hover .elementor-button-text {
	transform: translateX(6px);
}
/* elementor-button pbmit-btn-style-outline */
.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border: 1px solid var(--pbmit-gudfin-global-color);
}
.pbmit-btn-shape-square.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-left: none;
}
.pbmit-btn-color-white.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-color-light.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-color-blackish.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-color-globalcolor.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-color-secondary.pbmit-btn-style-outline .elementor-button .elementor-button-icon {
	border-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon {
	border-color: var(--pbmit-gudfin-white-color);
	background-color: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon {
	border-color: var(--pbmit-gudfin-light-bg-color);
	background-color: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-blackish .elementor-button:hover .elementor-button-icon {
	border-color: var(--pbmit-gudfin-blackish-color);
	background-color: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-globalcolor .elementor-button:hover .elementor-button-icon {
	border-color: var(--pbmit-gudfin-global-color);
	background-color: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-secondary .elementor-button:hover .elementor-button-icon {
	border-color: var(--pbmit-gudfin-secondary-color);
	background-color: var(--pbmit-gudfin-secondary-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-blackish .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-hover-color-blackish .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-outline.pbmit-btn-hover-color-secondary .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-hover-color-secondary .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-outline.pbmit-btn-hover-color-globalcolor .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-hover-color-globalcolor .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-outline.pbmit-btn-color-white .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-color-white .elementor-button .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-white-color);
}
.pbmit-btn-style-outline.pbmit-btn-color-light .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-color-light .elementor-button .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-light-bg-color);
}
.pbmit-btn-style-outline.pbmit-btn-color-blackish .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-color-blackish .elementor-button .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-blackish-color);
}
.pbmit-btn-style-outline.pbmit-btn-color-globalcolor .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-color-globalcolor .elementor-button .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-global-color);
}
.pbmit-btn-style-outline.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-hover-color-light .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-outline.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-hover-color-white .elementor-button:hover .elementor-button-icon svg,
.pbmit-btn-style-outline.pbmit-btn-color-secondary .elementor-button .elementor-button-icon svg path,
.pbmit-btn-style-outline.pbmit-btn-color-secondary .elementor-button .elementor-button-icon svg {
	fill: var(--pbmit-gudfin-secondary-color);
}
/* Blog Text Button */
.pbmit-ihbox-btn a,
.pbmit-blog-btn {
	gap: 15px;
	display: inline-flex;
}
.pbmit-ihbox-btn {
	display: inline-block;
}
.pbmit-btn-wrapper .pbmit-blog-btn .pbmit-button-text
/* Heading Icon */
.pbmit-contact-bg-blur.elementor-element.e-con::before {
	filter: blur(40px);
}
/* custom css */
span.pbmit-custom-button {
	background-color: var(--pbmit-gudfin-global-color);
    color: var(--pbmit-gudfin-white-color);
    border-radius: 50px;
    padding: 0px 16px 4px;
    font-weight: bold;
    margin-right: 5px;
}
a.pbmit-custom-button-link {
	position: relative;
}
a.pbmit-custom-button-link::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0	;
	background-color: var(--pbmit-gudfin-blackish-color);
	-webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
span.pbmit-custom-button.pbmit-custom-button-new {
	line-height: 30px;
	background-color: var(--pbmit-gudfin-light-bg-color);
	border-radius: 5px;
	color: var(--pbmit-gudfin-blackish-color);
	font-size: 12px;
	font-weight: 600;
	line-height: 26px; /* 216.667% */
	letter-spacing: 0.96px;
	text-transform: uppercase;
	padding: 7px 16px 7px;
}
.pbmit-elementor-bg-color-blackish a.pbmit-custom-button-link,
.pbmit-elementor-bg-color-secondary a.pbmit-custom-button-link {
	color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-blackish a.pbmit-custom-button-link::after,
.pbmit-elementor-bg-color-secondary a.pbmit-custom-button-link::after {
	background-color: var(--pbmit-gudfin-white-color);
}
.pbmit-elementor-bg-color-blackish a.pbmit-custom-button-link:hover,
.pbmit-elementor-bg-color-secondary a.pbmit-custom-button-link:hover {
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-elementor-bg-color-blackish a.pbmit-custom-button-link:hover::after,
.pbmit-elementor-bg-color-secondary a.pbmit-custom-button-link:hover::after {
	background-color: var(--pbmit-gudfin-global-color);
}
a.pbmit-custom-button-link:hover:after {
	background-color: var(--pbmit-gudfin-global-color);
	width: 0;
}
a.pbmit-custom-button-link.pbmit-color-white:after {
	background-color: var(--pbmit-gudfin-white-bg-color);
}
a.pbmit-custom-button-link.pbmit-color-white:hover:after {
	background-color: var(--pbmit-gudfin-global-color);
	width: 0;
}
.pbmit-shadow-custom {
	box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.08);
}
.pbmit-pattarn-ab::before,
.pbmit-pattarn-ab::after {
	content: '' ;
    position: absolute;
    width: 212px;
    height: 106px;
    right: 0 !important;
	left: inherit !important	;
    top: 0;
	background-color: rgba( var(--pbmit-gudfin-white-color-rgb), 0.1);
}
.pbmit-pattarn-ab::before{
	height: 212px !important;
    width: 106px !important;
}
.pbmit-pattarn-ab-color .e-con-inner::after,
.pbmit-pattarn-ab-color .e-con-inner::before {
	content: '';
    position: absolute;
    width: 75px;
    height: 40px;
    left: 100px !important;
    right: inherit !important;
    top: 150px;
    border: 1px solid var(--pbmit-gudfin-global-color);
}
.pbmit-pattarn-ab-color .e-con-inner::before{
	height: 75px !important;
    width: 40px !important;
    top: 115px;
    left: 135px !important;
    right: inherit !important;
}
.pbmit-video-bg-blur .elementor-icon-wrapper .elementor-icon {
	backdrop-filter: blur(20px);
}
.pbmit-video-bg-blur .elementor-icon-wrapper .elementor-icon:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: 50%;
    transition: all .3s ease-in;
    animation: video_animation 2.5s ease infinite;
}
@keyframes video_animation {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}
/* stratum map css */
.tippy-content {
	-webkit-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}
.tippy-box {
	max-width: 230px !important;
	background-color: var(--pbmit-gudfin-blackish-color) !important;
}
.tippy-box img {
	border-radius: 5px !important;
}
.tippy-box[data-theme~=dark] {
	background-color: var(--pbmit-gudfin-blackish-color) !important;
}
.stratum-image-hotspot__tooltip-wrapper {
	padding: 15px 15px 0 15px !important;
}
.stratum-image-hotspot__tooltip-wrapper .stratum-image-hotspot__tooltip-title{
	font-size: 18px !important;
	margin-bottom: 5px !important;
	font-weight: 400 !important;
	margin-bottom: 10px !important;
}
.stratum-image-hotspot__tooltip-content {
	color: #7C898D;
	font-size: 15px;
}
.tippy-box[data-theme~=dark] .stratum-image-hotspot__tooltip-content {
	color: var(--pbmit-gudfin-white-color) !important;
}
.pbmit-expand-right .stratum-image-hotspot {
	position: static;
}

/* default header */
.pbmit-main-header-area.pbmit-default-header {
	position: relative;
}
.pbmit-template-header-wrapper .pbmit-default-header .container>div {
	padding: 25px 0;
}
.pbmit-main-header-area.pbmit-default-header .pbmit-logo img {
    width: 200px;
}
.pbmit-preheader-text a {
	color: var(--pbmit-gudfin-white-color);
	position: relative;
}
.pbmit-preheader-text a:hover{
	color: var(--pbmit-gudfin-global-color);
}
.pbmit-preheader-text a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--pbmit-gudfin-white-color);
    -webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.pbmit-preheader-text a:hover:after {
    background-color: var(--pbmit-gudfin-global-color);
    width: 0;
}
/* padding set al widget */
#page .widget.widget_categories .select2-container,
#page .widget.widget_archive .select2-container,
.widget.widget_block.widget_archive ul,
.widget.widget_block.widget_recent_entries ul,
.widget_tag_cloud .wp-block-tag-cloud,
#page .widget.widget_block.widget_archive .select2-container,
#page .widget.widget_block.widget_categories .select2-container,
.widget.wp-block-tag-cloud,
.widget ul.wp-block-social-links,
.widget.widget_block.widget_rss ul,
.widget ul.wp-block-page-list,
.widget .logged-out,
.widget .logged-in,
.widget  .wp-block-calendar.wp-block-button.aligncenter,
.widget .wp-block-calendar {
	padding: 20px;
}
.widget.widget_text .widget-title + .textwidget,
.widget.widget_rss ul,
.widget.widget_archive ul,
.widget.widget_recent_entries ul,
.widget.widget_recent_comments ul,
.widget.widget_nav_menu ul.menu,
.widget.widget_meta ul,
.widget.widget_pages>ul,
.widget .widget_archive ul {
	padding: 0 20px 20px 20px;
}
.widget .has-login-form input[type=submit] {
	border-radius: 5px;
}
.pbminfotech-sidebar ul.wc-block-product-categories-list.wc-block-product-categories-list--depth-0 {
    padding: 20px 20px 5px;
}
.wc-block-product-categories__dropdown .select2-container {
    padding-bottom: 0;
}
.widget .wc-block-product-categories.is-dropdown {
    display: flex;
    padding: 20px 20px 0 20px;
}
.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
    padding: 0 20px;
}
.widget.widget_calendar .calendar_wrap {
    padding: 0 20px;
}
.pbminfotech-sidebar .widget.widget_categories {
	padding-bottom: 0;
}
.pbmit-image-shape{
	position: relative;
}
.pbmit-image-shape::after {
	content: '';
	position: absolute;
	width: 30px;
	height:89%;
	background-color: var(--pbmit-gudfin-light-bg-color);
	right: -30px;
	top: 40px;
	bottom: 30px;
	z-index: -1;
}
.pbmit-hover-text:hover  + .pbmit-hover-button, 
.pbmit-hover-button:hover {
	transform: scale(1);
}
.pbmit-hover-button {
	transform: scale(0);
	-webkit-transition: all .35s ease-out;
	-moz-transition: all .35s ease-out;
	-o-transition: all .35s ease-out;
	-ms-transition: all .35s ease-out;
	transition: all .35s ease-out;
}
.pbmit-custom-heading .pbmit-element-title span.pbmit-testimonial-ratings {
	font-size: 24px;
    letter-spacing: -0.96px;
}
.pbmit-custom-heading .pbmit-element-title .pbmit-span-underline {
	text-decoration: underline;
	font-weight: 600;
	font-size: 20px;
}
/*  */
.e-n-tabs-heading {
	position: relative;
}

.e-n-tabs-heading::before {
	content: '';
	position: absolute;
	width: 500%;
	height: 100%;
	background-color: #fff;
	left: -1000px;
	border-top: 1px solid #E4E4E4;
	border-bottom: 1px solid #E4E4E4;
	z-index: 0;
}
.elementor-widget-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"] {
	border-top: 3px solid var(--pbmit-gudfin-global-color) !important;
}
.pbmit-box-shadow {
	box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.08);
}
.elementor-element.elementor-widget-n-tabs > .e-n-tabs > .e-n-tabs-heading > :is( .e-n-tab-title > .e-n-tab-title-text, .e-n-tab-title ):last-child {
	border-right: 0 !important;
}

/* header CSS */
body:not(.elementor-editor-active) .pbmit-header-style-1 {
    position: absolute !important;
    top: 15px;
}

body:not(.elementor-editor-active) .pbmit-header-style-3 {
    position: absolute !important;
}

/* --------------------------------------
 * Smart Slider 3 Css
 * ---------------------------------------*/

/* initial animation */
.n2-section-smartslider .n2-ss-slide [class*="pbmit-text-ani-"]:not([class*="pbmit-text-ani-up-"], [class*="pbmit-text-ani-down-"], [class*="pbmit-text-ani-flip-"]) {
	opacity: 0;
}
/* Slider Button */
.pbmit-slider-btn a div > div{
	display: flex !important;
}
.pbmit-slider-btn a div > div::before,
.pbmit-slider-btn a div > div::after {
	background-color: var(--pbmit-gudfin-global-color);
}
.n2-ss-slider .n2-ss-layer .n2-ss-button-container a {
	-webkit-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.pbmit-slider-btn.white-bg a div > div::before,
.pbmit-slider-btn.white-bg a div > div::after{
	background-color: var(--pbmit-gudfin-white-color);
}
/* custom class */
.pbmit-shape-blur {
	filter: blur(100px);
}
.pbmit-backdrop-20px {
	backdrop-filter: blur(20px);
}
.pbmit-video-border iframe{
	border-radius: 5px;
}
.n2-ss-slider .pbmit-icon-list .n2-ow-all p:has(i){
	display: flex;
	align-items: center;
}
.n2-ss-slider .pbmit-icon-list .n2-ow-all i{
	color: var(--pbmit-gudfin-global-color);
    font-size: 26px;
    padding-right: 10px;
	display: inline-block;
	vertical-align: middle;
}
.n2-ss-slider .pbmit-full-img .n2-ss-item-image-content,
.n2-ss-slider .pbmit-full-img .n2-ss-item-image-content img{
	height: 100%;
	object-fit: cover;
}
.n2-ss-slide .pbmit-scroll-text .n2-ss-item-content{
    transform: translateX(-30px);
    transition: transform 0.6s ease-out;
}
body.scrolled .n2-ss-slide .pbmit-scroll-text .n2-ss-item-content {
    transform: translate(60px) !important;
}

/* Slider bullet styles */
.n2-ss-slider .n2-ow-all [aria-label*="pbmit-bullet-style"]::after,
.n2-ss-slider .n2-ow-all [aria-label*="pbmit-bullet-style"]::before {
	display: block;
}
[aria-label="pbmit-bullet-style-1"] .n2-bullet:hover,
[aria-label="pbmit-bullet-style-1"] .n2-bullet.n2-active {
	transition: all 0.4s ease;
	transform: scale(1.2);
	background: radial-gradient(circle, #fff 0, #fff 2px, transparent 4px) center center no-repeat !important;
}
/* Slider bullet style 2*/
[aria-label="pbmit-bullet-style-2"],
[aria-label="pbmit-bullet-style-3"] {
    counter-reset: item;
}
[aria-label="pbmit-bullet-style-2"] .n2-bullet {  
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease
}
[aria-label="pbmit-bullet-style-2"] .n2-bullet::before {
	content: "0" counter(item) !important;
	display: block !important;
    counter-increment: item !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1;
    letter-spacing: -0.32px;
}
[aria-label="pbmit-bullet-style-2"] .n2-bullet::after {
	content: ' ';
	display: block !important;
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(25px);
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}
[aria-label="pbmit-bullet-style-2"] .n2-bullet.n2-active::after {
	height: 100%;
}
[aria-label="pbmit-bullet-style-2"] .n2-bullet:hover {
	background: rgba(0, 0, 0, 0.21) !important;
}
/* Slider bullet style 3*/
[aria-label="pbmit-bullet-style-3"] {
    overflow: hidden;
}
[aria-label="pbmit-bullet-style-3"] .n2-bullet {
    width: 16px;
    height: 16px;
    position: relative;
    transition: all .4s ease;
	z-index: 2;
}
[aria-label="pbmit-bullet-style-3"] > div {
	position: relative;
    transition: all .4s ease;
	padding-right: 24px;
    padding-left: 0px;
}
[aria-label="pbmit-bullet-style-3"] > div::before {
    content: "" !important;
    display: block !important;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 10px;
    transition: width .4s ease;
    top: 8px;
    width: 0;
}
[aria-label="pbmit-bullet-style-3"] > div::after {
    content: "0" counter(item) !important;
    display: block !important;
    counter-increment: item !important;
    position: absolute;
	text-align: left;
    top: 0;
    letter-spacing: -0.32px;
    /* font-family: "Plus Jakarta Sans";
    font-weight: 700; */
    font-size: 16px;
    color: #fff;
    transition: all .4s ease;
    left: 0;
    width: 100%;
}
[aria-label="pbmit-bullet-style-3"] > div:has(.n2-active)::before {
    width: 68px;
}
[aria-label="pbmit-bullet-style-3"] > div:has(.n2-active) {
    padding-left: 68px;
}
/* Custom bullet styles */
.n2-ss-slider :has(.pbmit-slider-demo1) .n2-ss-control-bullet {
	margin-left: 13vw;
	margin-bottom: 85px;
}

/* Homepage 1 Slider */
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo1 .pbmit-text-ani-1 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 0.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo1 .pbmit-text-ani-2 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 1.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo1 .pbmit-text-ani-3 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 1.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo1 .pbmit-text-ani-4 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 2.2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo1 .pbmit-img-ani-1 .n2-ss-item-image-content{
	animation: imgAnimationOne 8s ease infinite;
	animation-delay: 0.4s;
}

/* Homepage 2 Slider */
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-1 {
	animation: slideDown 0.8s ease forwards;
	animation-delay: 0.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-2{
	animation: reveal 0.8s ease forwards;
	animation-delay: 1s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-3 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 1.6s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-4 {
	animation: slideUp 0.8s ease forwards;
	animation-delay: 2.2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-5 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 2.6s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-6 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 3s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo2 .pbmit-text-ani-7 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 3.2s;
}

/* Homepage 3 Slider */
.n2-ss-slide.n2-ss-slide-active :has(.pbmit-slider-demo3) .pbmit-img-ani-1 .n2-ss-item-image-content{
	animation: imgAnimationOne 8s ease infinite;
	animation-delay: 0.4s;
}
.n2-ss-slide.n2-ss-slide-active :has(.pbmit-slider-demo3) .pbmit-img-ani-2 .n2-ss-item-image-content{
	opacity: 0;
	animation: slideRightTwo 0.8s ease forwards;
	animation-delay: 0.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo3 .pbmit-text-ani-1 {
	animation: slideDownTwo 0.8s ease forwards;
	animation-delay: 0.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo3 .pbmit-text-ani-2 {
	animation: reveal 0.8s ease forwards;
	animation-delay: 1.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo3 .pbmit-text-ani-3 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo3 .pbmit-text-ani-4 {
	animation: slideLeft 0.8s ease forwards;
	animation-delay: 2.6s;
}

/* Homepage 4 Slider */
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-1 {
	animation: slideLeftTwo 0.4s ease forwards;
	animation-delay: 0.2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-2 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 0.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-3 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 0.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-4 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 1.2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-5 {
	animation: flipReveal 0.8s ease forwards;
	animation-delay: 1.6s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-6 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 1.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-7 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 2s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-8 {
	animation: flipReveal 0.8s ease forwards;
	animation-delay: 2.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-8:nth-of-type(2) {
	animation-delay: 2.6s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo4 .pbmit-text-ani-8:nth-of-type(3) {
	animation-delay: 2.8s;
}

/* Homepage 5 Slider */
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo5 .pbmit-text-ani-1 {
	animation: smoothMaskRight 0.8s ease forwards;
	animation-delay: 0.4s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo5 .pbmit-text-ani-2 {
	animation: slideUpTwo 0.8s ease forwards;
	animation-delay: 0.8s;
}
.n2-ss-slide.n2-ss-slide-active .pbmit-slider-demo5 .pbmit-text-ani-3 {
	animation: slideLeft 0.8s ease forwards;
	animation-delay: 1.2s;
}


/* slide down */
@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-50px); /* Starts above its position */
	}
	100% {
		opacity: 1;
		transform: translateY(0); /* Settles at original position */
	}
}
/* slide down two */
@keyframes slideDownTwo {
	0% {
		opacity: 0;
		transform: translateY(-100%); /* Starts above its position */
	}
	100% {
		opacity: 1;
		transform: translateY(0%); /* Settles at original position */
	}
}
/* slide up */
@keyframes slideUp {
	0% {
		opacity: 0;
		transform: translateY(50%); /* Starts above its position */
	}
	100% {
		opacity: 1;
		transform: translateY(0%); /* Settles at original position */
	}
}
@keyframes slideUpTwo {
	from {
		opacity: 0;
		transform: perspective(600px) translate3d(0, 50px, -40px) rotateX(-70deg);
	}
	to {
		opacity: 1;
		transform: perspective(600px) translate3d(0, 0, 0) rotateX(0);
	}
}
/* bottom up */
@keyframes bottomUp {
	0% {
		opacity: 0;
		transform: translateY(30px); /* Starts lower down */
	}
	100% {
		opacity: 1;
		transform: translateY(0); /* Ends at original position */
	}
}
/* slide left */
@keyframes slideLeft {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}
	to {
		opacity: 1;
		transform: translateX(0%);
	}
}
/* slide left */
@keyframes slideLeftTwo {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
/* slide left */
@keyframes slideRight {
	from {
		opacity: 0;
		transform: translateX(75px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideRightTwo {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0%);
	}
}
@keyframes flipReveal {
	from {
		opacity: 0;
		transform: perspective(1000px) rotateX(60deg);
	}
	to {
		opacity: 1;
		transform: perspective(1000px) rotateX(0deg);
	}
}
@keyframes flipRevealTwo {
	from {
		opacity: 0;
		transform: translateX(0px) rotateX(-70deg);
	}
	to {
		opacity: 1;
		transform: translateX(1px) rotateX(0deg);
	}
}
/* flip up */
@keyframes flipUp {
	from {
		opacity: 0;
		transform: translateY(80px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* image animation */
@keyframes imgAnimationOne {
	0%,
	100% {
		transform: translate3d(0, 10px, 0);
	}
	50% {
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes imgAnimationTwo {
	0%,
	100% {
		transform: translate3d(10px, 0, 0);
	}
	50% {
		transform: translate3d(0, 10px, 0);
	}
}
@keyframes zoom {
	0% {
		opacity: 1;
		transform: scale(0.75);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* reveal */
@keyframes reveal {
	0% {
		opacity: 1;
		width: 0%;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}
/* reveal two */
@keyframes revealTwo {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* reveal Three */
@keyframes revealThree {
	0% {
		opacity: 0;
		transform: translateX(0%);
	}
	1% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateX(100%);
	}
}
/* reveal four */
@keyframes revealFour {
	0% {
		opacity: 1;
		height: 0%;
	}
	100% {
		height: 100%;
		opacity: 1;
	}
}
@keyframes rotate {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes smoothMaskLeft {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translateX(30%)
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateX(0%)
    }
}
@keyframes smoothMaskRight {
    from {
        opacity: 0;
        clip-path: inset(0 0 0 100%);
        transform: translateX(-30%)
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translateX(0%)
    }
}

/* ==========================================================================
   1. ANIMATION-NAME CLASSES (one per keyframe)
   0.8s ease forwards is baked into every class directly
   ========================================================================== */
.n2-section-smartslider .n2-ss-slide [class*="anim-"]{
    opacity: 0;
}
.anim-flip-up          { animation: flipUp 0.8s ease forwards; }
.anim-flip-reveal      { animation: flipReveal 0.8s ease forwards; }
.anim-flip-reveal-two  { animation: flipRevealTwo 0.8s ease forwards; }
.anim-img-one          { animation: imgAnimationOne 0.8s ease forwards; }
.anim-img-two          { animation: imgAnimationTwo 0.8s ease forwards; }
.anim-zoom             { animation: zoom 0.8s ease forwards; }
.anim-reveal           { animation: reveal 0.8s ease forwards; }
.anim-reveal-two       { animation: revealTwo 0.8s ease forwards; }
.anim-reveal-three     { animation: revealThree 0.8s ease forwards; }
.anim-reveal-four      { animation: revealFour 0.8s ease forwards; }
.anim-slide-down       { animation: slideDown 0.8s ease forwards; }
.anim-slide-down-two   { animation: slideDownTwo 0.8s ease forwards; }
.anim-slide-up         { animation: slideUp 0.8s ease forwards; }
.anim-slide-up-3d      { animation: slideUpTwo 0.8s ease forwards; }
.anim-bottom-up        { animation: bottomUp 0.8s ease forwards; }
.anim-slide-left       { animation: slideLeft 0.8s ease forwards; }
.anim-slide-left-alt   { animation: slideLeftTwo 0.8s ease forwards; }
.anim-slide-right      { animation: slideRight 0.8s ease forwards; }
.anim-slide-right-two  { animation: slideRightTwo 0.8s ease forwards; }
.anim-rotate            { animation: rotate 1.2s linear infinite; }
.anim-mask-left         { animation: smoothMaskLeft 0.8s ease forwards; }
.anim-mask-right        { animation: smoothMaskRight 0.8s ease forwards; }

 
/* ==========================================================================
   2. DELAY UTILITIES — 0.2s to 4s in 0.2s steps
   Class name = seconds with "." replaced by "-" (1.4s -> delay-14)
   ========================================================================== */
.delay-02 { animation-delay: 0.2s; }
.delay-04 { animation-delay: 0.4s; }
.delay-06 { animation-delay: 0.6s; }
.delay-08 { animation-delay: 0.8s; }
.delay-10 { animation-delay: 1.0s; }
.delay-12 { animation-delay: 1.2s; }
.delay-14 { animation-delay: 1.4s; }
.delay-16 { animation-delay: 1.6s; }
.delay-18 { animation-delay: 1.8s; }
.delay-20 { animation-delay: 2.0s; }
.delay-22 { animation-delay: 2.2s; }
.delay-24 { animation-delay: 2.4s; }
.delay-26 { animation-delay: 2.6s; }
.delay-28 { animation-delay: 2.8s; }
.delay-30 { animation-delay: 3.0s; }
.delay-32 { animation-delay: 3.2s; }
.delay-34 { animation-delay: 3.4s; }
.delay-36 { animation-delay: 3.6s; }
.delay-38 { animation-delay: 3.8s; }
.delay-40 { animation-delay: 4.0s; }