/******************************
INDEX:
    00 - General
    01 - Typography
    02 - Text Color & Background Color
    03 - Background Position & Size
    04 - Helper class
    05 - Social icons
    06 - Header
    07 - Bootstrap Overwrite 
    08 - Swiper 
    09 - Scroll To Top 
    10 - Search Box
******************************/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
	--pbmit-global-color: #fba311;
	--pbmit-global-color-rgb: 251, 163, 17;
	--pbmit-secondary-color: #09042d;
	--pbmit-secondary-color-rgb: 9, 4, 45;
	--pbmit-light-color: #f0f2f4;
	--pbmit-light-color-rgb: 240, 242, 244;
	--pbmit-white-color: #ffffff;
    --pbmit-white-color-rgb: 255, 255, 255;
	--pbmit-blackish-color: #001837;
	--pbmit-blackish-color-rgb: 0, 24, 55;
	--pbmit-link-color-normal: #001837;
	--pbmit-link-color-hover: #fba311;
	--pbmit-responsive-breakpoint: 1200px;

	--pbmit-body-typography-font-family: "Open Sans", sans-serif;
	--pbmit-body-typography-variant: regular;
	--pbmit-body-typography-font-size: 15px;
	--pbmit-body-typography-line-height: 1.6;
	--pbmit-body-typography-color: #565656;
	
	--pbmit-heading-typography-font-family:"Quicksand", sans-serif;
	--pbmit-heading-color: #001837;
	--pbmit-heading-font-variant: 700;
	
	--pbmit-btn-typography-font-family:"Quicksand", sans-serif;
	--pbmit-btn-typography-variant: 600;
	--pbmit-btn-typography-font-size: 15px;
	--pbmit-btn-typography-line-height: 24px;
}

/*----------------------------------------*/
/* 00 - General 
/*----------------------------------------*/
 html {
     font-family: sans-serif;
     -webkit-text-size-adjust: 100%;
     -ms-text-size-adjust: 100%;
}
 *{
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
 body {
     margin: 0;
     overflow-x: hidden;
}
p {
    margin: 0 0 18px;
}
 article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
     display: block;
}
 audio, canvas, progress, video {
     display: inline-block;
     vertical-align: baseline;
}
 audio:not([controls]) {
     display: none;
     height: 0;
}
 [hidden], template {
     display: none;
}
 a {
     background-color: transparent;
}
 abbr[title] {
     border-bottom: 1px dotted;
}
 small {
     font-size: 80%;
}
 sub, sup {
     font-size: 75%;
     line-height: 0;
     position: relative;
     vertical-align: baseline;
}
 sup {
     top: -0.5em;
}
 sub {
     bottom: -0.25em;
}
 img {
     border: 0;
}
 svg:not(:root) {
     overflow: hidden;
}
 figure {
     margin: 0;
}
 hr {
     -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
     box-sizing: content-box;
}
 code, kbd, pre, samp {
     font-size: 1em;
}
 button, input, optgroup, select, textarea {
     color: inherit;
     font: inherit;
     margin: 0;
}
 select {
     text-transform: none;
}
 button {
     overflow: visible;
}
 button, input, select, textarea {
     max-width: 100%;
}
 button, html input[type="button"], input[type="reset"], input[type="submit"] {
     -webkit-appearance: button;
     cursor: pointer;
}
 button[disabled], html input[disabled] {
     cursor: default;
     opacity: .5;
}
 button::-moz-focus-inner, input::-moz-focus-inner {
     border: 0;
     padding: 0;
}
 input[type="checkbox"], input[type="radio"] {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     margin-right: 0.4375em;
     padding: 0;
}
 input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
     height: auto;
}
 input[type="search"] {
     -webkit-appearance: textfield;
}
 input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
     -webkit-appearance: none;
}
 fieldset {
     border: 1px solid #d1d1d1;
     margin: 0 0 1.75em;
     padding: 0.875em;
}
 fieldset > :last-child {
     margin-bottom: 0;
}
 legend {
     border: 0;
     padding: 0;
}
 textarea {
     overflow: auto;
     vertical-align: top;
}
 optgroup {
     font-weight: bold;
}input.form-control:hover {
    border: 1px solid #0e65a3 !important;
    box-shadow: none;
}.form-select {
    font-size: 14px;
    font-weight: 400;
    padding: 0px 0 0 29px;
    height: 50px;
    cursor: pointer;
}
 .form-select:focus {
     outline: none;
     box-shadow: none;
}label {
    display: inline-block;
    padding-bottom: 10px;
    font-family: 'Quicksand';
    font-weight: 500;
    font-size: 15px;
}
/*----------------------------------------*/
/* 01 - Typography 
/*----------------------------------------*/
 body {
     font-family:var(--pbmit-body-typography-font-family);
     font-weight: var(--pbmit-body-typography-variant);
     color: var(--pbmit-body-typography-color);
     font-size: var(--pbmit-body-typography-font-size);
     line-height: var(--pbmit-body-typography-line-height);
     color: var(--pbmit-body-typography-color);
     text-transform: none;
     font-style: normal;
}
 h1, h2, h3, h4, h5, h6 {
     font-family:var(--pbmit-heading-typography-font-family);
     font-weight: var(--pbmit-heading-font-variant);
     color: var(--pbmit-heading-color);
}
 h1 {
     font-size: 46px;
     line-height: 56px;
     letter-spacing: 0px;
}
 h2 {
     font-size: 40px;
     line-height: 50px;
     letter-spacing: 0px;
}
 h3 {
     font-size: 36px;
     line-height: 46px;
     letter-spacing: 0px;
}
 h4 {
     font-size: 30px;
     line-height: 40px;
     letter-spacing: 0px;
}
 h5 {
     font-size: 24px;
     line-height: 34px;
     letter-spacing: 0px;
}
 h6 {
     font-size: 20px;
     line-height: 30px;
     letter-spacing: 0px;
}
 ul {
     margin: 0;
     padding: 0;
     list-style: none;
}
 a {
     -webkit-transition: all .25s ease-in-out;
     -moz-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;
     color: var(--pbmit-link-color-normal);
     text-decoration: none;
}
 a:focus {
     text-decoration: none !important;
}
 a:focus, a:hover {
     color: var(--pbmit-link-color-hover);
     text-decoration: none !important;
}
 a.link-btn, .link-btn a{
     font-family: "Montserrat", Arial, Helvetica, sans-serif;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
}
 a.link-btn i, .link-btn a i{
     padding-left: 10px;
}
 .pbmit-btn {
	 position: relative;
     display: inline-block;
     text-decoration: none;
	 box-shadow: none;
     font-family: var(--pbmit-btn-typography-font-family);
     font-size: var(--pbmit-btn-typography-font-size);
     font-weight: var(--pbmit-btn-typography-variant);
     line-height: var(--pbmit-btn-typography-line-height);
     letter-spacing: 0px;
	 text-transform: capitalize;
	 font-style: normal;
     padding: 10px 38px;
     border: none;
	 transition: all .3s;
	 z-index: 1;
	 color: var(--pbmit-white-color);
     background-color:#0e65a3;
     border-radius: 50px;
}
.pbmit-btn .pbmit-button-content-wrapper{
	display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
	flex-direction: row-reverse;
}
.pbmit-btn .pbmit-button-icon{
	position: relative;
    overflow: hidden;
    margin-left: 4px;
}
.pbmit-btn .pbmit-button-icon:before{
	content: "\e8dd";
    font-family: "pbminfotech-base-icons";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    font-weight: 400;
    width: 1em;
    height: auto;
    transform: scale(.26) translate(-45px, 50px);
    transition: transform 0.4s ease-in-out;
}
.pbmit-btn svg{
	width: .8em;
	transition: all 0.4s ease-in-out;
}
.pbmit-btn svg path{
	stroke: var(--pbmit-white-color);
}
.pbmit-btn .pbmit-button-text{
	display: inline-block;
}
.pbmit-btn:hover{
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}
.pbmit-btn:hover svg line{
    stroke-dashoffset: 0;
}
.pbmit-btn:hover .pbmit-button-icon:before{
	transform: scale(1) translate(0,0);
}
.pbmit-btn:hover .pbmit-button-content-wrapper .pbmit-button-icon svg {
    transform: scale(.26) translate(45px, -50px);
}
.pbmit-btn-global{
	background-color: var(--pbmit-global-color);
}
.pbmit-btn-global:hover{
	background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-hover-white{
	background-color: var(--pbmit-global-color);
}
.pbmit-btn-hover-white:hover{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn-white{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn-white svg path{
	stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-hover-blackish{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-white-color);
}
.pbmit-btn-hover-blackish svg path{
	stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-hover-blackish:hover{
	background-color: var(--pbmit-blackish-color);
}
.pbmit-btn-outline{
    background-color: transparent;
    color: var(--pbmit-blackish-color);
    border: 1px solid var(--pbmit-blackish-color);
}
.pbmit-btn-outline svg path{
	stroke: var(--pbmit-blackish-color);
}
.pbmit-btn-outline:hover{
	background-color: var(--pbmit-blackish-color);
}

/** Divider **/
 .sep-line{
     height: 1px;
     border-top: 1px solid #ebebeb;
     display: block;
     position: relative;
     top: 1px;
     width: 100%;
}

/*----------------------------------------*/
/* 02 - Background Color 
/*----------------------------------------*/
 body .pbmit-bg-color-global{
     background-color: var(--pbmit-global-color);
}
 body .pbmit-bg-color-secondary{
     background-color: var(--pbmit-secondary-color);
}
body .pbmit-bg-color-blackish {
    background-color: transparent;
    background-image: linear-gradient(180deg, #0d5589 60%, #0d5589 100%);
}
 body .pbmit-bg-color-white{
	background-color: var(--pbmit-white-color);
}
 body .pbmit-bg-color-light{
	background-color: var(--pbmit-light-color);
 }
 body .pbmit-global-color{
     color: var(--pbmit-global-color);
}

/*----------------------------------------*/
/* 03 - Background Position & Size 
/*----------------------------------------*/
 .bg-cover{
    background-size: cover;
}
 .bg-contain{
    background-size: contain;
}
 .bg-pos-l{
    background-position: left;
}
 .bg-pos-r{
    background-position: right;
}
 .bg-pos-rt{
    background-position: right top;
}
 .bg-pos-lt{
    background-position: left top;
}
 .bg-pos-rb{
    background-position: right bottom;
}
 .bg-pos-lb{
    background-position: left bottom;
}

/*----------------------------------------*/
/* 04 - Helper Class 
/*----------------------------------------*/
.section-lg{
	padding-top: 100px;
	padding-bottom: 100px;
}
.section-xl{
	padding-top: 100px;
	padding-bottom: 70px;
}
.section-lgt{
	padding-top: 100px;
}
.section-md{
	padding-top: 80px;
	padding-bottom: 80px;
}
.section-lgx{
	padding-top: 70px;
	padding-bottom: 100px;
}
.section-lgb{
    padding-bottom:100px;
}

/*----------------------------------------*/
/* 05 - Social icons 
/*----------------------------------------*/
ul.pbmit-social-links, 
ul.pbmit-contact-info{
	margin: 0;
    padding: 0;
    list-style: none;
}
.pbmit-social-links li, 
.pbmit-contact-info li {
    display: inline-block;
    vertical-align: top;
}

/*----------------------------------------*/
/* 06 - Header 
/*----------------------------------------*/
 .navbar-brand .navbar-brand-item {
     height: 60px;
     display: block;
     width: auto;
}
 .site-header{
     position: relative;
}
 .site-header .site-branding img {
     max-width: 100%;
     height: auto;
     max-height: 65px;
	 display: inline-block;
     -webkit-transition: all 300ms ease;
     transition: all 300ms ease;
}
 .site-navigation ul.navigation > li > a {
	 font-size: 14px;
	 font-weight: 700;
     position: relative;
     z-index: 1;
	 display: block;
	 text-transform: uppercase;
     letter-spacing: 0.5px;
     color: var(--pbmit-blackish-color);
}
.site-navigation ul.navigation > li > a:hover:after{
    color: rgba(255, 255, 255,.8);
}
.main-menu .navigation > li > ul a{
	position: relative;
    display: table-cell;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
	text-transform: capitalize;
    font-style: normal;
    color: var(--pbmit-blackish-color);
    font-family: var(--pbmit-body-typography-font-family);
}
.main-menu .navigation > li > ul a:after{
	display: none;
}
 .site-navigation ul.navigation a{
     font-family: var(--pbmit-heading-typography-font-family);
     font-weight: normal;
     font-size: 16px;
     font-style: normal;
}
 .main-menu .navigation > li {
     position: relative;
     float: left;
     margin: 0px;
	 padding: 0 27px;
     -webkit-transition: all 300ms ease;
     -moz-transition: all 300ms ease;
     -ms-transition: all 300ms ease;
     -o-transition: all 300ms ease;
     transition: all 300ms ease;
}
 .main-menu .navigation > li > ul > li > ul {
     left: 100%;
     top: 0;
}
 .main-menu .navigation > li.dropdown:hover > ul , .main-menu .navigation > li > ul > li.dropdown:hover > ul {
     visibility: visible;
     opacity: 1;
     transform: translate(0,-5px);
     z-index: 999;
}
 .header-button .pbmit-btn{
     padding: 15px 24px;
}
 .header-button .pbmit-btn i{
     font-size: 20px;
}
 .site-header .search-btn{
     margin-right: 15px;
     font-size: 17px;
}
 .site-header .social-icons li > a{
     height: 50px;
     line-height: 50px;
}
 .ipad-view-search{
     display: none;
}
 .pbmit-link li{
     margin: 0 10px;
}
.closepanel, .pbmit-mobile-menu-bg, .site-header .righticon {
    display: none;
}
/** sticky-header **/
 .sticky-header{
    position: fixed !important;
    top: 0px;
	left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    margin: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 8%);
    transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
}
 .site-header-menu.sticky-header .logo-img.stickylogo{
     display: inline-block;
}
.sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    -op-animation-duration: 300ms;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.fadeInDown{
	animation-name:fadeInDown
} 
@keyframes fadeInDown{
	from{
		opacity:0;
		transform:translate3d(0,-100%,0)
	}
	to{
		opacity:1;transform:none
	}
}
/* Pre Header */
 .pbmit-pre-header-wrapper{
    height: 50px;
    line-height: 50px;
    color: var(--pbmit-blackish-color);
}
 .list-unstyled i{
    font-size: 14px;
    color: #666;
}

/*----------------------------------------*/
/* 07 - Bootstrap Overwrite 
/*----------------------------------------*/
 .g-lg-4,.gy-lg-4, .g-4, .gy-4 {
     --bs-gutter-y: 2rem;
}
 .g-lg-4,.gx-lg-4, .g-4, .gx-4 {
     --bs-gutter-x: 2rem;
}
 .row>* {
     padding-right: calc(var(--bs-gutter-x) * .5);
     padding-left: calc(var(--bs-gutter-x) * .5);
}

/*----------------------------------------*/
/* 08 - Swiper 
/*----------------------------------------*/
 .swiper-slider{
     margin-left: auto;
     margin-right: auto;
     position: relative;
     overflow: hidden;
     z-index: 1;
}
 .swiper-pagination-bullet {
	position: relative;
    outline: none;
  height: 10px;
    width: 10px;
	top: 0px;
	left: 0px;
	opacity: 1;
    vertical-align: middle;
	border-radius: 50%;
	margin: 7px 0px !important;
	display: block;
	background: var(--pbmit-blackish-color);
}
.swiper-pagination-bullet-active{
	background-color: var(--pbmit-global-color);
}
 .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal,
 .swiper-pagination-custom, .swiper-pagination-fraction {
     bottom: 5px;
     left: 0px;
	 display: flex;
     align-items: center;
     justify-content: center;
}
 .swiper-slider[data-dots="true"] {
     padding-bottom: 50px;
}
 .swiper-button-next:after, .swiper-button-prev:after {
	content: "\e814";
    font-family: "pbminfotech-base-icons";
    font-size: 22px;
	line-height: normal;
}
 .swiper-button-prev, .swiper-rtl .swiper-button-next {
    transform: rotate(180deg);
	background-color: var(--pbmit-secondary-color);
}
 .swiper-button-next, .swiper-button-prev{
	position: static;
	display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 0 50% 50% 0;
    background-color: var(--pbmit-blackish-color);
    color: var(--pbmit-white-color);
    transition: all 500ms ease;
}
.pbmit-bg-color-blackish .swiper-button-prev,
.pbmit-bg-color-blackish .swiper-button-next{
	background-color: var(--pbmit-global-color);
}
.pbmit-bg-color-blackish .swiper-button-prev:hover,
.pbmit-bg-color-blackish .swiper-button-next:hover{
	color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-global-color);
}
 .swiper-button-next{
	background-color: var(--pbmit-blackish-color);
}
 .swiper-button-prev{
	left: auto;
 }
 .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
	cursor: pointer;
	pointer-events: auto;
 }
.swiper-button-next:hover, .swiper-button-prev:hover{
	 color: var(--pbmit-global-color);
     background-color: var(--pbmit-blackish-color);
}
.swiper-slider.marquee .swiper-slide {
    display: flex;
    width: auto!important;
}
.swiper-slider.marquee .swiper-wrapper{
    -webkit-transition-timing-function:linear !important; 
    -o-transition-timing-function:linear !important; 
    transition-timing-function:linear !important; 
}
/*----------------------------------------*/
/* 09 - Scroll To Top 
/*----------------------------------------*/
.pbmit-progress-wrap {
	position: fixed;
    right: 50px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.pbmit-progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pbmit-progress-wrap::after {
	position: absolute;
    content: '\e812';
    font-family: 'pbminfotech-base-icons';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--pbmit-global-color);
    left: 2px;
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.pbmit-progress-wrap::before {
	position: absolute;
	content: '\e812';
	font-family: 'pbminfotech-base-icons';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.pbmit-progress-wrap:hover::before {
	opacity: 1;
}
.pbmit-progress-wrap svg path {
	fill:rgba(var(--pbmit-global-color-rgb),.2);
}
.pbmit-progress-wrap svg.pbmit-progress-circle path {
	stroke: var(--pbmit-global-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/*----------------------------------------*/
/*  10 - Search Box
/*----------------------------------------*/
.pbmit-search-overlay {
    position: fixed;
    top: -500px;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    -ms-transition: .4s;
    transition: .4s;
}
.pbmit-search-overlay.st-show {
    opacity: 1;
    top: 0;
}
.pbmit-icon-close {
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0.8;
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    -ms-transition: .4s;
    transition: .4s;
    text-align: center;
    cursor: pointer;
    border-color: var(--pbmit-white-color);
    color: var(--pbmit-white-color);
}
.pbmit-icon-close:hover{
	opacity: 1;
}
@keyframes pbmit-closer-line-draw {
	0%,100% {
		clip-path:inset(-1px 0 -1px 0);
		-webkit-clip-path:inset(-1px 0 -1px 0);
	}
	55% {
		clip-path:inset(-1px 0 -1px 100%);
		-webkit-clip-path:inset(-1px 0 -1px 100%);
	}
	56% {
		clip-path:inset(-1px 100% -1px 0);
		-webkit-clip-path:inset(-1px 100% -1px 0);
	}
}
.pbmit-icon-close svg{
	fill: var(--pbmit-white-color);
}
.pbmit-icon-close svg rect{
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pbmit-icon-close:hover svg rect,
.closepanel:hover svg rect{
	animation: pbmit-closer-line-draw .6s;
    animation-duration: 0.6s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: pbmit-closer-line-draw;
}
.pbmit-icon-close:hover svg rect:nth-of-type(2),
.closepanel:hover svg rect:nth-of-type(2){
	animation-delay: .17s;
}
.pbmit-search-outer {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
	text-align: center;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pbmit-search-overlay .pbmit-site-searchform {
    position: relative;
}
.pbmit-search-overlay .pbmit-site-searchform:before{
	position: absolute;
    bottom: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.pbmit-search-overlay .pbmit-site-searchform:after{
	font-family: "pbminfotech-base-icons";
    content: '\e80d';
    position: absolute;
    right: 10px;
    top: 15px;
    color: var(--pbmit-white-color);
    font-size: 25px;
    line-height: normal;
}
.pbmit-search-overlay.st-show .pbmit-site-searchform:before{
	-webkit-animation-name: fadeInMove;
    animation-name: fadeInMove;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}
@keyframes fadeInMove {
	0% {
		opacity: 0;
		transform: scale3d(0, 1, 1);
	}
	10% {
		opacity: 1;
		transform: scale3d(0.1, 1, 1);
	}
	100% {
		opacity: 0.14;
		transform: scale3d(1, 1, 1);
	}
}
.pbmit-search-overlay input[type="search"] {
    height: 65px;
    line-height: 65px;
	font-weight: 400;
    font-size: 28px;
    background-color: transparent;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ffffff54;
    padding-left: 0;
    border-radius: 0;
	font-family: inherit;
	color: var(--pbmit-white-color);
}
.pbmit-search-overlay input[type="search"]::placeholder{
	color: var(--pbmit-white-color);
	opacity: .6;
}
.pbmit-search-overlay .pbmit-site-searchform button {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    background-color: transparent;
    text-indent: -9999px;
	line-height: 58px;
    font-size: 16px;
	outline: none;
	padding: 0;
    border: none;
    z-index: 1;
    color: var(--pbmit-white-color);
}.pbmit-header-content {
    background: #fff;
    margin: auto;
    width: 66%;
    border-radius: 0 0 33px 33px;
    height: 75px;
    padding: inherit;
}.pbmit-main-header-area .pbmit-right-box a.pbmit-btn {
    padding: 9px 30px;
    font-size: 14px;
}.desk{
    display: block;
}.mob{
    display: none;
}.pbmit-slider-four .pbmit-slider-item img {
    border-radius: 0px 0px 35px 35px;
}.pbmit-slider-four .pbmit-slider-item  {
    border-radius: 0px 0px 35px 35px;
}.sec-pad{
	padding:60px 0px;
}.container-largee {
    max-width: 100%;
    padding: 0px 8%;
}.grey{
	Background:whitesmoke;
}.white{
	color:#fff;
}.aboutus-home {
    margin: 0 12%;
    border-radius: 30px;
    padding: 60px;
    z-index: 1;
    position: relative;
}.aboutus-home img {
    border-radius: 15px;
}.ihbox-three-bg {
    background: url(../images/home/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}article.pbmit-miconheading-style-6.one {
    -webkit-clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) 14.1670774px, calc(100% - 29.883191px) 14.1670774px, calc(100% - 24.96109729px) 14.87537046px, calc(100% - 20.31945472px) 16.29591632px, calc(100% - 16.01424199px) 18.36886116px, calc(100% - 12.1014378px) 21.03435113px, calc(100% - 8.63702087px) 24.23253242px, calc(100% - 5.67696992px) 27.9035512px, calc(100% - 3.27726365px) 31.98755362px, calc(100% - 1.49388076px) 36.42468587px, calc(100% - 0.38279998px) 41.1550941px, calc(100% - 5.68434189E-14px) 46.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 0px), 31.9827822px calc(100% - 0px), 26.79500879px calc(100% - 0.41909978px), 21.87374934px calc(100% - 1.63244774px), 17.28485237px calc(100% - 3.57411685px), 13.09416641px calc(100% - 6.17818003px), 9.36754001px calc(100% - 9.37871025px), 6.1708217px calc(100% - 13.10978045px), 3.56986001px calc(100% - 17.30546357px), 1.63050347px calc(100% - 21.89983258px), .41860062px calc(100% - 26.8269604px), 5.29492535E-31px calc(100% - 32.02092px), 0 32.0209204px, 0 32.0209204px, .41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px .41909979px, 31.9827822px 5.30123935E-31px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);
    clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) 14.1670774px, calc(100% - 29.883191px) 14.1670774px, calc(100% - 24.96109729px) 14.87537046px, calc(100% - 20.31945472px) 16.29591632px, calc(100% - 16.01424199px) 18.36886116px, calc(100% - 12.1014378px) 21.03435113px, calc(100% - 8.63702087px) 24.23253242px, calc(100% - 5.67696992px) 27.9035512px, calc(100% - 3.27726365px) 31.98755362px, calc(100% - 1.49388076px) 36.42468587px, calc(100% - 0.38279998px) 41.1550941px, calc(100% - 5.68434189E-14px) 46.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 0px), 31.9827822px calc(100% - 0px), 26.79500879px calc(100% - 0.41909978px), 21.87374934px calc(100% - 1.63244774px), 17.28485237px calc(100% - 3.57411685px), 13.09416641px calc(100% - 6.17818003px), 9.36754001px calc(100% - 9.37871025px), 6.1708217px calc(100% - 13.10978045px), 3.56986001px calc(100% - 17.30546357px), 1.63050347px calc(100% - 21.89983258px), .41860062px calc(100% - 26.8269604px), 5.29492535E-31px calc(100% - 32.02092px), 0 32.0209204px, 0 32.0209204px, .41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px .41909979px, 31.9827822px 5.30123935E-31px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);
}
.pbmit-ihbox-style-6 {
    background: #fff;
    border-radius: 20px 50px 20px 20px;
	    transition: 2s;
}.pbmit-miconheading-style-6.two {
    -webkit-clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) 14.1670774px, calc(100% - 29.883191px) 14.1670774px, calc(100% - 24.96109729px) 14.87537046px, calc(100% - 20.31945472px) 16.29591632px, calc(100% - 16.01424199px) 18.36886116px, calc(100% - 12.1014378px) 21.03435113px, calc(100% - 8.63702087px) 24.23253242px, calc(100% - 5.67696992px) 27.9035512px, calc(100% - 3.27726365px) 31.98755362px, calc(100% - 1.49388076px) 36.42468587px, calc(100% - 0.38279998px) 41.1550941px, calc(100% - 5.68434189E-14px) 46.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 0px), 31.9827822px calc(100% - 0px), 26.79500879px calc(100% - 0.41909978px), 21.87374934px calc(100% - 1.63244774px), 17.28485237px calc(100% - 3.57411685px), 13.09416641px calc(100% - 6.17818003px), 9.36754001px calc(100% - 9.37871025px), 6.1708217px calc(100% - 13.10978045px), 3.56986001px calc(100% - 17.30546357px), 1.63050347px calc(100% - 21.89983258px), .41860062px calc(100% - 26.8269604px), 5.29492535E-31px calc(100% - 32.02092px), 0 32.0209204px, 0 32.0209204px, .41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px .41909979px, 31.9827822px 5.30123935E-31px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);
    clip-path: polygon(32.2492676px 0, calc(100% - 29.883191px) 14.1670774px, calc(100% - 29.883191px) 14.1670774px, calc(100% - 24.96109729px) 14.87537046px, calc(100% - 20.31945472px) 16.29591632px, calc(100% - 16.01424199px) 18.36886116px, calc(100% - 12.1014378px) 21.03435113px, calc(100% - 8.63702087px) 24.23253242px, calc(100% - 5.67696992px) 27.9035512px, calc(100% - 3.27726365px) 31.98755362px, calc(100% - 1.49388076px) 36.42468587px, calc(100% - 0.38279998px) 41.1550941px, calc(100% - 5.68434189E-14px) 46.1189245px, calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0px) calc(100% - 32.02092px), calc(100% - 0.41860061px) calc(100% - 26.8269604px), calc(100% - 1.63050344px) calc(100% - 21.89983258px), calc(100% - 3.56985995px) calc(100% - 17.30546357px), calc(100% - 6.1708216px) calc(100% - 13.10978045px), calc(100% - 9.36753988px) calc(100% - 9.37871025px), calc(100% - 13.09416624px) calc(100% - 6.17818003px), calc(100% - 17.28485217px) calc(100% - 3.57411685px), calc(100% - 21.87374912px) calc(100% - 1.63244774px), calc(100% - 26.79500858px) calc(100% - 0.41909978px), calc(100% - 31.982782px) calc(100% - 5.68434189E-14px), 31.9827822px calc(100% - 0px), 31.9827822px calc(100% - 0px), 26.79500879px calc(100% - 0.41909978px), 21.87374934px calc(100% - 1.63244774px), 17.28485237px calc(100% - 3.57411685px), 13.09416641px calc(100% - 6.17818003px), 9.36754001px calc(100% - 9.37871025px), 6.1708217px calc(100% - 13.10978045px), 3.56986001px calc(100% - 17.30546357px), 1.63050347px calc(100% - 21.89983258px), .41860062px calc(100% - 26.8269604px), 5.29492535E-31px calc(100% - 32.02092px), 0 32.0209204px, 0 32.0209204px, .41860062px 26.82696079px, 1.63050347px 21.89983293px, 3.56986001px 17.30546389px, 6.1708217px 13.10978071px, 9.36754001px 9.37871045px, 13.09416641px 6.17818017px, 17.28485237px 3.57411693px, 21.87374934px 1.63244779px, 26.79500879px .41909979px, 31.9827822px 5.30123935E-31px, 31.9827822px 0, 32.11152455px 0, 32.2175794px 0, 32.30094672px 0, 32.36162654px 0, 32.39961884px 0, 32.41492362px 0, 32.40754089px 0, 32.37747064px 0, 32.32471288px 0, 32.2492676px 0);
}.pbmit-miconheading-style-6.three {
    webkit-clip-path: polygon(32.2492676px 13.8329226px, calc(100% - 29.883191px) 0, calc(100% - 29.883191px) 0, calc(100% - 24.96109729px) .70829306px, calc(100% - 20.31945472px) 2.12883892px, calc(100% - 16.01424199px) 4.20178375px, calc(100% - 12.1014378px) 6.86727374px, calc(100% - 8.63702087px) 10.06545503px, calc(100% - 5.67696992px) 13.73647382px, calc(100% - 3.27726365px) 17.82047625px, calc(100% - 1.49388076px) 22.25760852px, calc(100% - 0.38279998px) 26.98801678px, calc(100% - 5.68434189E-14px) 31.9518472px, calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0.41860061px) calc(100% - 26.99403837px), calc(100% - 1.63050344px) calc(100% - 22.06691047px), calc(100% - 3.56985995px) calc(100% - 17.47254136px), calc(100% - 6.1708216px) calc(100% - 13.2768581px), calc(100% - 9.36753988px) calc(100% - 9.54578775px), calc(100% - 13.09416624px) calc(100% - 6.34525738px), calc(100% - 17.28485217px) calc(100% - 3.74119406px), calc(100% - 21.87374912px) calc(100% - 1.79952485px), calc(100% - 26.79500858px) calc(100% - 0.58617681px), calc(100% - 31.982782px) calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 26.79500879px calc(100% - 0.58617681px), 21.87374934px calc(100% - 1.79952485px), 17.28485237px calc(100% - 3.74119406px), 13.09416641px calc(100% - 6.34525738px), 9.36754001px calc(100% - 9.54578775px), 6.1708217px calc(100% - 13.2768581px), 3.56986001px calc(100% - 17.47254136px), 1.63050347px calc(100% - 22.06691047px), .41860062px calc(100% - 26.99403837px), 5.29492535E-31px calc(100% - 32.187998px), 0 45.853843px, 0 45.853843px, .41860062px 40.65988339px, 1.63050347px 35.73275553px, 3.56986001px 31.13838649px, 6.1708217px 26.94270331px, 9.36754001px 23.21163305px, 13.09416641px 20.01110277px, 17.28485237px 17.40703953px, 21.87374934px 15.46537039px, 26.79500879px 14.25202239px, 31.9827822px 13.8329226px, 31.9827822px 13.8329226px, 32.11152455px 13.8329226px, 32.2175794px 13.8329226px, 32.30094672px 13.8329226px, 32.36162654px 13.8329226px, 32.39961884px 13.8329226px, 32.41492362px 13.8329226px, 32.40754089px 13.8329226px, 32.37747064px 13.8329226px, 32.32471288px 13.8329226px, 32.2492676px 13.8329226px);
    clip-path: polygon(32.2492676px 13.8329226px, calc(100% - 29.883191px) 0, calc(100% - 29.883191px) 0, calc(100% - 24.96109729px) .70829306px, calc(100% - 20.31945472px) 2.12883892px, calc(100% - 16.01424199px) 4.20178375px, calc(100% - 12.1014378px) 6.86727374px, calc(100% - 8.63702087px) 10.06545503px, calc(100% - 5.67696992px) 13.73647382px, calc(100% - 3.27726365px) 17.82047625px, calc(100% - 1.49388076px) 22.25760852px, calc(100% - 0.38279998px) 26.98801678px, calc(100% - 5.68434189E-14px) 31.9518472px, calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0.41860061px) calc(100% - 26.99403837px), calc(100% - 1.63050344px) calc(100% - 22.06691047px), calc(100% - 3.56985995px) calc(100% - 17.47254136px), calc(100% - 6.1708216px) calc(100% - 13.2768581px), calc(100% - 9.36753988px) calc(100% - 9.54578775px), calc(100% - 13.09416624px) calc(100% - 6.34525738px), calc(100% - 17.28485217px) calc(100% - 3.74119406px), calc(100% - 21.87374912px) calc(100% - 1.79952485px), calc(100% - 26.79500858px) calc(100% - 0.58617681px), calc(100% - 31.982782px) calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 26.79500879px calc(100% - 0.58617681px), 21.87374934px calc(100% - 1.79952485px), 17.28485237px calc(100% - 3.74119406px), 13.09416641px calc(100% - 6.34525738px), 9.36754001px calc(100% - 9.54578775px), 6.1708217px calc(100% - 13.2768581px), 3.56986001px calc(100% - 17.47254136px), 1.63050347px calc(100% - 22.06691047px), .41860062px calc(100% - 26.99403837px), 5.29492535E-31px calc(100% - 32.187998px), 0 45.853843px, 0 45.853843px, .41860062px 40.65988339px, 1.63050347px 35.73275553px, 3.56986001px 31.13838649px, 6.1708217px 26.94270331px, 9.36754001px 23.21163305px, 13.09416641px 20.01110277px, 17.28485237px 17.40703953px, 21.87374934px 15.46537039px, 26.79500879px 14.25202239px, 31.9827822px 13.8329226px, 31.9827822px 13.8329226px, 32.11152455px 13.8329226px, 32.2175794px 13.8329226px, 32.30094672px 13.8329226px, 32.36162654px 13.8329226px, 32.39961884px 13.8329226px, 32.41492362px 13.8329226px, 32.40754089px 13.8329226px, 32.37747064px 13.8329226px, 32.32471288px 13.8329226px, 32.2492676px 13.8329226px);
}.pbmit-miconheading-style-6.four {
    -webkit-clip-path: polygon(32.2492676px 13.8329226px, calc(100% - 29.883191px) 0, calc(100% - 29.883191px) 0, calc(100% - 24.96109729px) .70829306px, calc(100% - 20.31945472px) 2.12883892px, calc(100% - 16.01424199px) 4.20178375px, calc(100% - 12.1014378px) 6.86727374px, calc(100% - 8.63702087px) 10.06545503px, calc(100% - 5.67696992px) 13.73647382px, calc(100% - 3.27726365px) 17.82047625px, calc(100% - 1.49388076px) 22.25760852px, calc(100% - 0.38279998px) 26.98801678px, calc(100% - 5.68434189E-14px) 31.9518472px, calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0.41860061px) calc(100% - 26.99403837px), calc(100% - 1.63050344px) calc(100% - 22.06691047px), calc(100% - 3.56985995px) calc(100% - 17.47254136px), calc(100% - 6.1708216px) calc(100% - 13.2768581px), calc(100% - 9.36753988px) calc(100% - 9.54578775px), calc(100% - 13.09416624px) calc(100% - 6.34525738px), calc(100% - 17.28485217px) calc(100% - 3.74119406px), calc(100% - 21.87374912px) calc(100% - 1.79952485px), calc(100% - 26.79500858px) calc(100% - 0.58617681px), calc(100% - 31.982782px) calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 26.79500879px calc(100% - 0.58617681px), 21.87374934px calc(100% - 1.79952485px), 17.28485237px calc(100% - 3.74119406px), 13.09416641px calc(100% - 6.34525738px), 9.36754001px calc(100% - 9.54578775px), 6.1708217px calc(100% - 13.2768581px), 3.56986001px calc(100% - 17.47254136px), 1.63050347px calc(100% - 22.06691047px), .41860062px calc(100% - 26.99403837px), 5.29492535E-31px calc(100% - 32.187998px), 0 45.853843px, 0 45.853843px, .41860062px 40.65988339px, 1.63050347px 35.73275553px, 3.56986001px 31.13838649px, 6.1708217px 26.94270331px, 9.36754001px 23.21163305px, 13.09416641px 20.01110277px, 17.28485237px 17.40703953px, 21.87374934px 15.46537039px, 26.79500879px 14.25202239px, 31.9827822px 13.8329226px, 31.9827822px 13.8329226px, 32.11152455px 13.8329226px, 32.2175794px 13.8329226px, 32.30094672px 13.8329226px, 32.36162654px 13.8329226px, 32.39961884px 13.8329226px, 32.41492362px 13.8329226px, 32.40754089px 13.8329226px, 32.37747064px 13.8329226px, 32.32471288px 13.8329226px, 32.2492676px 13.8329226px);
    clip-path: polygon(32.2492676px 13.8329226px, calc(100% - 29.883191px) 0, calc(100% - 29.883191px) 0, calc(100% - 24.96109729px) .70829306px, calc(100% - 20.31945472px) 2.12883892px, calc(100% - 16.01424199px) 4.20178375px, calc(100% - 12.1014378px) 6.86727374px, calc(100% - 8.63702087px) 10.06545503px, calc(100% - 5.67696992px) 13.73647382px, calc(100% - 3.27726365px) 17.82047625px, calc(100% - 1.49388076px) 22.25760852px, calc(100% - 0.38279998px) 26.98801678px, calc(100% - 5.68434189E-14px) 31.9518472px, calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0px) calc(100% - 32.187998px), calc(100% - 0.41860061px) calc(100% - 26.99403837px), calc(100% - 1.63050344px) calc(100% - 22.06691047px), calc(100% - 3.56985995px) calc(100% - 17.47254136px), calc(100% - 6.1708216px) calc(100% - 13.2768581px), calc(100% - 9.36753988px) calc(100% - 9.54578775px), calc(100% - 13.09416624px) calc(100% - 6.34525738px), calc(100% - 17.28485217px) calc(100% - 3.74119406px), calc(100% - 21.87374912px) calc(100% - 1.79952485px), calc(100% - 26.79500858px) calc(100% - 0.58617681px), calc(100% - 31.982782px) calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 31.9827822px calc(100% - 0.167077px), 26.79500879px calc(100% - 0.58617681px), 21.87374934px calc(100% - 1.79952485px), 17.28485237px calc(100% - 3.74119406px), 13.09416641px calc(100% - 6.34525738px), 9.36754001px calc(100% - 9.54578775px), 6.1708217px calc(100% - 13.2768581px), 3.56986001px calc(100% - 17.47254136px), 1.63050347px calc(100% - 22.06691047px), .41860062px calc(100% - 26.99403837px), 5.29492535E-31px calc(100% - 32.187998px), 0 45.853843px, 0 45.853843px, .41860062px 40.65988339px, 1.63050347px 35.73275553px, 3.56986001px 31.13838649px, 6.1708217px 26.94270331px, 9.36754001px 23.21163305px, 13.09416641px 20.01110277px, 17.28485237px 17.40703953px, 21.87374934px 15.46537039px, 26.79500879px 14.25202239px, 31.9827822px 13.8329226px, 31.9827822px 13.8329226px, 32.11152455px 13.8329226px, 32.2175794px 13.8329226px, 32.30094672px 13.8329226px, 32.36162654px 13.8329226px, 32.39961884px 13.8329226px, 32.41492362px 13.8329226px, 32.40754089px 13.8329226px, 32.37747064px 13.8329226px, 32.32471288px 13.8329226px, 32.2492676px 13.8329226px);
}.ihbox-three-bg .container {
    max-width: 100%;
    padding: 0 13%;
}.elementor-icon {
    fill: #E8F5D34D;
    height: 150px;
}.pbminfotech-ele-fid-style-2 {
    border-left: 1px solid #dddddd4d;
    padding-left: 10%;
}.rounded-curve-btnsec a.curved-btn {
    position: relative;
    background: #0e65a3a1;
    padding: 11px 65px;
    border-radius: 35px;
    color: #fff;
    z-index: 0;
    border: 2px solid #0e65a3;
}.ihbox-three-bg .rounded-curve-btnsec {
    position: absolute;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: row;
    background: #fff;
    left: 46%;
    padding: 5px 11px;
    border-radius: 20px 20px 0px 0px;
}.left {
    content: '';
    position: absolute;
    -webkit-mask-image: url(../images/icons/button-box-left.svg);
    left: -30px;
    bottom: 0;
    background-color: #fdfbff !important;
   
    width: 100%;
    height: 100%;
    -webkit-mask-position: bottom left;
    -webkit-mask-repeat: no-repeat;
    transform: rotate(0deg);
	    z-index: 1;
}.right {
    content: '';
    position: absolute;
    -webkit-mask-image: url(../images/icons/button-box-right.svg);
    left: 33px;
    bottom: 0;
    background-color: #fdfbff !important;
    width: 100%;
    height: 100%;
    -webkit-mask-position: bottom right;
    -webkit-mask-repeat: no-repeat;
    transform: rotate(0deg);
	    z-index: 1;
}.quality-home img {
    border-radius: 20px;
}.quality-home .about-four-list-group {
    display: flex
;
    flex-direction: column-reverse;
    gap: 10px;
}.quality-home .about-four-list-group li+li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.quality-home .list-group-style-1 .list-group-item {
    padding-bottom: 15px !important;
}.quality-home p {
    width: 85%;
    padding-bottom: 20px;
}.qualitty-left-content {
    padding-right: 10%;
}.contact-one-bg {
    background-image: url(../images/home/cta-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 8%;
    border-radius: 30px;
    padding: 3% 6%;
}.cta-inner-row {
    background: #fff;
    border-radius: 35px;
    height: 100%;
    padding: 15px;
}.cta-btn .pbmit-header-button::before {
    content: "\e85d";
    font-family: "pbminfotech-base-icons";
    font-size: 19px;
    position: absolute;
    left: -28px;
    top: 10px;
    line-height: normal;
    font-weight: 400;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -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%);
    color: #000000;
}
.cta-btn .pbmit-header-button {
    position: relative;
}.cta-inner-row::before {
    content: '';
    position: absolute;
    width: 55%;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
}.cta-inner-row {
    background: #ffffff17;
    border-radius: 35px;
    height: 100%;
    padding: 15px;
    position: relative;
    border: 10px solid #fff;
}.awards {
    display: flex;
    flex-direction: row;
    align-items: end;
    height: 100%;
    gap: 30px;
    justify-content: center;
	position: relative;
}.awards .awards-sub img {
    max-width: 75px;
    margin: auto;
    display: flex;
}.awards .awards-sub-content p {
    font-size: 15px;
    line-height: 1;
    color: #fff;
    font-family: 'Outfit';
    text-align: center;
}
.awards .awards-sub-content h6 {
    color: #fff;
    font-size: 25px;
    padding: 8px 0px;
    margin-bottom: 0;
    text-align: center;
}.cta-inner-row::after {
    content: '';
    position: absolute;
    width: 45%;
    height: 22%;
    left: 0;
    bottom: 0;
    -webkit-clip-path: polygon(26px 14.140625px, calc(50% - 0px) 0, calc(100% - 26px) 14.140625px, calc(100% - 26px) 14.140625px, calc(100% - 21.78266507px) 14.48092111px, calc(100% - 17.78198925px) 15.46612226px, calc(100% - 14.05150328px) 17.04269774px, calc(100% - 10.6447379px) 19.15711679px, calc(100% - 7.61522387px) 21.75584869px, calc(100% - 5.01649194px) 24.78536269px, calc(100% - 2.90207283px) 28.19212806px, calc(100% - 1.32549731px) 31.92261406px, calc(100% - 0.34029612px) 35.92328995px, calc(100% - 5.68434189E-14px) 40.140625px, calc(100% - 0px) calc(100% - 27.524326px), calc(100% - 0px) calc(100% - 27.524326px), calc(100% - 0.34322362px) calc(100% - 23.34965056px), calc(100% - 1.33590621px) calc(100% - 19.4579939px), calc(100% - 2.92256535px) calc(100% - 15.87444695px), calc(100% - 5.04771862px) calc(100% - 12.62410059px), calc(100% - 7.65588363px) calc(100% - 9.73204575px), calc(100% - 10.69157794px) calc(100% - 7.22337333px), calc(100% - 14.09931914px) calc(100% - 5.12317423px), calc(100% - 17.82362483px) calc(100% - 3.45653938px), calc(100% - 21.80901259px) calc(100% - 2.24855966px), calc(100% - 26px) calc(100% - 1.524326px), calc(100% - 26px) calc(100% - 1.524326px), calc(100% - 29.43046599px) calc(100% - 1.23992771px), calc(100% - 34.66147336px) calc(100% - 1.01872904px), calc(100% - 42.65302211px) calc(100% - 0.86072999px), calc(100% - 54.36511224px) calc(100% - 0.76593056px), calc(100% - 70.75774375px) calc(100% - 0.73433075px), calc(100% - 92.79091664px) calc(100% - 0.76593056px), calc(100% - 121.42463091px) calc(100% - 0.86072999px), calc(100% - 157.61888656px) calc(100% - 1.01872904px), calc(100% - 202.33368359px) calc(100% - 1.23992771px), calc(100% - 256.529022px) calc(100% - 1.524326px), 23.470978px calc(100% - 1.524326px), 19.57789667px calc(100% - 2.20732467px), 15.91648486px calc(100% - 3.44361902px), 12.52869848px calc(100% - 5.1854733px), 9.45649339px calc(100% - 7.38515171px), 6.7418255px calc(100% - 9.9949185px), 4.42665069px calc(100% - 12.96703789px), 2.55292484px calc(100% - 16.2537741px), 1.16260386px calc(100% - 19.80739138px), .29764361px calc(100% - 23.58015393px), 3.75493181E-31px calc(100% - 27.524326px), 0 40.140625px, 0 40.140625px, .34029612px 35.92328995px, 1.32549731px 31.92261406px, 2.90207283px 28.19212806px, 5.01649194px 24.78536269px, 7.61522387px 21.75584869px, 10.6447379px 19.15711679px, 14.05150328px 17.04269774px, 17.78198925px 15.46612226px, 21.78266507px 14.48092111px, 26px 14.140625px);
    clip-path: polygon(26px 14.140625px, calc(50% - 0px) 0, calc(100% - 26px) 14.140625px, calc(100% - 26px) 14.140625px, calc(100% - 21.78266507px) 14.48092111px, calc(100% - 17.78198925px) 15.46612226px, calc(100% - 14.05150328px) 17.04269774px, calc(100% - 10.6447379px) 19.15711679px, calc(100% - 7.61522387px) 21.75584869px, calc(100% - 5.01649194px) 24.78536269px, calc(100% - 2.90207283px) 28.19212806px, calc(100% - 1.32549731px) 31.92261406px, calc(100% - 0.34029612px) 35.92328995px, calc(100% - 5.68434189E-14px) 40.140625px, calc(100% - 0px) calc(100% - 27.524326px), calc(100% - 0px) calc(100% - 27.524326px), calc(100% - 0.34322362px) calc(100% - 23.34965056px), calc(100% - 1.33590621px) calc(100% - 19.4579939px), calc(100% - 2.92256535px) calc(100% - 15.87444695px), calc(100% - 5.04771862px) calc(100% - 12.62410059px), calc(100% - 7.65588363px) calc(100% - 9.73204575px), calc(100% - 10.69157794px) calc(100% - 7.22337333px), calc(100% - 14.09931914px) calc(100% - 5.12317423px), calc(100% - 17.82362483px) calc(100% - 3.45653938px), calc(100% - 21.80901259px) calc(100% - 2.24855966px), calc(100% - 26px) calc(100% - 1.524326px), calc(100% - 26px) calc(100% - 1.524326px), calc(100% - 29.43046599px) calc(100% - 1.23992771px), calc(100% - 34.66147336px) calc(100% - 1.01872904px), calc(100% - 42.65302211px) calc(100% - 0.86072999px), calc(100% - 54.36511224px) calc(100% - 0.76593056px), calc(100% - 70.75774375px) calc(100% - 0.73433075px), calc(100% - 92.79091664px) calc(100% - 0.76593056px), calc(100% - 121.42463091px) calc(100% - 0.86072999px), calc(100% - 157.61888656px) calc(100% - 1.01872904px), calc(100% - 202.33368359px) calc(100% - 1.23992771px), calc(100% - 256.529022px) calc(100% - 1.524326px), 23.470978px calc(100% - 1.524326px), 19.57789667px calc(100% - 2.20732467px), 15.91648486px calc(100% - 3.44361902px), 12.52869848px calc(100% - 5.1854733px), 9.45649339px calc(100% - 7.38515171px), 6.7418255px calc(100% - 9.9949185px), 4.42665069px calc(100% - 12.96703789px), 2.55292484px calc(100% - 16.2537741px), 1.16260386px calc(100% - 19.80739138px), .29764361px calc(100% - 23.58015393px), 3.75493181E-31px calc(100% - 27.524326px), 0 40.140625px, 0 40.140625px, .34029612px 35.92328995px, 1.32549731px 31.92261406px, 2.90207283px 28.19212806px, 5.01649194px 24.78536269px, 7.61522387px 21.75584869px, 10.6447379px 19.15711679px, 14.05150328px 17.04269774px, 17.78198925px 15.46612226px, 21.78266507px 14.48092111px, 26px 14.140625px);
    background: #f7950000;
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    backdrop-filter: saturate(180%) blur(40px);
	 z-index: 0;
  
}.awards-sub {
    position: relative;
    z-index: 1;
}.awards::before {
    position: absolute;
    content: '';
    right: -57px;
    top: -16px;
    -webkit-mask-image: url(../images/home/corner-top-right.svg);
    fill: #fdfbff;
    width: 34px;
    height: 34px;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
}.awards::after {
    position: absolute;
    content: '';
    right: -59px;
    bottom: -19px;
    -webkit-mask-image: url(../images/home/corner-top-right.svg);
    fill: #fdfbff;
    width: 34px;
    height: 34px;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    transform: rotate(79deg);
}.why-us-sec-img img {
    max-width: 90px;
    padding: 0px;
}.why-us-sec-img {
    border: 2px solid #0e65a3;
    border-radius: 50%;
    padding: 35px;
    margin: auto;
    display: flex;
    transition: 2s;
    max-width: fit-content;
    background: #679ec530;
}.why-us-sec-img:hover {
    transform: rotate(365deg);
    border: 2px solid #f79500;
}.pbmit-ihbox-wrap:hover {
    background: #679ec530;
}

.whysec-content {
    padding-top: 30px;
    text-align: center;
    width: 85%;
    margin: auto;
}.whyus-row {
    margin-top: 50px;
}.whysec-content h6 {
    font-size: 21px;
    line-height: 31px;
}.pbmit-footer-big-area h2 {
    padding-bottom: 15px;
    color: #fff;
}.foot-secrow {
    margin-top: 45px;
}.pbmit-contact-widget-lines .pbmit-header-button {
    background: #fff;
    padding: 8px 15px;
    border-radius: 35px;
    width: 70%;
    margin-bottom: 15px;
}.pbmit-contact-widget-line.pbmit-contact-widget-email a {
    font-size: 15px;
    text-decoration: underline;
    color: #fff;
}.pbmit-footer-text-area ul.pbmit-social-links {
    gap: 17px;
    display: flex
;
    justify-content: end;
}.pbmit-footer-text-area ul.pbmit-social-links li {
    font-size: 18px;
}.ihbox-three-bg.about-innersec {
    margin-top: 0;
    padding-top: 60px;
}.paralx-inner {
    padding: 150px 0px;
    background: url(../images/resources/paralax.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}.about-us-one-col-2 img {
    border-radius: 15px;
}.sub-img img {
    height: 335px;
    object-fit: cover;
}input#attachment {
    line-height: 45px;
}.contact-us-bg.career button.pbmit-btn {
    position: relative;
    padding: 11px 33px;
    border-radius: 25px;
    background: #ddd;
}.contact-us-bg.career button.pbmit-btn::before, .contact-us-bg.career button.pbmit-btn::after{
	display:none;
}.contact-us-bg.career .contact-form-rightbox {
    padding: 60px;
    background-color: #fff;
    border-radius: 30px;
    margin-left: 45px;
    border: 1px solid #ddd;
}    .thank-you-message {
      display: none;
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
      padding: 10px;
      margin-top: 20px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
    }.inner-appointment.contact-one-bg {
    margin: 3% 8%;
}.ul-list-items li {
    width: 33%;
    padding-bottom: 5px;
}.ul-list-items {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: disc;
    margin-left: 17px;
}.ul-list-itemssec {
	margin-top:45px;
}  ul.sub-menu {
    min-width: 175px !important;
}