
/*----------------------------------------*/
/* 00 - General 
/*----------------------------------------*/
 html {
     -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;
     font-family: "Nunito Sans", serif;
}
p {
     margin: 0 0 25px;
     color: #454444;
}
 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;
}
 textarea:hover, input:hover, textarea:active, input:active, textarea:focus, input:focus, .form-control:focus {
     outline:0px !important;
     -webkit-appearance:none;
     box-shadow: none !important;
}
 .form-select{
     padding: 15px 15px;
     font-size: 15px;
     color: #848484;
     border: 1px solid #eeeeee;
     border-radius: 0;
     font-weight: 500;
}
 .form-select:focus {
     border-color: #1bbde4;
     outline: 0;
     box-shadow: none;
}

.space{
    padding: 70px 0;
}
/*----------------------------------------*/
/* 01 - Typography 
/*----------------------------------------*/

 body {
     text-transform: none;
     font-style: normal;
}
 
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
     -webkit-transition: all 0.5s ease-out 0s;
     -moz-transition: all 0.5s ease-out 0s;
     -ms-transition: all 0.5s ease-out 0s;
     -o-transition: all 0.5s ease-out 0s;
     transition: all 0.5s ease-out 0s;
     color: #067bae;
     text-decoration: none;
}
a:focus {
     text-decoration: none !important;
}
a:focus, a:hover {
    color:#75b843;
     text-decoration: none !important;
}
a.link-btn, .link-btn a{
     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 {
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 5px;
    text-transform: none;
    background-color: #75b843;
    border: none;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    text-transform: capitalize;
/*    font-weight: 500;*/
    font-size: 16px;
}
 .pbmit-btn:hover, .pbmit-btn:focus {
     color: #ffffff;
     background-color:#067bae;
     outline: none;
}
.pbmit-btn-hover-secondary{
    background-color: var(--pbmit-global-color);
}
 .pbmit-btn-hover-secondary:hover, .pbmit-btn.pbmit-btn-secondary{
     background-color: var(--pbmit-blackish-color);
}
 .pbmit-btn-hover-white:hover, .pbmit-btn.pbmit-btn-white{
     background-color: #fff;
     color: var(--pbmit-blackish-color);
}
 .pbmit-btn-hover-global:hover{
     background-color: var(--pbmit-global-color);
     color: #fff;
}
 .pbmit-btn-hover-secondary:hover{
     background-color: var(--pbmit-secondary-color);
     color: #fff;
}
 .pbmit-btn-hover-white:hover{
     background-color: #fff;
     color: var(--pbmit-global-color);
}
 .pbmit-btn.pbmit-btn-outline.pbmit-btn-hover-white:hover{
     border-color: #fff;
     background-color: #fff;
     color: var(--pbmit-global-color);
}
 .pbmit-btn-inline{
     font-size: var(--pbmit-btn-typography-font-size);
     font-weight: var(--pbmit-btn-typography-variant);
     line-height: var(--pbmit-btn-typography-line-height);
     color: #ffffff;
     position: relative;
     border: none;
     padding: 0;
     margin-top: 0px !important;
     background-color: transparent !important;
     padding-bottom: 3px;
     letter-spacing: .5px;
}
 .pbmit-btn-inline:before{
     content: '';
     height: 1px;
     width: 100%;
     z-index: 1;
     position: absolute;
     bottom: 0;
     left: 0;
     background: #fff;
     -webkit-transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
}
 .pbmit-btn-inline:hover, .pbmit-btn-inline:focus{
     color: #ffffff;
}
 .pbmit-btn-inline:hover:before, .pbmit-btn-inline:focus:before{
     width: 0%;
}
.pbmit-btn-hover-secondary{
    background-color:#0660a5;
}
 .pbmit-btn-hover-secondary:hover, .pbmit-btn.pbmit-btn-secondary{
     background-color: var(--pbmit-blackish-color);
}
.pbmit-btn.pbmit-btn-outline {
    background-color: transparent;
    padding: 13px 40px;
    color: var(--pbmit-blackish-color);
    border: 1px solid var(--pbmit-global-color);
}
.pbmit-btn.pbmit-btn-outline span:after{
    color: var(--pbmit-blackish-color);
}
.pbmit-btn.pbmit-btn-outline:hover span:after{
    color: #fff;
}
.pbmit-btn-outline:hover, .pbmit-btn.pbmit-btn-outline:focus {
    background-color: var(--pbmit-global-color);
}
.pbmit-btn.pbmit-btn-outline:hover span{
    color: #fff;
}
/** Divider **/
 .sep-line{
     height: 1px;
     border-top: 1px solid #ebebeb;
     display: block;
     position: relative;
     top: 1px;
     width: 100%;
}


/*----------------------------------------*/
/* 05 - Social icons 
/*----------------------------------------*/
 .social-icons {
     list-style: none;
     margin: 0px;
     padding: 0px;
     font-size: 15px;
     padding-top: 2px;
     padding-bottom: 3px;
}
 .social-icons li {
     display: inline-block;
     padding-left: 2px;
     padding-right: 2px;
     min-width: 34px;
}
 .social-icons li > a {
     width: 30px;
     height: 30px;
     line-height: 30px;
     margin-right: 8px;
     background-color: transparent;
     font-size: 16px;
}

/*----------------------------------------*/
/* 06 - Header 
/*----------------------------------------*/
 .navbar-brand .navbar-brand-item {
     height: 60px;
     display: block;
     width: auto;
}
 .site-header .site-branding img {
     display: inline-block;
     max-width: 160px;
     height: auto;
/*     padding-right: 15px;*/
/*     max-height: 55px;*/
     -webkit-transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
}
 .site-navigation ul.navigation > li > a {
     display: block;
     margin: 0px 20px;
     padding: 0px;
     text-decoration: none;
     position: relative;
     z-index: 1;
/*     height: 100px;*/
/*     line-height: 100px;*/
     letter-spacing: 0px;
     color: var(--pbmit-blackish-color);
     text-transform: capitalize;
}
.site-navigation ul.navigation > li > a i{
    margin-right: 3px;
}
.site-header .site-navigation ul.navigation > li:hover{
    background: #75b843;
}
.site-header .site-navigation ul.navigation > li.active{
    background: #75b843;
}
.site-header .site-navigation ul.navigation > li.active > a:after{
    color: var(--pbmit-global-color);
}
 .site-navigation ul.navigation > li > a:hover{
     color:#75b843;
}
.site-navigation ul.navigation > li > a:hover:after{
    color: var(--pbmit-global-color);
}
.site-navigation ul.navigation a{
     font-size: 17px;
}
 .main-menu .navigation > li {
    position: relative;
    float: left;
    margin: 0 1px;
    border-left: 1px solid #ffffff29;
    position: relative;
     -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:first-child{
    border-left: none;
 }
 .main-menu ul > li.dropdown > a:after {
     font-family: "pbminfotech-base-icons";
     content: '\e811';
     margin-left: 8px;
     font-size: 11px;
     font-weight: 600;
     vertical-align: middle;
     color: var(--pbmit-blackish-color);
}
 .main-menu .navigation > li > ul , .main-menu .navigation > li > ul > li > ul {
     min-width: 320px;
     box-shadow: 0px 10px 40px rgb(0 0 0 / 20%);
     border-top: 3px solid #75b843;
     position: absolute;
     top: 100%;
     left: 0;
     z-index: 100;
     visibility: hidden;
     background-color: #ffffff;
     opacity: 0;
     -webkit-transform: translateY(15px);
     -moz-transform: translateY(15px);
     -ms-transform: translateY(15px);
     -o-transform: translateY(15px);
     transform: translateY(15px);
     -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
     box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
     -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
     -ms-transition: all 0.3s ease-out;
     -o-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
}
.head-list{
    width: 625px;
    column-count: 2;
}
.main-menu .navigation > li > ul > li > ul {
     left: 100%;
     top: 0;
}

 .main-menu .navigation > li.dropdown:hover > ul , .main-menu .navigation > li > ul > li.dropdown:hover > ul {
     visibility: visible;
     opacity: 1;
     -webkit-transform: translateY(0px);
     -ms-transform: translateY(0px);
     transform: translateY(0px);
     z-index: 999;
}
 .main-menu .navigation > li > ul li a{
     border-bottom:1px solid rgba(255, 255, 255, 0.20);
}
 .main-menu .navigation > li > ul a{
    padding: 10px 15px;
    display: block;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
}
.main-menu .navigation > li > ul li{
    border-bottom: 1px solid #75b84342;
}
 .main-menu .navigation > li > ul li.active a, .main-menu .navigation > li > ul a:hover{
    background: #75b8432e;
}
.main-menu .navigation > li > ul li.active a:hover{
    padding-left: 30px;
}
.main-menu .navigation > li > ul li a:hover{
/*    padding-left: 30px;*/
}
 .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;
}
/** sticky-header **/
 .sticky-header{
     position: fixed !important;
     top: 0px;
     width: 100%;
     background-color: #fff;
     z-index: 999;
     margin: 0;
     -webkit-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
     -moz-box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
     box-shadow: 0px 13px 25px -12px rgba(0,0,0,0.25);
     padding: 0;
}
 .site-header-menu .logo-img.stickylogo, .site-header-menu.sticky-header .logo-img{
     max-height: 50px;
}
 .site-header-menu.sticky-header .logo-img.stickylogo{
     display: inline-block;
}
 .sticky-header .site-navigation ul.navigation > li > a{
/*     height: 90px;*/
/*     line-height: 90px;*/
}
.site-header-menu{
    transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
}
.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 */
 .pre-header{
/*    height: 50px;*/
/*    line-height: 50px;*/
}
 .list-unstyled i{
    font-size: 14px;
    color: #666;
}
.marquee {
    height: 35px;
    background: #067bae17;
    position: relative;
}
.marquee:before{
    position: absolute;
    content: '';
    width: 120px;
    height: 100%;
    background: #067bae17;
    right: -120px;
}
.contact-detail{
    background: #ddd;
    line-height: 40px;
    transform: translate(0px, -10px);
    position: relative;
}
.contact-detail:before{
    position: absolute;
    content: '';
    width: 40px;
    height: 45px;
    top: -6px;
    left: -26px;
    background: #fff;
    transform: rotate(15deg);
}
.contact-detail:after{
    position: absolute;
    content: '';
    width: 120px;
    height: 100%;
    background: #ddd;
    right: -120px;
    top: 0;
}
.contact-detail p {
    color: #2f2f2f;
    font-size: 18px;
    margin-bottom: 0;
    height: 40px;
    text-align: center;
}
.youtube{
/*    float: right;*/
    position: relative;
    margin-top: 38px;
}
 .youtube img{
    width: 225px;
    width: 80%;
}
 .youtube:hover .yt-hover{
    display: block;
}
 .yt-hover{
    line-height: 26px;
    position: absolute;
    display: none;
    transition: 0.5s ease;
    left: 0%;
    z-index: 999;
    top: 50px;
    width: 270px;
}
 .yt-hover ul li{
    border: 1px solid #d4d9ff;
    padding: 5px 7px;
    background: #fff;
    transition: 0.5s ease;
    text-align: left;
}
 .yt-hover ul li:first-child{
    border-bottom: none;
}
 .yt-hover ul li a{
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
 .yt-hover ul li a:hover{
    color: #75b843;
}

/*----------------------------------------*/
/* 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) * .6);
     padding-left: calc(var(--bs-gutter-x) * .6);
}

/*----------------------------------------*/
/* 08 - Swiper 
/*----------------------------------------*/
 .swiper-slider{
     margin-left: auto;
     margin-right: auto;
     position: relative;
     overflow: hidden;
     z-index: 1;
}
 .swiper-pagination-bullet {
    border: 0;
    background-color: #5e6473;
    outline: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    opacity: 1;
    vertical-align: middle;
}
 .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal,
 .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 70px;
    left: -85px;
}
 .swiper-slider[data-dots="true"] {
/*     padding-bottom: 50px;*/
}
 .swiper-pagination-bullet-active{
    border-radius: 50%;
    height: 14px;
    width: 14px;
    background-color: #fff;
}
 .swiper-button-next:after, .swiper-button-prev:after {
     font-family: "pbminfotech-base-icons";
     font-size: 20px;
     color: var(--pbmit-blackish-color);
     font-weight: 700;
     transition: all 500ms ease;
     -webkit-transition: all 500ms ease;
}
 .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
     content: '\e814';
}
 .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
     content: '\e814';
}
 .swiper-button-prev, .swiper-rtl .swiper-button-next {
     transform: rotate(180deg);
     position: absolute;
     left: 14px;
}
 .swiper-slider.home-case-studies{
     overflow: visible;
}
 .home-case-studies .swiper-buttons{
     position: absolute;
     top: -100px;
     right: 0;
     max-width: 1200px;
     width: 100%;
     margin: 0 auto;
     left: 0;
     padding: 0 15px;
     text-align: right;
}
 .swiper-button-next, .swiper-button-prev{
     text-align: center;
     z-index: 15;
     cursor: pointer;
     border: 1px solid #dddddd;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     line-height: 60px;
     border-radius: 50%;
     transition: all 500ms ease;
     background-color: #fff;
     color: var(--pbmit-global-color);
     -webkit-transition: all 500ms ease;
}
 .home-case-studies .swiper-button-prev{
     left: initial;
     right: 75px;
}
 .swiper-button-next:hover, .swiper-button-prev:hover{
     border-color: var(--pbmit-global-color);
}
 .swiper-button-prev:hover:after, .swiper-button-next:hover:after{
     color: var(--pbmit-global-color);
}
/*----------------------------------------*/
/* 09 - Scroll To Top 
/*----------------------------------------*/
body .scroll-to-top {
    position: fixed;
    z-index: 200;
    opacity: 0;
    bottom: 10px;
    right: 20px;
    width: 45px;
    height: 45px;
    line-height: 40px;
    font-size: 16px; 
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
    text-align: center;
    border: 3px solid #eeeeee;
    color: #fff;
}
body .scroll-to-top.show {
    opacity: 1;
        display: none;
}
body .scroll-to-top:hover {
    color: #fff !important;
    background-color: var(--pbmit-secondary-color);
}

/*----------------------------------------*/
/*  10 - Search Box
/*----------------------------------------*/
.pbmit-search-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%);
}
.pbmit-icon-close {
    position: absolute;
    color: #fff;
    right: 25px;
    top: 25px;
    cursor: pointer;
}
.pbmit-icon-close:before {
    content: '\e813'; 
    font-family: "pbminfotech-base-icons";
    font-size: 30px;
    font-weight: normal;
    opacity: .5;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    opacity: 1;
}
.pbmit-search-outer {
    max-width: 970px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pbmit-search-outer .pbmit-search-logo {
    margin-bottom: 60px;
    position: absolute;
    margin-top: -125px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -khtml-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.pbmit-search-outer .pbmit-search-logo img {
    max-height: 65px;
}
.pbmit-search-overlay .pbmit-site-searchform {
    position: relative;
}
.pbmit-search-overlay input[type="search"] {
    border-bottom-color: #7fc540;
}
.pbmit-search-overlay input[type="search"] {
    border: none;
    font-size: 16px;
    color: #09162a;
    padding: 0;
    padding-left: 16px;
    text-align: left;
    height: 70px;
    line-height: 70px;
}
.pbmit-search-overlay .pbmit-site-searchform button {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px; 
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    padding: 0;
    width: 60px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: var(--pbmit-global-color);
}
.pbmit-search-overlay.st-show {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.post-header {
    padding: 10px 0;
}
.post-header .head-right-top {
    float: right;
    padding-top: 0px;
    margin-top: 15px;
}
.post-header .head-right-top .sec-1 {
    margin-right: 15px;
}
.post-header .head-right-top a {
    display: inline-block;
    border: 1px solid #e1e1e1;
/*    border-radius: 20px 0 0;*/
    box-shadow: 1px 1px 2px #b8b7b7;
}
.post-header .head-right-top .sec-1:hover {
    background: #c60f15;
}
.post-header .head-right-top .sec-1 .img-sec {
    /* background: #f8f8f8; */
    display: inline-block;
    vertical-align: middle;
    padding: 13px 8px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: 1px solid #e1e1e1;
}
.post-header .head-right-top .sec-1 .con-sec span {
    color: #008dd4;
    font-size: 15px;
    font-weight: 500;
    display: block;
    transition: 0.5s ease;
}
.post-header .head-right-top .sec-1 .con-sec {
    display: inline-block;
    vertical-align: middle;
    padding: 4px 8px;
}
.post-header .head-right-top .sec-1:hover .con-sec span {
    color: #fff;
}
.post-header .head-right-top .sec-1:hover .con-sec label {
    color: #fff;
}


.header-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-sec-left{

}
.header-sec-right{
    position: relative;
    width: 80%;
}
.header-sec-right:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 195px;
    background: #ddd;
    transform: rotate(16deg);
    top: -20px;
    overflow: hidden;
}

.head-right .wid2{
    text-align: right;
}
.top_header {
/*    background: #067bae;*/
    border-radius: 0 15px;
/*    margin-top: 5px;*/
    display: inline-block;
/*    float: right;*/
}
.top_add {
}
.top_add ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding-left: 60px;
    position: relative;
}
.top_add ul li +li{
    margin-left: 20px;
}
.top_add ul li a{
    color: #000;
}
.top_add ul li a:hover{
    color: #75b843;
}
.top_add ul li a span{
    display: block;
    color: #067bae;
    font-weight: 600;
    text-align: left;
    font-size: 18px;
}
.top_add ul li i {
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #067bae;
    background: linear-gradient(45deg, #067bae, #75b843);
    border-radius: 50%;
}
.top_add ul li:last-child {
    border: none;
}
.header-info-box1 img {
    width: 70px;
}
/******************************
    INDEX:

    00 - Section Title
    01 - Icon Box
    02 - Team Member
    03 - Counter
    04 - Service
    05 - Projects
    06 - Blog
    07 - Testimonial
    08 - Client
    09 - Header
    10 - Footer
    11 - Title Bar
    12 - Overlap Colomn
    13 - Progress Bar
    14 - Accordion
    15 - Tab
    16 - Circle Progress
    17 - Static-box
    18 - List Gourp
    19 - Revolution
    20 - Pricing-table

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

body {
    counter-reset: pbmitbox1 pbmitbox2 pbmit-rev-counter;
}
/*----------------------------------------*/
/*  00 - Section Title
/*----------------------------------------*/
    .pbmit-heading-subheading {
        position: relative;
        z-index: 1;
        margin-bottom: 40px;
    }
    .pbmit-heading-subheading .pbmit-subtitle{
        margin-bottom: 12px;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        font-weight: 500;
        font-size: 22px;
        line-height: 20px;
        color: #75b843;
        text-transform: capitalize;
        font-style: normal;
    }
    .pbmit-heading-subheading .pbmit-subtitle:before{
        content: "";
        position: absolute;
        bottom: 5px;
        left: -5px;
        width: 10px;
        height: 1px;
        background-color:#75b843;
    }
    .pbmit-heading-subheading .pbmit-subtitle:after{
        content: "";
        position: absolute;
        bottom: 5px;
        right: -5px;
        width: 10px;
        height: 1px;
        background-color:#75b843;
    }
    .pbmit-heading-subheading .pbmit-title{
        font-weight: 800;
        font-size: 38px;
        color: #067bae;
        text-transform: none;
        font-style: normal;
        margin-bottom: 5px;
/*        padding-bottom: 10px;*/
        text-transform: uppercase;
    }
    /*.pbmit-heading-subheading .pbmit-title:before{
        position: absolute;
        content: '';
        width: 90%;
        height: 2px;
        left: 5%;
        bottom: 0;
        border-bottom: 2px solid #067bae;
    }
    .pbmit-heading-subheading .pbmit-title:after{
        position: absolute;
        content: '';
        width: 80%;
        height: 2px;
        right: 10%;
        bottom: -5px;
        border-bottom: 2px solid #75b843;
    }*/
    .pbmit-heading-subheading.text-left{
        margin-bottom: 30px;
    }

/*----------------------------------------*/
/*  01 - Icon Box
/*----------------------------------------*/
/** Style 1 **/
.pbmit-ihbox-style-1 .pbmit-element-title{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
    margin-left: 10px; 
    color: var(--pbmit-white-color);  
}
.pbmit-ihbox-style-1 .pbmit-ihbox-icon-wrapper{
    font-size: 24px;
    line-height: 26px; 
    color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-1 .pbmit-heading-desc{
    margin-top: 10px;  
    color: var(--pbmit-white-color);
}
.pbmit-text-color-white .pbmit-ihbox-style-1 .pbmit-ihbox-icon-wrapper {
    color: var(--pbmit-white-color);
}
/** Style 2 **/
.pbmit-ihbox-style-2{
    position: relative;
    padding: 30px 30px 35px 35px;
    border-radius:4px;
    background-color: var(--pbmit-white-color);
    box-shadow:1px 1px 15px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645,0.045,0.355,1);
}
.pbmit-ihbox-style-2:hover{
    transform: translateY(-5px);
}
.pbmit-ihbox-style-2 .pbmit-ihbox-box-number{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 24px;
    color: rgb(216 215 211 / 40%);
    font-weight: 900 !important;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-contents h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-contents{
    padding-right: 45px;
    margin-top:45px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-icon-wrapper{
    font-size: 70px;
    line-height: 70px;
    color: #bec1cb;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-btn{
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.pbmit-ihbox-style-2 .pbmit-ihbox-btn a{
    font-size:0;
    display: block;
    width: 50px;
    height: 50px;
    border-radius:50%;
    background-color: var(--pbmit-global-color);
}
 .pbmit-ihbox-style-2 .pbmit-ihbox-btn a span:after{
    content: "+";
    position: absolute;
    font-size: 27px;
    left: 17px;
    top: 0px;
    color: var(--pbmit-white-color);
}
.benefits-section-home2 {
    position: relative;
}
/** Style 3 **/
.pbmit-ihbox-style-3 .pbmit-ihbox-contents h2{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 2px;
    color: #000;
    transition: 0.5s ease;
    font-weight: 700;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents a h2:hover{
    color: #75b843;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents b{
    color: #000;
    transition: 0.5s ease;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents b:hover{
    color: #75b843;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents a{
    color: #000;
    line-height: 26px;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents a:hover{
    color: #75b843;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-icon-wrapper {
    font-size: 18px;
    background: #75b843;
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
.pbmit-ihbox-style-3 .pbmit-ihbox-contents{
    padding-left: 15px;
    color: #000;
    font-size: 17px;
}
/** Style 4 **/
.pbmit-ihbox-style-4 .pbmit-ihbox-icon-wrapper{
    font-size: 70px;
    line-height: 70px;
    color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-4 .pbmit-ihbox-contents{
    margin-left:15px;
    margin-top: 10px;
}
.pbmit-ihbox-style-4 .pbmit-element-heading{
    font-size: 16px;
    line-height: 26px;
    color: #828690;
    margin-bottom: 0px;
    font-weight: normal;
}
.pbmit-ihbox-style-4 .pbmit-element-title{
    font-size: 20px;
    line-height: 30px;
    margin-bottom:0px;
}
/** Style 5 **/
.pbmit-ihbox-style-5 .pbmit-element-title{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
} 
.pbmit-ihbox-style-5 .pbmit-ihbox-icon-wrapper{
    font-size: 40px;
    line-height: 80px;
    color: var(--pbmit-white-color);
    width: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-5 .pbmit-ihbox-contents{
    margin-left: 25px;
}
/** Style 6 **/ 
.pbmit-ihbox-style-6 .pbmit-ihbox-icon .pbmit-ihbox-icon-type-image img{
    height: 80px;
    width: 80px;
    border-radius: 50%;
}
.pbmit-ihbox-style-6 .pbmit-ihbox-contents{
    margin-top: 20px;
    margin-left: 10px;
}
.pbmit-ihbox-style-6 .pbmit-element-title{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 800 !important;
    font-style: normal;
}
.pbmit-ihbox-style-6 .pbmit-heading-desc{
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/** Style 7 **/
.pbmit-ihbox-style-7 {
    text-align: center;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon .pbmit-ihbox-icon-type-image img{
/*    height: 240px;*/
/*    width: 240px;*/
    border-radius:20px;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon .pbmit-ihbox-icon-type-image{
/*    height: 270px;*/
/*    width: 270px;*/
    padding: 15px;
    padding-top: 15px;
    border: 1px dashed #75b84387;
    border-radius: 25px;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-icon{
    border-bottom: 8px solid #75b84387;
    border-radius: 30px;
    /* width: 270px; */
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.pbmit-ihbox-style-7 .pbmit-ihbox-contents{
    margin-top: 20px;
}
.pbmit-ihbox-style-7 .pbmit-element-title{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0px;
    color: #000;
    font-weight: 500;
}
.pbmit-ihbox-style-7 .pbmit-element-title a{
    color: #000;
}
.pbmit-ihbox-style-7 .pbmit-element-title a:hover{
    color: #75b843;
}
.pbmit-ihbox-style-7:hover .pbmit-ihbox-icon{
    border-bottom-color:#75b843;
}
/** Style 8 **/
.pbmit-ihbox-style-8 {    
    background-image: url(../images/bg/contact-box.png);
    position: relative;
    overflow: hidden;   
    height: 250px;
    width: 314px;   
    z-index: 2; 
}
 .pbmit-ihbox-style-8 .pbmit-ihbox-box {
    text-align: center;
    margin: 80px 40px 0px 0px;
} 
.pbmit-ihbox-style-8 .pbmit-ihbox-icon-wrapper{
    font-size: 60px;
    line-height: 60px;
    color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-8 .pbmit-element-heading{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0px;
    text-align: center;
    color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-8 .pbmit-element-title{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0px;
    color: var(--pbmit-white-color);
}
.pbmit-ihbox-style-8 .pbmit-ihbox-contents{    
    margin-top: 20px; 
}
/** Style 9 **/
.pbmit-miconheading-style-9{
    margin-bottom: 30px;
}
.pbmit-ihbox-style-9 .pbmit-element-title{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
} 
.pbmit-ihbox-style-9 .pbmit-ihbox-icon-wrapper{
    font-size: 40px;
    line-height: 80px;
    color: var(--pbmit-white-color);
    width: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
}
.pbmit-ihbox-style-9 .pbmit-ihbox-contents{
    margin-top: 25px;
}

/*----------------------------------------*/
/*  02 - Team Member
/*----------------------------------------*/
/** Style 1 **/
.pbmit-team-style-1{
    margin-bottom: 30px;
}
.pbmit-team-style-1 .pbmit-featured-wrapper img{
    border-radius: 8px 8px 0 0;
}
.pbmit-team-style-1 .pbminfotech-box-content {
    background: var(--pbmit-white-color);
    box-shadow: 9px 0px 30px 0px rgba(26, 47, 106, 0.09);
    text-align: center;
    padding-bottom: 35px;
    border-radius: 0 0 8px 8px;
}
.pbmit-team-style-1 .pbminfotech-box-team-position{
    font-size: 12px;
    font-weight: 700;
    color: var(--pbmit-white-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    background: #0c121d;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
    background-color: var(--pbmit-global-color);
}
.pbmit-team-style-1 .pbminfotech-box-content .pbmit-team-title{
    font-size: 22px;
    line-height: 30px;
    margin-top: 18px;
    margin-bottom: 20px;
}
.pbmit-team-social-links li {
    display: inline-block;
    margin-right: 10px;
}
.pbmit-team-style-1 .pbmit-team-social-links li a {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    color: #746e70;
    display: block;
    background-color: #f6f2f1;
    border-radius: 50%;
}
.pbmit-team-style-1 .pbmit-team-social-links li a:hover{
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
/** Style 2 **/
.pbmit-team-style-2{
    margin-bottom: 30px;
}
.pbmit-team-style-2 .pbminfotech-team-image-box{
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.pbmit-team-style-2 .pbminfotech-team-image-box img{
    width: 100%;
}
.pbmit-team-style-2 .pbminfotech-box-content{
    text-align: center;
}
.pbmit-team-style-2 .pbminfotech-box-content .pbmit-team-title{
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 26px;
}
.pbmit-team-style-2 .pbminfotech-box-content .pbminfotech-box-team-position{
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ea1ac;
}
.pbmit-team-style-2 .pbminfotech-team-image-box:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: .5s;
    opacity: .57;
}
.pbmit-team-style-2:hover .pbminfotech-team-image-box:before{
    width: 100%;
}
.pbmit-team-style-2 .pbminfotech-box-content .pbminfotech-box-team-position{
    color: var(--pbmit-global-color);
}
.pbmit-team-style-2  .pbminfotech-box-social-links ul {
    position: absolute;
    right: -65px;
    top: 0;
    height: 100%;
    width: 65px;
    text-align: center;
    box-shadow: 0px 5px 12.09px 0.91px rgba(133, 127, 151, 0.11);
    padding: 30px 0;
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--pbmit-global-color);
}
.pbmit-team-style-2:hover  .pbminfotech-box-social-links ul{
    right: 0;
}
.pbmit-team-style-2  .pbmit-team-social-links li {
    display: inline-block;
    margin-right: 0px;
    margin-top: 14px;
}
.pbmit-team-style-2 .pbminfotech-box-social-links a{
    font-size: 18px;
    color: var(--pbmit-white-color);
}

/*----------------------------------------*/
/*  03 - Counter
/*----------------------------------------*/
div#clock span:first-child {
    display: block;
}
/** Style 1 **/
.pbminfotech-ele-fid-style-1{
    background-color: #fff;
    border-radius: 6px;
    padding: 25px 20px 10px 20px;
    box-shadow: 9px 0px 30px 0px rgba(26, 47, 106, 0.09);
}
.pbminfotech-ele-fid-style-1 .pbmit-circle-overlay{
    margin-left: 20px;
    margin-top: 10px;
}
.pbminfotech-ele-fid-style-1 .pbmit-circle-number {
    font-size: 24px;
    line-height: 34px;
    font-weight: 900 !important;
    color: #192136;
    font-style: normal;
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-title {
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 24px;
    margin-bottom: 0;
    color: #9ea1ac;
}
.pbminfotech-ele-fid-style-1 .pbmit-fid-sub{
    font-size: 30px;
    line-height: 30px;
    font-weight: normal;
    margin-left: 5px;
    position: absolute;
    top: 15px;
}
.pbminfotech-ele-fid-style-1 sup{
    margin-left: 2px;
    line-height: 24px;
    font-size: 14px;
    top: -8px;
    font-weight: 900 !important;
}
/** Style 3 **/
.pbminfotech-ele-fid-style-3{
    position: relative;
    text-align: left;
}
.pbminfotech-ele-fid-style-3 .pbmit-sbox-icon-wrapper{
    font-size: 32px;
    color: #75b843;
    float: left;
    width: 80px;
}
.pbminfotech-ele-fid-style-3 .pbmit-fid-inner{
    font-size: 42px;
    color: #323232;
    font-weight: 800;
    line-height: 32px;
}
.pbminfotech-ele-fid-style-3 .pbmit-fid-inner sup{
    top: 0px;
    font-size: 40px;
    left: -3px;
}
.pbminfotech-ele-fid-style-3 .pbmit-fid-inner sup.pos{
    top: -4px;
}
.pbminfotech-ele-fid-style-3 .pbmit-fid-title{
    color: #323232;
    font-size: 20px;
}
.pbmit-fid-sep .elementor-container .pbminfotech-ele-fid:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 25%;
    height: 80px;
    width: 1px;
    display: block;
    background-color: rgb(255 255 255 / 0.20);
    -webkit-transform: translateX(-0%) translateY(-25%);
    -khtml-transform: translateX(-0%) translateY(-25%);
    -moz-transform: translateX(-0%) translateY(-25%);
    -ms-transform: translateX(-0%) translateY(-25%);
    -o-transform: translateX(-0%) translateY(-25%);
    transform: translateX(-0%) translateY(-25%);
}
.pbmit-fid-sep .elementor-container .elementor-element.elementor-column:last-child .pbminfotech-ele-fid:after{
    display: none;
}
/** Style 4 **/
.about-section-home1 .about-img-section{
    position: relative;
/*    width: 400px;*/
}
.about-section-home1 .about-left-section1,.about-section-home1 .about-left-section{
    position: relative;
}
.pbminfotech-ele-fid-style-4 {
    text-align: center;
    color: #fff;
    /* padding: 7px 10px; */
    border-radius: 6px;
    /* background-color: #75b843; */
/*    width: 36%;*/
    position: absolute;
    /* bottom: -25px; */
    border-radius: 0 0 20px 20px;
    top: 0%;
    right: 0;
    /* padding: 20px 10px; */
    transition: 0.5s ease;
}
.pbminfotech-ele-fid-style-41{
/*    top: 5%;*/
}
/*.pbminfotech-ele-fid-style-4:hover{
    background: #067bae;
}*/
.pbminfotech-ele-fid-style-4 span a{
    font-size: 20px;
    color: #fff;
}
.pbminfotech-ele-fid-style-4 .pbmit-sbox-icon-wrapper{
    font-size: 70px;
    line-height: 70px;;
}
.pbminfotech-ele-fid-style-4 .pbmit-fid-inner{
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 0;
    position: relative;
    color: #fff;
    font-weight: 700;
    display: inline-block;
}
.pbminfotech-ele-fid-style-4 .pbmit-fid-title {  
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}
/** Style 5 **/
.pbminfotech-ele-fid-style-5 {
    background: #fff; 
    border-radius: 6px;
    padding-bottom: 20px;
    overflow: hidden;
    margin-bottom: 0px;
}
.pbminfotech-ele-fid-style-5 .pbmit-sbox-icon-wrapper{
    font-size: 50px;
    line-height: 72px;
    position: relative;   
    min-width: 85px;
    text-align: center;
}
.pbminfotech-ele-fid-style-5 .pbmit-sbox-icon-wrapper i{
    color: #fff;
    position: relative;
    z-index: 9;
}
.pbminfotech-ele-fid-style-5 .pbmit-sbox-icon-wrapper:after{
    content: ' ';
    width: 135px;
    height: 135px;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: 0;
    background-color: #ee344e;
}
.pbminfotech-ele-fid-style-5 .pbmit-fid-inner{
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
    position: relative; 
}
.pbminfotech-ele-fid-style-5 .pbmit-fid-title {  
    font-size: 14px;
    line-height: 16px;
}
.pbminfotech-ele-fid-style-5 .pbmit-fld-content-wrap{
    padding-top: 25px;
    padding-left: 15px;
    padding-right: 20px;
}

/*----------------------------------------*/
/*  04 - Service
/*----------------------------------------*/
/** Style 1 **/

.service-section-home2 .pbmit-title{
/*    color: #fff;*/
/*    font-weight: 700;*/
}
.service-section-home2 .pbmit-subtitle{
/*    color: #fff;*/
}
.pbmit-service-style-1 .pbminfotech-post-item{
    transition: all 0.5s cubic-bezier(0.645,0.045,0.355,1);
    margin-bottom: 30px;
}
.pbmit-service-style-1:hover .pbminfotech-post-item {
/*    box-shadow: 1px 1px 5px #a4a4a4;*/
}
.pbmit-service-style-1:hover .pbmit-service-title a{
    color: #75b843;
}
.pbmit-service-style-1:hover .pbmit-service-btn{
    background: #067bae;
}
.pbmit-service-style-1:hover .pbmit-service-btn i{
    /*color: #cc6930;
    background: #ffffffa1;*/
}
.pbmit-service-style-1 .pbmit-featured-wrapper{
    overflow: hidden;
    border-radius:10px;
    border: 1px dashed #323232;
    width: 85%;
    border-radius: 50%;
    margin: 0 auto;
    padding: 5px;
}
.pbmit-service-style-1:hover .pbmit-featured-wrapper{
    border: 2px solid #75b843;
}
.pbmit-service-style-1 .pbmit-featured-wrapper img {
    transition: 0.5s ease;
    border-radius: 50%;
}
.pbmit-service-style-1:hover .pbmit-featured-wrapper img{
    transform: scale(1.1);
}
.pbmit-service-style-1 .pbminfotech-box-content{
    position: relative;
    padding: 0 0 10px 0;
    padding-top: 15px;
}
.pbmit-service-style-1 .pbmit-service-icon-wrapper{
    position: absolute;
    right: 20px;
    top: -40px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 36px;
    text-align: center;
    color: #fff;
    border-radius: 50%;     
    transition: all .25s ease-in-out;
    box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.08);
    background-color: #ee344e;
}
.pbmit-service-style-1:hover .pbmit-service-icon-wrapper{
    background-color: #fff;
}
.pbmit-service-style-1 .pbmit-service-icon-wrapper img {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
}
.pbmit-service-style-1 .pbminfotech-box-content .pbmit-service-cat{
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pbmit-service-style-1 .pbminfotech-box-content .pbmit-service-cat a{
    color: #ee344e !important;
}
.pbmit-service-style-1 .pbmit-service-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    color: #323232;
    margin-bottom: 0;
    transition: 0.5s ease;
}
.pbmit-service-style-1:hover .pbmit-service-title{
    color: #75b843;
}
.pbmit-service-style-1 .pbmit-service-content p{
    margin-bottom: 20px;
}
.pbmit-service-style-1:hover .pbmit-service-icon-wrapper{
    color: #ee344e;
}
.pbmit-service-style-1 .pbmit-service-btn i{
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 2px;
    right: 2px;
    color: #fff;
    width: 21px;
    height: 21px;
    text-align: center;
    border-radius: 50%;
    background: #ffffff5c;
}
.pbmit-service-style-1 .pbmit-service-btn a{
    position: relative;
    display: inline-block;
    padding-right: 30px;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    text-transform: none;
    color: #fff;
}
/** Style 2 **/
.pbmit-service-style-2{
    margin-bottom: 30px;
}
.pbmit-service-style-2 .pbmit-featured-wrapper img {
    border-radius:8px;
}
.pbmit-service-style-2 .pbminfotech-box-content{
    position: relative;
    text-align: left;
    padding-top: 25px;
}
.pbmit-service-style-2 .pbmit-service-icon-wrapper{
    position: absolute;
    right: 20px;
    top: -50%;
    height: 80px;
    width: 80px;
    font-size: 35px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.08);
    transition: all .25s ease-in-out;
    background-color: #ee344e;
}
.pbmit-service-style-2 .pbminfotech-box-content .pbmit-service-cat a{
    color: #ee344e;
}
.pbmit-service-style-2:hover .pbmit-service-icon-wrapper{
    background-color: #fff;
    box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.1);
    color: #ee344e;
}
.pbmit-service-style-2 .pbmit-service-icon-wrapper img {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
}
.pbmit-service-style-2 .pbminfotech-box-content .pbmit-service-cat{
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pbmit-service-style-2 .pbmit-service-title {
    font-size: 24px;
    line-height: 30px;
}
.pbmit-service-style-2 .pbmit-service-content,
.pbmit-service-style-2 .pbmit-service-btn{
    display: none;
}
/** Style 3 **/
.pbmit-service-style-3{
    margin-bottom: 30px;
}
.pbmit-service-style-3 .pbminfotech-post-item{
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
.pbmit-service-style-3 .pbminfotech-box-content{
    padding: 35px 30px;     
    padding-bottom: 30px;
    transition: all .25s ease-in-out;
}
.pbmit-service-style-3 .pbmit-service-icon-wrapper{
    position: absolute;
    font-size: 70px;
    line-height: 70px;
    z-index: 1;
    bottom: 15px;
    right: 15px;
    opacity: 0.1;
}
.pbmit-service-style-3:hover .pbmit-service-icon-wrapper{
    color:#fff;
}
.pbmit-service-style-3 .pbmit-service-icon-wrapper img {
    width: 70px;
    height: 70px;
}
.pbmit-service-style-3 .pbminfotech-box-content-inner{
    margin-bottom: 50px;
}
.pbmit-service-style-3 .pbmit-service-cat{
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;   
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pbmit-service-style-3 .pbmit-service-title{
    font-size: 24px;
    line-height: 30px;
}
.pbmit-service-btn{
    position: absolute;
    bottom: -15px;
    left: -10px;
    right: -10px;
    background: #75b843;
    padding: 6px 10px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    transition: 0.5s ease;
    display: none;
}
.pbmit-service-style-3 .pbmit-service-btn {
    position: absolute;
    bottom: 35px;    
}
.pbmit-service-style-3 .pbmit-service-btn a{    
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 0;
    line-height: 30px !important;
    display: inline-block;
    background-color: #ee344e;
}
.pbmit-service-style-3 .pbmit-service-btn-a span:after{
    font-size: 20px!important;
    color: #fff;
}
.pbmit-service-style-3 .pbmit-service-btn-a span:after{
    content: "\e814";
    font-family: 'pbminfotech-base-icons';
    line-height: 30px;
    font-weight: 400;
    position: absolute;
    right: 9px;
    top: 4px;
}
.pbmit-service-style-3 .pbmit-service-cat a{
    color: #ee344e;
}
.pbmit-service-style-3:hover .pbmit-service-title a,
.pbmit-service-style-3:hover .pbmit-service-cat a{
    color: #fff;
}
.pbmit-service-style-3:hover .pbmit-service-btn-a{
    background: #fff !important;
}
.pbmit-service-style-3:hover .pbminfotech-box-content{
    background-color: #ee344e;
}
.pbmit-service-style-3:hover .pbmit-service-btn-a span:after{
    color: #ee344e;
}

/*----------------------------------------*/
/*  05 - Projects
/*----------------------------------------*/
.mfp-title{
    display: none;
}
/** Style 1 **/
.pbmit-portfolio-style-1{
 margin: 12px;
}
.pbmit-portfolio-style-1 .pbminfotech-post-content{
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.pbmit-portfolio-style-1 img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all ease 400ms;
}
.pbmit-portfolio-style-1:hover img {
    transform: scale(1.1);
}
.pbmit-portfolio-style-1 .pbminfotech-box-content{ 
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    transition: all ease 900ms;
}
.pbmit-portfolio-style-1 .pbminfotech-box-content .pbmit-portfolio-title{
    margin-bottom: 0;
    font-size: 24px;
}
.pbmit-portfolio-style-1 .pbminfotech-box-content .pbmit-port-cat a{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.pbmit-portfolio-style-1 .pbminfotech-box-content .pbmit-port-cat a,
.pbmit-portfolio-style-1 .pbminfotech-box-content .pbmit-portfolio-title a{
    color: #fff;
}
.pbmit-portfolio-style-1:hover .pbminfotech-box-content {
    visibility: visible;
    opacity: 1;
    left: 20px;
}
.pbmit-portfolio-style-1 .pbminfotech-post-content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #067bae6e;
    overflow: hidden;
    width: 0;
    height: 100%;
    content: '';
    transition: all 0.4s ease-out;
}
.pbmit-portfolio-style-1 .pbminfotech-post-content:hover:after {
    width: 100%;
}
.pbmit-portfolio-style-1 .pbminfotech-icon-box a{
    color: #fff;
}
.pbmit-portfolio-style-1 .pbminfotech-icon-box {
    width: 37px;
    height: 37px;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    line-height: 30px;
    line-height: .8;
    color: #fff;
    display: inline-block;
    text-align: center;
    z-index: 2;
/*    padding: 11px 17px;*/
    visibility: hidden;
    opacity: 0;
    transition: all ease 800ms;
    -moz-transition: all ease 800ms;
    -webkit-transition: all ease 800ms;
}
.pbmit-portfolio-style-1:hover .pbminfotech-icon-box {
    visibility: visible;
    opacity: 1;
    right: 45%;
    top: 45%;
}
.pbmit-portfolio-style-1.col-md-4 .pbminfotech-box-content{
    left: -20px;
    bottom: 20px;
}
.pbmit-portfolio-style-1.col-md-4:hover .pbminfotech-box-content {
    left: 20px;
}
/** Style 2 **/
.pbmit-portfolio-style-2{
    position: relative;
    margin-bottom: 30px;
}
.pbmit-portfolio-style-2 .pbmit-image-wrapper {
    padding-bottom: 60px;
}
.pbmit-portfolio-style-2 .pbmit-featured-wrapper img{
    border-radius: 6px;
}
.pbmit-portfolio-style-2 .pbmit-link-icon{
    position: absolute;
}
.pbmit-portfolio-style-2 .pbmit-content-wrapper {
    position: absolute;
    width: calc(100% - 30px);
    bottom: 0;
    background: #fff;
    border-radius: 6px;
    margin: 0 15px;
    padding: 21px 30px 15px 30px;    
    box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.03);
}
.pbmit-portfolio-style-2 h3.pbmit-portfolio-title {
    font-weight: 800;
    font-size: 22px;
}
.pbmit-portfolio-style-2 .pbmit-port-cat {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.pbmit-portfolio-style-2 .pbmit-port-cat a {
    color: #9ea1ac;
}
.pbmit-portfolio-style-2 .pbmit-link-icon {
    position: absolute;
    top: -22px;
    right: 10px;
    font-size: 23px;
    background-color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}
.pbmit-portfolio-style-2 .pbmit-link-icon  a{
    color: #fff;
}
.pbmit-portfolio-style-2 .pbmit-content-wrapper,
.pbmit-portfolio-style-2 .pbmit-link-icon{
    transition: all .25s ease-in-out;
}
.pbmit-portfolio-style-2:hover .pbmit-content-wrapper{
    border-color: transparent;
    background-color: #ee344e;
}
.pbmit-portfolio-style-2:hover h3.pbmit-portfolio-title a,
.pbmit-portfolio-style-2 h3.pbmit-portfolio-title a:hover,
.pbmit-portfolio-style-2:hover .pbmit-port-cat a{
    color: #fff;
}
.pbmit-portfolio-style-2:hover .pbmit-link-icon{
    background-color: #fff;
}
.pbmit-portfolio-style-2 .pbmit-link-icon{
    background-color: #ee344e;
}
.pbmit-portfolio-style-2:hover .pbmit-link-icon  a{
    color: #000;
}

/*----------------------------------------*/
/*  06 - Blog
/*----------------------------------------*/
/** Style 1 **/
.pbmit-blog-style-1{
    margin-bottom: 30px;
}
.pbmit-blog-style-1 .post-item{
    position: relative;
    background: var(--pbmit-white-color);
    padding: 20px 20px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.pbmit-blog-style-1:hover .post-item{
    transform: translateY(-5px);
}
.pbmit-blog-style-1 .pbmit-featured-wrapper img{
    border-radius:10px;
    position:relative;
}
.pbmit-blog-style-1 .pbmit-meta-date-wrapper {
    position: absolute;
    top: -35px;
    right: 20px;
    height: 65px;
    width: 65px;
    font-size: 13px; 
    font-weight: 700;
    color: var(--pbmit-white-color);
    text-transform: uppercase;
    text-align: center;
    border-radius: 6px;
    padding: 7px 10px 10px 10px;
    background-color: var(--pbmit-global-color);
}
.pbmit-blog-style-1 .pbmit-meta-date-wrapper .pbmit-meta-month{
    letter-spacing: 2px;
}
.pbmit-blog-style-1 .pbmit-meta-date-wrapper .pbmit-meta-date {
    font-size: 26px;
    line-height: 30px;
    font-weight: 800;
}
.pbmit-blog-style-1 .pbminfotech-box-content{
    padding: 30px 0px;
    padding-bottom: 10px;
    position: relative;
}
.pbmit-blog-style-1 .pbmit-meta-category i {
    display:none;
}
.pbmit-blog-style-1 .pbminfotech-box-content .pbmit-post-title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px; 
}
.pbmit-blog-style-1 .pbmit-meta-category {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}
.pbmit-blog-style-1 .pbmit-meta-category a {
    color: #9ea1ac;
}
.pbmit-blog-style-1 .pbmit-read-more-link a span{
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    text-transform: none;
}
.pbmit-blog-style-1 .pbmit-read-more-link a span:after{
    content: "\e814";
    font-family: 'pbminfotech-base-icons';
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: absolute;
    top: 1px!important;
    left: 2px;
    color: var(--pbmit-white-color);
    width: 21px;
    height: 21px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
}
/** Style 2 **/
.pbmit-blog-style-2{
    margin-bottom: 30px;
}
.pbmit-blog-style-2 .pbmit-featured-wrapper img{
    border-radius:8px;
}
.pbmit-blog-style-2 .pbmit-meta-date{
    position: absolute;
    top: 0;   
    left: 50%;
    transform: translateX(-50%);   
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 24px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 0px 0px 6px 6px;
    background-color: #ee344e;
}
.pbmit-blog-style-2 .pbminfotech-box-content {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 25px 20px 30px;
    margin-left: 10px;
    margin-right: 10px;
    top: -14px;
}
.pbmit-blog-style-2 .pbmit-meta-container .pbmit-meta-line i{
    font-size: 15px;
}
.pbmit-blog-style-2 .pbmit-meta-container .pbmit-meta-line {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;;
    display: inline-block;
    margin-left: 10px;
    letter-spacing: 1px;
    color: #ee344e;
}
.pbmit-blog-style-2 .pbminfotech-box-content .pbmit-post-title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    margin-top: 15px;
}
.pbmit-blog-style-2 .pbminfotech-box-desc{
    padding: 0 25px;
}
.pbmit-blog-style-2 .pbminfotech-box-desc-text{
    margin-bottom: 22px;
}
.pbmit-blog-style-2 .pbmit-meta-container .pbmit-meta-line a{
    color: #ee344e; 
}
.pbmit-blog-style-2 .pbmit-read-more-link a span:after{
    content: "\e814";
    font-family: 'pbminfotech-base-icons';
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: absolute;
    top: 1px!important;
    left: 2px;
    color: #fff;
    width: 21px;
    height: 21px;
    text-align: center;
    background: #000;
    border-radius: 50%;
    background-color: #ee344e;
}
.pbmit-blog-style-2 .pbmit-read-more-link a span{
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    text-transform: none;
}
.pbmit-featured-container {
    position: relative;
}

/*----------------------------------------*/
/*  07 - Testimonial
/*----------------------------------------*/
/** Style 1 **/
.pbmit-testimonial-style-1{
    position: relative;
}
.pbmit-testimonial-style-1 .pbminfotech-box-content{
    background: #fff;
    padding: 25px;
    border: 1px solid #067bae3b;
    border-radius: 25px; 
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    margin: 10px 0;
} 
.pbmit-testimonial-style-1 .pbminfotech-box-author {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;    
/*    margin-top: 15px;*/
/*    margin-left: 25px;*/
}
.pbmit-testimonial-style-1 .pbminfotech-box-title{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    letter-spacing: 0px;
    color: #067bae;
    text-transform: capitalize;
    font-weight: 600;
}
.pbmit-testimonial-style-1 ul li{
    display: inline-block;
}
.pbmit-testimonial-style-1 ul li i{
    color: #e3b808;
    font-size: 14px;
    margin: 0 -1px;
    margin-top: 2px;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text p{
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 28px;
}
.pbmit-testimonial-style-1 .pbminfotech-testimonial-text i{
    font-size: 40px;
    color: #75b843e0;
}
.pbmit-testimonial-style-1 .pbminfotech-box-desc{
    padding-bottom: 10px;
/*    margin-top: 28px;*/
    padding-top: 5px;
/*    border-bottom: 1px solid rgb(0 0 0 / 0.1);*/
}
.pbmit-testimonial-style-1 blockquote{
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
    background: transparent;
    text-align: justify;
    color: #000;
}
.pbmit-testimonial-style-1 img, .pbmit-testimonial-style-1 .pbminfotech-box-img img{
    border-radius: 50%;
    height: 80px;
    width: 80px;
}
/*.pbmit-testimonial-style-1:after {
    position: absolute;
    content: '“';
    font-size:150px;
    line-height: 200px;
    top:25px;
    color: #eff0f1;
    right: 50px;
    font-weight: 700;
}*/
.pbmit-testimonial-style-1 .pbminfotech-box-author .pbminfotech-testimonial-detail{
    color: #ee344e;
}
/** Style 2 **/
.pbmit-testimonial-style-2 .pbminfotech-box-content{
    position: relative;
    padding: 40px 40px 50px;
    color: #fff;
    border-radius: 8px;
    background-color: #192136;
}
.pbmit-testimonial-style-2 .pbminfotech-box-img{
    position: relative;
}
.pbmit-testimonial-style-2 .pbminfotech-box-img:after {
    position: absolute;
    content: '“';
    top: -20px;
    left: -20px;
    width: 48px;
    height: 48px;
    font-size: 60px;
    line-height: 80px;
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    background-color: #ee344e;
}
.pbmit-testimonial-style-2 .pbminfotech-box-img .pbmit-featured-wrapper img{
    border-radius: 10px;
    height: 130px;
    width: 130px;
}
.pbmit-testimonial-style-2 .pbminfotech-box-star-ratings{
    text-align: center;
    margin-top:10px;
    margin-bottom: 10px;
}
.pbmit-testimonial-style-2 .pbminfotech-box-star-ratings i{
    font-size: 15px;
}
.pbmit-testimonial-style-2 .pbminfotech-box-star-ratings i:before{
    margin-left: 2px;
    margin-right: 2px;
}
.pbmit-testimonial-style-2 .pbmit-base-icon-star{
    color: #fff;
}
.pbmit-testimonial-style-2 .pbmit-base-icon-star.pbmit-active{
    color: #fcc300;
}
.pbmit-testimonial-style-2 .pbminfotech-box-title{
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    color: #fff;
}
.pbmit-testimonial-style-2 .pbminfotech-testimonial-detail{
    font-size: 14px;
    font-weight: 800;
    line-height: normal; 
    padding-left: 20px;
    position: relative;
}
.pbmit-testimonial-style-2 .pbminfotech-box-author .pbminfotech-testimonial-detail{
    color: #ee344e;
}
.pbmit-testimonial-style-2 .pbminfotech-testimonial-detail:before{
    content: "";
    position: absolute;
    width: 5px;
    height: 1px;
    top: 9px;
    left: 10px;
    background-color: red;
}
.pbmit-testimonial-style-2 .pbminfotech-box-desc{
    padding-bottom: 15px;
    padding-top: 0;
    width: 70%;
    margin-left: 35px;   
}
.pbmit-testimonial-style-2 blockquote{
    font-size: 18px;
    line-height: 26px;
    font-style: italic !important;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    font-weight: 300;
}
.pbmit-testimonial-style-2 .pbminfotech-box-author{
    margin-left: 0;
    text-align: left;
}

/*----------------------------------------*/
/*  08 - Client
/*----------------------------------------*/

/** Client Style 1 **/
.pbmit-client-style-1{
    text-align: center;
}
.pbmit-client-wrapper {
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    height: -webkit-max-content;
    display: inline-block;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}
.pbmit-client-style-1 .pbmit-client-with-hover-img .pbmit-featured-wrapper,
.pbmit-client-style-1 .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 .pbminfotech-hide, .pbmit-hide{
    display: none;
}
.pbmit-client-style-1 .pbmit-client-with-hover-img .pbmit-client-hover-img  {
    transform: translateY(-100%);
}
.pbmit-client-style-1 .pbmit-client-with-hover-img:hover .pbmit-client-hover-img  { 
    visibility: visible;
    transform: translateY(0%);
}
.pbmit-client-style-1 .pbmit-client-with-hover-img:hover .pbmit-featured-wrapper{
    transform: translateY(100%);
} 

/*----------------------------------------*/
/*  09 - Header
/*----------------------------------------*/
.site-title {
    margin: 0;
    padding: 0;
    display: table;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 105px;
}
.site-title a {
    display: table-cell;
    vertical-align: middle;
}
.main-menu ul > li.dropdown > a:after{
    display: none;
}
/** Header Style 1 **/
.header-style-1 .navbar-light {
    padding-left: 10px;
}
.header-style-1 .container{
    max-width: none;
    padding: 0;
}
.header-style-1 .site-branding {
    padding-left: 50px;
    padding-right: 55px;
    border-right: 1px solid #eee;
}
.header-style-1 .site-title {
    height: 164px;
}
.header-style-1 .pre-header {
    height: 64px;
    line-height: 64px;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-weight: 600;
    font-size: 14px;
    color: var(--pbmit-secondary-color);
}
.header-style-1 .pbmit-pre-header-left .pbmit-label {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 6px;
}
.header-style-1 .pbmit-pre-header-left .pbmit-label i{
    padding-left: 5px;
    color: #ee344e;
}
.header-style-1 .pbmit-pre-header-left span{
    color: var(--pbmit-blackish-color);
}
.header-style-1 .pbmit-contact-info li {
    display: inline-block;
    padding: 0 15px;
    vertical-align: top;
    position: relative;
}
.header-style-1 .pre-header .pbmit-contact-info > li:last-child:after{
    display: none;
}
.header-style-1 .pre-header .pbmit-contact-info > li:after {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    content: '';
    height: 20px;
    width: 1px;
    background-color: #b6bdc4;
}
.header-style-1 .pbmit-contact-info li i {
    margin-right: 5px;
}
.header-style-1 .pre-header .pbmit-social-links li {
    padding: 0 5px;
}
.header-style-1 .pbmit-contact-info li i {
    font-size: 16px;
}
.header-style-1 .pbmit-contact-info li i.pbmit-base-icon-phone {
    font-size: 18px;
}
.header-style-1 .pbmit-header-button a{
    padding: 18px 35px;
    text-transform: uppercase;
}
.header-style-1 .pbmit-right-box {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.header-style-1 .pbmit-header-search-btn a {
    font-size: 22px;
    margin-right: 20px;
}
.header-style-1 .site-navigation ul.navigation > li > a{
    height: 100px;
    line-height: 100px;
}
.site-header-menu.sticky-header .logo-img {
    max-height: 55px;
}
.header-style-1 .sticky-header .site-title {
    line-height: 90px ;
    height: 90px;
}
.header-style-1 .sticky-header .pre-header{
    display: none;
}
.header-style-1 .site-header-menu .logo-img.stickylogo, 
.site-header-menu.sticky-header .logo-img {
    max-height: 55px;
}
/** Header style 2 **/
.header-style-2 .pbmit-header-overlay {
    position: relative;
    z-index: 9;
    width: 100%;
}
.header-style-2 .pbmit-header-overlay .site-header-menu{
    background: #323232;
    line-height: 42px;
}
.header-style-2 .pre-header {
/*    height: 55px;*/
    line-height: 35px;
    opacity: 1;
    font-size: 15px;
    font-weight: 600;
/*    padding: 0 80px;*/
    visibility: visible;
    border-bottom: none;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: var(--pbmit-blackish-color);
/*    background-color: #095d9c;*/
}
.header-style-2 .pbmit-pre-header-left .pbmit-label {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 15px;
    
}
.header-style-2 .pbmit-pre-header-left .pbmit-label i {
    padding-left: 5px;
    color: #ee344e;
}
.header-style-2 .pbmit-contact-info li {
    display: inline-block;
    padding: 0 15px;
    vertical-align: top;
    font-weight: 400;
    color: #fff;
}
.header-style-2 .pbmit-contact-info li i {
    font-size: 16px;
    margin-right: 5px;
}
.header-style-2  .pbmit-contact-info > li{
    position: relative;
}
.header-style-2  .pbmit-contact-info > li:after {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    content: '';
    height: 20px;
    width: 1px;
    background-color: #b6bdc4;
}
.header-style-2 .pbmit-contact-info li:last-child{
    padding-right: 0;
}
.header-style-2 .pbmit-contact-info li:last-child:after{
    display: none;
}
.header-style-2 .pbmit-social-links li {
    padding: 0 5px;
}
.header-style-2 .site-branding {
    /*height: calc(80px + 20px);
    padding-left: 20px;
    margin-right: 90px;*/
    padding: 10px 0;
/*    text-align: center;*/
}
.header-style-2 .pbmit-logo-menuarea{
    display: flex!important;
}
.header-style-2 .pbmit-header-top-area {
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
    height: 50px;
    line-height: 50px;
}
.header-style-2 .site-navigation ul.navigation > li > a{
    color: #fff;
}
.header-style-2 .main-menu ul > li.dropdown > a:after{
    color: var(--pbmit-white-color);
}
.header-style-2 .pbmit-header-search-btn a{
    color: var(--pbmit-link-color-normal);
}
.header-style-2 .pbmit-right-box{
    display: flex;
    align-items: center;
}
.header-style-2 .pbmit-social-links a {
position: relative;
    display: inline-block;
    width: 29px;
    height: 29px;
    line-height: 29px;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}
.header-style-2 .pbmit-header-search-btn {
    margin-right: 20px;
    font-size: 20px;
    font-weight: 700;
}
.header-style-2 .pbmit-social-links a:hover {
    background: var(--pbmit-white-color);
    color:#095d9c !important;
}
.header-style-2 .pbmit-header-button a:hover {
    background-color:var(--pbmit-global-color);
}
.header-style-2 .pbmit-header-button a:hover span{
    color: var(--pbmit-blackish-color);
}
.header-style-2 .pbmit-header-button a:hover span:after {
    color: var(--pbmit-blackish-color);
}
.header-style-2 .sticky-header {
    background-color: var(--pbmit-white-color);
}
.header-style-2 .sticky-header .site-branding {
    height:50px;
    padding-left: 0;
    padding-right: 0;
    background-color: none;
    margin-top:0;
}
.header-style-2 .sticky-header .site-title{
    padding-top: 0;
}
.header-style-2 .site-header-menu.sticky-header .logo-img {
    max-height: 45px;
}
.header-style-2 .site-navigation ul.navigation > li > a{
/*    font-weight: 500;*/
}
.header-style-2 .sticky-header .site-navigation ul.navigation > li > a {
    color: #fff;
}
.header-style-2 .sticky-header .main-menu ul > li.dropdown > a:after {
    color: var(--pbmit-blackish-color);
}
.header-style-2 .sticky-header .pbmit-header-search-btn a {
    color:  var(--pbmit-blackish-color);
}
.header-style-2 .sticky-header .pbmit-header-button a:hover {
    background-color: var(--pbmit-global-color);
}
.header-style-2 .sticky-header .pbmit-header-button a:hover span {
    color:var(--pbmit-white-color);
}
.header-style-2 .sticky-header .pbmit-header-button a:hover span:after {
    color: var(--pbmit-white-color);
}
.header-style-2 .pbmit-social-links .pbmit-social-li:last-child {
    margin-right: 0;
}
/** Header style 3 **/
.header-style-3 .pbmit-header-overlay{
    position: absolute;
    width: 100%;
    z-index: 2;
}
.header-style-3 .pbmit-pre-header-left .pbmit-label{
    font-weight: 700;
    text-transform: capitalize;
    color: var(--pbmit-white-color);
}
.header-style-3 .pre-header{
    color: var(--pbmit-white-color);
    height: 60px;
    line-height: 60px;
    border-bottom: none;
    font-weight: 600;
    font-size: 14px;
}
.header-style-3 .pbmit-contact-info li{
    padding: 0 5px;
    display: inline-block;
}
.header-style-3 .pbmit-contact-info li i{
    color: var(--pbmit-white-color);
    transition: all .25s ease-in-out;
    font-size: 16px;
}
.header-style-3 .pbmit-contact-info li i:hover{
    color: var(--pbmit-global-color);
}
.header-style-3 .pre-header .pbmit-contact-info > li:after{
    display: none;
}
.header-style-3 .site-title{
    height: 80px;
}
.header-style-3 .site-navigation ul.navigation > li > a{
    line-height: 80px;
    height: 80px;
}
.header-style-3 .site-header-menu-inner {
    background-color: var(--pbmit-white-color);
    border-radius: 5px;
}
.header-style-3 .site-branding{
    margin-left: 25px;
}
.header-style-3 .pbmit-pre-header-left .pbmit-label i{
    color: var(--pbmit-global-color);
}
.header-style-3 .pbmit-right-box{
    display: flex;
    align-items: center;
    margin-right:-4px;
}
.header-style-3 .pbmit-header-search-btn a{
    font-size: 18px;
}
.header-style-3 .pbmit-header-search-btn{
    margin-right: 40px;
}
.header-style-3 .pbmit-header-button a{
    padding: 34px 45px;
    text-transform: capitalize;
    background-color: var(--pbmit-global-color);
    font-weight: 800;
    font-size: 14px;
    height: 80px;
    letter-spacing: .5px;
    border-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.header-style-3 .pbmit-header-button:after{
    content:  '\e83e';
    font-family: "pbminfotech-base-icons";
    font-size: 15px;
    line-height: 35px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    background-color: var(--pbmit-secondary-color);
    color: var(--pbmit-white-color);
    font-weight: normal;
    text-align: center;
    top: 28%;
    box-shadow: 0px 0px 0px 5px rgb(255 255 255);
}
.header-style-3 .pbmit-header-button{
    position: relative;
}
.header-style-3 .site-navigation ul.navigation > li > a:hover{
    color: var(--pbmit-global-color);
}
.header-style-3 .sticky-header .pre-header{
    display: none;
}
.header-style-3 .sticky-header .menu-right-box{
    position: relative;
}
.header-style-3 .sticky-header .menu-right-box:before {
    position: absolute;
    content: '';
    width: 1000px;
    top: 0;
    left: 0;
    height: 80px;
    background-color: #ee344e;
}
.header-style-3 .sticky-header .site-navigation ul.navigation > li > a {
    height: 80px;
    line-height: 80px;
}
.header-style-3 .site-header-menu .logo-img.stickylogo, 
.site-header-menu.sticky-header .logo-img {
    max-height: 45px;
}

/*----------------------------------------*/
/*  10 - Footer
/*----------------------------------------*/
.footer.site-footer .widget a,
.widget .post-date{
    font-weight:400;
}
.footer.site-footer {
    background: #067bae;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    background: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pbmit-footer-big-area .container {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}
.pbmit-footer-big-area .container:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 12%);
}
.pbmit-footer-logo {
    margin-bottom: 15px;
}
.pbmit-footer-big-area .pbmit-footer-logo img {
    height: 50px;
}
.pbmit-footer-big-area .pbmit-footer-boxes.col-md-6 {
    -ms-flex: none;
    flex: none;
    max-width: none;
    width: auto;
    margin-right: 30px;
}
.pbmit-footer-contact-info-inner i {
display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
    font-size: 18px;
    color: var(--pbmit-white-color);
    border-radius: 50%;
    font-weight: normal;
    background-color: #0660a5;
    float: left;
}
.pbmit-footer-contact-info-inner .pbmit-label {
display: block;
    font-weight: 500;
    font-size: 16px;
}
.pbmit-footer-social-icon{
    text-align: right;
}
.pbmit-footer-big-area .pbmit-footer-social-icon li {
    display: inline-block;
    margin: 0 10px;
}
.pbmit-footer-big-area .pbmit-footer-social-icon li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--pbmit-white-color);
}
.pbmit-footer-big-area .pbmit-footer-social-icon li a:hover{
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}
.pbmit-footer-widget-area {
    padding-bottom: 10px;
    padding-top: 50px;
}
.pbmit-footer-widget-area .ser-order{
    padding-left: 40px;
}
.site-footer .widget {
    margin: 35px 0 20px;
}
.footer .widget .widget-title {
    text-transform: capitalize;
    color: #fff;
    padding: 0;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 700;
}
.footer .widget .widget-title:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: #75b843;
}
.site-footer .pbmit-float-menu ul li a{
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    line-height: 25px;
}
/*.site-footer .pbmit-float-menu ul li a:before{
    position: absolute;
    content: '\e818';
    color: #75b843;
    color: inherit;
    font-family: 'pbminfotech-base-icons';
    font-weight: normal;
    line-height: normal;
    font-size: 16px;
    left: 0;
}*/
.site-footer .pbmit-float-menu ul li{
    position: relative;
    padding-bottom: 10px;
    padding-left: 20px;
    line-height: 25px;
}
.site-footer .pbmit-float-menu .foot-list{
    column-count: 1;
}
.site-footer .pbmit-float-menu ul li i{
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 13px;
    color: #75b843;
}
.site-footer .foot-contact ul li i{
    font-size: 15px;
    top: 3px;
}
.site-footer .foot-contact ul li{
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.site-footer .foot-contact ul li a{
    text-transform: none;
}
.site-footer .foot-contact ul li a b{
/*    letter-spacing: 0.2px;*/
}
.widget ul a {
    display: inline-block;
}
.pbmit-rpw-list > li {
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: normal;
    width: 100%;
    margin-top: 10px;
    padding-top: 0;
}
.pbmit-rpw-list > li > a {
    width: 75px;
    flex-shrink: 0;
    margin-right: 15px;
}
.pbmit-rpw-list > li > a img {
    border-radius: 50%;
    box-shadow: 1px 1px 15px 0px rgb(0 0 0 / 7%);
}
.pbmit-rpw-content .pbmit-rpw-date a {
    font-size: 13px;
    color: var(--pbmit-global-color);
}
.pbmit-footer-newsletter input[type="email"] {
    margin-top: 15px;
    height: 60px;
    background: #fff;
    color: #848484;
    border: none;
    width: 100%;
    padding: 0px 15px;
    border-radius: 6px;
}
.pbmit-footer-newsletter {
    position: relative;
}
.pbmit-footer-newsletter button {
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-style: normal;
    padding: 20px 30px;
    outline: none;
    border-radius: 6px;
    margin-top: 20px;
    border: none;
    color: var(--pbmit-white-color);
    background-color: #192136;
}  
.pbmit-footer-newsletter button:hover{
    background-color: var(--pbmit-global-color);
} 
ul.pbmit-timelist-list li {
    list-style: none;
    padding: 10px 0px;
}
ul.pbmit-timelist-list .pbmit-timelist-li-value {
    float: right;
    font-weight: 700;
    color: var(--pbmit-global-color);
}
.pbmit-footer-section {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    background: #4a4a49;
}
.pbmit-footer-copyright-box {
    padding: 16px 0 13px;
    color: #fff;
    font-weight: 400;
}
.pbmit-footer-text-inner{
    align-items: center;
    justify-content: space-between;
}
.pbmit-footer-copyright-box ul li {
    display: inline-block;
    margin: 0 10px;
}
.pbmit-footer-section .widget-title, 
.pbmit-footer-section a {
    color:#fff;
}
.pbmit-footer-section a:hover {
    color: #fff;
}

/*----------------------------------------*/
/*  11 - Title Bar
/*----------------------------------------*/
.pbmit-title-bar-wrapper {
    background-color: #f6f6f6;
    background-image: url(../images/bg/title.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
}
.pbmit-title-bar-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 64px 0 0 0;
    min-height:550px;
}
.pbmit-title-bar-content .pbmit-tbar-inner {
    max-width: none;
    padding: 0;
}
.pbmit-title-bar-content-inner {
    width: 100%;
    text-align: left;
}
.pbmit-title-bar-content .pbmit-tbar-title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: 0;
    text-transform: capitalize;
    font-style: normal;
    color: #fff;
}
.pbmit-title-bar-wrapper .pbmit-title-bar-content .pbmit-breadcrumb-inner {
    display: inline-block;
    border-radius: 5px;
    padding: 5px 0px;
    background-color: transparent;
}
.pbmit-breadcrumb,
.pbmit-breadcrumb a {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    font-style: normal;
}
.pbmit-breadcrumb-inner .sep {
    margin: 0 8px;
}
.pbmit-title-bar-wrapper .list-inline-item {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}
.pbmit-title-bar-wrapper .list-inline-item a {
    color: #fff;
}
.pbmit-title-bar-wrapper .list-inline-item i {
   color: var(--pbmit-global-color);
}

/*----------------------------------------*/
/*  12 - 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; 
}

/*----------------------------------------*/
/*  13 - Progress Bar
/*----------------------------------------*/
.progressbar{
    margin-bottom: 20px;
    overflow: hidden;
    padding-top: 10px;
}
.progressbar .progress-label{
    font-weight: var(--pbmit-heading-font-variant);
    color: var(--pbmit-white-color);
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform:none;
}
.progress{
    overflow: visible;
    border-radius: 5px!important;
    position: relative!important;
    height: 6px!important;
    margin-top: 10px;
    background-color: #fff!important;
    border-bottom: 1px solid #d9d9d9;
}
.progress .progress-bar {
    position: relative;
    overflow: visible;
    border-radius: 5px;
    margin-bottom: -1px;
    background-color: var(--pbmit-secondary-color);
}
.progress.progress-percent-bg .progress-percent {
    line-height: 20px;
    position: absolute;
    right: 0px;
    top: -44px;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 4px;
    color: var(--pbmit-white-color);
    background: var(--pbmit-secondary-color);
}
.progress.progress-percent-bg .progress-percent::after{
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 8px;
    right: auto;
    top: auto;
    bottom: -8px;
    border: 5px solid;
    border-color: #0c263b transparent transparent #0c263b;  
}
.progressbar-style-2{
    padding-top: 5px;
}
.progressbar-style-2 .progress-label  {
    color: var(--pbmit-heading-color);
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 40px;
    text-transform: none;
}
.padding0{
    padding:0px;
}
.progressbar-style-2 .progress-bar{
    background-color: #E92121;
    margin-bottom: 0;
}
.progressbar-style-2 .progress{
    background-color: var(--pbmit-link-color-normal) !important;
    margin-top:0;
    border-radius: 2px!important;
    height: 7px !important;
}

/*----------------------------------------*/
/*  14 - Accordion
/*----------------------------------------*/
.accordion{
    background: none;
    border-radius: 0;
}
.accordion-item{
    background-color: transparent ;
    margin-bottom: 15px;
    border: none;
}
.accordion-item h2{
    position: relative;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid #eee;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-white-color);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.accordion-item .accordion-body ul li:after{
    content: '\e86c';
    font-family: "pbminfotech-base-icons";
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--pbmit-global-color);
}
.accordion-item .accordion-body ul li{
    position: relative;
    padding-left: 22px;
}
.accordion-button {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: none;
    outline: none;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: var(--pbmit-heading-color);
}
.accordion-button:focus{
    box-shadow:none;
    border-color: #d4d4d4;
}
.accordion-button:not(.collapsed) {
    color: var(--pbmit-blackish-color);
    background: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
}
.accordion-body{
    font-weight: 400;
    font-size: 16px;
    padding: 25px 0px 10px ;
}  
.accordion-button.collapsed {
    font-size: 16px;
    line-height: 20px;
}
.accordion-item.collapsed {
    background-color: var(--pbmit-white-color);
}
.accordion-button::after {
    font-size: 12px;
    content:'\e858';
    background-image: none;
    font-family: 'pbminfotech-base-icons';
}
.accordion-button:not(.collapsed)::after{
    content: '\e84e';
    transform: none;
    font-size: 14px;
    background-image: none;
    font-family: 'pbminfotech-base-icons';
}
.accordion-style-1 .accordion-decs {
    color: #828690;
}
.accordion-style-1 .accordion-item h2{
    padding: 21px 20px;
}
.accordion-style-2 .accordion-img img {
    border-radius: 6px;
}
.accordion-style-2 .accordion-item .accordion-decs{
    color: #828690;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    padding-right: 10px;
}
.accordion-style-2 .accordion-button::after{
    text-align: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 13px;
    border-radius: 50%;
    content: '\e811';
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.accordion-style-2 .accordion-button:not(.collapsed)::after{
    content: '\e812';
}
.accordion-style-3 .accordion-button::after{
    text-align: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 10px;
    border-radius: 50%;
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.accordion-style-3 .accordion-item h2{
    padding: 12px 20px;
}
.accordion-style-3 .accordion-body {
    font-weight: 400;
    font-size: 16px;
    color: #828690;
    padding: 25px 20px 20px 20px;
}
.section-faq .accordion-style-3 .accordion-body{
    padding-bottom: 5px;
}

/*----------------------------------------*/
/*  15 - Tab
/*----------------------------------------*/
body .nav-tabs{
    border: none;
}
.nav-item {
    margin-top: 10px;
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--pbmit-blackish-color);
    margin-right: 22px;
}
.nav-item:last-child{
    margin-right: 0;
}
.nav-link {
    padding: 0;
}
.nav-tabs .nav-link,
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
    border: none;
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-blackish-color);
    padding: 5px 35px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   color: var(--pbmit-white-color);
    background-color: var(--pbmit-blackish-color);
    border-color:transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active i{
    color: var(--pbmit-white-color);
}
.nav-tabs .nav-link span{
    position: relative;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 10px;
    vertical-align: super;
}
.nav-tabs .nav-item:first-child .nav-link:before{
    display: none;
}
.nav-tabs .nav-item:last-child span:after{
    display: none;
}
.tab-content p{
    color: var(--pbmit-white-color);
    margin-top: 10px;
    padding-right: 30px;
}
.tab-content .tab-ph-section{
    color: var(--pbmit-white-color);
    padding-right: 18px;
    margin-left: -25px;
}
.tab-content-img{
    position: relative;
}
.tab-content{
    margin-top: 40px;
}
.tab-content #tab-2-2 p {
    margin-left: -25px;
    padding-right: 44px;
}
#tab-2-2 img{
    margin-left: -40px;
}
.nav-tabs li.tabactive ~ li .nav-link:after{
    background: var(--pbmit-white-color);
}
.nav-tabs li:last-child .nav-link:after,
.nav-tabs li:first-child .nav-link:before{
   display: none;
}
.nav-tabs li.tabactive:last-child .nav-link span:after{
   background-color: transparent;
}
.pbmit-tab-style-1 i{
    font-size: 34px;
    font-weight: normal;
    color: var(--pbmit-global-color);
}
.pbmit-tab-style-1 ul li a{
    padding: 0 44px 10px 25px;
    border-radius: 5px;
}
.pbmit-tab-style-1 .tab-content img{
    border-radius: 5px;
}

/*----------------------------------------*/
/*  16 - 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 
}

/*----------------------------------------*/
/*  17 - Static-box
/*----------------------------------------*/
/** Style 1 **/
.pbmit-static-box-style-1 .pbmit-contentbox {
    position: relative;
    padding: 100px;
    background-color: var(--pbmit-secondary-color);
}
.pbmit-element-static-box-style-1.pbminfotech-element-viewtype-carousel .owl-carousel .pbmit-ele.pbmit-static-box-style-1, 
.pbmit-static-box-style-1{
    display: flex;
}
.pbmit-static-box-style-1  .pbminfotech-box-title h4{
    font-size: 24px;
    line-height: 34px;
}
.pbmit-static-box-style-1 .pbmit-contentbox .pbminfotech-static-box-desc,
.pbmit-static-box-style-1 .pbmit-contentbox h4{
    color: #fff;
}
.pbmit-static-box-style-1 .pbmit-imgbox.col-md-6{
    padding:0; 
}
.pbmit-static-box-style-1 .pbminfotech-box-number{
    position: absolute;
    left: -70px;
    top:calc(50% - 72px);
}
.pbmit-static-box-style-1 .pbminfotech-box-number h4{
    display: inline-block;
    background:  #fff;
    height: 145px;
    width: 145px;
    border-radius: 50%;
    text-align: center;
    line-height: 145px;
    font-size: 36px;
    color:  var(--pbmit-global-color);
}
.pbmit-element-static-box-style-1.pbminfotech-element-viewtype-carousel .owl-carousel button.owl-dot.active {
    border: 2px solid var(--pbmit-global-color);
    background: transparent;
    height: 17px;
    width: 17px;
}
.pbmit-element-static-box-style-1.pbminfotech-element-viewtype-carousel .owl-carousel button.owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
.pbmit-element-static-box-style-1 .pbmit-imgbox img{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.pbmit-element-static-box-style-1 .pbmit-contentbox{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pbmit-element-static-box-style-1.pbminfotech-element-viewtype-carousel .owl-carousel .owl-dots{
    margin-top: 30px;
}
.pbmit-static-box-style-1 .pbmit-imgbox{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px 0px 0px 5px;
}
.pbmit-static-box-style-1 .pbmit-imgbox .pbmit-imgbox-wrapper{
    display: none;
}

/*----------------------------------------*/
/*  18 - List Gourp
/*----------------------------------------*/
.list-group-borderless .list-group-item {
    border: none;
    color:var(--pbmit-heading-color);
    padding: 0;
    padding-bottom: calc(5px/2);
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: start;
}
.list-group-borderless .list-group-item i{
    font-size: 16px;
    padding-right: 15px;
    color: var(--pbmit-global-color);
}
ul.list-group.list-group-borderless {
    margin-bottom: 1.75em;
}

/*----------------------------------------*/
/*  19 - Revolution
/*----------------------------------------*/
/** Slider 01 **/
body{
    counter-reset:pbmit-rev-counter;
}
#rev_slider_1_1_wrapper .hebe.tp-bullets:before{
    content:' '; 
    position:absolute; 
    width:100%; 
    height:100%; 
    background:transparent; 
    padding:10px; 
    margin-left:-10px;
    margin-top:-10px; 
    box-sizing:content-box
}
#rev_slider_1_1_wrapper .hebe .tp-bullet{
    width:3px; 
    height:3px; 
    position:absolute; 
    background:#ffffff; 
    cursor:pointer; 
    border:5px solid #000000; 
    border-radius:50%; 
    box-sizing:content-box; 
    -webkit-perspective:400; 
    perspective:400; 
    -webkit-transform:translatez(0.01px); 
    transform:translatez(0.01px); 
    transition:all 0.3s
}
#rev_slider_1_1_wrapper .hebe .tp-bullet.rs-touchhover,#rev_slider_1_1_wrapper .hebe .tp-bullet.selected{
    background:#000000; 
    border-color:#ffffff
}
#rev_slider_1_1_wrapper .hebe .tp-bullet-image{
    position:absolute; 
    width:70px; 
    height:70px; 
    background-position:center center; 
    background-size:cover; 
    visibility:hidden; 
    opacity:0; 
    bottom:3px; 
    transition:all 0.3s; 
    -webkit-transform-style:flat; 
    transform-style:flat; 
    perspective:600; 
    -webkit-perspective:600; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 100%; 
    -webkit-transform-origin:0% 100%; 
    margin-bottom:15px; 
    border-radius:6px
}
#rev_slider_1_1_wrapper .hebe .tp-bullet.rs-touchhover .tp-bullet-image{
    display:block; 
    opacity:1; transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%); 
    visibility:visible
}
#rev_slider_1_1_wrapper .hebe.nav-dir-vertical .tp-bullet-image{
    bottom:auto; 
    margin-right:15px; 
    margin-bottom:0px; 
    right:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:100% 0%; -webkit-transform-origin:100% 0%
}
#rev_slider_1_1_wrapper .hebe.nav-dir-vertical .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_1_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet-image{
    bottom:auto; 
    margin-left:15px; 
    margin-bottom:0px; 
    left:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:0% 0%; -webkit-transform-origin:0% 0%
}
#rev_slider_1_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_1_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet-image{
    bottom:auto; 
    top:3px; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 0%; 
    -webkit-transform-origin:0% 0%; 
    margin-top:15px; 
    margin-bottom:0px
}
#rev_slider_1_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%)
}
#rev_slider_1_1_wrapper .pbmit-skincolor{
    color: var(--pbmit-global-color);
}
/** Slider 02 **/
#rev_slider_2_1_wrapper .hebe.tp-bullets:before{
    content:' '; 
    position:absolute;
    width:100%; 
    height:100%;
    background:transparent;
    margin-left:-10px;
    margin-top:-10px; 
    box-sizing:content-box
}
#rev_slider_2_1_wrapper .hebe .tp-bullet{
    width:8px; 
    height:8px; 
    position:absolute; 
    background:#067bae; 
    cursor:pointer; 
    border:4px solid #fff;
    box-sizing:content-box; 
    -webkit-perspective:400; 
    perspective:400; 
    -webkit-transform:translatez(0.01px); 
    transform:translatez(0.01px); 
    transition:all 0.3s;
    border-radius: 50%;
}
#rev_slider_2_1_wrapper .hebe .tp-bullet.rs-touchhover,
#rev_slider_2_1_wrapper .hebe .tp-bullet.selected{
    background:#fff; 
    border-color:#067bae
}
#rev_slider_2_1_wrapper .hebe .tp-bullet-image{
    position:absolute; 
    width:70px; 
    height:70px; 
    background-position:center center; 
    background-size:cover; 
    visibility:hidden; 
    opacity:0; 
    bottom:3px; 
    transition:all 0.3s; 
    -webkit-transform-style:flat; 
    transform-style:flat; 
    perspective:600; 
    -webkit-perspective:600; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 100%; 
    -webkit-transform-origin:0% 100%; 
    margin-bottom:15px; border-radius:6px
}
#rev_slider_2_1_wrapper .hebe .tp-bullet.rs-touchhover .tp-bullet-image{
    display:block; 
    opacity:1; 
    transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%); 
    visibility:visible
}
#rev_slider_2_1_wrapper .hebe.nav-dir-vertical .tp-bullet-image{
    bottom:auto; 
    margin-right:15px; 
    margin-bottom:0px; 
    right:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:100% 0%; 
    -webkit-transform-origin:100% 0%
}
#rev_slider_2_1_wrapper .hebe.nav-dir-vertical .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_2_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet-image{
    bottom:auto; 
    margin-left:15px; 
    margin-bottom:0px; 
    left:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:0% 0%; -webkit-transform-origin:0% 0%
}
#rev_slider_2_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_2_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet-image{
    bottom:auto; 
    top:3px; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 0%; 
    -webkit-transform-origin:0% 0%; 
    margin-top:15px; 
    margin-bottom:0px
}
#rev_slider_2_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%)
}
#rev_slider_2_1_wrapper .pbmit-skincolor{
    color: var(--pbmit-global-color);
}
/** Slider 03*/
#rev_slider_3_1_wrapper .hebe.tp-bullets:before{
    content:' '; 
    position:absolute; 
    width:100%; 
    height:100%; 
    background:transparent; 
    padding:10px; 
    margin-left:-10px;
    margin-top:-10px; 
    box-sizing:content-box
}
#rev_slider_3_1_wrapper .hebe .tp-bullet{
    width:3px; 
    height:3px; 
    position:absolute; 
    background:#ffffff; 
    cursor:pointer; 
    border:5px solid #000000; 
    border-radius:50%; 
    box-sizing:content-box; 
    -webkit-perspective:400; 
    perspective:400; 
    -webkit-transform:translatez(0.01px); 
    transform:translatez(0.01px); 
    transition:all 0.3s
}
#rev_slider_3_1_wrapper .hebe .tp-bullet.rs-touchhover,#rev_slider_3_1_wrapper .hebe .tp-bullet.selected{
    background:#000000; 
    border-color:#ffffff
}
#rev_slider_3_1_wrapper .hebe .tp-bullet-image{
    position:absolute; 
    width:70px; 
    height:70px; 
    background-position:center center; 
    background-size:cover; 
    visibility:hidden; 
    opacity:0; 
    bottom:3px; 
    transition:all 0.3s; 
    -webkit-transform-style:flat; 
    transform-style:flat; 
    perspective:600; 
    -webkit-perspective:600; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 100%; 
    -webkit-transform-origin:0% 100%; 
    margin-bottom:15px; 
    border-radius:6px
}
#rev_slider_3_1_wrapper .hebe .tp-bullet.rs-touchhover .tp-bullet-image{
    display:block; 
    opacity:1; 
    transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%); 
    visibility:visible
}
#rev_slider_3_1_wrapper .hebe.nav-dir-vertical .tp-bullet-image{
    bottom:auto; 
    margin-right:15px; 
    margin-bottom:0px; 
    right:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:100% 0%; 
    -webkit-transform-origin:100% 0%
}
#rev_slider_3_1_wrapper .hebe.nav-dir-vertical .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_3_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet-image{
    bottom:auto; 
    margin-left:15px; 
    margin-bottom:0px; 
    left:3px; 
    transform:scale(0) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(0) translateX(0px) translateY(-50%); 
    transform-origin:0% 0%; -webkit-transform-origin:0% 0%
}
#rev_slider_3_1_wrapper .hebe.nav-dir-vertical.nav-pos-hor-left .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(0px) translateY(-50%); 
    -webkit-transform:scale(1) translateX(0px) translateY(-50%)
}
#rev_slider_3_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet-image{
    bottom:auto; 
    top:3px; 
    transform:scale(0) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(0) translateX(-50%) translateY(0%); 
    transform-origin:0% 0%; 
    -webkit-transform-origin:0% 0%; 
    margin-top:15px; 
    margin-bottom:0px
}
#rev_slider_3_1_wrapper .hebe.nav-pos-ver-top.nav-dir-horizontal .tp-bullet.rs-touchhover .tp-bullet-image{
    transform:scale(1) translateX(-50%) translateY(0%); 
    -webkit-transform:scale(1) translateX(-50%) translateY(0%)
}   
    /*----------------------------------------*/
    /*  20 - Pricing-table
    /*----------------------------------------*/
    /** Style 1 **/
    .pbmit-pricing-table-box {
        background-color: #fff;
        box-shadow: 9px 0px 30px 0px rgba(26, 47, 106, 0.09);
        position: relative;
        padding: 30px 35px 37px 35px;
        text-align: left;
        border-radius: 6px;
        overflow: hidden;
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-price-w{
        color: #ee344e;
    }
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box{
        background-color: #ee344e;
    }
    .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper {
        position: absolute;
        content: "";
        top: -50px;
        right: -55px;
        width: 130px;
        height: 130px;
        font-size: 30px;
        line-height: 130px;
        color: #fff;
        text-align: center;
        padding: 20px 40px 0 0;
        border-radius: 50%;
        background: #000;
    }
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper{
        background-color: #fff;
        color: var(--pbmit-secondary-color);
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-heading{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
        margin-left: 5px;
    }
    .pbmit-pricing-table-box  .pbminfotech-ptable-price-w{
        position: relative;
        padding-left: 10px;
        margin-left: 5px;
    }
    .pbmit-pricing-table-box  .pbminfotech-ptable-price {
        font-size: 45px;
        line-height: 45px;
        font-weight: 800;
    }
    .pbmit-pricing-table-box .pbmit-ptable-lines-w {
        padding-top: 40px;
        padding-left: 15px;
        margin-top: 30px;
        text-align: left;
        border-top: 1px solid rgb(25 33 54 / 10%);
    }
    .pbmit-pricing-table-featured-col .pbmit-ptable-lines-w{
        border-top: 1px solid hsl(0deg 0% 100% / 10%);
    }
    .pbmit-pricing-table-box .pbmit-ptable-btn {
       margin-top: 35px;
       margin-left: 10px;
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-frequency {
        position: absolute;
        bottom: 4px;
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        margin-left: 0px;
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-frequency:before{
        content: "/";
        margin: 0 5px 0 0;
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-symbol, 
    .pbmit-pricing-table-box .pbminfotech-ptable-price {
        display: inline-block;
    }
    .pbmit-pricing-table-box .pbminfotech-ptable-symbol {
        position: absolute;
        top: 6px;
        left: -2px;
        font-size: 20px;
        line-height: 26px;
        font-weight: 700;
    }
    .pbmit-pricing-table-box .pbmit-ptable-line i{
        margin-right: 15px;
        margin-top: -8px;
        color: #192136 !important;
    }
    .pbmit-pricing-table-box .pbmit-ptable-line {
        position: relative;
        margin-bottom: 12px;
        align-items: center;
    }
    .pbmit-ptable-btn a{
        color: #fff;
        display: inline-block; 
        padding: 22px 30px;
        text-align: center;
        border-radius: 6px;
        display: block;
        font-weight: 700;
        font-size: 13px;
        line-height: 13px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-style: normal;
        background-color: #192136;
    }
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-ptable-frequency:before,
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbmit-ptable-lines-w,
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-ptable-symbol,
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-ptable-frequency,
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-ptable-price,
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-ptable-heading{
        color: #fff;
    }
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box .pbminfotech-sep {  
        background: rgba(255, 255, 255, 0.30);
    }
    .pbmit-pricing-table-featured-col .pbmit-pricing-table-box  .pbmit-ptablebox-featured-w {
      display: none;
    }
    .pbmit-pricing-table-box .pbmit-ptable-icon-wrapper{
        background-color: #ee344e;
    }
    
.header-style-2 .pbmit-contact-info li i.icon{
        font-size: 14px;
    margin-right: 0;
}
.navbar-expand-xl .navbar-collapse .navigation {
        padding-left: 120px;
}
.pbminfotech-box-content-inner p{
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
}
.pbmit-footer-contact-info{
    margin-bottom: 20px;
}
.left{
        position: relative;
    left: 25px;
}
.pbmit-sbox-icon-wrapper img{
    width: 55px;
}
.main-menu .navigation > li > ul.galery{
    min-width: 185px;
}


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

    00 - Home
    01 - Inner Page
        00 - About Us 1
		01 - About Us 2
        02 - Our History 
        03 - Service Detail
        04 - Project Detail
        05 - Blog Detail
             Sidebar Right
             Blog Classic
             Blog Detail
        06 - Team Single
        07 - Contact Us
        08 - Comment Form
    
******************************/

/*----------------------------------------*/
/*  00 - Home
/*----------------------------------------*/

/** Homepage 01 **/
.appointment-section-home1{
    background-image: url(../images/bg/bg-01.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    padding: 20px 0px 0px 0px;
    background-color: var(--pbmit-global-color);
}
.appointment-section-home1 .pbmit-heading-subheading .pbmit-subtitle{
    color: var(--pbmit-secondary-color);
}
.appointment-section-home1 .pbmit-heading-subheading .pbmit-subtitle:before,
.appointment-section-home1 .pbmit-heading-subheading .pbmit-subtitle:after{
    background-color: var(--pbmit-secondary-color);
}
.appointment-section-home1 .appointment-left-section{
    text-align: center;
}
.appointment-section-home1 .appointment-right-section{
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
}
.appointment-section-home1 .appointment-right-section .contact-form-section{
    margin: 0 0 20px 0;
}
.about-section-home1 {
    z-index: 1;
    position: relative;
}
.about-section-home1 .about-left-section1{
    text-align: center;
}
.about-section-home1 .about-left-section .pbmit-heading-subheading{
    padding-bottom: 10px;
    margin-bottom: 14px;
/*    border-bottom: 1px dashed #75b843;*/
    z-index: -1;
    text-align: center;
}
.about-section-home1 .about-left-section .about-heading-title{
    color: var(--pbmit-heading-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7em;
    margin: -30px 0px 5px 0px;
}
.about-section-home1 .about-left-section .left-last-section{
    margin-top: 80px;
}
.about-section-home1 .about-left-section{
    text-align: center;
}
.about-section-home1 .about-img-section .about-img-one img{
    border-radius: 15px;
    border: 2px solid #cecece;
}
.about-section-home1 .about-img-section .about-img-one1{
    width: 320px;
    float: left;
    margin: 0 25px 25px 0;
}
.about-section-home1 .about-img-section .about-img-one2{
    width: 320px;
    float: right;
    margin: 0 0 25px 25px;
}
.about-section-home1 .about-img-section .about-img-second{
    margin: 0px 0px 0px 20px;
    position: relative;
}
.about-section-home1 .about-img-section .about-img-second img{
    border-radius: 8px 8px 8px 8px;
    margin-bottom: 40px;
}
.about-section-home1 .about-icon-section{
    font-style: normal;
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
    font-size: 60px;
    border-radius: 50%;
}
.about-section-home1 .about-img-section .about-icon-section{
    position: absolute;
    top: 260px;
    left: -75px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
}
.bg-color-section-home1{
    background-color: var(--pbmit-light-color);
    position: relative;
    margin-top: -268px;
    margin-bottom: 5px;
    padding: 230px 0px 394px 0px;
}
.service-section-home1 {
    margin-top: -363px;
}
.offer-section-home1{
    padding: 70px 0px 90px 0px;
}
.offer-section-home1 .offer-left-section p{
    margin-bottom: 40px;
}
.offer-section-home1 .offer-left-section .offer-ihbox-section{
    margin-top: 20px;
    margin-bottom: 40px;
}
.offer-section-home1 .offer-left-section .offer-signechar-section{
    border-style: solid;
    border-width: 0px 0px 0px 1px;
    border-color: #E5E5E5;
    margin: 0px 0px 0px 10px;
    padding: 10px 15px 0px 30px;
}
.offer-section-home1 .offer-left-section a i{
    border-radius: 50%;
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
}
.offer-section-home1 .offer-left-section a i:before{
    width: 15px;
}
.offer-section-home1 .offer-left-section .button-text-section{
    text-transform: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.offer-section-home1 .offer-left-section a:hover{
    color: var(--pbmit-blackish-color);
}
.offer-section-home1 .accordion-style-1 .accordion-decs{
	margin-bottom: 0px;
}
.testimonial-section-home1 {
    margin: 0% 5% 0% 5%;
    background-image: url(../images/bg/bg-02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0px 130px 0px;
    border-radius: 10px ;
}
.testimonial-section-home1 .swiper-slider{
	margin: 38px 15px 0px 30px;
}
.client-section-home1{
    margin-top: -293px;
    margin-bottom: 0px;
    padding: 290px 0px 157px 0px;
    background-color: var(--pbmit-light-color);
}   
.benefits-section-home1 .benefits-bg-section{
    background-image: url(../images/bg/img-04.jpg);
    border-radius: 0px 8px 0px 0px;
    background-color: transparent;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 420px 0 0;
    margin: -60px 0 60px 0;
}
.benefits-section-home1 .benefits-ph-section{
    margin: -10px 0px 45px 0px;
    color: var(--pbmit-white-color);
}
.benefits-section-home1 .bg-img-section{
    background-image: url(../images/bg/bg-03.jpg);
    border-radius: 0px 0px 0px 8px;
    background-color: rgb(238, 52, 78);
    background-position: 100% 0%;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 70px 0px 60px 60px;
}
.benefits-section-home1 .benefits-right-section{
    width: 59%;
}
.benefits-section-home1 .pbmit-heading-subheading .pbmit-subtitle{
    color: var(--pbmit-blackish-color);
}
.benefits-section-home1 .pbmit-heading-subheading .pbmit-subtitle:before,
.benefits-section-home1 .pbmit-heading-subheading .pbmit-subtitle:after{
    background-color: var(--pbmit-blackish-color);
}
.benefits-section-home1 .benefits-bg-section .pbmit-ihbox-style-8{
    left: -29px;
}
.benefits-section-home1 .bg-img-section .border-section{
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #FFFFFF24;
    margin-top: -5px;
    margin-bottom: 33px;
    padding: 0px 0px 30px 0px;
}
.benefits-section-home1 .benefits-right-section .progress-bar-title{
    font-size: 16px;
    font-weight: 700 !important;
    color: var(--pbmit-white-color);
}

/** Homepage 02 **/
.ihbox-section-home2{
    margin: -110px 0px 0px 0px;
    z-index: 2;
    position: relative;
}
.about-section-home2{
    background-color: var(--pbmit-blackish-color);
}
.about-section-home2 .about-img-section img{
    border-radius: 8px 8px 8px 8px;
	margin-bottom: 20px;
}
.about-section-home2 .about-right-section{
    padding: 0px 15px 0px 30px;
}
.about-section-home2 .about-ph-section{
    margin: -20px 0px 30px 0px;
    color: var(--pbmit-white-color);
}
.about-section-home2 .about-right-section .pbmit-heading-desc{
    color: var(--pbmit-global-color);
}
.about-section-home2 .about-right-section i{
    color: var(--pbmit-white-color);
}
.about-section-home2 .list-group li{
    color: var(--pbmit-white-color);
}
.about-section-home2 .about-img-section .about-fid-section{
    margin-top: -162px;
    padding: 0px 0px 0px 20px;
}
.signature-img{
    padding-left: 30px;
}
.service-section-home2{
/*    background: #067bae14;*/
    background-image: url(../img/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 85px 0 50px;
}
.benefits-section-home2 .bg-img-section{
    background-image: url(../images/bg/bg-05.jpg);
    border-radius: 0px 8px 8px 0px;
    background-color: transparent;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 400px 0 400px;
    z-index: 2;
    position: relative;
    margin: 100px 0px 0px -366.5px;
}
.benefits-section-home2 .benefits-right-section{
    background-color: var(--pbmit-global-color);
    padding: 100px 0px 70px 350px;
    background-image: url(../images/bg/bg-07.jpg);
    border-radius: 8px 0px 0px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: -366.5px;
    margin-left: -306px;
    color: var(--pbmit-white-color);
}
.benefits-section-home2 .pbmit-ihbox-style-8{
    left: -358px;
    top: -247px;
}
.benefits-section-home2 .benefits-main-section{
    width: 70%;
}
.benefits-section-home2 .pbmit-heading-subheading .pbmit-subtitle{
    color: var(--pbmit-secondary-color);
}
.benefits-section-home2 .pbmit-heading-subheading .pbmit-subtitle:after,
.benefits-section-home2 .pbmit-heading-subheading .pbmit-subtitle:before{
    background-color: var(--pbmit-secondary-color);
}
.benefits-section-home2 .benefits-right-section p{
    color: rgba(255,255,255,0.90);
    margin: -20px 0px 30px 0px;
}
.benefits-section-home2 .benefits-right-section .pbmit-ihbox-icon-wrapper{
    background-color: var(--pbmit-secondary-color);
}
.benefits-section-home2 .contact-form {
    margin: 35px 15px 30px 30px !important;
}
.benefits-section-home2 .benefits-right-section .contact-form-section{
    margin-bottom: 20px;
}
.client-section-home2{
    margin-top: -474px;
    margin-left: 40px;
    background-color: var(--pbmit-light-color) !important;
}
.client-main-section {
    padding: 80px 15px 18px 50px;
}
.testimonial-section-home2{
    padding: 0px 75px 0px 75px;
/*	margin-top: -194px;*/
}
.testimonial-main-home2 .pbmit-heading-subheading{
    /*background-image: url(../images/bg/map-dots1.png);
    background-position:50% 114%;
    background-repeat: no-repeat;
    margin-top: 0px;
    margin-bottom: 0px;
    padding:70px 0px 245px 0px;*/
}
.provide-section-home2 {
    background-image: url(../images/bg/bg-08.jpg);
    background-position: top center;
    background-size: cover;
}
.testimonial-main-home2{
    padding: 60px 0;
    background: #edf3ff;
}
.testimonial-main-home2 .swiper-horizontal>.swiper-pagination-bullets{
    text-align: center;
    bottom: 0px;
    left: 0px;
}
.testimonial-main-home2 .swiper-pagination-bullet-active{
    background-color:#105f9a !important;
}
.testimonial-main-home2 .swiper-pagination-bullet{
    background-color: #e8e9eb;
}
.provide-section-home2 .provide-left-section{
    padding: 120px 15px 95px 15px;
}
.provide-section-home2 .provide-left-section .provide-ph-section{
    margin: 35px 0px 40px 0px;
}
.fid-bg-section-home2{
    background-position: top center;
    background-repeat: no-repeat;
    padding: 50px 0px 40px 0px;
    background-image: url(../img/service-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/** Homepage 03 **/
.about-section-home3{
    margin-top: -150px;
    z-index: 1;
    position: relative;
    padding: 0px 0px 50px 0px;
}
.service-section-home3{
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #E8E8E8;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 0px 0px 0px;
}
.service-section-home3 .pbmit-ihbox-style-3{
    margin-bottom: 40px;
}
.service-section-home3 .ihbox-right-section{
    padding-left: 40px;
}
.appointment-section-home3{
    background-image: url(../images/bg/dot-white-map-01.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--pbmit-global-color);
    padding: 100px 0px 0px 0px;
}
.appointment-section-home3 .appointment-left-section .pbmit-subtitle{
    color: var(--pbmit-secondary-color);
}
.appointment-section-home3 .appointment-left-section .pbmit-subtitle:after,
.appointment-section-home3 .appointment-left-section .pbmit-subtitle:before{
    background-color: var(--pbmit-secondary-color);
}
.appointment-section-home3 .appointment-right-section{
    background-color: var(--pbmit-blackish-color);
    padding: 40px 50px 0px 50px;
    border-radius: 6px 6px 6px 6px;
    margin-bottom: -140px;
}
.appointment-section-home3 .appointment-right-section .contact-form-section{
    margin-bottom: 20px;
}
.appointment-section-home3 .appointment-right-section h3{
    color: var(--pbmit-white-color);
    margin-bottom: 20px;
}
.appointment-section-home3 .appointment-right-section .contact-form input[type=submit]{
    background-color: var(--pbmit-global-color);
}
.appointment-section-home3 .appointment-right-section .contact-form input[type=submit]:hover{
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-global-color);
}
.ihbox-section-home3{
    padding: 40px 0px 0px 0px;
}
.facilities{
    padding: 70px 0 !important;
}
.ihbox-bg-section-home3{
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0px;
}
.client-section-home3{
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #E2E2E2;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 0px 70px 0px;
}
.blog-section-home3{
    padding: 100px 0px 20px 0px;
}
.blog-section-home3 .pbmit-heading-subheading{
	margin-bottom: 80px;
}
/*----------------------------------------*/
/*01 - Inner Page 
/*----------------------------------------*/
/** 00 - About Us 1**/
.about-main-section img{
    border-radius: 6px 6px 6px 6px;
}
.about-main-section .benefits-right-section {
    padding: 0px 27px 0px 15px;
}
.about-main-section .about-fid-section{
    z-index: 1;
    position: absolute;
    left: 30px;
    bottom: 25px;
}
.about-main-section .benefits-right-section .pbmit-ihbox-style-1 i{
    color: var(--pbmit-global-color);
}
.about-main-section .benefits-right-section .pbmit-ihbox-style-1 h2{
    color: var(--pbmit-heading-color);
}
.about-main-section .benefits-right-section .pbmit-heading-desc{
    color: var(--pbmit-body-typography-color);
}
.about-main-section .benefits-right-section .border-section{
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #27335333;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: -5px;
    margin-bottom: 25px;
    padding: 0px 0px 30px 0px;
}
.about-us-1-section .client-section-home1{
    padding-bottom: 0;
}
.client-inner-section{
	padding: 290px 0px 100px 0px;
}
.blog-inner-section{
	padding: 90px 0px 70px 0px;
}
/** 01 - About Us 2**/
.benefits-inner-section{
	padding-top: 60px;
}
.testimonial-main-inner-section .pbmit-heading-subheading{
	padding-top: 75px;
}
.client-main-inner-section{
	margin-top: -270px;
}
/** 02 - our history**/
.pbmit-company-hostory .simple-text p{
    text-align:left;
}
.pbmit-company-hostory .year{
    padding: 6px 20px;
    display: inline-block;
    color: var(--pbmit-white-color);
    font-size: 18px;
    position: absolute;
    top: -17px;
    z-index: 9;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 100px;
    text-align: center;
    background:#f2c21a;
}
.pbmit-company-hostory .company_detail .content{
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}
.pbmit-company-hostory .pbmit-ourhistory-row {
    display: -webkit-box;
    display: flex;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}
.pbmit-ourhistory .pbmit-ourhistory-right {
  padding-bottom: 50px; 
  padding-left: 70px;
  position: relative;
}
.pbmit-ourhistory .label{
    color: var(--pbmit-global-color);
}
.pbmit-ourhistory .pbmit-ourhistory-right:before {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    z-index: 2;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-sizing: content-box;
    background-color: var(--pbmit-global-color);
}
.pbmit-ourhistory .label {
    display: block;
    font-size: 50px;
    font-weight: 800 !important;
    line-height: 50px;
}
.pbmit-ourhistory h4 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 800;    
    margin-bottom: 15px;
}
.pbmit-ourhistory .pbmit-ourhistory-right:after {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
    width: 5px;
    height: 100%;
    background: var(--pbmit-white-color);
}
.pbmit-timeline > .pbmit-timeline-inner:last-child .pbmit-ourhistory .pbmit-ourhistory-right:after{
    display: none;
}
.pbmit-ourhistory .pbmit-ourhistory-right.last{
    padding-bottom:0;
}
.pbmit-ourhistory img{
    border-radius: 6px;
}
.pbmit-timeline-inner{
    margin: 0 -15px;
}
.pbmit-ourhistory .pbmit-ourhistory-right .pbmit-timeline-image,
.pbmit-ourhistory .pbmit-ourhistory-right .label{
    margin-bottom: 30px;
    display: none;
}
.ihbox-main-section .ihbox-heading-section{
    margin-bottom: 40px;
}
.ihbox-main-section{
    padding: 100px 0px 60px 0px;
}
.our-history-section{
    background-color: var(--pbmit-light-color);
    padding: 90px 0px 90px 0px;
}
.our-history-section .pbmit-heading-subheading{
    margin-bottom: 70px;
}
.our-plans-section .client-section-home1{
    padding-bottom: 100px;
}
.counter-inbox{
    width: 28.7%;
}

/** 03 - Service Detail **/
.service-main{
    
}
.post-list{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.post-list li{
    border: none;
    padding: 0!important;
    margin: 5px 0;
}
.post-list li a{
    display: block;
    position: relative;
    color: #000;
    font-size: 17px;
    font-weight:400;
    padding: 14px 15px;
    display: block;
    position: relative;
    line-height: 24px;
    background: #efefef;
    border: 1px solid #ddd;
    text-transform: capitalize;
    border-radius: 3px;
/*    box-shadow: 1px 1px 2px #067bae52;*/
}
.post-list li.post-active a,
.post-list li a:hover {
    color: #fff;
    background-color:#067bae;
}
.post-list li.active a{
    color: #fff;
    background-color:#067bae;
}
.post-list li.post-active a:after{
    background: var(--pbmit-white-color) !important;
    color: var(--pbmit-link-color-normal);
}
.service-detail {
    padding: 25px;
    border-top: 2px solid #75b843c2;
    border-bottom: 2px solid #75b843c2;
    border-left: 2px solid #067bae94;
    border-right: 2px solid #067bae94;
    border-radius: 10px;
}
.service-detail h1 {
    font-size: 36px;
    color: #067bae;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-detail img {
    border: 1px solid #c0bfbf8a;
    margin: 12px 0 25px;
    border-radius: 15px;
}
.service-detail iframe{
    margin: 20px 0;
    border: 1px solid #c0bfbf8a;
}
.service-detail p {
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    color: #000;
    margin-bottom: 8px;
}
.service-detail p b{
/*    font-size: 17px;*/
}
.service-detail ul {
    padding-left: 0;
    margin-bottom: 15px;
}
.service-detail ul li {
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    list-style: none;
    position: relative;
    padding-left: 25px;
    color: #000;
}
.service-detail ul li+li{
    margin-top: 8px;
}
.service-detail ul li:before{
    position: absolute;
    content: '\f138';
    font-family: 'FontAwesome';
    left: 0;
    top: 0;
    color: #75b843;
}
.service-detail ul li b {
    font-weight: 600;
}
.single-service-contact > div,
.single-service-contact > p{
    position: relative;
    z-index: 2;
}
.service-detail h5{
    color: #067bae;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.single-service-contact .d-flex{
    margin-bottom: 30px;
}
.single-service-contact .d-flex p{
    display: none;
}
.single-service-contact .d-flex i {
    font-size: 56px;
    line-height: 56px;
    margin-right: 10px;
    color: var(--pbmit-global-color);
}
.single-service-contact .d-flex h2 {
    font-size: 30px;
    line-height: 32px;
    margin-top: 5px;
    margin-bottom: 0;
    color: var(--pbmit-global-color);
} 
.widget .download {
    display: block;
    padding: 30px;
}
.widget .download .item-download {
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-left: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.pbmit-full-link {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.widget .download .item-download .pbmit-icon {
    font-size: 25px;
    margin: -10px 10px 0 0;
    color:var(--pbmit-white-color);
}
.widget .download .pbmit-text h5 {
    margin-bottom: 2px;
    font-size: 22px;
    color:var(--pbmit-heading-color);
}
.widget .download .pbmit-text p {
    margin-bottom: 0;
    color:var(--pbmit-white-color);
}
.widget .download .item-download:nth-child(even) {
    background: var(--pbmit-global-color);
}
.widget .download .item-download:hover i {
    color: var(--pbmit-secondary-color);
}
.widget .download .item-download:hover:before{
    color: var(--pbmit-secondary-color);
}
.widget .download .item-download:hover .pbmit-text h5{
    color: var(--pbmit-secondary-color);
}
.item-download:hover .pbmit-text p{
    color: var(--pbmit-secondary-color);
}
.service-details{
    margin-top: 40px;
}
h2.pbmit-title{
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 20px;
}
.service-page-team{
    margin-top: 40px;
    border-bottom: 1px solid #eee;
    padding-top: 40px;
    margin-bottom: 40px; 
    border-top: 1px solid #eee;
    padding-bottom: 60px; 
}
.widget .download .pbmit-text{
    position: relative;
    padding-bottom: 10px;
}
.widget .download .pbmit-text:before{
    content: "";
    position: absolute;
    height: 2px;
    border-radius: 8px;
    width: 40px;
    left: 12px;
    bottom: -1px;
    background-color: var(--pbmit-global-color);
}
.widget .download .pbmit-text:after{
    position: absolute;
    height: 6px;
    width: 6px;
    left: 0;
    bottom: -3px;
    content: "";
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
}
.widget .widget-as-link{
    padding: 0;
}
.fa-file-pdf:before{
    content: "\f1c1";
    color: var(--pbmit-white-color);
}
.fa-file-word:before {
    content: "\f1c2";
    color: var(--pbmit-white-color);
}
.item-download-third{
    background-color: var(--pbmit-blackish-color);
    margin-bottom: 0 !important;
}
.widget .download .item-download:nth-child(even):hover{
    background-color: var(--pbmit-blackish-color);
}
.item-download-third:hover{
    background-color: var(--pbmit-global-color);
}
.widget .item-download h6{
    color: var(--pbmit-white-color);
    font-size: 14px;
}
.widget .download .item-download:first-child{
    padding: 0;
    margin-bottom: 35px;
}

/** 04 - Project Detail **/
.portfolio-single h2.pbmit-title{
    color: var(--pbmit-global-color);
}
.project-details-list{
    padding: 30px 0;
    background: var(--pbmit-blackish-color);
    margin: -50px 50px 0;
    text-align: center;
    position: relative;
    color:var(--pbmit-white-color);
}
.portfolio-lines-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0; 
}
.portfolio-lines-wrapper li{
    margin: 0;
    padding: 3px 0;
    font-size: 14px;
    line-height: 25px;
    position: relative;
    display: inline-block;
}
.portfolio-lines-wrapper li:before {
    content: '/';
    padding: 0 1.1em;
}
.portfolio-lines-wrapper li:first-child:before{
    display: none;
}
.portfolio-line-title{
    color: var(--pbmit-global-color);
}
.portfolio-details{
    margin-top: 20px;
}
.portfolio-details-list{
    padding: 50px 0px 50px 0px;
    border-bottom: 2px solid #ddd;   
}
.portfolio-details .portfolio-details-list:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.portfolio-team {
    margin-top: 40px;
}
.portfolio-team .pbmit-ihbox-style-3{
    margin-bottom: 40px;
    margin-right: 0;
}
.portfolio-team .row > .col-md-6:nth-of-type(3) .pbmit-ihbox-style-3,
.portfolio-team .row > .col-md-6:nth-of-type(4) .pbmit-ihbox-style-3 {
    margin-bottom: 0;
} 

/** 05 - Blog Detail**/
.blog-right-col{
    flex: 0 0 66%;
    max-width: 66%; 
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog-left-col{
    flex: 0 0 34%;
    max-width: 34%; 
    padding-top: 80px;
    padding-bottom: 80px;
}
/** Sidebar Right**/
.sidebar .widget{ 
    padding: 30px;
    padding-top: 28px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: var(--pbmit-light-color);
}
.widget a,
.widget .post-date{
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    font-weight: 700;
}
.search-form input{
    height: 58px;
    line-height: 58px;
}
.widget.widget-search h2{
    font-size: 22px;
    line-height: 30px;
    color: var(--pbmit-white-color);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 10px;
}
.widget.widget-search h2:after{
    background: var(--pbmit-white-color);
    position: absolute;
    height: 6px;
    width: 6px;
    left: 0;
    bottom: -3px;
    content: "";
    border-radius: 50%;
}
.widget.widget-search h2:before{
    background: var(--pbmit-white-color);
    position: absolute;
    height: 2px;
    border-radius: 8px;
    width: 40px;
    left: 12px;
    bottom: -1px;
    content: "";
}
.widget.widget-search{
    border: none; 
    padding: 35px;
    background: var(--pbmit-global-color);
    position: relative;
}
.widget .search-form {
    position: relative;
}
.widget .search-form .search-field {
    width: 100%;
    height: 60px;
    font-size: 14px;
    padding: 0 25px;
    font-weight: 500;
    background: var(--pbmit-white-color);
    border: none;
    border-radius: 5px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.sidebar .widget .search-form a{
    background-color: var(--pbmit-secondary-color);
    position: absolute;
    right: 5px;
    padding: 0;
    border: none;
    outline: none;
    top: 5px;
    height: 50px;
    color: var(--pbmit-white-color);
    font-size: 16px;
    z-index: 1;
    width: 50px;
    border-radius: 8px;
}
.sidebar .widget .search-form a i:before{
    content: "\f002";
    position: absolute;
    right: 16px;
    font-size: 16px;
    top: 17px;
}
.widget .widget-title{ 
    font-size: 22px;
    line-height: 30px;
    text-transform: none;
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 20px;
}
.sidebar .widget .widget-title:after {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    left: 0;
    bottom: -3px;
    border-radius: 50%;
    background-color: var(--pbmit-global-color);
}
.sidebar .widget .widget-title:before{
    content: "";
    position: absolute;
    height: 2px;
    border-radius: 8px;
    width: 40px;
    left: 12px;
    bottom: -1px;
    background-color: var(--pbmit-global-color);
}
.sidebar .widget-categories ul li{
    margin: 2px 0;
    padding: 0!important;
    position: relative;
    list-style: none;
}
.sidebar .widget-categories ul li a{
    position: relative;
    padding: 10px 30px 8px 30px;
    display: block;
    padding-left: 30px;
    line-height: normal;
    margin-top: 10px;
}
.sidebar .widget-categories ul li a:before{
    position: absolute;
    content: '\e82b';
    left: 0;
    font-size: 16px;
    top: 10px;
    color: inherit;
    font-family: 'pbminfotech-base-icons';
    line-height: normal;
}
.sidebar .widget-categories li span {
    position: absolute;
    right: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color:var(--pbmit-white-color);
    color: var(--pbmit-blackish-color);
    text-align: center;
    display: block;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    top: 9px;
}
.sidebar .recent-post-list li{
    margin-top: 10px;
    padding-bottom: 15px;
    display: flex !important;
    align-items: center;
    width: 100%;
}
.sidebar .recent-post-list li:last-child{
    padding-bottom: 0;
}
.sidebar .recent-post-list .media{
    display: flex;
}
.sidebar .recent-post-list .recent-post-thum{
    width: 75px;
    flex-shrink: 0;
    margin-right: 20px;
}
.sidebar .recent-post-list .recent-post-thum img{
    border-radius: 50%;
    box-shadow: 1px 1px 15px 0px rgb(0 0 0 / 7%);
}
.sidebar .recent-post-list .post-date {
    line-height: 17px;
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-top: 5px;
    color: var(--pbmit-global-color);
}
.sidebar .widget .tagcloud a{
    display: inline-block;
    font-size: 14px!important;
    font-weight: 700;
    padding: 0 15px;
    line-height: 45px;
    margin: 0 4px 8px 0;
    text-transform: none;
    background-color: var(--pbmit-white-color);
    border: none;
    border-radius: 4px;
    text-align: center;
    transition: 0.4s ease-out 0s;
}
.sidebar .widget .tagcloud a:hover{
     color: var(--pbmit-white-color);
     background: var(--pbmit-global-color);
}
.sidebar .widget.widget-archive ul li {
    padding: 0 0 15px 0;
}
.sidebar .widget.widget-flickr a{
    overflow: hidden;
    display: block;
    margin: 0 8px 0px 0px;
    width: 80px;
    height: 80px;
    display: inline-block;
    background: none;
}
.widget.single-service-contact{
    border-radius: 8px;
    position: relative;
    padding: 0;
}
.single-service-contact-inner img {
    border-radius: 8px;
    margin-bottom: 30px;
}
.single-service-contact-inner ul.pbmit-social-links li {
    display: inline-block;
    margin-top: 10px;
}
.single-service-contact ul.pbmit-social-links li a,
.single-service-contact-inner ul.pbmit-social-links li a {
    font-size: 16px;
    font-weight: 300!important;
    letter-spacing: 0;
    background: var(--pbmit-white-color);
    border-radius: 50%;
    padding: 8px;
    margin: 0 2px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}
.single-service-contact ul.pbmit-social-links li a:hover {
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
}
.single-service-contact .pbmit-social-li{
    margin-right: 0px;
}
.single-service-contact .pbmit-social-links {
    margin-top: 10px;
}
/** project Single Details **/
.project-single-details-list {
    margin-top: 42px;
}
.project-single-organizer{
    margin-bottom: 28px;
    display: flex;
}
.project-single-organizer-name {
    margin-right: 12px;
}
.project-single-sidebar-info {
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    background-color: var(--pbmit-global-color);
    position: absolute;
    right: 30px;
    bottom: -90px;
    min-width: 320px;
    padding: 0px 35px 10px 35px;
    border-radius: 8px;
}
.project-single p{
    margin-bottom: 50px;
}
.heading-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--pbmit-white-color);
    margin-bottom: 0;
}
.project-single-share-lists li {
    display: inline-block;
}
.project-single-share-lists .wpem-facebook {
    background: #38529a;
    color: var(--pbmit-white-color);
    border-radius: 50%;
    padding: 6px;
}
.project-single-share-lists .wpem-twitter {
    background: #4da6d7;
    color: var(--pbmit-white-color);
    border-radius: 50%;
    padding: 6px;
}
.project-single .progress-bar-section{
    padding: 50px 0px 0px 0px;
}
.project-single-share-lists .wpem-linkedin {
    background: #3671ae;
    color: var(--pbmit-white-color);
    border-radius: 50%;
    padding: 6px;
}
.project-single-share-lists .wpem-pinterest i{
    border-radius: 50%!important;
}
.project-single-type a{
    color: var(--pbmit-white-color);
}
.project-single .accordion-item {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--pbmit-white-color);
    border: 0;
    padding: 40px 44px 35px;
}
.project-single .accordion-header::before{
    display: block;
    height: 1px;
    content: '';
    position: absolute;
    width: auto;
    top: 43px;
    background-color: var(--pbmit-white-color);
    left: 45px;
    right: 45px;
}
.project-single .accordion-button::before{
    content: "";
    position: absolute;
    width: 45px;
    height: 3px;
    left: 0;
    top: 42px;
    bottom: 23px;
    background-color: var(--pbmit-secondary-color);
    transition: all 300ms linear;
}
.project-single .accordion-item:hover .accordion-button::before{
    width: 65px;
}
.project-single .accordion-button {
    font-size: 24px;
    line-height: 34px;
}
.project-single .project-single-img-section img{
    border-radius: 8px;
}
.project-single-img-section{
    position: relative;
    margin-bottom: 50px;
}
.project-single-img-section .project-single-sidebar{
    padding: 17px 0;
    font-size: 15px;
    line-height: 25px;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.8);
}
.project-single-img-section .project-single-sidebar:last-child{
    border-bottom: none;
}
.project-single .progressbar-main-section{
    padding: 0px 30px 0px 0px;
}
.project-single .project-img-one img{
    border-radius: 8px 8px 8px 8px;
}
.project-single .project-img-two img{
    border-radius: 8px 8px 8px 8px;
}
.project-single .post-navigation{
    margin-top: 60px;
}
.project-single .nav-links{
    border-top: 1px solid #f2f3f4;
    border-bottom: 1px solid #f2f3f4;
    padding-top: 20px;
    padding-bottom: 20px;
}
.project-single .pbmit-portfolio-nav-head{
    color: var(--pbmit-global-color);
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.project-single .post-navigation .nav-title{
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-weight: 800;
}
.project-single .pbmit-portfolio-nav-wrapper{
    padding-top: 20px;
    padding-bottom: 20px;
}
/** Blog Classic **/
article.post{
    margin-bottom: 40px;
    position: relative;
}
article.post .post-content p{
    margin-top: 15px;
}
article.post .post-content h4{
    margin-bottom: 20px;
    margin-top: 30px;
}
.post-content:last-child p{
    margin-bottom: 30px;
}
article.post .post-box-title{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 5px;
    margin-top: 5px;
}
article.post .post-entry-meta{
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
    color: #666666;
}
article.post .post-entry-meta a{
    color: #666666;
}
article.post .post-entry-meta i {
    margin-right: 5px;
    font-size: 15px;
    color: var(--pbmit-global-color);
}
.post-thumbnail.pbmit-blog-style-2 img{
    border-radius:8px!important;
}
.blog-classic img{
    border-radius: 8px!important;
}
.post-content a span{
    color: var(--pbmit-secondary-color);
}
.post .post-content .pbmit-meta-author-wrapper{
    display: inline-block;
}
.post .post-content .pbmit-meta-category{
    display: inline-block;
    font-size: 12px;
    margin-left: 30px;
}
.pbmit-meta-container{
    position:relative;
}
.post .post-content .pbmit-meta-container a{
    color: var(--pbmit-global-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.post .post-content .pbmit-meta-container a i{
    font-size: 15px;
}
.post .post-content .pbmit-meta-category i{
    color: var(--pbmit-global-color);
    font-size: 15px;
}
.post .post-content .pbmit-meta-category:before{
    position: absolute;
    content: '' !important;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 0 !important;
    margin: 13px -20px 0;
    background-color: var(--pbmit-secondary-color);
}
.post .post-content .button-text-section{
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
}
.post .post-content .pbmit-base-icon-angle-right:before{
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
    border-radius: 50%;
    width: 21px;
    height: 21px;
    text-align: center;
    line-height: 20px;
}
.post .post-content a:hover{
    color: var(--pbmit-global-color);
}
/** Blog Detail **/
.post img{
    border-radius: 6px;
}
.post .list-group-borderless .list-group-item {
    color: #666;
}
.pbmit-meta-date-wrapper {
    background-color: var(--pbmit-global-color);
    position: absolute;
    bottom: 0;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 30px;
    color: var(--pbmit-white-color);
    text-transform: uppercase;
    border-radius: 6px 6px 0px 0px;
}
.post blockquote {
    background-color: var(--pbmit-light-color);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    font-style: normal;
    padding: 30px;
    padding-left: 70px;
    position: relative;
    border: none;
    color: var(--pbmit-blackish-color);
    border-radius: 8px;
    margin: 50px 0 30px 30px;
}
.post .post-content{
    padding-top: 5px;
}
.post blockquote::after {
    position: absolute;
    content: "\e815";
    font-family: "pbminfotech-base-icons";
    font-size: 24px;
    line-height: normal;
    top: -25px;
    left: -26px;
    font-style: normal;
    font-weight: 500;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    color: var(--pbmit-white-color);
    background-color: var(--pbmit-global-color);
    line-height: 70px;
}
.post blockquote cite,
.post blockquote small {
    display: block;
    font-size: 14px;
    line-height: 23px;
    font-style: normal!important;
    font-weight: 800 !important;
    margin-top: 15px;
    color: var(--pbmit-global-color);
}
.post blockquote cite:before{
    content: "\2014\00a0";
}
.post blockquote p{
    margin: 0;
}
.post blockquote em {
    font-size: 12px;
    line-height: normal;
}
.pbmit-blog-meta.pbmit-blog-meta-bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.pbmit-blog-meta-bottom .pbmit-tag-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    font-size: 18px;
    text-align: center;
    background: var(--pbmit-white-color);
    margin: 0 auto;
    display: none;
}
.pbmit-blog-meta-bottom .pbmit-meta-tags a {
    display: inline-block;
    font-size: 16px!important;
    padding: 0px;
    height: 40px;
    font-weight: normal;
    line-height: 40px;
    text-transform: none;
    background-color: transparent;
    color: #8b90a0;
}
.pbmit-blog-meta-bottom-right {
    width: 50%;
    text-align: right;
}
.comments-area .pbmit-meta .pbmit-meta-title{
    color: #424d6c;
    font-size: 16px;
    font-weight: 600;
}
.comments-area .comments-title{
    margin-bottom: 30px;
    margin-top: 30px;
}
.comments-box {
    margin-top: 35px;
}
.comments-box .media{
    margin-bottom: 30px; 
    display: flex;
}
.comments-box .children .media.even.depth-2{
    margin-left: 30px;
}
.comment-author{
    text-align: center;
    margin-right: 22px;   
}
.comment-author img{
    max-width: 60px;
    height: 60px;
    border-radius: 50%;
}
.comment-meta { 
    position: relative;
    flex-grow: 1;
    border: 1px solid #e9e9e9;
    padding: 20px 18px;
    padding-bottom: 0;
    background: var(--pbmit-white-color);
    margin-left: 0;
    border-radius: 5px;
}
.comment-meta:before{
    content: "";
    position: absolute;
    top: 14px;
    left: -10px;
    z-index: 10;
    width: 0;
    height: 0;
    border-style: solid solid outset;
    border-width: 8px 10px 8px 0;
    border-color: transparent #e1e4e7 transparent transparent;    
}
.comment-meta:after,
.comment-meta:before {
    content: '';
    position: absolute;
    top: 17px;
    width: 0;
    height: 0;
    border-width: 10px 12px 10px 0;
    border-style: solid;
}
.comment-meta:before {
    border-color: transparent #fff transparent #fff;
    z-index: 1;
    left: -12px;
    top: 19px;
}
.comment-meta:after {
    border-color: transparent #e9e9e9 transparent #e9e9e9;
    border-width: 12px 14px 12px 0;
    left: -14px;
}
.comment-meta .comment-owner{
    display: block;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color:var(--pbmit-link-color-normal);
    cursor: pointer;
    transition: all .25s ease-in-out;
}
.comment-meta .comment-owner:hover{
    color: var(--pbmit-global-color);
}
.comment-meta a{
    color: #b4b4b4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.comment-time-date:hover{
    color: var(--pbmit-global-color);
}
.comment-meta p{
    display: block;
}
.comment-meta .reply {
    position: absolute;
    top: 15px;
    right: 15px;
}
.comment-meta .reply a{
    display: inline-block;
    font-size: 11px;
    line-height: normal;
    padding:10px 16px;
    letter-spacing: 1px;
    font-weight: 700!important;
    text-transform: uppercase;
    border-radius: 5px;
    color: var(--pbmit-white-color);
    background-color:var(--pbmit-blackish-color);
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
}
.comment-meta .reply a:hover{
    background-color: var(--pbmit-global-color);
}
.comment-reply-title{ 
    margin-bottom: 20px;
    margin-top: 40px;
}
.comment-form .form-group{
    margin-bottom: 20px;
}
.comments-box p{
    margin-top: 25px;
    display: block;
}
.comment-form form .form-group:last-child{
    margin-bottom: 10px;
} 
.comment-form button.pbmit-btn {
    padding: 20px 30px;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.comment-form button.pbmit-btn:hover{
    background-color: var(--pbmit-global-color);
}
.pbmit-author-image {
    height: 95px;
    width: 95px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 35px;
    background-color: #fff;
}
.pbmit-author-content {
    -webkit-flex-shrink: 100;
    -moz-flex-shrink: 100;
    -ms-flex-negative: 100;
    flex-shrink: 100;
}
.pbmit-author-content .pbmit-author-name {
    line-height: 30px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
}
.pbmit-author-content .pbmit-author-name a {
    color: #fff;
}
.blog-right-col .form-control {
    padding: 12px 15px;
    height: auto;
    margin-bottom: 15px;
    background-color: var(--pbmit-light-color);
    border: none;
}

/** 06 - Team Single **/
.pbmit-team-details{
    position: relative;
}
.pbmit-team-img{
    margin-right: 20px;
    background-color: var(--pbmit-light-color);
    border-radius: 8px;
    overflow: hidden;
}
.pbmit-team-des {
    padding: 0;
}
.pbmit-team-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color:var(--pbmit-link-color-normal);
}
.pbmit-team-designation {
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    color: var(--pbmit-global-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pbmit-team-summary{
    padding: 30px 25px 20px;
    margin-bottom: 0;
}
.pbmit-single-team-info {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    font-size: 16px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px 30px;
}
.pbmit-single-team-info li {
    margin-bottom: 0;
    border-bottom: none;
    padding: 3px 0;
    font-size: 16px;
}
.pbmit-single-team-info li label {
    display: inline-block;
    color: var(--pbmit-global-color);
    font-weight: 700;
    min-width: 70px;
}
.pbmit-team-details .pbmit-social-li  {
    margin-bottom: 10px;
    margin-right: 10px;
}
.pbmit-team-details .pbmit-social-li a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    border-radius: 50%;
    color:var(--pbmit-white-color);
    background-color: var(--pbmit-blackish-color);
}
.pbmit-team-details .pbmit-social-li a:hover {
    background-color: var(--pbmit-global-color);
    color: var(--pbmit-white-color)!important;
    border-color: transparent;
}
.team-details-wrap {
    margin-top: 80px;
    margin-bottom: 0px;
    padding: 0px 15px 50px 15px;
}
.team-details-wrap form {
    margin: -15px 0px 0px 0px;
    padding: 50px 50px 50px 50px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #EEEEEE;
    border-radius: 5px 5px 5px 5px;
}
.team-details-contact {
    padding: 35px 15px 35px 15px;
    margin-bottom: 50px;
}
.team-details-contact .pbmit-title {
    margin-bottom: 40px;
}
.pbmit-team-details h3{
    margin-bottom: 20px;
}
.pbmit-entry-content{
    margin: 50px 0px 20px 0px;
}
.pbmit-entry-content .progressbar-main-section{
    padding: 40px 15px 0px 15px;
}
.pbmit-team-details .list-group.list-group-borderless{
    margin-bottom: 0px;
}

/** 07 - Contact us **/
.pbmit-globlacolor-link {
    color: var(--pbmit-global-color);
    font-weight: 700;
    text-decoration: underline;
}
.contact-section .pbmit-heading-subheading h2.pbmit-title:after{
    display: none;
}
.contact-section-left {

}
.contact-section-left .pbmit-heading-subheading{
    margin-bottom: 30px;
}
.contact-section-left .pbmit-heading-subheading .pbmit-title{
    font-size: 36px;
}
.contact-section-left{
    font-size: 20px;
}
.contact-section-left .pbmit-social-links{
    margin-top: 40px;
} 
.contact-section-left .pbmit-social-links li a{
    width: 40px;
    height: 40px;
    color: var(--pbmit-white-color);
    background-color: #33b3e8;
    display: block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}   
.contact-section-left .pbmit-social-links li a:hover{
background-color: #105f9a;
    color: #fff ! important;
}  
.contact-section-left h3{
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 25px;
    color: #067bae;
} 
.contact-section-right h3{
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
}
.contact-section-right{
    background: #717171;
    padding: 45px 35px;
    height: 100%;
    text-align: center;
}  
.contact-section-right .contact-form-section{
    margin-bottom: 20px;
}
.contact-section-right p{
    color: #C0C0C0;
}
.contact-section-right .contact-form a{
    padding: 25px 45px;
}
.contact-section-right .contact-form .pbmit-btn:hover{
    background-color: #0887be;
}
.contact-section-right .contact-form textarea{
    padding: 12px 15px;
    resize: none;
}
.contact-section-left .pbmit-social-links li{
    display: inline-block;
    margin-right: 4px;
}
.contact-section-bg{
    
}
.contact-section-bg .contact-section-left .pbmit-ihbox-style-3{
    margin-bottom: 20px;
}
.contact-section-bg .contact-main-section{
/*    box-shadow: 1px 1px 2px 0px rgb(169 169 169);*/
    z-index: 1;
    position: relative;
    border-radius: 20px;
}
.contact-section iframe{
    height: 750px;
    width: 100%;
    filter: brightness( 100% ) contrast( 58% ) saturate( 80% ) blur( 0px ) hue-rotate( 0deg );
}
.contact-section-right .form-control{
    color: #000;
}
.map {
    margin: 0 auto;
    height: 100%;
    border: 1px solid #067bae;
    padding: 3px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
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;
}
/**08 - Comment Form **/
.comment-form .comment-notes{
    margin-bottom: 30px;
}
.form-control{
    background-color: #fff;
    padding: 0px 15px;
    height: 58px;
    font-size: 16px;
    border:none;
    border-radius: 6px;
}
.contact-form {

}
.contact-form textarea{
    padding: 10px 75px 0 20px;
    height: 150px;
}
.contact-form  input[type=submit]{
    background-color: #75b843;
    border: none;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 17px;
    padding: 12px 30px;
    transition: all .6s;
}
.contact-form  input[type=submit]:hover{
    background-color: #7cbf4a;
}
.input-group .form-control{
    border: none;
}
.input-group-text{
    background-color: var(--pbmit-white-color);
}
input:focus, .form-control:focus {
    outline: none!important;
    box-shadow: none !important;
}
.form-select {
    padding: 12px 15px;
    font-size: 16px;
    color: #848484;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    height: 60px;
}
.form-select:focus {
    border-color: #eee;
    outline: 0;
    box-shadow: none;
}
.form-check {
    margin-bottom: 30px;
}
.pbmit-grid-item {
    display: grid;
    margin-bottom: 0;
    padding: 0;
    width: auto!important;
}
.pbmit-card {
    box-shadow: 0 15px 38px 0 rgb(0 0 0 / 10%)!important;
    border-radius: 5px!important;
    border: 0;
    margin-bottom: 20px;
}
.pbmit-card-body {
    padding: 10px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    order: 2;
}
.pbmit-grid-item .pbmit-card-media img{
    border-radius: 0;
    box-shadow: none;
    display: block;
    height: auto;
    margin: 0;
    object-fit: cover;
    order: 1;
    width: 100%;
    transform: scale(1);
    -webkit-transition: all 0.6s ease-in-out;
}
.pbmit-media-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.pbmit-grid-item .pbmit-media-card-inner:after{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0,0,0,.2);
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}
.pbmit-grid-item:hover .pbmit-card-media .pbmit-media-card-inner:after{
    opacity: 1;
}
.pbmit-grid-item:hover .pbmit-card-media img{
    transform: scale(1.03) rotate(0.50deg);
}
.pbmit-card-title {
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 10px;
}
.pbmit-card-text {
    display: none;
}
.pbmit-progress-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}
.pbmit-card-progress .pbmit-info {
    display: flex;
    flex-direction: column;
    position: relative;
}
.pbmit-label {
    font-weight: 500;
    color: var(--pbmit-blackish-color);
}
.goal-text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--pbmit-global-color);
}
.pbmit-card-progress strong {
    display: none;
}
.pbmit_info {
    display: flex;
    flex-direction: column;
    position: relative;
}
.pbmit-card-progress .progress{
    border-bottom: none;
    background-color: #eee!important;
}
.pbmit-card-progress .progress .progress-bar{
    height: 100%;
    border-radius: 20px;
}
button.pbmit-btn.pbmit-btn- {
    display: none;
}
.pbmit-card-media {
    padding: 20px;
}
.donations-single-img::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    left: 0;
    background: linear-gradient(0deg,rgba(8, 24, 57,.60) 0%,rgba(0,50,129,0) 90%);
    opacity: 0;
    transform-origin: right center 0;
    transform: perspective(100px) rotateY(-120deg);
    transform-style: flat;
    transition: transform 0.5s ease-in-out,opacity 0.2s ease-in-out;
}
.donations-single-img:hover:before{
    opacity: .9;
    transform: rotateY(0deg);
}
.donations-single-details .pbmit-goal-progress {
    margin-top: 15px;
}
.donations-single-details .progress{
    border-bottom: none;
}
.single-progress-status {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.single-progress-status strong {
    padding-left: 15px;
    margin-right: 15px;
    font-weight: 500;
    color: var(--pbmit-blackish-color);
}
.pbmit-notice {
    position: relative;
    padding: 1em 1.5em 1em 2em;
    border-left: 4px solid;
    margin: 30px 0;
    background: #f3f3f3;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);
    border-color: #ffba00;
}
i.fa.fas.fa-exclamation-triangle{
    background-color: #ffba00;
    content: "";
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    position: absolute;
    top: 50%;
    font-size: 16px;
    margin-top: -15px;
    left: -17px;
    color: var(--pbmit-white-color);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    line-height: 30px;
    text-shadow: 1px 1px rgb(0 0 0 / 50%);
}
.pbmit-notice p{
    margin: 0!important;
    color: #333;
}
.donations-single-details li {
    list-style-type: none;
    list-style-image: none;
    margin: 0 5px 5px 0;
}
.pbmit-heading-subheading b{
    color: #000;
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
}
.about-section-home1 .about-left-section h2{
    color: #067bae;
    font-size: 38px;
    margin-bottom: 2px;
}
.acontent p{
/*    text-align: justify;*/
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 28px;
}
.acontent .pbmit-btn{
    margin-top: 5px;
}
.pbmit-footer-logo img{
    width: 100%;
    background: #fff;
    padding: 7px;
    border-radius: 4px;
}
.mef h3{
    text-transform: uppercase;
    color: #067bae;
    border-bottom: none!important;
    margin-bottom: 30px!important;
    padding: 0!important;
    position: relative;
    font-weight: 800;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    font-style: normal;
}
.mef {
	margin-top: 34px;
}
.pbmit-float-menu p{
    color: #fff;
    font-weight: 400;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 0;
    font-size: 15px;
}
.site-footer .pbmit-float-menu ul li a:hover{
	color:#75b843;
}
.pbmit-footer-section .widget-title, .pbmit-footer-section a img{
	width:20px;
	height:20px;
}
.pbmit-footer-copyright-box p{
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.call {
    position: fixed;
    bottom: 25px;
    left: 10px;
    background: #067bae;
    border-radius: 20px;
    padding: 10px 7px 3px;
    z-index: 99;
    box-shadow: 0px 0px 6px #5e595985;
    border: 1px solid #fff;
    display: none;
}
.call li {
    list-style: none;
    padding-bottom: 10px;
}
.call li a {
    display: block;
    background: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    color: #ff7222;
    border-radius: 50%;
}
.bannerin img{
	width:100%;
}
.testimonials{
    padding: 25px;
    background: #f1f2ff;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 1px 1px 5px #aeaeae;
}
.testimonials p {
    font-size: 16px;
    color: #000;
    text-align: justify;
    margin-bottom: 0;
    position: relative;
    padding-left: 38px;
}
.testimonials p i{
    font-size: 34px;
    color: #067bae6b;
    position: absolute;
    left: 0;
    top: -10px;
}
.testimonials h2 {
    font-size: 19px;
    font-weight: 600;
    color: #067bae;
    text-transform: capitalize;
    line-height: 26px;
    padding-top: 10px;
    padding-left: 38px;
    margin-bottom: 0;
}
.testimonials h2 span {
    color: #ffc107;
    font-size: 17px;
    padding-left: 5px;
    letter-spacing: 4px;
}
.butoon{
position:relative;
top:20px;
}
.skill ul li i{
	font-size: 8px;
    float: left;
    padding-right: 5px;
    position: relative;
    top: 9px;
    color: #105f9a;
}
.skill h3{
	    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}
.pbmit-footer-contact-info-wrap{
    font-weight: 400;
    line-height: 23px;
    font-size: 15px;
    color: #000;
}
.service-details h3{
    text-transform: uppercase;
    font-size: 24px;
    color: #0568b4;
}
.service-details p{
margin-bottom: 5px;
    text-align: justify;
}
.smile h2{
    font-size: 18px;
    line-height: 25px;
    text-transform: uppercase;
    padding-top: 10px;
    color: #75b843;
}
.smile ul li {
    margin-bottom: 10px;
}
.smile ul li i.height {
    height: 50px;
}
.smile ul li i {
    font-size: 9px;
    position: relative;
    bottom: -9px;
    padding-right: 5px;
    color: #75b843;
    float: left;
}
.panding{
/*	padding: 0 70px 0 100px;*/
}
.pbmit-pre-header-right {
	padding-right:45px;
}



.testimonial-area{
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 85px 0 35px;
    z-index: 1;
}
.testimonial-area .inner-content{
    /* position: relative; */
    display: block;
    /* padding-left: 200px; */
    padding-left: 0px;
    z-index: 1;
}
/* .testimonial-area .inner-content:before{ */
    /* position: absolute; */
    /* top: 0px; */
    /* left: 0px; */
    /* background: url(../images/icon/quote-2.png); */
    /* width: 250px; */
    /* height: 251px; */
    /* content: ""; */
    /* z-index: -1;     */
/* } */
.testimonial-area .sec-title{}
.testimonial-area .button {
    position: relative;
    display: block;
    margin-top: 7px;
}
.testimonial-area .button a{
    color: #303030;
    background: #f5f5f5;
    padding: 19px 50px 19px;
    border: 2px solid #e2e2e2;
}
.testimonial-area .button a:hover{
    background: #2f7abb;
    border-color: #2f7abb;
  color:#fff;
}

.testimonial-area .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
}
.single-testimonial-item{
    position: relative;
    display: block;
    width: 100%;
}
.single-testimonial-item .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 54px 25px 62px;
    z-index: 1;
}
.single-testimonial-item .text-holder:before {
    position: absolute;
    left: 115px;
    bottom: -2px;
    right: 115px;
    height: 2px;
    /* background: #64bcd2; */
    background: #2f7abb;
    content: "";
    transition: all 500ms ease;
}
.single-testimonial-item:hover .text-holder:before{
    left: 0;
    right: 0;
}
.single-testimonial-item .text-holder:after {
    position: absolute;
    top: 15px;
    left: 15px;
    background: url(../img/icon/quote.png);
    width: 41px;
    height: 28px;
    content: "";
    z-index: -1;
}
.single-testimonial-item .text-holder p{
    color: #444444;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.single-testimonial-item .img-holder{
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.single-testimonial-item .img-holder img{
    width: 100%;
    border-radius: 50%;
}
.single-testimonial-item .name{
    position: relative;
    display: block;
    padding-top: 56px;
}
.single-testimonial-item .name h3{
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 3px;
}
.single-testimonial-item .name span{
    color: #2f7abb;
}

.testimonial-area .owl-theme .owl-nav.disabled + .owl-dots {
    position: absolute;
    top: 0;
    left: -104px;
    margin: 29px 0;
}
.testimonial-area .owl-dots .owl-dot{
    position: relative;
  background-image:none;
  width: 20px;
  height: 20px;
  margin: 20.5px 4px;
    border: 2px solid #d9d9d9;
  padding: 0px;
    border-radius: 50%;
  background: #f5f5f5;
  transition: all 500ms ease;
  display: block;
}
.testimonial-area .owl-dots .owl-dot:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border: 2px solid #d9d9d9;
    content: "";
    border-radius: 50%;
    margin: 4px;
    transition: all 500ms ease;
}
.testimonial-area .owl-dots .owl-dot span{
  display:none; 
}
.testimonial-area .owl-dots .owl-dot.active{
    background: #2f7abb;
    border-color: #2f7abb;
}
.testimonial-area .owl-dots .owl-dot:hover{
    background: #2f7abb;
    border-color: #2f7abb;
}
.testimonial-area .owl-dots .owl-dot.active:before,
.testimonial-area .owl-dots .owl-dot:hover:before{
    background: #ffffff;
    border-color: #ffffff;
}
.testimonial-invild {

}
.testimonial-invild .review .review-description {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #dddddd63; 
    background: #eeeeee96;
    box-shadow: 0px 0px 5px #a1a1a133;
    text-align: center;
}
.testimonial-invild .review .review-description .first{
/*  float:left;*/
}
.testimonial-invild .review .review-description .first img{
  width:44px;
  height:44px;
  border-radius:50%;
}
.testimonial-invild .review .review-description .first p{
  font-size:28px;
  font-weight: 600;
  border:1px solid #75b843;
  background:#75b843;
  color:#fff;
  border-radius:50%;
  width:60px;
  height:60px;
  text-align:center;
  line-height:60px;
  margin: 0 auto;
  text-transform: uppercase;
}
.testimonial-invild .review .review-description .second {
  display: inline-block;
  padding-top: 15px;
}
.testimonial-invild .review .review-description .second ul {
  display:inline-block;
} 
.testimonial-invild .review .review-description .second h1{
    font-size: 21px;
    font-weight: 700;    
    color: #000;
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 4px;
}
.testimonial-invild .review .review-description .second ul li{
  float:left;
}
.testimonial-invild .review .review-description .second ul li i{
    color: rgb(255 180 0);
    font-size: 16px;
    margin: 0 1px;
}
.testimonial-invild .review .review-description .second ul .date-revi{
  font-size:13px;
  color:rgba(0, 0, 0, 0.5);
  padding-left:10px;
}
.testimonial-invild .review .review-description .review-title{
  float:unset;
  display:inline-block;
  padding-top: 5px;
}
.testimonial-invild .review .review-description .review-title h2{
  font-size: 17px;
  color:#000;
  font-weight:400;
  line-height:26px;
}
.testimonial-invild .review .review-description .review-title a{
    color: #067bae;
    font-size: 17px;
    text-transform: capitalize;
}
.testimonial-invild .review .review-description .review-title h2 a{
  font-size:14px;
  color:#000;
  font-weight:400;
  padding-top:5px;
}
.testimonial-invild .review .review-description .review-title .rev-img{
  padding-top:15px;
}
.testimonial-invild .review .review-description .review-title .rev-img img{
    width: 100px;
}
#more21, #more20, #more19, #more18, #more17, #more16, #more15, #more14, #more13, #more12, #more11, #more10, #more9, #more8, #more7, #more6, #more5, #more4, #more3, #more2, #more1, #more {
  display: none;
}

.testimonial-invild2{
    padding: 60px 0;
}
.testimonial-invild2 .review .review-description{
    margin: 15px 0;
}




#button {
  display: inline-block;
  background-color: #75b843;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 50px;
  right: 15px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #229ed5;
}
#button:active {
  background-color: #229ed5;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


.head-title {
    padding: 70px 0;
    background: url(../img/inner-page-bg.jpg) center no-repeat;
    background-size: cover;
}
.head-inner {    
    margin: 0 auto;
    text-align: center;
}
.head-inner h1 {
    font-size: 38px;
    color: #fff;
    margin: 0px;
    padding-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}
.head-inner ul {
    margin-bottom: 0;
    padding-left: 0;
}
.head-inner ul li {
    font-size: 18px;
    color: #fff;
    padding-right: 5px;
    display: inline-block;
    letter-spacing: 1px;
}
.head-inner ul li a {
    color: #fff;
    padding-right: 10px;
}
.head-inner ul li a:hover{
    color: #75b843;
}
.vd-consult{
    
}
.vd-consult a{
    padding: 12px 22px;
    margin-left: 60px;
    margin-right: 25px;
}


.slider {
  margin: 0 auto;
  max-width: 100%;
}

.slide_viewer {
  height: 340px;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}

.slide:first-child {
  display: block;
}

.slide:nth-of-type(1) {
  background: #D7A151;
}

.slide:nth-of-type(2) {
  background: #F4E4CD;
}

.slide:nth-of-type(3) {
  background: #C75534;
}

.slide:nth-of-type(4) {
  background: #D1D1D4;
}

.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

a.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: #428CC6;
  cursor: pointer;
}

.directional_nav {
  height: 340px;
  position: relative;
  top: -340px;
}

.previous_btn {
  bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}


.attachments{
    
}
.hospital_attachments{
    background: #067bae14;
}
.hospital_attachments .hosp-content{
    background: #fff;
/*    box-shadow: 0px 0px 5px #a4a4a4;*/
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #067bae3b;
}
.hospital_attachments .hosp-margin{
    margin-top: 25px;
}
.hospital_attachments .hosp-content iframe{
    border-radius: 10px;
    height: 100%;
    width: 100%;
    border: 1px solid #067bae1f;
}
.hospital_attachments .hosp-data{    
}
.hospital_attachments .hosp-data h2{
    font-size: 24px;
    color: #067bae;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 12px;
}
.hospital_attachments .hosp-data h3{
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 8px;
}
.hospital_attachments .hosp-data p{
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
}
.hospital_attachments .hosp-data b{
    font-weight: 600;
}
.hospital_attachments .hosp-data a{
    padding: 10px 18px;
}


.asked-que{
    padding: 60px 0;
    background: linear-gradient(180deg, #75b8431a, #067bae21); 
    background: #edefff;
/*    border-top: 1px dashed #067bae;*/
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  // height: 200px;
  border: 3px solid green; 
}
.container{
/*    max-width:900px;*/
    margin:auto;
}
.title{
    text-align:center;
    font-style: normal;  
}
.w3-panel h1{
    font-size: 40px;
    vertical-align:middle;
    font-weight: 600;
    padding-bottom: 20px;
    color: #053e6c;
}
.accordion{
    padding: 25px 20px 20px;
/*    background: linear-gradient(90deg, #067baec4, #067bae8c, #75b8437d, #75b843a1); */
    background: #fff;
    box-shadow: 0px 0px 3px 0px #bdbcbc;
    border-radius: 3px;
}
.accordion__item{
    margin-bottom:10px;
}
.accordion__item__header{
    background-color:#75b8431c;
    padding: 12px 15px;
    cursor:pointer;
    position:relative;
    color:#000;
    font-weight:400;
    font-size: 16px;
    border: 1px solid #75b84336;
    border-radius: 3px;
}
.accordion__item__header::before{
    height:8px;
    width:8px;
    content:"";
    position:absolute;
    right:13px;
    top:18px;
    transition:.5s all;
    transform:rotate(45deg);
    border-right:2px solid #000;
    border-bottom:2px solid #000;
}
.accordion__item__header.active{
    background-color: #067bae;
    color: #fff;
    transition: .5s;
    border: 1px solid #067bae;
    border-radius: 0;
}
.accordion__item__header.active::before{
    transform:rotate(-135deg);
    top:23px;
    border-right:2px solid #fff;
    border-bottom:2px solid #fff;
}
.accordion__item__content{
    overflow-y:auto;
    padding:10px 15px;
    display:none;
    border: 1px solid #067bae33;
}
.accordion__item__content p{
    font-size: 16px;
/*    padding: 10px;*/
    text-align: justify;
    line-height: 26px;
    margin-bottom: 0;
/*    border: 1px solid #067bae33;*/
    border-top: none;
    color: #000;
}
.accordion__item__content ul li{
    font-size: 16px;
    padding: 7px 0;
    text-align: justify;
    line-height: 26px;
    margin-bottom: 0;
    border-bottom: 1px solid #067bae33;
    border-top: none;
    color: #000;
    position: relative;
    padding-left: 25px;
}
.accordion__item__content ul li:last-child{
    border-bottom: none;
}
.accordion__item__content ul li b{
    font-weight: 600;
}
.accordion__item__content ul li a{
    color: #000;
}
.accordion__item__content ul li a:hover{
    color: #75b843;
}
.accordion__item__content ul li i{
    font-size: 15px;
    color: #75b843;
    position: absolute;
    left: 0;
    top: 14px;
}
.accordion_img{
  border: 1px solid #ddd;
}



.about-quote {
    background: #067bae12;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid #067bae2e;
    box-shadow: 1px 1px 3px #cecccc;
}
.about-quote span {
    display: block;
    padding-bottom: 10px;
    font-size: 20px;
    color: #272d33;
    font-weight: 600;
    text-transform: uppercase;
}
.about-quote ul {
    padding-left: 0;
}
.about-quote ul li {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    list-style: none;
    position: relative;
    padding-left: 28px;
}
.about-quote ul i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #067bae;
}



.article-sec {
    padding: 50px 0;
    background: #067bae0d;
}
.articles {
    background: #fff;
    padding: 10px;
    margin: 15px 0;
    box-shadow: 1px 1px 3px #8c8c8c;
}
.article-title1 {
    text-align: center;
}
.article-title1 img{
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.a1 {
    background: #0866bc;
    padding: 4px 28px;
    border-radius: 20px;
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
}
.a1:hover {
    color: #fff;
}
.articles p {
    padding: 15px 0 5px;
    color: #737373;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
}
.article-title h1 {
    font-size: 18px;
    color: #343434;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0;
}
.article-title p a {
    font-size: 17px;
    color: #0866bc;
    font-weight: 500;
    text-decoration: underline;
}


.orcid-id{
    margin-top: 20px;
}
.orcid-id a{
    /*color: #fff;
    padding: 10px 40px;
    font-size: 18px;*/
}
.orcid-id a img{
}


.vd-cnlt-dsc{
    padding: 60px 0;
}
.vd-cnlt-dsc h2{
    font-size: 26px;
    line-height: 40px;
    color: #067bae;
    font-weight: 700;
    padding-bottom: 10px;
    margin-top: 30px;
}

.vd-cnlt-dsc h2 span{
    font-size: 20px;
    color: #000;
}

.vd-cnlt-dsc p{
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-bottom: 10px;
}

.vd-cnlt-dsc ul li{
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.vd-cnlt-dsc ul li i{
    position: absolute;
    left: 0;
    top: 4px;
    color: #75b843;
}

.vd-cnlt-dsc h3{
    font-size: 22px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin-top: 30px;
}

.vd-cnlt-dsc b{
    font-weight: 600;
}

.vd-cnlt-dsc-cnt{
    padding: 10px 30px 30px;
    border: 1px solid #ddd;
    background: #067bae12;
    box-shadow: 0px 0px 8px #ddd;
}

.vd-cnlt-dsc-cnt .consult1{
    float: none;
    display: block;
    text-align: right;
}


.banner{
    height: 460px;
}

.con-btn img{
    width:32px;
    margin: 0 10px;
}
.cnt{
    text-align: center;
    margin-top: 30px;
}
.cnt p{
    font-size: 22px;
    font-weight: 600;
}
.cnt img{
    width: 40px;
}


.gallery-sec video{
    width: 100%;
    height: 400px;
}

.gallery-sec .vd{
    border: 1px solid #acacac;
    margin: 10px 20px;
    padding: 5px;
}


.foot-map iframe{
    border: 1px solid #9ea9f9;
    width: 100%;
    height: 100px;
}


.head-mid{
    display: flex;
/*    justify-content: space-around;*/
    float: right;
}
.social{
    margin: 0;
    margin-top: 35px;
}
.social li{
    display: inline-block;
}
.social li img{
    width: 35px;
}



.padding-section{
    padding: 60px 0;
    text-align: center;
}
.padding-section img{
/*    width: 400px;*/
}



.we-offer-area .item {
  background: #717171 none repeat scroll 0 0;
/*  border-left: 2px solid #75b843;*/
  box-shadow: 0 0 20px #cccccc6b;
  overflow: hidden;
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 10px;
  text-align: center;
}
.we-offer-area .our-offer-items.less-carousel .equal-height {
/*  margin-bottom: 30px;*/
}
.we-offer-area .item i {
    display: inline-block;
    font-size: 32px;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #067bae;
}
.we-offer-area .item h4 {
    font-size: 19px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}
.we-offer-area .item p {
  margin: 0;
  line-height: 25px;
  color: #fff;
}
.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}
.we-offer-area .item::after {
  background: #067bae none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}
.we-offer-area .item:hover::after {
  left: 0;
}
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff;
}
.we-offer-area .item:hover i{
    background: #fff;
    color: #75b843;
}



.tp-tabs, .tp-thumbs, .tp-bullets{
    left: 55% !important;
    top: auto !important;
    bottom: 35px;
}


.asyncGallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1000;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  transition: opacity 200ms, visibility 200ms;
}
.asyncGallery.is-visible {
  opacity: 1;
  visibility: visible;
}
.asyncGallery__Item {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: opacity 200ms, visibility 200ms;
}
.asyncGallery__Item.is-visible {
  opacity: 1;
  visibility: visible;
}
.asyncGallery__ItemImage img {
  max-height: 80vh;
  display: block;
}
.asyncGallery__ItemDescription,
.asyncGallery__Loader {
  color: #fff;
}
.asyncGallery__Loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: #fff;
  z-index: 100;
}
.asyncGallery__Loader.is-visible {
  display: block;
}
.asyncGallery button {
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
.asyncGallery__Close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
  z-index: 1000;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-image: url("data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTEycHgiIHZlcnNpb249IjEuMSIgaGVpZ2h0PSI1MTJweCIgdmlld0JveD0iMCAwIDY0IDY0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2NCA2NCI+CiAgPGc+CiAgICA8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjguOTQxLDMxLjc4NkwwLjYxMyw2MC4xMTRjLTAuNzg3LDAuNzg3LTAuNzg3LDIuMDYyLDAsMi44NDljMC4zOTMsMC4zOTQsMC45MDksMC41OSwxLjQyNCwwLjU5ICAgYzAuNTE2LDAsMS4wMzEtMC4xOTYsMS40MjQtMC41OWwyOC41NDEtMjguNTQxbDI4LjU0MSwyOC41NDFjMC4zOTQsMC4zOTQsMC45MDksMC41OSwxLjQyNCwwLjU5YzAuNTE1LDAsMS4wMzEtMC4xOTYsMS40MjQtMC41OSAgIGMwLjc4Ny0wLjc4NywwLjc4Ny0yLjA2MiwwLTIuODQ5TDM1LjA2NCwzMS43ODZMNjMuNDEsMy40MzhjMC43ODctMC43ODcsMC43ODctMi4wNjIsMC0yLjg0OWMtMC43ODctMC43ODYtMi4wNjItMC43ODYtMi44NDgsMCAgIEwzMi4wMDMsMjkuMTVMMy40NDEsMC41OWMtMC43ODctMC43ODYtMi4wNjEtMC43ODYtMi44NDgsMGMtMC43ODcsMC43ODctMC43ODcsMi4wNjIsMCwyLjg0OUwyOC45NDEsMzEuNzg2eiIvPgogIDwvZz4KPC9zdmc+Cg==");
}
.asyncGallery__Counter {
  display: none;
}
.asyncGallery__Dots {
  display: none;
}

.asyncGallery__Next,
.asyncGallery__Prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  z-index: 1000;
  transition: transform 200ms, opacity 200ms;
  transform: translateY(-50%);
}
.asyncGallery__Next:disabled,
.asyncGallery__Prev:disabled {
  opacity: 0.2;
  cursor: default;
}
.asyncGallery__Next:before,
.asyncGallery__Prev:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 129 129' xmlns:xlink='http://www.w3.org/1999/xlink' enable-background='new 0 0 129 129'%3E%3Cg%3E%3Cpath d='m40.4,121.3c-0.8,0.8-1.8,1.2-2.9,1.2s-2.1-0.4-2.9-1.2c-1.6-1.6-1.6-4.2 0-5.8l51-51-51-51c-1.6-1.6-1.6-4.2 0-5.8 1.6-1.6 4.2-1.6 5.8,0l53.9,53.9c1.6,1.6 1.6,4.2 0,5.8l-53.9,53.9z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}
.asyncGallery__Next {
  right: 40px;
}
.asyncGallery__Next:hover {
  transform: translateX(2px) translateY(-50%);
}
.asyncGallery__Next:before {
  transform: translate3d(-50%, -50%, 0);
}
.asyncGallery__Prev {
  left: 40px;
}
.asyncGallery__Prev:hover {
  transform: translateX(-2px) translateY(-50%);
}
.asyncGallery__Prev:before {
  transform: translate3d(-50%, -50%, 0) scale(-1);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
}
.gallery img { 
  transition: opacity 200ms;
  cursor: pointer;
  margin: 15px 0;
  width: 100%;
  border-radius: 30px;
}
.gallery img:hover{
    filter: brightness(1.1);
}



.doctors{
/*    background: #efefef;*/
}
.doctors ul{
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
}
.doctors ul li{
    list-style: none;
    background: #e3e0e0;
    margin: 4px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: max-content;
    display: inline-block;
}
.doctors ul li a{
    display: block;
    padding: 12px 25px;
    transition: 0.5s ease;
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
}
.doctors ul li:hover, .doctors ul li.active{
    background: #067bae;
}
.doctors ul li:hover a, .doctors ul li.active a{
    color: #fff;
}
.doctors .tab-content{
    background: #fff;
    height: 100%;
/*    padding: 30px;*/
    /* border: 1px solid #ddd; */
/*    box-shadow: 0px 0px 5px #9d9c9c38;*/
    margin-top: 0;
    text-align: center;
    border-radius: 20px;
}
.doctors .tab-content h3{
    font-size: 24px;
    color: #067bae;
    font-weight: 700;
    text-transform: capitalize;
}
.doctors .tab-content p{
    font-size: 18px;
    color: #000;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    line-height: 23px;
    font-weight: 500;
}
.doctors .tab-content .col-lg-6{
    margin-bottom: 20px;
}
.doctors .doctors-data{
    border: 1px solid #75b84357;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
    background: #f3ffeb;
}
.doctors .doctors-data img{
    width: 200px;
    border: 1px solid #75b84373;
    border-radius: 50%;
    margin-bottom: 20px;
}



.coming-soon-text h2{
    font-size: 68px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    color: #067bae;
    text-transform: uppercase;
}