/******************************

    00 - Home
    01 - Inner Page
		01 - About Us
		02 - Our History
		03 - Service Detail
        04 - Portfolio Single 
        05 - Blog Detail
             Sidebar Right
             Blog Large
             Blog Single
        06 - Team Single
        07 - Contact Us
        08 - Comment Form
    
******************************/

/*----------------------------------------*/
/*  00 - Home
/*----------------------------------------*/
#page{
	position: relative;
	overflow: hidden;
}
/** Homepage 01 **/
.about-us-one-bg{
    /* background-image: url(../images/homepage-1/bg/about-bg.png); */
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 10% auto;
    position: relative;
}
.about-us-one-bg .pbmit-ihbox-content{
    padding: 45px 12px 0px 0px;
}
.about-us-one-bg .pbmit-ihbox-content p span{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--pbmit-blackish-color);
}
.about-us-one-leftbox{
	display: flex;
	width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
	padding-right: 50px;
}
.about-us-one-leftbox .pbmit-heading-subheading{
    width: 100%;
}
.about-us-one-leftbox .ihbox-style-area{
	padding-right: 30px;
}
.service-section-one{
    margin: 0px 50px 0px 50px;
    position: relative;
    background-image: url(../images/homepage-1/service/service-bg.png);
    background-repeat: no-repeat;
    background-color: var(--pbmit-secondary-color) !important;
    border-radius: 30px 30px 30px 30px;
}
.service-arrow,
.testimonial-arrow,
.team-arrow{
	margin-left: auto;
    position: absolute;
    right: 12px;
    display: flex;
    align-items: end;
    height: 45px;
    bottom: 10px;
}
.marquee-section-one{
    padding: 90px 0px 0px 0px;
}
.contact-us-section-one{
    overflow: hidden;
    padding: 0px 40px 0px 40px;
}
.fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeft{
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
.fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRight{
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
.animated.animated-slow {
    animation-duration: 2s;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.contact-us-section-one .contact-us-image{
    background-image: url(../images/homepage-1/bg/contact-col-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 15px 0px 0px;
    border-radius: 30px 30px 30px 30px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.contact-us-section-one .contact-us-bg{
    /* background-image: url(../images/homepage-1/bg/demo-1-contact-bg.png); */
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--pbmit-global-color) !important;
    margin: 0px 0px 0px 15px;
    --e-column-margin-right: 0px;
    --e-column-margin-left: 15px;
    padding: 100px 160px 80px 100px;
    border-radius: 30px 30px 30px 30px;
}
.testimonial-section-one{
    background-image: url(../images/homepage-1/bg/contact-bg-flower.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    padding: 100px 0px 130px 0px;
}
.counter-area{
    border-top: 1px solid #E5E5E5;
    padding: 80px 0;
}
.video-section-bg{
    background-image: url(../images/homepage-1/bg/CTA-bg-image.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 60px 0px 60px;
    --e-column-margin-right: 60px;
    --e-column-margin-left: 60px;
    padding: 240px 0px 180px 0px;
    border-radius: 30px 30px 30px 30px;
}
.video-section-bg .pbmit-heading .pbmit-title{
	font-size: 64px;
	font-weight: 500;
	line-height: 74px;
	margin-bottom: 20px;
	color: var(--pbmit-white-color);
}
.video-section-bg .video-icon-wrapper{
    text-align: left;
    position: relative;
    z-index: 1;
} 
.video-section-bg .video-icon-wrapper a{
    font-size: 55px;
    background-color: var(--pbmit-global-color);
    position: relative;
    border: 5px solid var(--pbmit-white-color);
    border-radius: 50%;
    padding: .5em;
    color: var(--pbmit-white-color);
    fill: var(--pbmit-white-color);
    display: inline-block;
    line-height: 1;
    transition: all .3s;
    text-align: center;
}
.video-section-bg .video-icon-wrapper a::before,
.video-section-bg .video-icon-wrapper a::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 50%;
    border: 8px solid rgba(var(--pbmit-white-color-rgb), .2);
    z-index: -1;
}
.video-section-bg .video-icon-wrapper a::before{
    -webkit-animation: pulse-border-2 1.5s linear infinite;
    -moz-animation: pulse-border-2 1.5s linear infinite;
    -o-animation: pulse-border-2 1.5s linear infinite;
    animation: pulse-border-2 1.5s linear infinite;
}
.video-section-bg .video-icon-wrapper a::after {
    -webkit-animation: pulse-border 1s linear infinite;
    -moz-animation: pulse-border 1s linear infinite;
    -o-animation: pulse-border 1s linear infinite;
    animation: pulse-border 1s linear infinite;
}
@keyframes pulse-border-2{
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
    
    100% {
        transform: scale(1.7);
        -webkit-transform: scale(1.7);
        opacity: 0;
    }
}
@keyframes pulse-border{
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
    
    100% {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
.video-section-bg .video-icon-wrapper a i{
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
    font-size: 25px;
}
.video-section-bg .video-icon-wrapper a i::before{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.video-section-bg .pbmit-widget{
    padding-left: 20px;
    position: relative;
}
.client-section-one{
    padding: 80px 0px 0px 0px;
}

/** Homepage 02 **/
.ihbox-section-two{
    padding: 30px 60px 0px 60px;
}
.service-two-slider .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border-radius: 20px;
	margin: 0 5px !important;
	background-color: var(--pbmit-blackish-color);
}
.service-two-slider .swiper-pagination-bullet-active{
	width: 20px;
	background-color: var(--pbmit-global-color);
}
.marquee-section-two{
    padding: 20px 0px 070px 0px;
}
.about-us-section-two{
    margin: 0px 50px 0px 50px;
    position: relative;
    background-image: url(../images/homepage-1/service/service-bg.png);
    background-repeat: no-repeat;
    border-radius: 30px 30px 30px 30px;
    background-position: top center;
	background-size: cover;
}
.about-us-section-two .about-us-wrap{
    padding: 15px 30px 0px 40px;
}
.about-us-section-two .about-us-two-leftbox{
	position: relative;
}
.about-us-section-two .about-us-two-leftbox img{
    -webkit-mask-image: url(../images/homepage-2/bg/demo2-masking.png);
    -webkit-mask-size: contain;
    -webkit-mask-position: center left;
    -webkit-mask-repeat: no-repeat;
}
.about-us-two-leftbox .ihbox-style-area{
	position: absolute;
	left: 0%;
	width: auto;
	bottom: 0%;
	max-width: 100%;
}
.counter-section-two{
    border-bottom: 1px solid #E5E5E5;
    padding: 80px 0px 70px 0px;
}
.accordion-section-two{
	overflow: hidden;
    padding: 100px 0px 100px 0px;
}
.accordion-section-two .accordion-wrap{
    padding: 80px 0px 0px 0px;
}
.accordion-section-two .accordian-image{
    margin: 40px -340px 0px 0px;
}
.pricing-section-two{
    padding: 0px 50px 0px 50px;
}
.pricing-section-two .pricing-two-image {
    background-image: url(../images/homepage-2/bg/pricing-col-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 25px 0px 0px;
    border-radius: 30px 30px 30px 30px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.pricing-section-two .pricing-two-bg{
    background-image: url(../images/homepage-2/bg/demo-2-col-ptl2.png);
    background-repeat: no-repeat;
    margin: 0px 0px 0px 15px;
    padding: 100px 80px 100px 100px;
    border-radius: 30px 30px 30px 30px;
}
.client-section-two{
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #E5E5E5;
    padding: 80px 0px 50px 0px;
}
.contact-us-two{
    background-image: url(../images/homepage-2/bg/mailchip-bg-img.jpg);
    padding: 120px 70px 120px 70px;
    border-radius: 30px 30px 30px 30px;
}
.contact-us-two .pbmit-heading-subheading .pbmit-title{
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
}
.contact-us-two form{
	padding-left: 50px;
}
.contact-us-two form .form-control{
    height: 80px;
    padding-right: 175px;
    padding-left: 30px;
    border-radius: 40px;
    border: 0;
	margin-bottom: 0;
}
.contact-us-two .pbmit-footer-newsletter{
    position: relative;
}
.contact-us-two .pbmit-footer-newsletter .pbmit-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 18px 40px;
    border-radius: 40px;
    transition: all .4s ease-in;
}

/** Homepage 03 **/ 
.ihbox-three-bg{
	margin-top: -80px;
	position: relative;
	z-index: 1;
	padding: 0 50px;
	border-radius: 30px;
	background-image: url(../images/homepage-3/bg/pattern.png);
}
.ihbox-three-center-img{
	mix-blend-mode: multiply;
}
.about-section-three{
	padding: 100px 0px 156px 0px;
}

.about-three-imgbox{
	position: relative;
}
.about-three-img01{
	text-align: right;
}
.about-three-img01 img,
.about-three-img02 img{
	border-radius: 30px;
}
.about-three-img02{
	position: absolute;
	left: -6%;
	width: auto;
	bottom: -20%;
	max-width: 100%;
}
.service-section-three{
	padding: 30px 0px 10px;
}
.service-three-left-col{
	padding-right: 30px;
}
.service-three-left-inner{
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    width: 100%;
    border-radius: 30px;
	background-image: url(../images/homepage-3/bg/service-left-col-1.jpg);
}
.service-three-right-col{
	background-color: none !important;
    padding: 40px 30px 45px !important;
    position: relative;
    overflow: hidden;
}
.slideInUp {
    animation-name: slideInUp;
}
@keyframes slideInUp{
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
.testimonial-three-bg{
	padding: 150px 20px 80px 20px;
	background-image: url(../images/homepage-3/bg/testimonial-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
}
.fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeIn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.testimonial-three-bg .swiper-button-next,
.testimonial-three-bg .swiper-button-prev{
	position: absolute;
}
.testimonial-three-bg .swiper-button-next{
	left: auto;
	right: 0px;
}
.testimonial-three-bg .swiper-button-prev{
	left: 0px;
	right: auto;
}
.video-three-bg{
	padding: 240px 0px 180px 0px;
	margin: 0 60px;
	background-image: url(../images/homepage-3/bg/video-bg-image.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 30px;
}

/*------------------- ---------------------*/
/*01 - Inner Page 
/*----------------------------------------*/
/** 01 - About Us **/
.about-us .about-us-section-two{
	background-image: none;
}
.about-us .about-us-section-two .pbmit-btn-blackish:hover{
	background-color: var(--pbmit-secondary-color);
}
.team-slider-area{
	margin: 0 50px;
	background-image: url(../images/bg/masking-bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 100px 0;
	border-radius: 30px;
}
.client-area{
	padding: 70px 0px 50px 0px;
	border-bottom: 1px solid #E5E5E5;
}

/** 02 - Our History **/
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-year{
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 5px;
	color: var(--pbmit-global-color);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-title{
	font-size: 22px;
	line-height: 24px;
	margin-bottom: 20px;
	padding: 0 50px;
	text-transform: capitalize;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-desc{
	margin: 0;
	padding: 0 90px;
	line-height: 22px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper{
	display: grid;
	width: 100%;
	height: auto;
	position: relative;
	justify-items: center;
	grid-template-rows: 1fr 1fr;
	text-align: center;
	grid-gap: 160px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height.steps-content_wrap{
	justify-content: flex-start;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .pbmit-same-height.steps-content_wrap{
	justify-content: flex-end;
}
.pbmit-element-timeline-style-1 .pbmit-heading-subheading {
	margin-bottom: 40px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .dot{
	background-color: var(--pbmit-blackish-color);
	display: block;
	line-height: normal;
	font-size: 14px;
	margin: auto;
	width:  10px;
	height:  10px;
	transform: rotate(45deg);
	z-index: 2;
	position: relative;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot{
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	height: -moz-fit-content;
	height: fit-content;
	margin: auto !important;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .dot::after{
	content: "";
	position: absolute;
	left: -11px;
	right: 0;
	bottom: 0;
	width: 1px;
	height: 40px;
	margin: 0;
	background: rgb(var(--pbmit-blackish-color-rgb), .90);
	transform: rotate(-45deg);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .steps-dot .dot::after{
	left: 19px;
	top: 0;
	bottom: auto;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line{
	color: transparent;
	line-height: 10px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
} 
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after{
	content: "";
	width: calc(50% + 10px * 100);
	height: 1px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after{
	left: 50%;
	background: linear-gradient(90deg, rgb(var(--pbmit-blackish-color-rgb), 0.05), rgb(var(--pbmit-blackish-color-rgb), 0.05));
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before{
	right: 50%;
	background: linear-gradient(90deg, rgb(var(--pbmit-blackish-color-rgb), 0.05), rgb(var(--pbmit-blackish-color-rgb), 0.05));
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height{
	display: flex;
	flex-direction: column;
	justify-content: end;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even.swiper-slide-duplicate:nth-last-child(2) .pbmit-feature-image{
	order: 0;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .pbmit-feature-image{
	order: 1;
	justify-content: start;
	transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper:not(.pbmit-slide-even) .pbmit-feature-image{
	transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
} 
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-feature-image img{
	border-radius: 30px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-feature-image,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-content_wrap{
	opacity: 1;
}
.pbmit-element-timeline-style-1 .swiper-button-prev,
.pbmit-element-timeline-style-1 .swiper-button-next{
	position: absolute;
}
.pbmit-element-timeline-style-1 .swiper-button-prev{
	right: auto;
	left: 10px;
}	
.pbmit-element-timeline-style-1 .swiper-button-prev.swiper-button-disabled{
	opacity: .35;
}

/** 03 - Service Detail **/
.service-details > .container > .row{
	-ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}
.service-left-col .service-sidebar .post-list{
	background-color: var(--pbmit-white-color);
    padding-top: 40px;
    border-radius: 30px;
}
.service-details .all-post-list li{
    margin: 0;
	position: relative;
	line-height: 26px;
	border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),.05);
}
.service-details .all-post-list li a{
	padding: 16px 60px 16px 20px;
    display: block;
    position: relative;
    border-radius: 0px;
    font-size: 13px;
	letter-spacing: .5px;
    color: rgba(var(--pbmit-blackish-color-rgb),.7);
    text-transform: uppercase;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.service-details .all-post-list li a:before{
	position: absolute;
    content: '\e82b';
    font-family: "pbminfotech-base-icons";
    right: 10px;
    left: auto;
    width: 35px;
    height: 35px;
    color: var(--pbmit-global-color);
    top: 9px;
    border-radius: 50%;
    line-height: 35px;
    font-size: 8px;
    text-align: center;
    transform: translate3d(0px, 0px, 0px) rotateZ(0deg);
    transform-style: preserve-3d;
    transition: all .5s ease-in-out;
}
.service-details .all-post-list li a:after{
	position: absolute;
    content: '';
    height: 6px;
    width: 6px;
    left: 0;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -o-transform: translateY(-55%);
    transform: translateY(-55%);
    background: var(--pbmit-blackish-color);
    transition: all 0.4s ease;
    font-weight: 600;
    border-radius: 50%;
}
.service-details .all-post-list li:hover a,
.service-details .all-post-list li.post-active a{
	transform: translateX(1%);
	color: var(--pbmit-global-color);
}
.service-details .all-post-list li:hover a:before,
.service-details .all-post-list li.post-active a:before{
	transform: translate3d(10px,0px,0px) rotateZ(45deg);
	color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.service-details .all-post-list li.post-active a:before{
	opacity: 1;
}
.service-details .all-post-list li.post-active a:after,
.service-details .all-post-list li a:hover:after{
	background: var(--pbmit-global-color);
}
.service-details .all-post-list li:last-child{
	border-bottom: none;
}
.service-sidebar .widget:last-child{
	background-color: transparent;
	margin-bottom: 0px;
	padding: 0;
	border: none;
}
.widget .download{
	display: block;
}
.widget .download .item-download:first-child {
    margin-bottom: 20px;
}
.widget .download .item-download a{
	position: relative;
    text-align: center;
    font-size: 15px;
    line-height: 15px;
	letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    padding-left: 25px;
    background-color: var(--pbmit-secondary-color);
    border-radius: 40px;
}
.widget .download .item-download .pbmit-download-content{
	font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.widget .download .item-download .pbmit-download-content i{
	margin-right: 10px;
    font-size: 24px;
    color: var(--pbmit-global-color);
	transition: all 0.2s ease-in;
}
.widget .download .item-download a:hover .pbmit-download-content i{
	color: var(--pbmit-white-color);
}
.widget .download .item-download .pbmit-download-item{
	font-size: 16px;
    line-height: 16px;
    padding: 18px 13px;
    border-radius: 50%;
    background-color: var(--pbmit-blackish-color);
    color: var(--pbmit-white-color);
    transition: all 0.2s ease-in;
}
.widget .download .item-download .pbmit-download-item i{
	font-size: 26px;
    vertical-align: middle;
}
.widget .download .item-download a:hover{
	background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}
.widget .download .item-download a:hover .pbmit-download-item {
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-blackish-color);
}
.widget .download .item-download:last-child a {
	color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.widget .download .item-download:last-child a .pbmit-download-content i {
    color: var(--pbmit-white-color);
    transition: all 0.3s ease-in-out;
}
.widget .download .item-download:last-child .pbmit-download-item {
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-global-color);
}
.widget .download .item-download:last-child a:hover {
    background-color: var(--pbmit-blackish-color);
    color: var(--pbmit-white-color);
}
.widget .download .item-download:last-child a:hover .pbmit-download-content i {
    color: var(--pbmit-white-color);
}
.widget .download .item-download:last-child a:hover .pbmit-download-item {
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}
.service-details .pbmit-service-feature-image img{
	margin-bottom: 50px;
    border-radius: 30px;
}
.service-details .service-single-img02 img{
	border-radius: 30px;
}

/** 04 - Portfolio Single **/
.pbmit-portfolio-single .pbmit-featured-img-wrapper img{
	border-radius: 30px;
}
.pbmit-single-project-details-list,
.pbmit-pf-entry-content{
	padding-top: 100px;
}
.pbmit-portfolio-single-style-2 .pbmit-single-project-details-list,
.pbmit-portfolio-single-style-2 .pbmit-pf-entry-content{
	padding-top: 30px;
}
.pbmit-portfolio-lines-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 45px;
    border-radius: 30px;
    border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.2);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-li:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-title {
    font-size: 17px;
    line-height: 17px;
    letter-spacing: 0.25px;
    text-transform: capitalize;
    position: relative;
    color: var(--pbmit-blackish-color);
}
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-value {
    display: block;
}
.pbmit-pf-entry-content{
	padding-left: 48px;
}
.project-single-img_box{
	padding-bottom: 50px;
}
.project-single-img_box img{
	border-radius: 30px;
}
.pbmit-portfolio-single .ihbox-style-area{
	margin: 40px 0;
}
.pbmit-portfolio-single .post-navigation{
	margin-top: 50px;
	border-top: 1px solid rgba(var(--pbmit-blackish-color-rgb),0.10);
}
.post-navigation .nav-links {
    margin-top: 0;
    padding: 40px 0 8px;
    display: -ms-flexbox;
    display: flex;
    align-items: normal;
    width: 100%;
}
.post-navigation .nav-previous{
	width: 50%;
	margin-right: auto !important;
	position: relative;
}
.post-navigation .nav-links a{
	display: block;
    text-align: left;
    width: 300px;
    transition: all 0.3s ease-in;
}
.post-navigation .pbmit-post-nav-icon{
	display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 5px;
}
.post-navigation .nav-links .nav-previous .pbmit-post-nav-icon {
    justify-content: flex-start;
}
.post-navigation .nav-links .pbmit-post-nav-icon i {
    font-size: 13px;
    color: var(--pbmit-global-color);
    transition: all 0.3s ease-in;
}
.post-navigation .nav-links .pbmit-post-nav-head {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
	margin-left: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease-in;
    color: rgba(var(--pbmit-blackish-color-rgb),.6);
}
.post-navigation .nav-links .pbmit-post-nav-wrapper {
    display: block;
}
.post-navigation .nav-links .nav-previous .pbmit-post-nav-wrapper {
    text-align: left;
}
.nav-links .pbmit-post-nav-wrapper {
    text-align: left;
    word-break: break-word;
}
.post-navigation .nav-links .nav-title {
    font-size: 22px;
    line-height: 26px;
    margin-top: 5px;
    text-transform: none;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.post-navigation .nav-links .nav-next {
    width: 50%;
	text-align: right;
    margin-left: auto;
}
.post-navigation .nav-links .nav-next a{
	display: block;
    text-align: right;
    margin-left: auto;
}
.post-navigation .nav-links .nav-next .pbmit-post-nav-wrapper{
	text-align: right;
}
.post-navigation .nav-links .nav-next .pbmit-post-nav-head{
	margin-right: 8px;
}
.post-navigation .nav-links a:hover .pbmit-post-nav-head,
.post-navigation .nav-links a:hover .pbmit-post-nav-icon i{
	color: var(--pbmit-blackish-color);
}

/** 05 - Blog Detail**/
.pbmit-column-four .container-fluid,
.pbmit-column-three .container-fluid{
	padding: 0 30px;
}
.pbmit-element-posts-wrapper.row .pbmit-blog-style-1{
	margin-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
}
.blog-sortable-col_4 .pbmit-element-posts-wrapper.row {
    margin-left: -15px;
    margin-right: -15px;
}

/** Sidebar Right **/
.sidebar .widget{ 
    padding: 29px;
    margin-bottom: 45px;
    border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
    border-radius: 30px;
    background-color: transparent;
}
.sidebar .widget:last-child{
    margin-bottom: 0;
}
.sidebar .widget.widget-search{
	border: none;
	background-color: var(--pbmit-global-color);
}
.sidebar .widget .widget-title{ 
	display: block;
	padding-bottom: 15px;
	margin-bottom: 20px;
    position: relative;
    width: auto;
	font-size: 24px;
    line-height: 34px;
    letter-spacing: 0px;
	padding-left: 30px;
    padding-bottom: 0;
	text-transform: capitalize;
	color: var(--pbmit-blackish-color);
} 
.sidebar .widget.widget-search .widget-title{
	color: var(--pbmit-white-color);
}
.sidebar .widget .widget-title:before{
	content: '\e853';
    font-family: "pbminfotech-base-icons";
    position: absolute;
    left: 0;
    font-size: 20px;
	line-height: 26px;
	font-weight: normal;
    color: var(--pbmit-global-color);
}
.sidebar .widget.widget-search .widget-title:before{
	color: var(--pbmit-white-color);
}
.widget .search-form {
    position: relative;
}
.widget .search-form input{
	background-color: var(--pbmit-white-color);
	height: 65px;
    border: 0;
    padding: 0px 30px;
    padding-right: 80px;
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-blackish-color);
    font-size: 15px;
    border-radius: 40px;
	display: block;
    width: 100%;
}
.widget .search-form .search-submit{
	position: absolute;
    top: 5px;
    right: 5px;
    width: 55px;
    height: 55px;
    font-size: 16px;
    z-index: 1;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
	line-height: 58px;
    outline: none;
    background: var(--pbmit-light-color);
	transition: all .6s;
}
.widget .search-form .search-submit:after{
	position: absolute;
    font-family: 'pbminfotech-base-icons';
    content: '\e80d';
    right: 50%;
    top: 50%;
    font-size: 16px;
    color: var(--pbmit-global-color);
    line-height: normal;
    font-weight: normal;
    -webkit-transform: translateX(50%) translateY(-50%);
    -ms-transform: translateX(50%) translateY(-50%);
    transform: translateX(50%) translateY(-50%);
}
.widget .search-form .search-submit:hover{
	background: var(--pbmit-blackish-color);
}
.widget .search-form .search-submit:hover:after{
	color: var(--pbmit-white-color);
}
.sidebar .widget-categories li{
	position: relative;
	line-height: 26px;
}
.sidebar .widget-categories .pbmit-cat-li{
	display: flex;
    align-items: center;
	justify-content: space-between;
    color: rgba(var(--pbmit-blackish-color-rgb),.5);
    border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),0.05);
}
.sidebar .widget-categories ul li:last-child .pbmit-cat-li{
	border-bottom: none;
}
.sidebar .widget-categories .pbmit-cat-li a{
	font-size: 13px;
    line-height: 23px;
    position: relative;
	padding-left: 20px;
	margin: 15px 0;
	font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all .25s ease-in-out;
}
.sidebar .widget-categories .pbmit-cat-li a:before{
	position: absolute;
    content: '';
    height: 6px;
    width: 6px;
    left: 0;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -o-transform: translateY(-55%);
    transform: translateY(-55%);
    background: var(--pbmit-blackish-color);
    transition: all 0.4s ease;
    font-weight: 600;
    border-radius: 50%;
}
.sidebar .widget-categories .pbmit-brackets{
    font-size: 13px;
    font-weight: 600;
	transition: all .25s ease-in-out;
}
.sidebar .widget-categories .pbmit-cat-li:hover,
.sidebar .widget-categories .pbmit-cat-li:hover .pbmit-brackets{
	color: var(--pbmit-global-color);
}
.sidebar .widget-categories .pbmit-cat-li>a:hover:before{
	background-color: var(--pbmit-global-color);
}
.widget-recent-post .recent-post-list-li:first-child{
	margin-top: 0px;
    padding-top: 0px;
	border-top: none;
}
.widget-recent-post .recent-post-list-li{
	display: flex!important;
    align-items: center;
    width: 100%;
	margin-top: 18px;
	padding-bottom: 18px;
	line-height: 20px;
	border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),0.10);
}
.widget-recent-post .recent-post-list-li:last-child{
	border-bottom: none;
}
.widget-recent-post .recent-post-list-li>a{
	width: 90px;
    flex-shrink: 0;
    margin-right: 20px;
	display: inline-block;
}
.widget-recent-post .recent-post-list-li>a img{
	border-radius: 20px;
}
.widget-recent-post .pbmit-rpw-content{
	display: flex;
    flex-direction: column;
}
.widget-recent-post .pbmit-rpw-title a{
	margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 20px;
}
.widget-recent-post .pbmit-rpw-title a:hover{
	color: var(--pbmit-global-color);
}
.pbmit-rpw-content .pbmit-rpw-date a{
	color: var(--pbmit-global-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
	letter-spacing: .5px;
    text-transform: uppercase;
}
.widget ul a {
    display: inline-block;
}
.widget.pbmit-service-ad .textwidget:before,
.widget.pbmit-service-ad .textwidget:after{
	content: "";
    display: table;
}
.widget.pbmit-service-ad .textwidget:after{
	clear: both;
}
.widget.pbmit-service-ad{
	background-image: url(../images/bg/service-ads-bg.png);
	background-size: cover;
    background-position: center center;
    background-color: var(--pbmit-blackish-color);
    border: none;
}
.widget.pbmit-service-ad .pbmit-service-ads{
	position: relative;
    overflow: hidden;
    text-align: center;
    padding: 50px 0 60px 0;
    border-radius: 30px;
}
.pbmit-service-ads .pbmit-ads-subheding{
	font-size: 11px;
    line-height: 26px;
    letter-spacing: 0.5px;
    font-weight: 500 !important;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 0 13px 0 20px;
    margin-bottom: 25px;
    color: var(--pbmit-white-color);
    border: 1px solid var(--pbmit-white-color);
}
.pbmit-service-ads .pbmit-ads-subtitle {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 5px;
	letter-spacing: .5px;
    color: var(--pbmit-white-color);
}
.pbmit-service-ads .pbmit-ads-title {
    font-size: 40px;
    line-height: 40px;
	letter-spacing: .5px;
	margin-bottom: 0;
    color: var(--pbmit-white-color);
}
.pbmit-service-ads .pbmit-ads-desc {
    font-size: 15px;
    line-height: 21px;
    padding-top: 25px;
    color: var(--pbmit-white-color);
}
.pbmit-service-ads .pbmit-ads-desc i {
    font-size: 18px;
    padding-right: 5px;
    color: var(--pbmit-global-color);
}
.pbmit-service-ads .pbmit-btn{
	margin-top: 30px;
}
aside.widget.widget-tag-cloud a,
.pbmit-blog-meta-bottom .pbmit-meta-tags a{
    line-height: 30px;
	margin: 0 4px 12px 0;
    display: inline-block;
    font-size: 13px !important;
	font-weight: 600;
    padding: 0 14px;
    height: 30px;
    letter-spacing: .5px;
    text-transform: uppercase;
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-secondary-color);
    border-radius: 30px;
}
aside.widget.widget-tag-cloud a:hover,
.pbmit-blog-meta-bottom .pbmit-meta-tags a:hover{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-global-color);
}

/** Blog Classic **/
.site-content{
	padding-top: 50px;
	padding-bottom: 10px;
}
.post.blog-classic{
    position: relative;
    background: 0 0;
	/* margin-bottom: 60px; */
	padding:20px !important;
}
.post.blog-classic .pbmit-featured-wrapper img{
	border-radius: 30px;
}
.post.blog-classic:last-child {
    margin-bottom: 0px;
}
.post.blog-classic .pbmit-featured-img-wrapper{
	position: relative;
    margin-bottom: 30px;
}
.blog-classic .pbmit-blog-classic-inner{
	background: 0 0;
    padding: 0;
    position: relative;
}
.pbmit-blog-meta.pbmit-blog-meta-top{
	position: relative;
    font-size: 14px;
}
.pbmit-blog-meta-top.pbmit-blog-meta,
.pbmit-blog-meta-top.pbmit-blog-meta a{
	color: rgba(var(--pbmit-blackish-color-rgb),0.8);
}
.pbmit-blog-meta-top .pbmit-meta a:hover{
	color: var(--pbmit-global-color);
}
.pbmit-blog-meta-top.pbmit-blog-meta .pbmit-meta-cat a:hover{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-blackish-color);
}
.pbmit-blog-meta-top .pbmit-meta {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 13px;
	font-weight: 600;
    text-transform: uppercase;
}
.pbmit-blog-meta-top .pbmit-meta:first-child{
	padding-left: 0;
}
.pbmit-blog-meta-top .pbmit-meta:not(:last-child):before{
	content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    width: 2px;
    height: 10px;
    transform: translate(0, -50%);
    background-color: rgba(var(--pbmit-blackish-color-rgb), .4);
}
.blog-classic .pbmit-blog-meta span.pbmit-meta.pbmit-meta-author::before,
.blog-classic .pbmit-blog-meta span.pbmit-meta:last-child::before,
.pbmit-meta-line:last-child::before {
	display: none;
}
.blog-classic .pbmit-meta-cat a{
	font-size: 12px;
    line-height: 20px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.5px;
    padding: 5px 15px 4px 15px;
    border-radius: 15px;
    color: var(--pbmit-global-color);
    background-color: var(--pbmit-secondary-color);
}
.pbmit-blog-meta-top .pbmit-meta i {
    margin-right: 2px;
    font-size: 20px;
	color: var(--pbmit-global-color);
	display: none;
}
.pbmit-blog-meta-top .pbmit-meta-comments{
	display: none;
}
.blog-classic .pbmit-post-title{
	margin-bottom: 25px;
	margin-top: 15px;
    font-size: 24px;
	padding-bottom: 20px;
	color:#A67B5B;
    line-height: 42px;
	text-transform: none;
	letter-spacing: 0px;
	border-bottom: 1px solid rgba(24, 26, 23,0.2);
}
.blog-classic .pbmit-hide{
	display: none;
}
.blog-classic .pbmit-entry-content{
	margin-top: 20px;
}
.blog-classic .pbmit-entry-content .pbmit-btn-outline:hover{
	border-color: var(--pbmit-global-color);
	background-color: var(--pbmit-global-color);
}

/** Blog Single **/
.blog-details .post.blog-classic{
	margin-bottom: 30px;
}
.blog-details .post.blog-classic .pbmit-blog-meta-top{
	margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(3, 27, 78, 0.1);
} 
.pbmit-firstletter::first-letter{
	color: var(--pbmit-global-color);
	padding:0;
	font-size: 52px;
	line-height: 48px;
	display: inline-block;
	float: left;
	font-weight: 700;
	margin-right: 8px;
}
.blog-details .pbmit-entry-content blockquote{
	padding: 40px 40px 40px 120px;
    font-size: 22px;
    line-height: 32px;
    margin: 30px 0;
    position: relative;
    letter-spacing: 0;
    border-radius: 30px;
    color: var(--pbmit-blackish-color);
    background-color: transparent;
    border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
    font-weight: 500 !important;
	font-family: var(--pbmit-heading-typography-font-family);
}
.blog-details .pbmit-entry-content blockquote:before{
	content: '\e839';
    font-family: "pbminfotech-base-icons";
    font-size: 20px;
    line-height: 60px;
    position: absolute;
    top: 40%;
    left: 60px;
    font-style: normal;
    color: var(--pbmit-white-color);
    background: var(--pbmit-global-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    transform: translate(-50%, -50%);
}
.blog-details .pbmit-entry-content blockquote p{
	margin-bottom: 0;
}
.blog-details .pbmit-entry-content:after{
	clear: both;
	content: "";
	display: table;
}
.blog-details .pbmit-entry-content blockquote cite{
	font-size: 13px;
    text-transform: uppercase;
    color: var(--pbmit-global-color);
	display: block;
	line-height: 24px;
    margin-top: 15px;
	letter-spacing: .5px;
}
.blog-details .pbmit-entry-content blockquote cite:before{
	content: "-";
    margin-right: 5px;
}
.blog-details .pbmit-entry-content blockquote:after{
	visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.blog-details .pbmit-entry-content .pbmit-block-columns{
	display: flex;
	margin-bottom: 1.75em;
}
.blog-details .pbmit-entry-content .pbmit-block-columns img{
	margin-top: 15px;
	border-radius: 30px;
}
.blog-details .pbmit-entry-content .pbmit-block-column:first-child figure{
	padding: 0 10px 0 0;
}
.blog-details .pbmit-entry-content .pbmit-block-column:last-child figure{
	padding: 0 0 0 10px;
}
.blog-details .list-group .pbmit-icon-list-icon i{
	font-size: 22px;
	margin-right: 8px;
}
.blog-details .list-group{
	padding-top: 20px;
}
.blog-details .list-group .pbmit-icon-list-text{
	padding-left: 0;
}
.blog-details .pbmit-blog-meta-bottom{
	margin-top: 15px;
}
.blog-details .post-navigation{
	border-top: 1px solid rgba(24, 26, 23, 0.10);
    margin-top: 30px;
}
.blog-details .pbmit-author-box {
    position: relative;
    overflow: hidden;
    margin-top: 45px;
    margin-bottom: 0;
    padding: 40px;
    padding-right: 80px;
    background-color: var(--pbmit-secondary-color);
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-radius: 30px;
}
.blog-details .pbmit-author-image img {
    width: 154px;
    min-width: 154px;
    height: 154px;
    border: 4px solid var(--pbmit-global-color);
    display: block;
    overflow: hidden;
    margin-right: 40px;
    border-radius: 50%;
	padding: 20px;
	background: var(--pbmit-white-color);
}
.blog-details .pbmit-author-content {
    -webkit-flex-shrink: 100;
    -moz-flex-shrink: 100;
    -ms-flex-negative: 100;
    flex-shrink: 100;
}
.blog-details .pbmit-author-content .pbmit-author-name {
    font-size: 22px;
	line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 15px;
    display: inline-block;
}
.blog-details .pbmit-author-box a {
    color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-author-box a:hover{
	color: var(--pbmit-global-color);
}
.blog-details .pbmit-author-content .pbmit-text {
    margin: 0;
	font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--pbmit-blackish-color);
}
.blog-details .comments-area{
	margin-top: 60px;
}
.blog-details .comments-area .comments-title{
	font-size: 34px;
	line-height: 42px;
	margin-bottom: 48px;
}
.blog-details .comment-list li:not(:last-child) .pbmit-comment{
	margin-bottom: 30px;
    border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),0.10);
}
.comment-list .pbmit-comment-avatar{
	float: left;
}
.comment-list .pbmit-comment-avatar img{
    width: 90px;
    height: 90px;
	border-radius: 20px;
}
.blog-details .pbmit-comment-content{
	position: relative;
    padding: 0px 0px 30px 0;
    margin-left: 115px;
    min-height: 115px;
}
.blog-details .pbmit-comment-meta{
	display: flex;
    align-items: center;
	justify-content: space-between;
}
.pbmit-comment-content .pbmit-comment-author {
	margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    display: inline-flex;
    position: relative;
    color: var(--pbmit-blackish-color);
}
.pbmit-comment-author-inner{
	margin: 0 5px;
    font-weight: 600;
    text-transform: capitalize;
	color: var(--pbmit-global-color);
}
.pbmit-comment-author-inner a{
	color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-comment-date{
	display: block;
    font-size: 18px;
	padding: 0 0 0 15px;
	font-weight: 400;
	color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-comment-date a{
	font-size: 16px;
    line-height: 24px;
    position: relative;
	padding: 0 0 0 10px;
	color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-comment-date a:first-child::before{
	position: absolute;
    content: '';
    left: 0px;
    height: 1px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    background: var(--pbmit-global-color);
}
.blog-details .pbmit-comment-content p{
	margin: 10px 0 18px;
}
.blog-details .pbmit-comment-content .reply a{
	display: inline-block;
	position: relative;
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    letter-spacing: .1px;
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
    color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-comment-content .reply a:before{
	content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70%;
    height: 1px;
    background-color: var(--pbmit-blackish-color);
}
.blog-details .pbmit-comment-content .reply a::after{
	font-family: 'pbminfotech-base-icons';
    content: "\e82b";
    font-style: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    opacity: 1;
    font-variant: normal;
    text-transform: none;
    line-height: 8px;
    font-size: 8px;
    margin-left: 6px;
}
.blog-details .pbmit-comment-content .reply a:hover{
	color: var(--pbmit-global-color);
}
.blog-details .pbmit-comment-content .reply a:hover::before{
	background-color: var(--pbmit-global-color);
}
.comment-list .children{
	margin-left: 100px;
    padding-top: 8px;
}
.blog-details .comment-list li:not(:last-child) .pbmit-comment{ 
	border-bottom: 1px solid rgba( 3, 27, 78, 0.1);
}
.blog-details .comment-respond{
	background-color: var(--pbmit-secondary-color);
    padding: 60px 70px;
    border-radius: 30px;
    margin-top: 28px;
    margin-bottom: 20px;
}
.blog-details .comment-respond .comment-reply-title{
	margin-bottom: 25px;
}
.blog-details .comment-respond .comment-notes{
	font-size: 15px;
}
.blog-details .comment-respond .comment-form .form-check label{
	font-size: 15px;
}
.blog-details .comment-respond .comment-form form button{
	padding: 13px 35px;
}

/** 06 - Team Single **/
.pbmit-team-single{
	padding-bottom: 80px;
}
.pbmit-team-single .pbmit-team-single-info{
	position: relative;
    z-index: 1;
    margin-bottom: 50px;
	padding-top: 80px;
}
.pbmit-team-single .pbmit-team-left-inner{
	margin-right: -35px;
    z-index: 1;
	position: relative;
}
.pbmit-team-single .pbmit-featured-wrapper{
	height: 600px;
    border-radius: 30px;
    overflow: hidden;
}
.pbmit-team-single .pbmit-featured-wrapper img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.pbmit-team-single .pbmit-team-detail{
	position: relative;
    overflow: hidden;
    border-radius: 0 30px 30px 0;
    background: var(--pbmit-secondary-color);
}
.pbmit-team-single .pbmit-team-detail:after{
	position: absolute;
    content: '';
    left: 0;
    z-index: 1;
    top: 0;
    height: 100%;
    background-image: url(../images/bg/team-detail-bg.png);
    width: 100%;
    background-position: center;
}
.pbmit-team-single .pbmit-team-detail .pbmit-team-des{
	padding: 115px 100px 0 105px;
    z-index: 2;
    position: relative;
}
.pbmit-team-single .pbmit-team-summary{
	margin-bottom: 15px;
}
.pbmit-team-summary .pbmit-team-designation {
    color: var(--pbmit-global-color);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.pbmit-team-des .pbmit-short-description{
	margin-bottom: 30px;
}
.pbmit-team-des .pbmit-single-team-info{
	padding-bottom: 40px;
}
.pbmit-single-team-info li{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--pbmit-blackish-color);
}
.pbmit-single-team-info li label{
	font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    min-width: 120px;
	padding-right: 10px;
    display: inline-block;
    text-transform: capitalize;
	color: var(--pbmit-global-color);
}
.pbmit-team-single .pbmit-social-links li{
	margin-bottom: 5px;
    margin-right: 3px;
	padding: 0;
}
.pbmit-team-single .pbmit-social-links li a{
	position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 15px;
	border: 1px solid rgba(var(--pbmit-blackish-color-rgb),.2);
	border-radius: 50%;
	-webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.pbmit-team-single .pbmit-social-links li a:hover{
	color: var(--pbmit-white-color);
	border-color: var(--pbmit-global-color);
	background-color: var(--pbmit-global-color);
}
.pbmit-team-single .comment-respond{
	border-radius: 30px;
	margin-top: 50px;
    margin-bottom: 20px;
    padding: 60px 75px 70px 75px;
	background-color: var(--pbmit-secondary-color);
}

/** 07 - Contact Us **/
.contact-us-bg{
	/* background-image: url(../images/bg/contact-bg-flower.png); */
    background-position: bottom left;
    background-repeat: no-repeat;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.contact-form-leftbox{
	padding-right: 60px;
}
.pbmit-contact-social .pbmit-heading .pbmit-title{
	font-size: 22px;
	line-height: 22px;
	padding-top: 30px;
	border-top: 1px solid #E5E5E5;
	color: var(--pbmit-blackish-color);
}
.pbmit-contact-social .pbmit-social-links li{
	padding-right: 0;
}
.pbmit-contact-social .pbmit-social-links a {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 15px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--pbmit-global-color);
    border: 1px solid var(--pbmit-global-color);
    border-radius: 50%;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.pbmit-contact-social .pbmit-social-links a:hover{
	color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
    border-color: var(--pbmit-global-color);
}
.contact-form-rightbox{
	padding: 30px 20px 20px 20px;
	border-radius: 20px;
	background-color: #A67B5B;
}
.contact-form-rightbox .pbmit-title{
	font-size: 36px;
	color: white;
}
.iframe-section{
	padding: 50px 100px 100px 100px;
}
.iframe-section iframe{
	max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
	height: 600px;
	border-radius: 30px;
}
label.error {
	background: red;
	color: white;
	border-radius: 0px 0 10px 10px;
	margin-bottom: 15px;
	padding: 0 10px;
	font-size: 12px;
	display: block;
	margin-top: 0px;
	margin-right: 20%;
}
.message-status{
	margin-top: 30px;
}
.form-control.error{
	margin-bottom: 0 !important;
}

/**08 - Comment Form **/
.form-control,
form select{
    border: unset;
    background-color: var(--pbmit-white-color);
    height: 60px;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}
textarea.form-control{
    height: 130px;
    resize: none;
    padding: 20px;
    border-radius: 15px;
    border: unset;
}
form select{
	width: 100%;
	cursor: pointer;
}
form select:focus{
	outline: none;
}
form .form-check {
	margin: 22px 0;
}
form .form-check-label{
	font-size: 14px;
}
.about-us-image {
    margin-top: 20px;
	/* height:377px; */
}
.about-us-image img{
    width:100%;
	height:100%;
	object-fit: cover;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* optional */
    display: block;
}
.container{
    max-width:1200px !important;
	padding-left:15px !important;
	padding-right:15px !important;
}
.row > *{
		padding-left:8px !important;
	padding-right:8px !important;
}
.our-values-section .pbmit-ihbox-icon i {
    color: #A67B5B;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 50px;
}

.our-values-section .pbmit-ihbox-icon i:hover {
    transform: scale(1.2);
    color: #FFD700; /* optional: brighter gold on hover */
}
.who-we-are-section{
    padding:40px 0px 20px;
}

/******************************

    INDEX:

    00 - Section Title
    01 - Icon Box
    02 - Team Member
    03 - Counter
    04 - Service
    05 - Blog
    06 - Testimonial
    07 - Header
    08 - Footer
    09 - Title Bar
    10 - Overlap Colomn
    11 - Accordion
    12 - Circle Progress
    13 - List Group
    14 - Banner Slider
    15 - Client
    16 - Sortable
	17 - Img Animation
	18 - Marquee
    19 - Pricing
	20 - Portfolio
	21 - Static Box

******************************/

/*----------------------------------------*/
/*  00 - Section Title
/*----------------------------------------*/
.pbmit-heading-subheading {
    margin-bottom: 20px;
	position: relative;
    z-index: 1;
}
.pbmit-heading-subheading .pbmit-subtitle{
    font-family: var(--pbmit-body-typography-font-family);
    font-weight: 700;
    font-size: 11px;
    line-height: 21px;
    letter-spacing: 0.5px;
    color: #404a3d;
    text-transform: uppercase;
    font-style: normal;
    padding: 5px 20px;
    display: inline-block;
    background: var(--pbmit-secondary-color);
    border-radius: 30px;
    margin-bottom: 10px;
}
.pbmit-heading-subheading .pbmit-title{
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-size: 46px;
    line-height: 65px;
    letter-spacing: 0px;
    color: var(--pbmit-heading-color);
    text-transform: none;
    font-style: normal;
	margin-bottom: 0;
}
.pbmit-heading-subheading .pbmit-heading-desc{
	margin-top: 20px;
}
.pbmit-bg-color-secondary .pbmit-heading-subheading .pbmit-subtitle,
.pbmit-bg-color-global .pbmit-heading-subheading .pbmit-subtitle{
	background-color: var(--pbmit-white-color);
}
.pbmit-bg-color-global .pbmit-heading-subheading .pbmit-title{
	color: var(--pbmit-white-color);
}
.pbmit-heading-subheading.text-white .pbmit-title{
	color: var(--pbmit-white-color);
}
.pbmit-custom-heading .pbmit-element-title{
	font-size: 18px;
    line-height: 28px;
    color: var(--pbmit-white-color);
}
/*=== For the same css ===*/
.pbmit-blog-btn .pbmit-button-text,
.pbmit-service-btn,
.pbmit-header-button{
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-style: normal;
}
.pbmit-blog-btn svg,
.pbmit-service-btn svg{
	width: 10px;
    height: 10px;
    margin-top: -2px;
    margin-left: 8px;
}
.pbmit-blog-btn svg line,
.pbmit-service-btn svg line{
	fill: none;
    stroke: var(--pbmit-blackish-color);
    stroke-width: 2;
    stroke-miterlimit: 10;
}
.pbmit-blog-btn svg line:nth-child(1),
.pbmit-service-btn svg line:nth-child(1){
	stroke-dasharray: 25px;
    stroke-dashoffset: 50px;
    transition: stroke-dashoffset .5s cubic-bezier(.61,1,.88,1);
}
.pbmit-blog-btn svg line:nth-child(2),
.pbmit-blog-btn svg line:nth-child(3),
.pbmit-service-btn svg line:nth-child(2),
.pbmit-service-btn svg line:nth-child(3){
	stroke-dasharray: 20px;
    stroke-dashoffset: 40px;
    transition: stroke-dashoffset .6s cubic-bezier(.61,1,.88,1) .3s;
}
.pbmit-blog-btn:hover svg line,
.pbmit-service-btn:hover svg line{
	stroke-dashoffset: 0;
    stroke: var(--pbmit-global-color);
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-detail,
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner{
	font-family: var(--pbmit-body-typography-font-family);
    font-weight: 700;
    font-style: normal;
}
.pbmit-meta-line,
.pbmit-contact-info,
.pbmit-blog-style-2 .pbminfotech-feature-wrapper .pbmit-meta-category,
.pbmit-ihbox-style-9 .pbmit-heading-desc .pbmit-day,
.pbmit-testimonial-style-2 .pbminfotech-testimonial-detail,
.blog-classic .pbmit-blog-meta-top .pbmit-meta,
.blog-details .pbmit-entry-content blockquote cite,
.pbmit-ihbox-style-12 .pbmit-element-heading,
.service-details .all-post-list li a,
.pbmit-team-summary .pbmit-team-designation,
.pbmit-blog-style-1 .pbmit-featured-container .pbmit-meta-category{
	font-family: var(--pbmit-body-typography-font-family);
	font-weight: 600;
	font-style: normal;
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-symbol,
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-price,
.widget-recent-post .pbmit-rpw-title a,
.pbmit-service-ads .pbmit-ads-subtitle,
.pbmit-service-ads .pbmit-ads-title,
.post-navigation .nav-links .nav-title,
.blog-details .pbmit-author-content .pbmit-author-name,
.pbmit-comment-content .pbmit-comment-author,
.blog-details .pbmit-comment-date a,
.blog-details .pbmit-comment-content .reply a,
.pbmit-portfolio-lines-wrapper .pbmit-portfolio-line-title,
.widget .download .item-download a{
	font-family: var(--pbmit-heading-typography-font-family);
	font-weight: 600;
	font-style: normal;
}

/*----------------------------------------*/
/*  01 - Icon Box
/*----------------------------------------*/
/** Style 1 **/
.pbmit-miconheading-style-1{
	margin-bottom: 20px;
}
.pbmit-ihbox-style-1{
	border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),.1);
	padding-bottom: 20px;
}
.pbmit-miconheading-style-1:last-child .pbmit-ihbox-style-1{
	border-bottom: unset;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-type-image,
.pbmit-ihbox-style-1 .pbmit-ihbox-icon,
.pbmit-ihbox-style-1 .pbmit-ihbox-svg{
	margin-right: 5px;
}
.pbmit-ihbox-style-1 .pbmit-icon-type-icon,
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-type-text{
	font-size: 20px;
	line-height: 26px;
	color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-type-image img {
	width: 60px;
	height: auto;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon .pbmit-icon-type-icon svg{
	width: 25px;
	height: 25px;
}
.pbmit-ihbox-style-1 .pbmit-element-title{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 0;
}
.pbmit-ihbox-style-1 .pbmit-ihbox-contents{
	transition: all 0.3s ease-in;
}
.pbmit-ihbox-style-1:hover .pbmit-ihbox-contents{
	transform: translate(1.5%, 0);
}
.pbmit-ihbox-style-1 .pbmit-element-subtitle{
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 5px;
}
/** Style 2 **/
.pbmit-miconheading-style-2{
	margin-bottom: 10px;
}
.pbmit-ihbox-style-2.pbmit-ihbox .pbmit-element-title a,
.pbmit-ihbox-style-2.pbmit-ihbox .pbmit-element-subtitle a,
.pbmit-ihbox-style-2.pbmit-ihbox .pbmit-element-heading,
.pbmit-ihbox-style-2 .pbmit-element-title,
.pbmit-ihbox-style-2 .pbmit-element-subtitle,
.pbmit-ihbox-style-2 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-2 .pbmit-ihbox-icon-type-image,
.pbmit-ihbox-style-2 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-2 .pbmit-heading-desc,
.pbmit-ihbox-style-2 .pbmit-ihbox-svg .pbmit-ihbox-svg-wrapper svg,
.pbmit-ihbox-style-2 .pbmit-ihbox-icon .pbmit-ihbox-icon-wrapper svg {
	transition: all 0.4s ease-in-out;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-headingicon {
	padding: 16px 30px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: var(--pbmit-secondary-color);
	border-radius: 30px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-headingicon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background-color: var(--pbmit-global-color);
	transition: all 0.3s ease-in;
	z-index: -1;
}
.pbmit-ihbox-style-2:hover .pbmit-ihbox-headingicon::before {
	width: 100%;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-icon,
.pbmit-ihbox-style-2 .pbmit-ihbox-svg{
	margin-right: 10px;
}
.pbmit-ihbox-style-2 .pbmit-title-wrap{
	display: flex;
	align-items: center;
}
.pbmit-ihbox-style-2 .pbmit-element-subtitle,
.pbmit-ihbox-style-2 .pbmit-element-heading,
.pbmit-ihbox-style-2 .pbmit-element-title{
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 0;
}
.pbmit-ihbox-style-2 .pbmit-element-heading{
	margin-left: 5px;
}
.pbmit-ihbox-style-2 .pbmit-icon-type-icon,
.pbmit-ihbox-style-2 .pbmit-ihbox-icon-type-text{
	font-size: 30px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-icon-type-image img{
	width: 50px;
	height: auto;
	object-fit: cover;
}
.pbmit-ihbox-style-2:hover .pbmit-element-title,
.pbmit-ihbox-style-2:hover .pbmit-element-subtitle,
.pbmit-ihbox-style-2:hover .pbmit-element-heading{
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-2.pbmit-ihbox .pbmit-heading-desc {
	color: rgba(var(--pbmit-blackish-color-rgb), .8);
}
.pbmit-ihbox-style-2:hover .pbmit-heading-desc {
	color: rgba(var(--pbmit-white-color-rgb), .8);
}
.pbmit-ihbox-style-2:hover .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-2:hover .pbmit-ihbox-icon-type-image,
.pbmit-ihbox-style-2:hover .pbmit-ihbox-svg-wrapper {
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-2:hover .pbmit-ihbox-svg .pbmit-ihbox-svg-wrapper svg,
.pbmit-ihbox-style-2:hover .pbmit-ihbox-icon .pbmit-ihbox-icon-wrapper svg {
	fill: var(--pbmit-white-color);
}
.pbmit-ihbox-style-2 .pbmit-element-subtitle{
	margin: 0 0 0 3px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-btn a:hover{
	color: var(--pbmit-white-color);
}
/** Style 3 **/
.pbmit-ihbox-style-3{
	margin-bottom: 0px;
}
.pbmit-ihbox-style-3 .pbmit-icon-type-icon {
	font-size: 80px;
	line-height: 80px;
	color: var(--pbmit-global-color)
}
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-type-text {
	font-size: 60px;
	color: var(--pbmit-global-color)
}
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-type-image img {
	max-width: 100px;
	border-radius: 10px;
}
.pbmit-ihbox-style-3 .pbmit-element-heading,
.pbmit-ihbox-style-3 .pbmit-element-subtitle,
.pbmit-ihbox-style-3 .pbmit-element-title {
	font-size: 24px;
	line-height: 30px;
	margin: 0 20px 0px 0;
}
.pbmit-ihbox-style-3 .pbmit-element-subtitle{
	font-weight: 500;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents {
	flex: 1;
}
.pbmit-ihbox-style-3 .pbmit-content-inner {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.pbmit-ihbox-style-3 .pbmit-content-inner::after {
	content: "";
	width: 190px;
	height: 2px;
	flex: 1;
	background-size: 7px;
	/* background-image: linear-gradient(to right, transparent 0, transparent 65%, var(--pbmit-blackish-color) 65%, var(--pbmit-blackish-color)); */
}
.pbmit-ihbox-style-3 .pbmit-element-heading,
.pbmit-ihbox-style-3 .pbmit-element-subtitle{
	order: 3;
	margin: 0;
	margin-left: 14px;
	margin-right: 50px;
	color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-3 .pbmit-heading-desc {
	margin: 0;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-btn a {
	margin-top: 10px;
	display: inline-block;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-svg .pbmit-ihbox-svg-wrapper {
	margin: 0;
}
.pbmit-ihbox-style-3:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.pbmit-ihbox-style-3{
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	display: flex;
	align-items: start;
	position: relative;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-svg,
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-wrapper {
	display: inline-block;
	margin-right: 30px
}
/** Style 4 **/
.pbmit-miconheading-style-4{
	margin-bottom: 15px;
}
.pbmit-ihbox-style-4 .pbmit-ihbox-headingicon{
    /* text-align: center; */
    display: inline-block;
}
.pbmit-ihbox-style-4 .pbmit-element-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 10px;
}
.pbmit-ihbox-style-4 .pbmit-element-subtitle,
.pbmit-ihbox-style-4 .pbmit-element-heading{
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 0px;
}
.pbmit-ihbox-style-4 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-4 .pbmit-ihbox-icon-type-image{	
	color: var(--pbmit-global-color);
	transition: all 0.5s ease-in-out;
	height: 100px;
	width: 100px;
	margin: 10px auto 35px;
	overflow: hidden;
}
.pbmit-ihbox-style-4 .pbmit-icon-type-icon,
.pbmit-ihbox-style-4 .pbmit-ihbox-icon-type-text{
	font-size: 100px;
	line-height: 100px;
	color: var(--pbmit-global-color);
	transition: all 0.5s ease-in-out;
	margin: 5px auto 20px;
}
.pbmit-ihbox-style-4:hover .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-4:hover .pbmit-ihbox-icon-type-image,
.pbmit-ihbox-style-4:hover .pbmit-icon-type-icon,
.pbmit-ihbox-style-4:hover .pbmit-ihbox-icon-type-text{
	transform: translate(0 , -5px);
}
.pbmit-ihbox-style-4 .pbmit-heading-desc{
	padding: 0 0px;
}
.pbmit-ihbox-style-4 .pbmit-ihbox-svg{
	font-size: 15px;
	margin-bottom: 20px;
}
.pbmit-ihbox-style-4 .pbmit-ihbox-icon-type-image img{
	width: 100px;
	height: 100px;
	object-fit: cover;
}
.pbmit-ihbox-style-4 .pbmit-ihbox-icon .pbmit-icon-type-icon svg{
	height: 40px;
	width: 40px;
	fill: var(--pbmit-secondary-color);
}
/** Style 5 **/
.pbmit-ihbox-style-5 .pbmin-lightbox-video{
	position: relative;
	margin-left: 25px;
}
.pbmit-ihbox-style-5 .pbmit-ihbox-icon .pbmit-ihbox-icon-wrapper:not(.pbmit-ihbox-icon-type-image,.pbmit-ihbox-icon-type-text),
.pbmit-ihbox-style-5 .pbmit-ihbox-svg .pbmit-ihbox-svg-wrapper{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -42%);
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-5 .pbmit-ihbox-icon-type-image{
	width: 140px;
}
.pbmit-ihbox-style-5 .pbmit-ihbox-icon-type-image img,
.pbmit-ihbox-style-5 .pbmit-feature-wrapper-img .pbmit-ihbox-icon-type-image img{
	border-radius:50%;
	border: 7px solid var(--pbmit-secondary-color);
}
.pbmit-ihbox-style-5 .pbmit-ihbox-contents{
	text-align: end;
}
.pbmit-ihbox-style-5 .pbmit-element-title{
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 0;
	transition: all 0.6s ease-in-out;
}
.pbmit-ihbox-style-5 .pbmit-icon-type-icon{
	font-size: 25px;
}
.pbmit-ihbox-style-5 .pbmit-ihbox-icon-type-text{
	font-size: 45px;
}
.pbmit-ihbox-style-5 .pbmit-element-subtitle{
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 0;
}
.pbmit-ihbox-style-5 .pbmit-ihbox-headingicon{
	justify-content: end;
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-5 .pbmit-ihbox-icon-type-image img{
	border-color: var(--pbmit-white-color);
}
/** Style 6 **/
.pbmit-ihbox-style-6,
.pbmit-ihbox-style-6 .pbmit-icon-type-icon,
.pbmit-ihbox-style-6 .pbmit-ihbox-contents {
	transition: all 0.5s ease-in;
}
.pbmit-ihbox-style-6 .pbmit-ihbox-headingicon {
	display: flex;
	align-items: center;
}
.pbmit-ihbox-style-6 .pbmit-heading-desc{ 
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
	text-transform: uppercase;
    font-family: Mulish, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.pbmit-ihbox-style-6 .pbmit-element-title {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 0px;
}
.pbmit-ihbox-style-6 .pbmit-element-subtitle {
	font-size: 16px;
	line-height: 22px;
	margin-top: 5px;
}
.pbmit-ihbox-style-6 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-6 .pbmit-ihbox-svg-wrapper {
	font-size: 60px;
	line-height: 60px;
	color: var(--pbmit-global-color);
	margin-right: 15px;  
}
.pbmit-ihbox-style-6 .pbmit-ihbox-icon-type-image img {
	width: 60px;
	height: auto;
}
.pbmit-ihbox-style-6 .pbmit-ihbox-icon .pbmit-icon-type-icon svg{
	width: 30px;
	height: 30px;
	fill: var(--pbmit-global-color);
}
.pbmit-ihbox-style-6:hover .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-6:hover .pbmit-ihbox-svg-wrapper {
	transform: scale(-1) rotate(180deg);
	transition: all 500ms ease-in;
}
.pbmit-ihbox-style-6 .pbmit-icon-type-icon i {
	display: inline-block;
}
/** Style 7 **/
.pbmit-ihbox-style-7{
	margin-bottom: 30px;

}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-7 .pbmit-ihbox-svg,
.pbmit-ihbox-style-7,
.pbmit-ihbox-style-7 .pbmit-ihbox-box,
.pbmit-ihbox-style-7 .pbmit-ihbox-box-number,
.pbmit-ihbox-style-7 .pbmit-ihbox-box::before,
.pbmit-ihbox-style-7 .pbmit-content-wrapper::before{
	transition: all 0.4s ease-in;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-box{
	padding: 40px 26px 25px;
	border-radius: 30px;
	border:1px solid rgba( var(--pbmit-blackish-color-rgb),.1);
		background-color: white;
}
.pbmit-ihbox-style-7:hover{
	transform: translate(0, -5px);
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon,
.pbmit-ihbox-style-7 .pbmit-ihbox-svg{
	margin-right: 15px;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-7 .pbmit-ihbox-svg{
	background-color: var(--pbmit-secondary-color);
	border-radius: 50%;
	height: 70px;
	width: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pbmit-ihbox-style-7:hover .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-7:hover .pbmit-ihbox-svg{
	background-color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-7 .pbmit-icon-type-icon{
	font-size: 35px;
	line-height: 35px;
	color: var(--pbmit-blackish-color);
}
.pbmit-ihbox-style-7:hover .pbmit-ihbox-icon-type-text,
.pbmit-ihbox-style-7:hover .pbmit-icon-type-icon{
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-7 .pbmit-ihbox-svg-wrapper{
	font-size: 12px;
	line-height: 12px;
	color: var(--pbmit-blackish-color);
	margin-top: 5px;
}
.pbmit-ihbox-style-7 .pbmit-element-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 0;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-box-number{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
}
.pbmit-ihbox-style-7 .pbmit-content-wrapper{
	padding: 25px 0 0 0;
	margin: 25px 0 0 0;
	border-top: 1px solid rgba(var(--pbmit-blackish-color-rgb), .1);
	position: relative;
}
.pbmit-ihbox-style-7 .pbmit-content-wrapper::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: rgba(var(--pbmit-blackish-color-rgb), .6);
}
.pbmit-ihbox-style-7:hover .pbmit-content-wrapper::before{
	width: 100%;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon-type-text{
	font-size: 30px;
}
.pbmit-ihbox-style-7 .pbmit-element-subtitle{
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 5px;
}
.pbmit-element-column-four .elementor-section-boxed .pbmit-ihbox-style-7 .pbmit-element-title {
	font-size: 18px;
	line-height: 28px;
}
.pbmit-element-column-four .elementor-section-boxed .pbmit-ihbox-style-7 .pbmit-ihbox-box {
	padding: 30px;
}
.pbmit-heading-desc{
	margin-bottom: 15px;
}
/** Style 8 **/
.pbmit-miconheading-style-8{
	margin-bottom: 20px;
}
.pbmit-ihbox-style-8,
.pbmit-ihbox-style-8 .pbmit-ihbox-contents,
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper::before,
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper::before,
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper svg,
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper svg{
	transition: all 0.3s ease-in;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper{
	height: 55px;
	width: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 15px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper svg,
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper svg{
	fill: var(--pbmit-white-color);
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper::before,
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper::before{
	content: "";
	position: absolute;
	background-color: var(--pbmit-secondary-color);
	left: 50%;
	top: 50%;
	border-radius: 50%;
	transform: translate(-20px, -20px);
	width: 40px;
	height: 40px;
	opacity: 0;
	z-index: -1;
}
.pbmit-ihbox-style-8:hover .pbmit-ihbox-icon-wrapper::before,
.pbmit-ihbox-style-8:hover .pbmit-ihbox-svg-wrapper::before{
	width: 100%;
	height: 100%;
	transform: translate(0, 0);
	left: 0;
	top: 0;
	opacity: 1;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-type-icon{
	font-size: 30px;
	line-height: 30px;
}
.pbmit-ihbox-style-8:hover .pbmit-ihbox-icon-wrapper{
	color: var(--pbmit-blackish-color);
}
.pbmit-ihbox-style-8:hover .pbmit-ihbox-svg-wrapper svg,
.pbmit-ihbox-style-8:hover .pbmit-ihbox-icon-wrapper svg{
	fill: var(--pbmit-blackish-color);
}
.pbmit-ihbox-style-8 .pbmit-element-title{
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 0;
}
.pbmit-ihbox-style-8 .pbmit-heading-desc{
	margin-bottom: 0;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-type-image{
	background-color: transparent !important;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper.pbmit-ihbox-icon-type-image::before{
	content: none !important;
}
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-type-text{
	font-size: 22px;
}
/* == For bg color == */
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper,
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper{
	background-color: var(--pbmit-white-color);
	color: var(--pbmit-global-color);
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper svg,
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper svg{
	fill: var(--pbmit-global-color);
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-8:hover .pbmit-ihbox-icon-wrapper{
	color: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-8:hover .pbmit-ihbox-icon-wrapper svg,
.pbmit-bg-color-secondary .pbmit-ihbox-style-8:hover .pbmit-ihbox-svg-wrapper svg{
	fill: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper::before,
.pbmit-bg-color-secondary .pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper::before{
	background-color: var(--pbmit-global-color);
}
.pbmit-bg-color-global .pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper,
.pbmit-bg-color-global .pbmit-ihbox-style-8 .pbmit-ihbox-svg-wrapper{
	background-color: var(--pbmit-blackish-bg-color);
}
.pbmit-bg-color-blackish .pbmit-ihbox-style-8 .pbmit-element-title{
	color: var(--pbmit-white-color);
}
/** Style 9 **/
.pbmit-ihbox-style-9 .pbmit-icon-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-box,
.pbmit-ihbox-style-9 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-icon-type-text,
.pbmit-ihbox-style-9 .pbmit-element-title,
.pbmit-ihbox-style-9 .pbmit-heading-desc,
.pbmit-ihbox-style-9::before,
.pbmit-ihbox-style-9{
	transition: all 0.5s ease-in;
}
.pbmit-ihbox-style-9 .pbmit-element-title{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 15px;
}
.pbmit-ihbox-style-9:hover .pbmit-element-title{
	color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-9 .pbmit-ihbox-icon,
.pbmit-ihbox-style-9 .pbmit-ihbox-svg{
	margin-right: 25px;
}
.pbmit-ihbox-style-9 .pbmit-heading-desc{
	margin-bottom: 0;
}
.pbmit-ihbox-style-9 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-9 .pbmit-ihbox-svg-wrapper{
	width: 100px;
	height: 100px;
	font-size: 50px;
	line-height: 50px;
	background-color: var(--pbmit-white-color);
	color: var(--pbmit-global-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 4px solid var(--pbmit-global-color);
}
.pbmit-ihbox-style-9:hover .pbmit-icon-wrapper,
.pbmit-ihbox-style-9:hover .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-9:hover .pbmit-ihbox-svg-wrapper{
	background-color: var(--pbmit-blackish-color);
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-9 .pbmit-heading-desc .pbmit-day{
	padding: 0 30px 0 0;
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-9 .pbmit-heading-desc{
	color: var(--pbmit-blackish-color);
}
/** Style 10 **/
.pbmit-miconheading-style-10{
	margin-bottom: 30px;
}
.pbmit-ihbox-style-10{
	border: 1px solid rgba(var(--pbmit-blackish-color-rgb),.1);
	border-radius: 20px;
	padding: 30px;
	transition: all 0.5s ease-in-out;
	background-color: white;
}
.pbmit-ihbox-style-10:hover{
	background-color: var(--pbmit-secondary-color);
}
.pbmit-ihbox-style-10 .pbmit-ihbox-headingicon{
	text-align: center;
}
.pbmit-ihbox-style-10 .pbmit-element-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 10px;
}
.pbmit-ihbox-style-10 .pbmit-element-subtitle,
.pbmit-ihbox-style-10 .pbmit-element-heading{
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 0px;
}
.pbmit-ihbox-style-10 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-10 .pbmit-ihbox-icon-type-image{	
	color: var(--pbmit-global-color);
	transition: all 0.5s ease-in-out;
	height: 80px;
	width: 80px;
	margin: 0px auto 30px;
}
.pbmit-ihbox-style-10 .pbmit-icon-type-icon,
.pbmit-ihbox-style-10 .pbmit-ihbox-icon-type-text{
	font-size: 95px;
	line-height: 95px;
	color: var(--pbmit-global-color);
	transition: all 0.5s ease-in-out;
	margin: 0px auto 20px;
}
.pbmit-ihbox-style-10:hover .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-10:hover .pbmit-ihbox-icon-type-image,
.pbmit-ihbox-style-10:hover .pbmit-icon-type-icon,
.pbmit-ihbox-style-10:hover .pbmit-ihbox-icon-type-text{
	transform: translate(0 , -5px);
}
.pbmit-ihbox-style-10 .pbmit-heading-desc{
	margin: 0;
}
.pbmit-ihbox-style-10 .pbmit-ihbox-svg{
	font-size: 15px;
	margin-bottom: 20px;
}
.pbmit-ihbox-style-10 .pbmit-ihbox-icon .pbmit-icon-type-icon svg{
	height: 40px;
	width: 40px;
	fill: var(--pbmit-secondary-color);
}
/** Style 11 **/
.pbmit-ihbox-style-11 {
	padding: 14px 14px 0 0;
	position: relative;
	background-color: var(--pbmit-white-color);
	border-radius: 0 30px 0 0;
}
.pbmit-ihbox-style-11 .pbmit-ihbox-headingicon{
	text-align: center;
	display: inline-block;
	background-color: var(--pbmit-global-color);
	padding: 40px 45px;
	border-radius: 30px;
}
.pbmit-ihbox-style-11 .pbmit-element-title{
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 0;
	color: var(--pbmit-white-color);
	font-weight: 500;
}
.pbmit-ihbox-style-11 .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-11 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-11 .pbmit-ihbox-icon-type-text {
	font-size: 80px;
	line-height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease-in;
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-11 .pbmit-ihbox-icon-type-text{
	font-size: 55px;
	line-height: 60px;
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 700;
}
.pbmit-ihbox-style-11 .pbmit-ihbox-icon-type-text span{
	font-size: 30px;
	line-height: 30px;
	margin-top: -20px;
}
.pbmit-ihbox-style-11 .pbmit-ihbox-icon .pbmit-ihbox-icon-wrapper svg,
.pbmit-ihbox-style-11 .pbmit-ihbox-icon .pbmit-ihbox-svg-wrapper svg{
	height: 80px;
	width: 80px;
	fill: var(--pbmit-white-color);
	margin:0 auto 10px;
}
.pbmit-ihbox-style-11 .pbmit-element-subtitle{
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 12px;
	color: var(--pbmit-white-color);
	text-transform: capitalize;
}
.pbmit-ihbox-style-11 .pbmit-heading-desc {
	text-transform: capitalize;
	padding: 0 30px;
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-11 .pbmit-button-inner:hover{
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-11:hover .pbmit-ihbox-icon-wrapper,
.pbmit-ihbox-style-11:hover .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-11:hover .pbmit-ihbox-icon-type-text{
	transform: translate(0, -5px);
}
.pbmit-sticky-corner{
	width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(-90deg);
}
.pbmit-bottom-left-corner {
    bottom: 0;
    left: -30px;
    transform: none;
}
.pbmit-ihbox-style-11 .pbmit-sticky-corner {
	transform: rotate(90deg);
}
.pbmit-ihbox-style-11 .pbmit-top-right-corner {
	top: auto;
	right: -30px;
	bottom: 0;
}
.pbmit-ihbox-style-11 .pbmit-bottom-left-corner{
	top: -30px;
	left: 0px;
}
.pbmit-sticky-corner svg path {
    fill: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .pbmit-sticky-corner svg path {
    fill: var(--pbmit-secondary-color);
}
.pbmit-ihbox-style-11 .pbmit-ihbox-btn .pbmit-button-inner .pbmit-button-wrapper:after{
	background-color: var(--pbmit-white-color);
	color: var(--pbmit-blackish-color);
}
.pbmit-ihbox-style-11 .pbmit-ihbox-icon-type-image img {
	width: 130px;
	height: auto;
}
.pbmit-ihbox-style-11 .pbmit-ihbox-btn a:hover{
	color: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .pbmit-ihbox-style-11{
	background-color: var(--pbmit-secondary-color);
}
/** Style 12 **/
.pbmit-ihbox-style-12{
	border: 1px solid rgba(var(--pbmit-blackish-color-rgb), .1);
	border-radius: 30px;
	padding: 45px;
	background-color: var(--pbmit-light-color);
}
.pbmit-ihbox-style-12 .pbmit-element-title{
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
	color: var(--pbmit-blackish-color)
}
.pbmit-ihbox-style-12 .pbmit-element-heading{
	margin-bottom: 0;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-12 .pbmit-heading-desc{
	font-size: 14px;
	margin-left: 5px;
	color: var(--pbmit-global-color)
}
.pbmit-ihbox-style-12 .pbmit-ihbox-icon-type-image img{
	width: 70px;
	height: auto;
	border-radius: 50%;
}
.pbmit-ihbox-style-12 .pbmit-ihbox-svg,
.pbmit-ihbox-style-12 .pbmit-ihbox-icon{
	position: relative;
	margin-right: 30px;
	color: var(--pbmit-global-color)
}
.pbmit-ihbox-style-12 .pbmit-element-subtitle{
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
	letter-spacing: 0.5px;
}
.pbmit-ihbox-style-12 .pbmit-ihbox-svg-wrapper,
.pbmit-ihbox-style-12 .pbmit-ihbox-icon-wrapper{
	font-size: 24px;
	line-height: 70px;
	text-align: center;
	height: 65px;
	width: 65px;
	background: var(--pbmit-global-color);
	border-radius: 50%;
	color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-12 .pbmit-ihbox-icon-wrapper svg,
.pbmit-ihbox-style-12 .pbmit-ihbox-svg-wrapper svg{
	fill: var(--pbmit-white-color);
	margin-bottom: 10px;
}
.pbmit-ihbox-style-12 .pbmit-ihbox-icon-type-text{
	font-size: 30px;
	line-height: 65px;
}
.pbmit-ihbox-style-12 .pbmit-ihbox-icon .pbmit-ihbox-icon-type-image{
	line-height: normal;
	background-color: transparent;
}

/*----------------------------------------*/
/*  02 - Team Member
/*----------------------------------------*/
/** Style 1 **/
.pbmit-team-style-1 .pbmit-featured-wrapper img,
.pbmit-team-style-1 .pbmit-team-social-links li a,
.pbmit-team-style-1 .pbmit-team-social-links li,
.pbmit-team-style-1 .pbminfotech-box-social-links {
	transition: all .6s ease-in-out;
}
.pbmit-team-style-1 .pbminfotech-post-item{
	position: relative;
	overflow: hidden;
	background: var(--pbmit-secondary-color);
	border-radius: 30px;
	padding: 30px 40px;
	text-align: center;
}
.pbmit-team-style-1 .pbmit-featured-wrapper img{
	width: 100%;
	transition: all .5s ease-out;
	border-radius: 50%;
	border: 5px solid var(--pbmit-white-color);
}
.pbmit-team-style-1:hover .pbmit-featured-wrapper img{
	border-color: var(--pbmit-global-color);
	transform: scale(1.01) rotate(0);
}
.pbmit-team-style-1 .pbmit-team-title{
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 20px;
}
.pbmit-team-style-1 .pbminfotech-box-team-position{
	font-size: 11px;
	line-height: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	background: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
	padding: 5px 20px;
	border-radius: 20px;
	padding: 3px 15px;
	border-radius: 20px;
	display: inline-block;
	position: relative;
	top: -15px;
}
.pbmit-team-style-1 .pbminfotech-box-social-links,
.pbmit-team-style-1 .pbminfotech-box-content{
	z-index: 1;
	position: relative;
}
.pbmit-team-style-1 .pbmit-team-social-links.pbmit-social-links li{
	padding: 0 0px 0 0;
	margin-right: 5px;
}
.pbmit-team-style-1 .pbmit-team-social-links li a{
	display: inline-block;
	opacity: 1;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 100%;
	text-align: center;
	font-size: 10px;
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-team-style-1 .pbmit-team-social-links li a:hover{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-global-color);
}
.pbmit-element-posts-wrapper .pbmit-team-style-1{
	margin-bottom: 30px;
}
.pbmit-bg-color-secondary .pbmit-team-style-1 .pbminfotech-post-item{
	background: var(--pbmit-white-color);
}
.pbmit-bg-color-secondary .pbmit-team-style-1 .pbmit-team-social-links li a{
	background-color: var(--pbmit-secondary-color);
}
.pbmit-bg-color-secondary .pbmit-team-style-1 .pbmit-team-social-links li a:hover{
	background-color: var(--pbmit-global-color);
}

/*----------------------------------------*/
/*  03 - Counter
/*----------------------------------------*/
/** Style 1 **/
.pbminfotech-ele-fid-style-1 .pbmit-circle {
	position: relative;
	display: inline-block;
}
.pbminfotech-ele-fid-style-1 .pbmit-circle canvas {
	transform: rotate(-45deg) translate(-2px, 2px);
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	height:90px;
	width:90px;
	top: 50%;
	left: 50%;
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-secondary-color);
	transform: translate(-50%, -50%);
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-sub .pbmit-fid-title {
	font-size: 18px;
	line-height: 24px;
	margin: 0;
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-sub {
	margin-left: 18px;
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner span,
.pbminfotech-ele-fid-style-1 .pbmit-fid-before span,
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner sub,
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner sup {
	font-size: 15px;
	line-height: 15px;
	margin: 0;
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-inner sub {
	top: auto;
	bottom: -5px;
}
.pbminfotech-ele-fid-style-1 span.pbmit-number-rotate{
	font-size: 26px;
	line-height: 26px;
}
/** Style 2 **/
.pbminfotech-ele-fid-style-2 .pbmit-fld-contents{
	text-align: center;
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner {
	font-size: 72px;
	line-height: 72px;
	margin-bottom: 10px;
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-title {
	color: var(--pbmit-blackish-color);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
	font-weight: 700;
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner sub,
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner sup {
	font-size: 50px;
	line-height: 50px;
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-before sup,
.pbminfotech-ele-fid-style-2 .pbmit-fid sup {
	margin-left: -12px;
	top: -30px;
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner .pbmit-fid span,
.pbminfotech-ele-fid-style-2 .pbmit-fid-before sub,
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner sub {
	margin-left: -12px;
	bottom: -2px;
}
.pbminfotech-ele-fid-style-2 .pbmit-fid-inner .pbmit-fid-before span,
.pbminfotech-ele-fid-style-2 .pbmit-fid-before sub,
.pbminfotech-ele-fid-style-2 .pbmit-fid-before sup {
	margin-right: -12px;
}

/*----------------------------------------*/
/*  04 - Service
/*----------------------------------------*/
/** Style 1 **/
.pbmit-service-style-1 .pbminfotech-post-item .pbmit-box-content-wrap,
.pbmit-service-style-1 .pbmit-featured-wrapper img{
	transition: all 0.5s ease-in-out;
}
.pbmit-service-style-1 .pbmit-box-content-wrap{
	background-color: var(--pbmit-secondary-color);
	border-radius: 30px 30px;
}
.pbmit-service-style-1 .pbmit-featured-wrapper{
	overflow: hidden;
	border-radius: 30px;
}
.pbmit-service-style-1 .pbmit-featured-wrapper img{
	width: 100%;
	margin-left: 10px;
	transform: scale(1.1);
	transition: .3s ease-in-out;
}
.pbmit-service-style-1:hover .pbmit-featured-wrapper img{
	margin-left: 0;
}
.pbmit-service-style-1 .pbmit-service-title{
	position: relative;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 0;
}
.pbmit-service-style-1 .pbmit-service-description p{
	margin: 15px 0 0 0;
}
.pbmit-service-style-1 .pbmit-service-icon,
.pbmit-service-style-1 .pbmit-serv-cat{
	display: none;
}
.pbmit-service-style-1 .pbmit-serv-cat{
	margin: 0 0 10px 0;
}
.pbmit-service-style-1 .pbmit-service-btn{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-global-color);
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
}
.pbmit-service-style-1:hover .pbmit-service-btn{
	background-color: var(--pbmit-blackish-color);
}
.pbmit-service-style-1 .pbmit-box-content-inner{
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px 20px;
}
.pbmit-service-style-1 .pbmit-service-icon i{
	font-size: 30px;
	line-height: 30px;
}
.pbmit-service-style-1 .pbmit-service-icon img,
.pbmit-service-style-1 .pbmit-service-icon svg{
	height: 30px;
	width: 30px;
}
.pbmit-service-style-1 .pbmit-service-description{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0px;
	display: none;
}
.pbmit-service-style-1 .pbmit-service-btn i{
	font-size: 15px;
}
.pbmit-element-posts-wrapper .pbmit-service-style-1{
	margin-bottom: 30px;
}
.pbmit-bg-color-secondary .pbmit-service-style-1 .pbmit-box-content-wrap{
	background-color: var(--pbmit-white-color);
}
/** Style 2 **/
.pbmit-service-style-2 .pbminfotech-post-item{
	background-color: var(--pbmit-secondary-color);
	padding: 20px 20px 20px;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}
.pbmit-service-style-2 .pbmit-featured-wrapper{
	position: relative;
	overflow: hidden;
	transition: all .8s ease-in-out;
	border-radius: 30px;
}
.pbmit-service-style-2 .pbmit-service-image-wrapper img{
	transition: all .4s ease-in-out;
	width: 100%;
	border: 7px solid var(--pbmit-white-color);
	border-radius: 30px;
}
.pbmit-service-style-2:hover .pbmit-service-image-wrapper img{
	border-color: rgba(var(--pbmit-global-color-rgb),.5);
}
.pbmit-service-style-2:hover .pbmit-service-image-wrapper img{
	transform: scale(1.01)
}
.pbmit-service-style-2 .pbmit-service-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 15px;
}
.pbmit-service-style-2 .pbmit-service-image-wrapper{
	position: relative;
}
.pbmit-service-style-2 .pbmit-service-icon{
	position: absolute;
	bottom: -75px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pbmit-service-style-2 .pbmit-service-icon i{
	font-size: 40px;
	line-height: 80px;
	color: var(--pbmit-white-color);
	background: var(--pbmit-global-color);
	height: 80px;
	width: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 5px solid var(--pbmit-white-color);
	-webkit-transition: all .5s ease-in-out 0s;
	-moz-transition: all .5s ease-in-out 0s;
	-ms-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}
.pbmit-service-style-2:hover .pbmit-service-icon i{
	transform: rotateY(360deg);
}
.pbmit-service-style-2 .pbmit-service-icon img{
	width: 40px;
	height: 40px;
}
.pbmit-service-style-2 .pbmit-service-icon svg{
	fill: var(--pbmit-white-color)
}
.pbmit-service-style-2 .pbmit-content-box{
	text-align: center;
	padding: 20px 20px 0;
	z-index: 1;
	position: relative;
}
.pbmit-service-style-2 .pbmit-service-description{
	/* overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; */
	margin-bottom: 0px;
}
.pbmit-service-style-2 .pbmit-serv-cat{
	display: none;
}
.pbmit-service-style-2 .pbmit-serv-cat{
	margin: 0 0 10px 0;
}
.pbmit-service-style-2 .pbmit-service-btn .pbmit-button-text {
	border-bottom: 1px solid var(--pbmit-blackish-color);
	position: relative;
}
.pbmit-service-style-2 .pbmit-service-btn .pbmit-button-text::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--pbmit-global-color);
	transition: all .3s ease-in;
}
.pbmit-service-style-2 .pbmit-service-btn:hover .pbmit-button-text::before {
	width: 100%;
}
.pbmit-element-column-four .pbmit-service-style-2 .pbmit-content-box {
	padding: 30px 20px 0px;
}
/** Style 3 **/
.pbmit-service-style-3 .pbminfotech-post-item{
	background-color: var(--pbmit-white-color);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}
.pbmit-service-style-3 .pbmit-service-image-wrapper img{
	width: 100%;
	border-radius: 30px;
}
.pbmit-service-style-3 .pbmit-service-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.pbmit-service-style-3 .pbmit-service-icon img{
	width: 30px;
	height: 30px;
}
.pbmit-service-style-3 .pbmit-service-icon svg{
	fill: var(--pbmit-global-color)
}
.pbmit-service-style-3 .pbmit-content-box{
	padding: 30px 20px 10px;
}
.pbmit-service-style-3 .pbmit-service-description{
	border-top: 1px solid rgba(var(--pbmit-blackish-color-rgb),.1);
	padding: 30px 0 0 0;
	margin: 0px 0 0 0;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
}
.pbmit-service-style-3 .pbmit-bg-image {
	border-radius: 30px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	max-width: 265px;
	transform: scale(1.0);
	transform-origin: 90% 50%;
	border-radius: 30px;
	transition: transform 2s cubic-bezier(.4, .01, .14, .99);	
}
.pbmit-service-style-3:hover .pbmit-bg-image{
	transform: scale(1.01);
}
.pbmit-service-style-3 .pbmit-service-icon{
	margin: 0 20px 0 0;
}
.pbmit-service-style-3 .pbmit-service-icon i{
	color: var(--pbmit-global-color);
	font-size: 40px;
}
.pbmit-service-style-3 .pbmit-service-btn .pbmit-button-text {
	border-bottom: 1px solid var(--pbmit-blackish-color);
	position: relative;
}
.pbmit-service-style-3 .pbmit-service-btn .pbmit-button-text::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--pbmit-global-color);
	transition: all .3s ease-in;
}
.pbmit-service-style-3 .pbmit-service-btn:hover .pbmit-button-text::before {
	width: 100%;
}
.pbmit-service-style-3 .pbmit-serv-cat{
	margin: 0 0 10px 0;
}
.pbmit-element-service-style-3 .pbmit-heading-subheading h4.pbmit-element-subtitle{
	background-color: var(--pbmit-white-color);
}
.pbmit-element-service-style-3 .pbmit-patern-bg{
	background-color: var(--pbmit-secondary-color);
	padding: 80px 85px 45px;
	position: relative;
	overflow: hidden;
	z-index:0;
}
.pbmit-element-service-style-3 .service-three-right-col:after{
	/* position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%; */
	/* background-image: url(../images/homepage-3/bg/service3-bg-pattern.png); */
	/* width: 100%;
	background-position: top left;
	background-repeat: no-repeat; */
}
.pbmit-element-service-style-3 .pbmit-left-col .pbmit-service-left-inner img,
.pbmit-element-service-style-3 .pbmit-service-left-inner,
.pbmit-element-service-style-3 .service-three-right-col,
.pbmit-element-service-style-3 .pbmit-service-sticky-col,
.pbmit-element-service-style-3 .pbmit-left-col{
	border-radius: 30px;
}
.pbmit-element-service-style-3 .pbmit-vertical-scroller-wrapper {
	overflow: hidden;
}
.pbmit-element-service-style-3 .pbmit-service-left-inner{
	display: none;
}
.pbmit-element-service-style-3 .pbmit-service-right-inner > article:last-child,
.pbmit-element-service-style-3 .pbmit-element-posts-wrapper.row .pbmit-ele {
    margin-bottom: 0;
}
.pbmit-element-service-style-3 .pbmit-service-left-inner-wrapper{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	width: 100%;
	border-radius: 30px;
}
.pbmit-element-service-style-3 .pbmit-left-col{
	padding-right: 30px;
}
.pbmit-element-column-three .pbmit-service-style-3 .pbmit-service-title {
    font-size: 20px;
    line-height: 30px;
}
/*----------------------------------------*/
/*  05 - Blog
/*----------------------------------------*/
/** Style 1 **/
.pbmit-blog-style-1 .pbmit-featured-wrapper img,
.pbmit-blog-style-1 .pbmit-featured-container .pbmit-blog-btn{
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.pbmit-blog-style-1 .pbmit-featured-container{
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	margin: 0 0 25px;
}
.pbmit-blog-style-1 .pbmit-post-title{
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 15px;
	margin-top: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.pbmit-blog-style-1:hover .pbmit-featured-wrapper img{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.pbmit-blog-style-1 .pbmit-featured-wrapper,
.pbmit-blog-style-1 .pbmit-featured-wrapper img{
	position: relative;
	width: 100%;
	border-radius: 30px;
}
.pbmit-blog-style-1 .pbmit-post-author span {
	margin-right: 3px;
}
.pbmit-blog-style-1 .pbmit-blog-btn {
	padding: 0;
	background-color: transparent;
	color: var(--pbmit-blackish-color);
}
.pbmit-blog-style-1 .pbmit-blog-btn .pbmit-button-text {
	border-bottom: 1px solid var(--pbmit-blackish-color);
	position: relative;
}
.pbmit-blog-style-1 .pbmit-blog-btn .pbmit-button-text::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--pbmit-global-color);
	transition: all .3s ease-in;
}
.pbmit-blog-style-1 .pbminfotech-box-content .pbmit-blog-btn:hover {
	color: var(--pbmit-global-color);
}
.pbmit-blog-style-1 .pbmit-blog-btn:hover .pbmit-button-text::before {
	width: 100%;
}
.pbmit-blog-style-1 .pbminfotech-box-desc{
	display: none;
}
.pbmit-blog-style-1 .pbmit-featured-container .pbmit-meta-category{
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--pbmit-white-color);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 13px;
	transition: all .3s ease-in;
}
.pbmit-blog-style-1 .pbmit-featured-container .pbmit-meta-category a{
	color: var(--pbmit-global-color);
}
.pbmit-blog-style-1:hover .pbmit-featured-container .pbmit-meta-category {
	background: var(--pbmit-blackish-color);
}
.pbmit-blog-style-1 .pbmit-featured-container .pbmit-meta-category a:hover,
.pbmit-blog-style-1:hover .pbmit-featured-container .pbmit-meta-category a{
	color: var(--pbmit-white-color);
}
/** Style 2 **/
.pbmit-blog-style-2{
	margin-bottom: 30px;
}
.pbmit-blog-style-2 .pbmit-featured-wrapper img,
.pbmit-blog-style-2 .pbmit-featured-container .pbmit-blog-btn,
.pbmit-blog-style-2 .pbmit-featured-wrapper::before{
	-webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.pbmit-blog-style-2 .pbminfotech-content-inner{
	display: flex;
}
.pbmit-blog-style-2 .pbmit-featured-img-wrapper{
	margin: 0 35px 0 0;
}
.pbmit-blog-style-2 .pbmit-featured-wrapper img{
	max-width: 270px;
	height: auto;
	border-radius: 30px;
}
.pbmit-blog-style-2:hover .pbmit-featured-wrapper img{
	transform: scale(1.01);
}
.pbmit-blog-style-2 .pbmit-post-title{
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 0;
}
.pbmit-blog-style-2 .pbmit-post-title,
.pbmit-blog-style-2 .pbmit-post-title a{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-transform: capitalize;
}
.pbmit-meta-line{
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 30px;
    position: relative;
	font-size: 13px;
    line-height: 23px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: rgba(var(--pbmit-blackish-color-rgb), .7);
}
.pbmit-meta-line:last-child{
	margin-right: 0;
}
.pbmit-meta-line::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    width: 2px;
    height: 10px;
    transform: translate(0, -50%);
    background-color: rgba(var(--pbmit-blackish-color-rgb), .4);
}
.pbmit-blog-classic .pbmit-blog-meta span.pbmit-meta.pbmit-meta-author::before,
.pbmit-blog-classic .pbmit-blog-meta span.pbmit-meta:last-child::before,
.pbmit-meta-line:last-child::before {
	display: none;
}
.pbmit-blog-style-2 .pbmit-post-author span{
	margin-right: 3px;
}
.pbmit-blog-style-2 .pbmit-blog-btn {
	padding: 0;
	background-color: transparent;
	color: var(--pbmit-blackish-color);
}
.pbmit-blog-style-2 .pbmit-blog-btn .pbmit-button-text {
	border-bottom: 1px solid var(--pbmit-blackish-color);
	position: relative;
}
.pbmit-blog-style-2 .pbmit-blog-btn .pbmit-button-text::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--pbmit-global-color);
	transition: all .3s ease-in;
}
.pbmit-blog-style-2 .pbminfotech-box-content .pbmit-blog-btn:hover {
	color: var(--pbmit-global-color);
}
.pbmit-blog-style-2 .pbmit-blog-btn:hover .pbmit-button-text::before {
	width: 100%;
}
.pbmit-blog-style-2 .pbmit-meta-wraper{
	display: grid;
	padding: 25px 0;
}
.pbmit-blog-style-2 .pbmit-meta-wraper-inner{
	align-self: self-start;
	justify-content: space-between;
}
.pbmit-blog-style-2 .pbmit-blog-btn{
	align-self: self-end;
}
.pbmit-blog-style-2 .pbminfotech-box-desc{
	display: none;
}
.pbmit-blog-style-2 .pbminfotech-feature-wrapper{
	position: relative;
}
.pbmit-blog-style-2 .pbminfotech-feature-wrapper .pbmit-meta-category{
	position: absolute;
	top: 20px;
	left: 10px;
	background: var(--pbmit-white-color);
	padding: 5px 10px;
	border-radius: 30px;
	font-size: 13px;
	transition: all .3s ease-in;
}
.pbmit-blog-style-2 .pbminfotech-feature-wrapper .pbmit-meta-category a{
	color: var(--pbmit-global-color);
}
.pbmit-blog-style-2:hover .pbminfotech-feature-wrapper .pbmit-meta-category {
	background: var(--pbmit-blackish-color);
}
.pbmit-blog-style-2 .pbminfotech-feature-wrapper .pbmit-meta-category a:hover,
.pbmit-blog-style-2:hover .pbminfotech-feature-wrapper .pbmit-meta-category a{
	color: var(--pbmit-white-color);
}

/*----------------------------------------*/
/*  06 - Testimonial
/*----------------------------------------*/
/** Style 1 **/
.pbmit-testimonial-style-1 .pbminfotech-post-item{
	position: relative;
}
.pbmit-testimonial-style-1 .pbminfotech-post-item .pbmit-box-content-wrap{
	padding: 30px 35px 40px;
	background-color: var(--pbmit-secondary-color);
	border-radius: 30px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-title{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
}
.pbmit-testimonial-style-1 .pbmit-featured-wrapper img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text{
	font-size: 18px;
	line-height: 30px;
	margin: 0;
	padding: 35px 0 20px;
	border: 0;
	color: var(--pbmit-blackish-color);
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text p{
	font-family: var(--pbmit-heading-typography-font-family);
	margin-bottom: 0;
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings{
	font-size: 16px;
	line-height: 16px;
	color: rgba(var(--pbmit-blackish-color-rgb), 0.2);
}
.pbmit-testimonial-style-1 .pbminfotech-box-star-ratings .pbmit-active{
	color: #fdcf00;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-detail{
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.pbmit-testimonial-style-1 .pbminfotech-box-author{
	display: flex;
	align-items: center;
	position: relative;
}
.pbmit-testimonial-style-1 .pbminfotech-box-img{
	padding: 0 20px 0 0;
}
.pbmit-testimonial-style-1 .pbminfotech-box-author:before {
	font-family: "pbminfotech-base-icons";
	content: "\e839";
	position: absolute;
	left: auto;
	right: 0;
	top: 18px;
	background-color: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
	border-radius: 50%;
	text-align: center;
	font-size: 16px;
	height: 50px;
	width: 50px;
	line-height: 50px;
}
/** Style 2 **/
.pbmit-testimonial-style-2 .pbminfotech-post-item{
	position: relative;
	text-align: center;
	padding: 0px 180px;
}
.pbmit-testimonial-style-2 .pbminfotech-box-title{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 5px;
	font-weight: 500;
}
.pbmit-testimonial-style-2 .pbmit-featured-wrapper img{
	width: 120px;
	height: 120px;
	border-radius: 50%;
}
.pbmit-testimonial-style-2 .pbminfotech-testimonial-text{
	font-size: 32px;
	line-height: 50px;
	margin: 0;
	padding: 35px 0;
	border: 0;
	color: var(--pbmit-blackish-color);
	font-family: var(--pbmit-heading-typography-font-family);
}
.pbmit-testimonial-style-2 .pbminfotech-testimonial-text p{
	margin-bottom: 0;
}
.pbmit-testimonial-style-2 .pbminfotech-box-star-ratings{
	font-size: 16px;
	line-height: 16px;
	padding: 0 0 15px 0;
	color: rgba(var(--pbmit-blackish-color-rgb), 0.2);
}
.pbmit-testimonial-style-2 .pbminfotech-box-star-ratings .pbmit-active{
	color: #fdcf00;
}
.pbmit-testimonial-style-2 .pbminfotech-testimonial-detail{
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.pbmit-testimonial-style-2 .pbminfotech-box-img{
	position: relative;
	display: inline-block;
}
.pbmit-testimonial-style-2 .pbminfotech-box-img:before {
	font-family: "pbminfotech-base-icons";
	content: "\e839";
	position: absolute;
	left: auto;
	right: -20px;
	top: 35px;
	background-color: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
	border-radius: 50%;
	text-align: center;
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 50px;
}

/*----------------------------------------*/
/*  07 - Header
/*----------------------------------------*/
.pbmit-header-overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
	top: 50px;
}
.site-title {
    margin: 0;
    padding: 0;
    display: flex;
	align-items: center;
    vertical-align: middle;
    text-align: center;
    width: 100%;
	height: 60px;
	transition: none;
    line-height: inherit;
}
.site-title a {
    display: flex;
    align-items: center;
	line-height: inherit;
}
.site-header .pbmit-header-search-btn{
    padding: 0 30px;
    position: relative;
}
.site-header .pbmit-header-search-btn a{
	font-size: 18px;
    color: rgba(var(--pbmit-blackish-color-rgb), 1);
}
.site-header .pbmit-header-search-btn a:hover{
	color: var(--pbmit-global-color);
}
/** Header Style 1 **/
.header-style-2 .pbmit-pre-header-left .pbmit-contact-info{
	font-size: 14px;
	font-weight: 600;
}
.pbmit-contact-info li:not(:last-child){
	padding: 0 15px 0 0;
}
.pbmit-contact-info li, .pbmit-social-links li {
	display: inline-block;
	vertical-align: top;
}
.pbmit-contact-info li{
	font-size: 14px;
}
.pbmit-contact-info li i {
    font-size: 15px;
    margin-right: 8px;
    transition: all .3s;
    color: var(--pbmit-global-color);
}
.pbmit-pre-header-wrapper .pbmit-pre-header-right {
    display: flex;
    align-items: center;
}
.pbmit-pre-header-wrapper .pbmit-pre-header-right .pbmit-social-links li a{
	color: var(--pbmit-blackish-color);
}
.pbmit-pre-header-wrapper .pbmit-social-links .pbmit-social-li a:hover{
	color: var(--pbmit-global-color);
	-webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.pbmit-social-links li:not(:last-child) {
    padding: 0 15px 0 0;
}
.pbmit-pre-header-wrapper .pbmit-social-links li i {
    margin: 0;
    font-size: 15px;
}
.header-style-1 .pbmit-button-box{
	display: flex;
    align-items: center;
    padding: 0;
	position: relative;
    line-height: normal;
}
.header-style-1 .pbmit-right-box>:first-child {
    padding-left: 0;
}
.header-style-1 .pbmit-button-box>:last-child {
    padding-right: 0;
}
.header-style-1 .pbmit-header-button{
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-style: normal;
}
.site-header .pbmit-header-button a {
	-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;
}
.site-header .pbmit-button-box .pbmit-header-button a:hover::before {
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.site-header .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-1 {
    color: #666;
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pbmit-button-box .pbmit-header-button a span {
    display: block;
}
.site-header .pbmit-button-box .pbmit-header-button a span.pbmit-header-button-text-2 {
    margin-top: 8px;
    font-size: 20px;
    line-height: 20px;
    color: var(--pbmit-blackish-color);
}
/** Header Style 2 **/
.site-header.header-style-2 .site-branding img{
	max-height: 40px;
}
.header-style-2 .pbmit-header-search-btn a{
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    display: block;
    border-radius: 50%;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-secondary-color);
}
.header-style-2 .pbmit-header-search-btn a:hover{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-blackish-color);
}

/*----------------------------------------*/
/*  08 - Footer
/*----------------------------------------*/
.site-footer{
    background-image: url(../images/homepage-1/bg/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-attachment: scroll;
	padding: 35px 0 30px;
	font-size: 15px;
	position: relative;
	background-color: var(--pbmit-secondary-color);
	color: var(--pbmit-blackish-color);
}
.site-footer .pbmit-footer-widget-area{
	padding-bottom: 50px;
}
.site-footer .widget {
    padding-top: 60px;
    position: relative;
}
.site-footer .widget .widget-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
    color: var(--pbmit-blackish-color);
    text-transform: capitalize;
    font-style: normal;
	margin-bottom: 20px;
}
.site-footer .pbmit-footer-widget-col-1 .textwidget ul{
	display: flex;
    flex-wrap: wrap;
}
.site-footer .widget ul>li {
    padding: 0 0 15px 0;
    line-height: 20px;
}
.pbmit-footer-widget-col-1 .widget ul>li{
	width: 50%;
}
.site-footer .widget ul a:hover{
	color: var(--pbmit-global-color);
}
.site-footer .widget_text {
    font-size: 16px;
    line-height: 26px;
}
.site-footer .pbmit-footer-widget-col-2{
	text-align: center;
}
.site-footer .pbmit-footer-widget-col-2 .widget .pbmit-footer-logo {
    margin: -15px 0 0;
}
.site-footer .pbmit-footer-widget-col-2 .widget .pbmit-footer-logo img {
    height: 50px;
}
.site-footer .pbmit-footer-widget-col-2  .pbmit-footer-desc{
	padding: 40px 130px 10px;
    display: inline-block;
}
.site-footer .pbmit-footer-widget-col-2 .pbmit-social-links .pbmit-social-li {
    display: inline-block;
    margin: 0 6px 8px 0;
    padding: 0;
    transform: unset;
}
.site-footer .pbmit-footer-widget-col-2 .pbmit-social-links li.pbmit-social-li a {
    font-size: 15px;
    display: inline-block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    opacity: 1;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-white-color);
    border-radius: 50%;
}
.site-footer .pbmit-social-links li.pbmit-social-li a:hover {
    background-color: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
}
.site-footer .pbmit-footer-widget-col-3 {
    text-align: right;
}
.site-footer .pbmit-timelist-wrapper .pbmit-timelist-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-footer .pbmit-timelist-list li .pbmit-timelist-li-title {
    font-weight: 400;
    font-size: 15px;
}
.pbmit-footer-text-area {
    background-color: transparent;
    padding-top: 15px;
    padding-bottom: 15px;
	position: relative;
}
.pbmit-footer-text-area .container {
    background: var(--pbmit-white-color);
    padding: 30px;
    border-radius: 30px;
}
.pbmit-footer-text-inner {
    font-size: 14px;
}
.pbmit-footer-menu {
    display: flex;
    justify-content: flex-end;
}
.pbmit-footer-menu li {
    display: inline-block;
    padding: 0 10px;
    position: relative;
}
.pbmit-footer-menu li:last-child {
    padding-right: 0;
}
.pbmit-footer-menu li:not(:first-child):before{
    content: "";
    position: absolute;
    height: 15px;
    width: 1px;
    background-color: rgba(var(--pbmit-blackish-color-rgb), .2);
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

/*----------------------------------------*/
/*  09 - Title Bar
/*----------------------------------------*/
.pbmit-title-bar-wrapper{
	background-image: url(../images/bg/titlebar-bg.jpg);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
	position: relative;
    z-index: 2;
}
.pbmit-title-bar-wrapper,
.pbmit-title-bar-content{
	min-height: 400px;
}
.pbmit-title-bar-content{
	position: relative;
    z-index: 1;
    padding: 64px 0;
	display: flex;
    align-items: center;
}
.pbmit-title-bar-content-inner{
	width: 100%;
}
.pbmit-title-bar-content .pbmit-tbar,
.pbmit-title-bar-content .pbmit-breadcrumb{
	display: block;
}
.pbmit-title-bar-content .pbmit-tbar-inner{
	max-width: none;
    padding: 0;
	margin-bottom: 15px;
}
.pbmit-tbar-subtitle{
	font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-style: normal;
	margin-bottom: 20px;
	color: var(--pbmit-white-color);
	font-family: var(--pbmit-body-typography-font-family);
}
.pbmit-tbar-title{
	font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0px;
    color: var(--pbmit-white-color);
    text-transform: capitalize;
    font-style: normal;
}
.single-post .pbmit-title-bar-content-inner{
	width: 60%;
}
.single-post .pbmit-title-bar-content .pbmit-tbar-title{
	font-size: 50px;
    line-height: 60px;
	margin-bottom: 0;
}
.pbmit-breadcrumb,
.pbmit-breadcrumb a{
	font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: var(--pbmit-white-color);
    /* text-transform: uppercase; */
	font-weight: 500;
    font-style: normal;
}
.pbmit-breadcrumb a:hover{
	color: inherit;
}
.pbmit-breadcrumb .pbmit-breadcrumb-inner {
    padding-left: 5px;
}
.pbmit-breadcrumb .pbmit-breadcrumb-inner span{
	display: inline-block;
    font-size: 15px;
}

/*----------------------------------------*/
/*  10 - Overlap Colomn
/*----------------------------------------*/
.overlap-colomn {
    position: relative; 
}
.overlap-wrapper { 
    position: absolute; 
    height: 100%; 
    width: 100%; 
    top: 0; 
    left: 0; 
    z-index: 9; 
}
.overlap-img,
.overlap-bg { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
}
.overlap-left {
     margin-left: -500px; 
}
.overlap-right { 
    margin-right: -500px; 
    width: auto; 
    left: 0; 
    right: 0; 
}
.overflow-hidden { 
    overflow: hidden; 
}
.content-element-text {
    position: relative; 
    z-index: 99; 
    padding-top: 60px; 
    padding-bottom: 40px; 
    padding-right: 30px; 
}

/*----------------------------------------*/
/*  11 - Accordion
/*----------------------------------------*/
.accordion-item{
	border: none ;
	position: relative;
	margin-bottom: 30px;
	background-color: transparent;
	color: inherit;
    border-bottom: none;
	box-shadow: none;
	--bs-accordion-btn-focus-border-color: none;
    --bs-accordion-btn-focus-box-shadow: none;
}
.accordion-button{
	position: relative;
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0;
	font-weight: 600;
	font-size: 17px;
    line-height: 26px;
    cursor: pointer;
	border-radius: 30px !important;
    outline: none;
    padding: 18px 0 18px 40px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-secondary-color);
	font-family: var(--pbmit-heading-typography-font-family);
}
.accordion-button:not(.collapsed){
	box-shadow: none;
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-secondary-color);
}
.accordion-item .pbmit-accordion-icon{
	max-width: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 14px;
    background: var(--pbmit-white-color);
    border-radius: 50%;
    position: absolute;
    color: var(--pbmit-global-color);
    order: 2;
    top: 50%;
    transform: translate(0, -50%);
    right: 5px;
    left: auto;
}
.accordion-item .pbmit-accordion-icon-right{
	float: right;
    text-align: right;
}
.accordion-item.active .pbmit-accordion-icon-closed {
    display: none;
}
.accordion-item .pbmit-accordion-icon-closed {
    display: block;
}
.accordion-item.active .pbmit-accordion-icon-opened {
    display: block;
}
.accordion-item .pbmit-accordion-icon-opened {
    display: none;
}
.accordion-button::after{
	display: none;
}
.pbmit-accordion-title:hover{
	color: var(--pbmit-global-color);
	-webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.accordion-body{
	border: 0;
    padding: 30px 15px 5px 15px;
}
.accordion-body .row.pbmit-img-content-wrap {
    align-items: center;
}
.accordion-body .pbmit-accordian-img{
	padding: 0 15px 0 20px;
}
.accordion-body .pbmit-accordian-img img{
	border-radius: 20px;
}

/*----------------------------------------*/
/*  12 - Circle Progress
/*----------------------------------------*/
.db-circle-overlay { 
    position: absolute; 
    top: 50%; 
    -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%); 
    left: 0; 
    width: 100%; 
    text-align: center 
}
.db-fidbox-style-2 .db-circle-w { 
    position: relative; 
    text-align: center 
}
.db-fidbox-style-2 .db-fid-title { 
    text-align: center;
    color: #fff; 
    font-size: 14px; 
    font-weight: 600; 
    margin-top: 0 
}
.db-fidbox-style-2 .db-circle-number sub,
.db-fidbox-style-2 .db-circle-number { 
    font-size: 20px;
    color: #fff; 
    font-weight: bold 
}
.db-fidbox-style-2 .db-circle-number sub {
    bottom: 0 
}
.db-fidbox-style-1 .db-fid-title { 
    font-size: 18px; 
    line-height: 20px; 
    margin-top: 0 
}
.db-fidbox-style-1 .db-fid-title-w,
.db-fidbox-style-1 .db-circle-w {
    display: inline-block 
}
.db-fidbox-style-1 .db-fid-title-w { 
    width: 43%; 
    margin-left: 12px 
}
.db-fidbox-style-1 .db-circle-w {
    width: 122px; 
    position: relative; 
    vertical-align: top 
}
.db-fidbox-style-1 .db-circle-number sub,
.db-fidbox-style-1 .db-circle-number {
    font-size: 20px; 
    font-weight: bold 
}
.db-fidbox-style-1 .db-circle-number sub { 
    bottom: 0 
}
.db-fidbox-style-1 .db-fid-title-w { 
    position: absolute; 
    top: 50%; 
    -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%)
}
.db-fidbox-style-1 .db-fid-title-w h3 { 
    margin-bottom: 0 
}
.db-circle canvas { 
    image-rendering: optimizeSpeed; 
    image-rendering: -moz-crisp-edges; 
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: -o-crisp-edges; 
    image-rendering: pixelated; 
    -ms-interpolation-mode: nearest-neighbor; 
}
.db-circle canvas { 
    max-width: 100%; 
    height: auto !important 
}
.db-overlap-row { 
    position: relative; 
    z-index: 1 
}
.db-overlap-row-section { 
    position: relative; 
    z-index: 2 
}

/*----------------------------------------*/
/*  13 - List Group
/*----------------------------------------*/
.list-group-borderless .list-group-item {
	display: flex;
    font-size: inherit;
	align-items: center;
	padding: 0;
	margin-bottom: 5px;
	color: var(--pbmit-blackish-color);
    position: relative;
    border: none;
    background: transparent;
}
.list-group .pbmit-icon-list-icon{
	color: var(--pbmit-blackish-color);
	display: flex;
    position: relative;
	top: 2px;
	line-height: normal;
}
.list-group .pbmit-icon-list-icon i{
    width: 1.25em;
    color: var(--pbmit-global-color);
	font-size: 24px;
	transition: color 0.3s;
}
.list-group .pbmit-icon-list-text{
	font-size: 16px;
	line-height: 30px;
	padding-left: 10px;
    margin-bottom: 0;
	color: var(--pbmit-blackish-color);
	align-self: center;
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
    font-style: normal;
	transition: color 0.3s;
}
.list-group-borderless .list-group-item:not(:last-child){
	padding-bottom: calc(20px/2);
}
.list-group-borderless .list-group-item:not(:first-child){
	margin-top: calc(0px/2);
}

/*----------------------------------------*/
/*  14 -  Banner Slider
/*----------------------------------------*/
.pbmit-slider-area .transform-top{
	opacity: 0;
    transform: translateY(-120px);
    transition: all 1000ms ease;
}
.swiper-slide-active .transform-top{
	opacity: 1;
	transform: translateY(0);
}
.pbmit-slider-area .transform-left{
	opacity: 0;
    transition: all 1000ms ease;
    transform: translateX(-200px);
}   
.swiper-slide-active .transform-left {
	opacity: 1;
	transform: translateX(0);
}
.pbmit-slider-area .transform-bottom{
	opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}
.swiper-slide-active .transform-bottom{
	opacity: 1;
    transform: translateY(0);
}
.swiper-slide-active .transform-delay-1{
	transition-delay: 1000ms;
}
.swiper-slide-active .transform-delay-2{
	transition-delay: 1400ms;
}
.swiper-slide-active .transform-delay-3{
	transition-delay: 1800ms;
}
.swiper-slide-active .transform-delay-4{
	transition-delay: 2100ms;
}
.swiper-slide-active .transform-delay-5{
	transition-delay: 2400ms;
}

.pbmit-slider-area .pbmit-slider-bg{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pbmit-slider-area .swiper-slider{
	padding-bottom: 0 !important;
}
.pbmit-slider-area .pbmit-sub-title{
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: Outfit;
	border: 1px solid;
	padding: 10px 20px;
	border-radius: 50px;
	max-width: max-content;
	margin-bottom: 20px;
}
.pbmit-slider-area .pbmit-title{
	font-size: 110px;
	line-height: 130px;
	margin-bottom: 30px;
	font-weight: 400;
}
.pbmit-slider-area .pbmit-title strong{
	font-weight: 700;
}
/** Slider 01 **/
.pbmit-slider-one .pbmit-slider-bg{
	border-radius: 30px;
}
.pbmit-slider-one .swiper-slider{
	overflow: visible;
}
.pbmit-slider-one .pbmit-slider-item{
	height: 800px;
	display: flex;
	align-items: center;
}
.pbmit-slider-one .pbmit-slider-content{
	overflow: hidden;
	padding-top: 30px;
}
.pbmit-slider-one .pbmit-sub-title,
.pbmit-slider-two .pbmit-sub-title{
	border-color: var(--pbmit-white-color);
	color: var(--pbmit-white-color);
}
.pbmit-slider-one .pbmit-title,
.pbmit-slider-two .pbmit-title{
	color: var(--pbmit-white-color);
}
.pbmit-slider-one .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	background-color: var(--pbmit-blackish-color);
}
.pbmit-slider-one .swiper-pagination-bullet-active{
	background-color: var(--pbmit-global-color);
}
.pbmit-slider-one .swiper-horizontal>.swiper-pagination-bullets{
	top: 50%;
	right: -75px;
	left: auto;
	bottom: auto;
	width: auto;
	transform: rotate(90deg);
}
/** Slider 02 **/
.pbmit-slider-two .pbmit-slider-item{
	padding: 350px 0 200px 0;
}
.pbmit-slider-two .pbmit-sub-title{
	display: inline-block;
}
.pbmit-slider-two .swiper-horizontal>.swiper-pagination-bullets,
.pbmit-slider-three .swiper-horizontal>.swiper-pagination-bullets{
	top: 50%;
	bottom: auto;
	width: auto;
	transform: rotate(90deg);
}
.pbmit-slider-two .swiper-horizontal>.swiper-pagination-bullets{
	right: 0;
	left: auto;
}
.pbmit-slider-two .swiper-pagination-bullet:before,
.pbmit-slider-three .swiper-pagination-bullet:before{
	content: "";
	transition: background-color 0.3s ease, transform 0.3s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    background-color: #ffffff;
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
}
.pbmit-slider-two .swiper-pagination-bullet-active,
.pbmit-slider-two .swiper-pagination-bullet:hover,
.pbmit-slider-three .swiper-pagination-bullet-active,
.pbmit-slider-three .swiper-pagination-bullet:hover{
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
    border: none;
    border-radius: 50%;
    background: transparent;
}
.pbmit-slider-two .swiper-pagination-bullet-active:before,
.pbmit-slider-two .swiper-pagination-bullet:hover:before,
.pbmit-slider-three .swiper-pagination .swiper-pagination-bullet-active:before,
.pbmit-slider-three .swiper-pagination .swiper-pagination-bullet:hover:before{
	transform: scale(0.4);
    -webkit-transform: scale(0.4);
    background-color: rgba(255, 255, 255, 1);
}
/** Slider 03 **/
.pbmit-slider-three .pbmit-slider-item{
	padding: 190px 0 260px 0;
}
.pbmit-slider-three .swiper-pagination-bullet:before{
	background-color: rgba(255,255,255,0.3);
}
.pbmit-slider-three .slide-bg-img{
	position: absolute;
	transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    display: block;
	background: url(../images/banner-slider-img/demo03-slide-bg.png);
	background-repeat: round;
	width: 855px;
    height: 865px;
	left: 838px;
	top: -17.5px;
	z-index: -1;
}
.pbmit-slider-three .swiper-horizontal>.swiper-pagination-bullets{
	left: 0;
	right: auto;
}

/*----------------------------------------*/
/*  15 - Client
/*----------------------------------------*/
/** Style 1 **/
.pbmit-client-style-1 .pbmit-border-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0px;
}
.pbmit-client-style-1 .pbmit-client-wrapper {
	overflow: hidden;
	z-index: 1;
	height: -webkit-max-content;
	display: inline-block;
	position: relative;
}
.pbmit-client-style-1 .pbmit-border-wrapper{
	transition: all .4s ease-in;
}
.pbmit-client-style-1 .pbmit-client-with-hover-img .pbmit-featured-wrapper,
.pbmit-client-style-1 .pbmit-client-with-hover-img .pbmit-client-hover-img {
	transition: transform .4s ease, -webkit-transform .4s ease;
}
.pbmit-client-style-1 .pbmit-client-hover-img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	transform: translateY(-100%);
}
.pbmit-client-style-1:hover .pbmit-client-with-hover-img .pbmit-client-hover-img {
	visibility: visible;
	transform: translateY(0%);
}
.pbmit-client-style-1:hover .pbmit-client-with-hover-img .pbmit-featured-wrapper {
	transform: translateY(100%);
}
.pbmit-client-style-1 .pbmit-hide {
    display: none;
}

/* --------------------------------------
* 16 - Sortable
* ---------------------------------------*/
.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-blackish-color);
	color: var(--pbmit-white-color);
}

/* --------------------------------------
* 17 - Img Animation
* ---------------------------------------*/
.pbmit-animation-style1,
.pbmit-animation-style2{
	display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style1 img,
.pbmit-animation-style2 img{
	transform-origin: 50% 50%;
	transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

/* --------------------------------------
* 18 - Marquee
* ---------------------------------------*/
/** Style 1 **/
.pbmit-marquee-effect-style-1 .pbmit-element-title{
	font-size:100px;
	line-height: 100px!important;
	position: relative!important;
	overflow: visible!important;
	display: flex;
	text-shadow:1px 1px 0 rgba(var(--pbmit-blackish-color-rgb) ,1), -1px -1px 0 rgba(var(--pbmit-blackish-color-rgb) ,1), 1px -1px 0 rgba(var(--pbmit-blackish-color-rgb) ,1), -1px 1px 0 rgba(var(--pbmit-blackish-color-rgb) ,1), 1px 1px 0 rgba(var(--pbmit-blackish-color-rgb) ,1);
	-webkit-text-fill-color: var(--pbmit-white-color);
	-webkit-text-stroke-width: 0;
	color: transparent;
	text-transform: uppercase;
	font-weight: 700;
	width: auto;
	transition: transform 1s cubic-bezier(.22,.61,.36,1);
    margin: 0;
    padding: 0;
}
.pbmit-marquee-effect-style-1:nth-child(even) .pbmit-element-title{
	-webkit-text-fill-color: var(--pbmit-blackish-color);
	max-width: 100%;	
}
.pbmit-marquee-effect-style-1 .pbmit-element-title::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	content: attr(data-text);
	transition: max-width .8s cubic-bezier(.22, .61, .36, 1);
	-webkit-text-fill-color: var(--pbmit-blackish-color);
	-webkit-text-stroke: transparent;
	max-width: 0;
}
.pbmit-marquee-effect-style-1 .pbmit-element-title:hover::before{
	max-width: 100%;
}
.pbmit-marquee-effect-style-1 .pbmit-tag-wrapper{
	padding-left: 100px;
	margin-left: 50px;
	position: relative;
}
.pbmit-marquee-effect-style-1 .pbmit-tag-wrapper::before{
	content: "*";
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 130px;
	line-height: 130px;
	transform: translate(-20%, -25%);
	color: var(--pbmit-global-color);
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 700;
    font-style: normal;
}
.pbmit-marquee-effect-style-1:nth-child(even) .pbmit-element-title {
    -webkit-text-fill-color: var(--pbmit-blackish-color);
    max-width: 100%;
}

/* --------------------------------------
* 19 - Pricing
* ---------------------------------------*/
/** Style 1 **/
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box,
.pbminfotech-ele-ptable-style-1 .pbmit-head-wrap::before{
	transition: all 0.6s ease-in-out;
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-pattern{
	position: absolute;
	top: 0;
	left: 0;
}
.pbminfotech-ele-ptable-style-1 .pbmit-head-wrap{
	position: relative;
	text-align: center;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}
.pbminfotech-ele-ptable-style-1 .pbmit-head-wrap::before{
	content: "";
	position: absolute;
	background-color: var(--pbmit-global-color);
	width: 0%;
	height: 1px;
	bottom:-1px;
	left: 0;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-col:hover .pbmit-head-wrap::before{
	width: 100%;
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-heading{
	font-size: 24px;
	line-height: 30px;
	text-transform: capitalize;
	color: var(--pbmit-blackish-color);
	font-weight: 600;
	margin-bottom: 20px;
}
.pbminfotech-ele-ptable-style-1 .pbmit-price-wrapper{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box{
	background-color: var(--pbmit-white-color);
	position: relative;
	overflow: hidden;
	padding: 35px 50px;
	border-radius: 30px;
	border:1px solid rgba(var(--pbmit-blackish-color-rgb),.1);
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-symbol{
	font-size: 35px;
	line-height: 35px;
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-price{
	font-size: 65px;
	line-height: 65px;
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-price-w{
	display: flex;
	align-items: flex-start;
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-frequency{
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 10px;
	margin-left: 2px;
	color: #666;
	position: relative;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-inner{
	padding: 45px 0px 0px 50px;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-line{
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-line:last-child{
	margin-bottom: 0;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-line svg,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-line i{
	font-size: 15px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-line svg{
	font-size: 15px;
	fill: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-btn .pbmit-btn{
	width: 100%;
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbminfotech-ptable-btn .pbmit-btn:hover{
	color: var(--pbmit-blackish-color);
	background-color: black;
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbminfotech-ptable-btn .pbmit-btn:hover svg line{
	stroke: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-1 .pbminfotech-ptable-btn{
	text-align: center;
	margin-top: 40px;
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-box:hover{
	transform: translateY(-5px);
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-svg-wrapper,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-wrapper{
	height: 85px;
	width: 85px;
	margin: 0 auto 20px;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-svg-wrapper,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-type-text,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-type-icon{
	background: var(--pbmit-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-svg-wrapper,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-type-text,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-type-icon{
	font-size: 40px;
	line-height: 40px;
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-icon-wrapper svg,
.pbminfotech-ele-ptable-style-1 .pbmit-ptable-svg-wrapper svg{
	fill: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-feature-wrap{
	position: absolute;
	top: 30px;
	right: 0;
	text-transform: uppercase;
}
.pbminfotech-ele-ptable-style-1 .pbmit-ptablebox-featured-w{
	padding: 0 13px;
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0;
	color: var(--pbmit-white-color);
	background:var(--pbmit-blackish-color);
	position: relative;
	border-radius: 30px 0 0 30px;
}
/* Featured Column */
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-pricing-table-box{
	background-color: var(--pbmit-secondary-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-head-wrap::before{
	background-color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-line,
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbminfotech-ptable-frequency{
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-icon-type-text,
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-icon-type-icon,
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-ptable-svg-wrapper{
	background: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-1 .pbmit-pricing-table-featured-col .pbmit-btn a:hover{
	background-color: var(--pbmit-white-color);
	color: var(--pbmit-blackish-color);
}
/** Style 2 **/
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col .pbmit-pricing-table-box,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:hover .pbmit-head-wrap::before{
	transition: all 0.6s ease-in-out;
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-pattern{
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col {
    width: 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col{
	width: 100%;
	-webkit-box-flex: 0;
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px 0;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-lines-w{
	display: flex;
	flex-wrap: wrap;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-lines-w .pbmit-ptable-line{
	width: 50%;
	font-size: 15px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-heading-wrap{
	position: relative;
	margin-left: 45px;
	padding-left: 45px;
	border-left: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.1);
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-heading{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 30px;
	text-transform: capitalize;
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbminfotech-ptable-heading,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbminfotech-ptable-heading{
	color: var(--pbmit-blackish-color);
	border-color: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbmit-ptable-line,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbmit-ptable-line,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbminfotech-ptable-frequency,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbminfotech-ptable-frequency{
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-box{
	position: relative;
	overflow: hidden;
	padding: 35px 50px;
	border-radius: 30px;
	border:2px solid rgba(var(--pbmit-blackish-color-rgb),.1);
	border-color: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbmit-pricing-table-box,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbmit-pricing-table-box{
	background-color: var(--pbmit-white-color);
}
.pbmit-bg-color-white .pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-symbol,
.pbmit-bg-color-white .pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-price,
.pbmit-bg-color-white .pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-heading,
.pbmit-bg-color-white .pbminfotech-ele-ptable-style-2 .pbmit-ptable-lines-w .pbmit-ptable-line,
.pbmit-bg-color-white .pbmit-heading-subheading .pbmit-title{
	color: var(--pbmit-white-color);
}
.pbmit-bg-color-white .pbminfotech-ele-ptable-style-2 .pbmit-heading-wrap{
	border-color: rgba(var(--pbmit-white-color-rgb), 0.3);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-heading-wrap{
	border-color: rgba(var(--pbmit-blackish-color-rgb),.1);
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-symbol,
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-price{
	font-size: 60px;
	line-height: 60px;
	color: var(--pbmit-global-color);
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-price-w{
	display: flex;
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-frequency{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 0;
	color: var(--pbmit-blackish-color);
	text-align: right;
	font-family: var(--pbmit-heading-typography-font-family);
    font-weight: 600;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line{
	margin-bottom: 2px;
	position: relative;
	padding-left: 20px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line:last-child{
	margin-bottom: 0;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line svg,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line .pbmit-ptable-line-svg,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line i{
	font-size: 40px;
	line-height: 1;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate(0px, -50%);
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbmit-ptable-line i,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbmit-ptable-line i,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbmit-ptable-line .pbmit-ptable-line-svg,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbmit-ptable-line .pbmit-ptable-line-svg,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(4) .pbmit-ptable-line svg,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col:nth-child(2) .pbmit-ptable-line svg{
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-btn .pbmit-btn a{
	padding: 17px 30px;
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-blackish-color);
	border: none;
	width: 100%;
	border-radius: 30px;
	display: inline-block;
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-btn .pbmit-btn a:hover{
	background-color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-btn a{
	color: var(--pbmit-white-color);
	background-color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-btn a:hover{
	background-color: var(--pbmit-blackish-color);
	color: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line .pbmit-ptable-line-svg{
	display: inline-block;
	margin-right: 5px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-line svg{
	width: 15px;
	height: 15px;
	margin: 0 15px 0 0;
	fill: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-btn a{
	text-align: center;
	margin-top: 20px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-col .pbmit-pricing-table-box:hover{
	transform: translateY(-5px);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon-type-text,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon-type-image,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-svg .pbmit-ptable-svg-wrapper,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon .pbmit-icon-wrapper{
	height: 50px;
	width: 50px;
	background: var(--pbmit-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-ptable-icon .pbmit-icon-wrapper{
	background: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-icon-type-icon i
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon-type-text,
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon i{
	font-size: 20px;
	line-height: 20px;
	color: var(--pbmit-blackish-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-svg-wrapper svg{
	width: 50px;
	height: 50px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon-type-image{
	align-items: unset;
	justify-content: unset;
}
.pbminfotech-ele-ptable-style-2 .pbmit-ptable-icon-type-image img{
	border-radius: 50%;
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-feature-wrap{
	position: absolute;
	top: 30px;
	right: 0;
	text-transform: uppercase;
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-feature-wrap .pbmit-ptablebox-featured-w{
	padding: 0 13px;
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0;
	color: var(--pbmit-white-color);
	background:var(--pbmit-blackish-color);
	position: relative;
	border-radius: 30px 0px 0px 30px;
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-pricing-table-box{
	background-color: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbminfotech-ptable-heading,
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-ptable-lines-w .pbmit-ptable-line,
.pbmit-heading-subheading .pbmit-title{
   color: var(--pbmit-blackish-color);
}
.pbmit-bg-color-global .pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-symbol,
.pbmit-bg-color-global .pbminfotech-ele-ptable-style-2 .pbminfotech-ptable-price,
.pbminfotech-ele-ptable-style-2 .pbmit-text-color-white .pbmit-ptable-line,
.pbminfotech-ele-ptable-style-2 .pbmit-text-color-white .pbminfotech-ptable-heading{
	color: var(--pbmit-white-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-text-color-white .pbmit-heading-wrap {
    border-color: rgba(var(--pbmit-white-color-rgb), .3);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbminfotech-ptable-symbol,
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbminfotech-ptable-price{
	color: var(--pbmit-global-color);
}
.pbminfotech-ele-ptable-style-2 .pbmit-pricing-table-featured-col .pbmit-ptable-line i{
	color: var(--pbmit-global-color);
}

/* --------------------------------------
* 20 - Portfolio
* ---------------------------------------*/
/** Style 1 **/
.pbmit-portfolio-style-1{
	overflow: hidden;
}
.pbmit-portfolio-style-1 .pbminfotech-box-content{
	position: absolute;
	top: inherit;
	bottom: 40px;
	left: 40px;
	right: 40px;
	padding: 25px 30px;
	opacity: 0;
	border-radius: 20px;
	word-break: break-word;
	transform: translateY(100%) scale(0.7);
	background: var(--pbmit-white-color);
	transition: all .5s;
}
.pbmit-portfolio-style-1:hover .pbminfotech-box-content{
	transition: all .5s;
	opacity: 1;
	transform: translateY(0);
}
.pbmit-portfolio-style-1 .pbmit-port-cat a{
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--pbmit-global-color);
}
.pbmit-portfolio-style-1 .pbmit-port-cat a:hover{
	color: var(--pbmit-blackish-color);
}
.pbmit-portfolio-style-1 .pbmit-portfolio-title{
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 0;
}
.pbmit-portfolio-style-1 .pbmit-portfolio-title{
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 0;
}
.pbmit-portfolio-style-1 .pbmit-featured-wrapper{
	position: relative;
	overflow: hidden;
}
.pbmit-portfolio-style-1 .pbmit-featured-wrapper img{
	width: 100%;
	transform: scale(1.05) rotate(.5deg);
	transform-origin: 90% 50%;
	border-radius: 30px;
	transition: transform 1.2s cubic-bezier(.4, .01, .14, .99);
}
.pbmit-portfolio-style-1:hover .pbmit-featured-wrapper img{
	transform: scale(1.001) rotate(0);
}
.pbmit-element-portfolio-style-1 .pbmit-element-inner .swiper-wrapper{
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.pbmit-portfolio-style-1 .pbminfotech-post-content{
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}
.pbmit-element-posts-wrapper .pbmit-portfolio-style-1{
	margin-bottom: 30px;
}

/* --------------------------------------
* 21 - Static Box
* ---------------------------------------*/
.pbmit-static-box-style-1 .pbmit-bg-imgbox {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	border-radius: 30px;
	transform: scale(1.05) rotate(.5deg);
	transform-origin: 90% 50%;
	border-radius: 30px;
	transition: transform 1.2s cubic-bezier(.4, .01, .14, .99);
}
.pbmit-static-box-style-1:hover .pbmit-bg-imgbox {
	transform: scale(1.001) rotate(0);
}
.pbmit-static-box-style-1 .pbmit-title-img-wrapper{
	background-color: #A67B5B;
	border-radius: 30px;
	position: relative;
	overflow: hidden
}
.pbmit-static-box-style-1 .pbmit-contentbox-inner{
	padding: 50px 40px;
}
.pbmit-static-box-style-1 .pbmit-staticbox-title h4{
	font-size: 24px;
	line-height: 30px;
	border-bottom: 1px solid rgba(var(--pbmit-blackish-color-rgb),.1);
	padding: 20px 0 20px;
	margin: 0 0 20px;
	color:white;
}
.pbmit-static-box-desc{
	color:white;
}
.pbmit-static-box-style-1 .pbmit-icon-wrapper{
	height: 80px;
	width: 80px;
	line-height:0px;
	background-color: var(--pbmit-global-color);
	color: var(--pbmit-white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
}
.pbmit-static-box-style-1 .pbmit-title-img-wrapper:after,
.pbmit-testimonial-style-1 .pbminfotech-post-item::after,
.pbmit-service-style-2 .pbminfotech-post-item::after{
	position: absolute;
    content: '';
    left: 0;
    z-index: 0;
    top: 0;
    height: 100%;
    background-image: url(../images/bg/team-pattern.png);
    width: 100%;
    background-position: center;
}
.pbmit-ele{
    margin-bottom:30px;
	padding-left:20px !important;
}
.emoji-icon {
    width: 52px;
    height: 52px;
    background-color: #A67B5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 16px;
    color: #ffffff;
    flex-shrink: 0;
}
.hf-faq-section {
  padding: 30px 0;
  background: #f9f7f5;
  font-family: Arial, sans-serif;
}

.hf-faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.hf-faq-heading h4 {
  color: #A67B5B;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hf-faq-heading h2 {
  font-size: 36px;
  font-weight: 700;
}

.hf-faq-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT ACCORDION */
.hf-accordion {
  flex: 1;
}

.hf-accordion-item {
  border: 1px solid #e0d6cc;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.hf-accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.hf-accordion-header .icon {
  font-size: 22px;
  color: #A67B5B;
}

.hf-accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #555;
  line-height: 1.7;
}

.hf-accordion-item.active .hf-accordion-body {
  padding: 20px;
  max-height: 300px;
}

/* RIGHT SIDE */
.hf-faq-highlight {
  flex: 1;
}

.hf-faq-highlight img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
}

.highlight-box {
  background: #A67B5B;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.highlight-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.highlight-box p {
  font-size: 16px;
  line-height: 1.7;
}
.hf-accordion .active .hf-accordion-header{
background-color: #A67B5B;
color:white;
}
.hf-accordion .active .hf-accordion-header .icon{
background-color: #A67B5B;
color:white;
}
.pbmit-icon-wrapper i {
    font-size: 48px;
    color: #A67B5B; /* change to match your theme */
	margin-bottom:20px;
}
.pbmit-ihbox-style-7:hover .pbmit-icon-wrapper i {
	color:white !important;
}
.minimal-services {
  padding: 30px 0;
  /* font-family: "Poppins", sans-serif; */
}

.minimal-services-header {
  text-align: center;
  margin-bottom: 70px;
}
.static-box-section-one{
	padding-top:30px;
	padding-bottom:30px;
}
.minimal-services-header h4 {
  color: #A67B5B;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.minimal-services-header h2 {
  font-size: 40px;
  font-weight: 600;
}

/* GRID */
.minimal-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.minimal-service-card {
  text-align: center;
  padding: 0px 0px 40px;
  border: 1px solid rgba(166, 123, 91, 0.35);
  border-radius: 22px;
  transition: all 0.45s ease;
  position: relative;
}

/* IMAGE */
.service-img {
  width: 100%;
  height: auto;
  margin: 0 auto 25px;
  /* border-radius: 50%; */
  overflow: hidden;
  /* border: 2px solid rgba(166, 123, 91, 0.5); */
  /* transition: all 0.45s ease; */
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}

/* TEXT */
.minimal-service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.minimal-service-card p {
  font-size: 16px;
  /* color: #666; */
  line-height: 1.7;
  margin-bottom:0px !important;
}

/* HOVER EFFECT */
.minimal-service-card:hover {
  transform: translateY(-12px);
  border-color: #A67B5B;
}

.minimal-service-card:hover .service-img {
  /* transform: scale(1.05);
  border-color: #A67B5B; */
}
.care-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 19px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	height: 100%;
}

.care-card-number {
	font-size: 28px;
	font-weight: 700;
	color: #c89b63;
	margin-right: 15px;
	min-width: 40px;
}

.care-card-content h4 {
	font-size: 18px;
	margin-bottom: 6px;
}

.care-card-content p {
	font-size: 16px;
	/* color: #666; */
	margin: 0;
}
.service-three-left-col{
	padding-right:30px !important;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .minimal-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .minimal-services-grid {
    grid-template-columns: 1fr;
  }

  .minimal-services-header h2 {
    font-size: 30px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hf-faq-wrapper {
    flex-direction: column;
  }
}
.hand-foot-care-section{
	padding-top:50px;
	padding-bottom:40px;
}
.about-section-three{
	padding:30px 0px;
}
.hand-foot-care-section img{
	border-radius: 20px;
}
.col-xl-6 img {
  width: 100%;               /* Full width of the column */
  height: auto;              /* Maintain aspect ratio */
  border-radius: 20px;       /* Rounded corners for elegance */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth hover effect */
  display: block;            /* Removes inline spacing */
  object-fit: cover;         /* Ensures image covers container nicely */
}

/* Hover effect */
.col-xl-6 img:hover {
  transform: scale(1.05);              /* Slight zoom on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Enhance depth on hover */
}
.about-section-three .container, .ihbox-style-area .container{
	background-color: #A67B5B;
	padding:40px 20px !important;
	border-radius: 20px;
}
.about-section-three .pbmit-heading-desc,.about-section-three  .pbmit-title, .ihbox-style-area .pbmit-title{
	color:white;
}
.contact-form-leftbox{
min-height:488px;
background: url('../images/contact/1.jpg') center/cover no-repeat; 
padding: 20px 20px !important; 
border-radius: 20px;
 overflow: hidden;
}
.contact-link{
	color:#666666;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-box{
	min-height: 253px !important;
}
.iti{
	width:100%;
}
.iti__flag-container{
	padding:0px !important;

}
.iti__selected-flag{
	border-radius:14px 0px 0px 14px !important;
}
.pbmit-btn-hover-white{
	background-color: white !important;
	color:#A67B5B;
}
.loc-icon1{
	padding-left:15px;
}
.who-we-are-leftbox img{
	width:50%;
}
input::placeholder{
color:#666666;
font-size: 16px !important;
}
input, select, textarea{
color:#666666 !important;
font-size: 16px !important;
}
/* Who We Are – Image Alignment Fix */
.who-we-are-leftbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.who-we-are-leftbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Prevent image overlap */
.who-we-are-section {
    position: relative;
    overflow: hidden;
}
.bookin-form{
	min-height:808px !important;
}
.who-we-are-wrap i{
	color:#A67B5B;
	font-size: 30px;
}
.who-we-are-wrap h5{
	font-size:18px;
}
.service-section-three .container{
	background-color: #A67B5B;
	padding:40px 30px 20px !important;
	border-radius: 20px;;
}
.service-section-three .pbmit-ele{
	padding-left:0px !important;
}
/* Mobile Responsive */
@media (max-width: 991px) {
    .who-we-are-leftbox {
        grid-template-columns: 1fr;
    }
}
.service-three-right-col{
	/* background-color: var(--pbmit-secondary-color); */
    padding: 0px 0px 0px !important;
    position: relative;
    overflow: hidden;
}
.service-three-right-col img{
	box-shadow: none !important;
	border-radius: 20px !important;
}
.commit{
	display: flex;
  flex-direction: column;
  gap: 20px;
}
.swiper-buttons{
	display:none;
}
.container-fluid{
	max-width:1200px !important;
}
.pbmit-element-timeline-style-1{
	padding:40px 0px;
}
.hero-image-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.hero-image {
    height: 160px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Effect (Optional but Premium) */
.hero-image:hover img {
    transform: scale(1.08);
}

/* Tablet */
@media (max-width: 991px) {
    .hero-image-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .hero-image-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}
.transform-right{
	color:white;
}
.steps-media {
    height: 148px;
    overflow: hidden;
}

.steps-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.features-section .container, .our-process-section .container{
	background-color: #A67B5B;
	padding:40px 30px 20px;
	border-radius: 20px;
}
.features-section .pbmit-title,.features-section .pbmit-element-title, .features-section .pbmit-heading-desc{
	color: white;

}
.our-process-section .pbmit-heading-subheading{
    margin-bottom:20px !important;
}
.our-process-section .row{
	padding-left:15px !important;
	padding-right:15px !important;
}
.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #555;
}

.process-timeline {
    padding-left: 40px;
    position: relative;
}
.our-process-section .pbmit-title{
	color:white;
}
.process-item {
    position: relative;
    margin-bottom: 30px;
}

.process-number {
    position: absolute;
    left: -45px;
    top: 0;
    background: white;
    color: #A67B5B;
    font-weight: bold;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
}

.process-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
	color:white;
}

.process-content p {
    color: white;
    margin-bottom: 0;
}

.process-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.process-images img {
    width: 100%;
    /* height: 148px; */
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.process-images img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .process-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .process-images {
        grid-template-columns: repeat(2, 1fr);
    }
}
.how-we-do-it-section .process-content p{
	color:#666666;
}
.ihbox-section-two .container{
	background-color: #A67B5B;
	padding:40px 30px 20px !important;
	border-radius: 20px;
}
.ihbox-section-two{
	padding-bottom:30px !important;
}
.ihbox-section-two .pbmit-title{
	color:white;
}
.pbmit-progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: white; /* Button color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0; /* Initially hidden */
    visibility: hidden;
}

.pbmit-progress-wrap i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.pbmit-progress-wrap:hover {
    background-color: white; /* hover color */
    transform: translateY(-3px);
}

.pbmit-progress-wrap:hover i {
    transform: translateY(-2px);
}

/* Show button when scrolled */
.pbmit-progress-wrap.show {
    opacity: 1;
    visibility: visible;
}
.contact-us-bg{
padding-top:40px !important;
padding-bottom:40px !important;
}

.pbmit-title-bar-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* ensures the overlay stays within */
}

/* Overlay using ::before */
.pbmit-title-bar-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* black overlay with 50% opacity */
    z-index: 1; /* below content */
}

/* Make sure inner content appears above overlay */
.pbmit-title-bar-wrapper .pbmit-title-bar-content {
    position: relative;
    z-index: 2;
}

.pbmit-readmore {
    margin-top: 15px;
}

.pbmit-readmore .pbmit-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: white !important;
    color: black !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pbmit-readmore .pbmit-btn:hover {
    background-color: #222;
    color: #fff;
}
.features-section{
	padding-bottom:40px;
}
@media(max-width:479.98px){
	.pbmit-heading-subheading{
		margin-bottom:15px !important;
	}
	.hand-foot-care-section{
		padding-bottom:20px;
	}
	.about-section-three .container, .ihbox-style-area .container, .ihbox-section-two .container{
		border-radius: 0px;
	}
	.pbmit-heading-subheading .pbmit-title{
		line-height:1.6 !important;
	}
	.section-md .swiper-wrapper{
		flex-direction: column;
	}
	.pbmit-service-style-2{
		margin-bottom:20px;
	}
	.pbmit-service-style-2 .pbminfotech-post-item{
		padding:15px;
	}
	.pbmit-service-style-2 .pbmit-content-box{
		padding:40px 0px 0px !important;
	}
	.about-section-three{
		padding:0px 0px !important;
	}
	.hf-accordion-header{
		text-align: left;
		padding-left:10px !important;
	}
	.hf-faq-wrapper{
		gap:20px;
	}
	.section-lgb{
		padding-bottom:0px !important;
	}
	.ihbox-section-two{
		padding-left:0px !important;
		padding-right:0px !important;
	}
	.service-section-three .container{
		border-radius: 0px;
		padding:40px 15px !important;
	}
.pbmit-ele{
	padding-left:0px !important;
}
.service-three-left-col{
	padding-right:10px !important;
}
.pbmit-service-style-3 .pbmit-content-box{
	padding-left:15px !important;
	padding-right:15px !important;
}
.pbmit-service-style-3 .pbmit-service-image-wrapper{
	margin-right:0px !important;
	margin-bottom:20px;
}
.service-three-right-col{
	margin-top:0px !important;
}
.service-three-right-col img{
	padding-left:8px !important;
	padding-right:8px !important;
}
.pbmit-element-posts-wrapper{
	flex-direction: column;
}
.post.blog-classic{
	margin-bottom:0px !important;
	padding-bottom:0px !important;
	padding-left:8px !important;
	padding-right:8px !important;
}
.blog-classic .pbmit-post-title{
	margin-bottom:15px !important;
}
.site-content{
	padding:30px 0px 0px !important;
}
.process-item{
	flex-direction: column;
	margin-bottom:30px !important;
}
.process-icon{
	margin-bottom:10px !important;
}
.process-list{
	padding-top:20px;
}
.pbmit-progress-wrap{
	bottom:70px;
}
.pbmit-slider-one .pbmit-slider-content{
	/* padding-top:450px; */
	position:absolute;
	top:2px;
}
.about-us-one-bg {
	padding-top:420px !important;
	padding-bottom:10px !important;
}
.about-us-one-bg .pbmit-ihbox-content,.pbmit-ihbox-style-4 .pbmit-heading-desc{
	padding:0px !important;
}
.about-us-one-leftbox{
	padding-left:0px !important;
}
.minimal-services-header{
	margin-bottom:20px !important;
}
.our-process-section {
	padding-top:10px !important;
	padding-bottom:10px !important;
}.our-process-section .container{
	border-radius: 0px;;
}
.our-values-section, .features-section {
	padding-top:0px !important;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-type-image img{
	max-width:300px !important;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-wrapper{
	margin-right:0px !important;
}
.pbmit-ihbox-contents{
	padding-left:8px;
	padding-right:8px;
}
.features-section .container {
	border-radius: 0px;
}
.features-section{
	padding-bottom:0px !important;
}
.pbmit-ele{
	margin-bottom:20px;
}
.pbmit-ihbox-headingicon{
	flex-direction: column;
}
.our-process-section .row{
	padding-left:8px !important;
	padding-right:8px !important;
}
.static-box-section-one .swiper-wrapper{
	/* flex-direction: column; */
}

}
/* Mobile view: disable swiper layout */
@media (max-width: 768px) {

    /* Stop swiper behavior visually */
    .static-box-section-one .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        transform: none !important;
    }

    .static-box-section-one .swiper-slide {
        width: 100% !important; /* full width cards */
        margin-bottom: 30px;
    }

    /* Hide swiper styles side effects */
    .static-box-section-one .swiper-slider {
        overflow: visible;
    }
	.static-box-section-one .swiper-slide-duplicate{
		display:none !important;
	}
	.pbmit-static-box-style-1 .pbmit-contentbox-inner{
		padding-top:20px !important;
	}
	.contact-form-rightbox{
		margin-left:0px !important;
		margin-right:0px !important;
		padding-left:15px !important;
		padding-right:15px !important;
	}
	.contact-us-bg .container{
		padding-left:0px !important;
		padding-right:0px !important;
	}
	.iti{
		margin-bottom:20px;
	}
	.ihbox-section-two{
		padding-top:0px !important;
	}
	.pbmit-ihbox-style-7 .pbmit-ihbox-box{
		min-height:200px !important;
	}
	.pbmit-header-content{
		justify-content: space-between !important;
	}
	.site-header.header-style-1 .container-fluid{
		padding:0px 10px !important;
	}
	.contact-form-rightbox{
		padding-top:20px !important;
	}
	.bookin-form{
		min-height:400px !important;
	}
	.about-us-one-leftbox .pbmit-title{
		color:#0a132e;
	}
}

.email-link1{
	color:#666666;
}
@media(min-width:1400px){
	.pbmit-title-bar-wrapper{
		min-height:500px;
	}
	.about-us-one-leftbox{
		padding-right:10px !important;
	}
	.about-us-one-bg .pbmit-ihbox-content{
		padding-top:0px !important;
	}
	.features-section {
padding-bottom:40px !important;
	}
}
@media(max-width:399px){
	.about-us-one-bg {
	padding-top:480px !important;
	padding-bottom:10px !important;
}
}