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

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

#wr-btn-wrapper.hidden {
    bottom: 120px !important; /* Gizlenmiş durumda 50px olarak ayarlanacak */
}

.loader-wrap {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    z-index: 99999999999999;
  }
  
  .loader-wrap svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
    fill: var(--theme-secondary);
  }
  
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 2.2em;
    font-weight: 200;
    letter-spacing: 15px;
    text-transform: uppercase;
    z-index: 20;
    color: var(--theme-black);
  }
  
  .load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
  }
  
  .load-text span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  
  .load-text span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  
  .load-text span:nth-child(3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  
  .load-text span:nth-child(4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  
  .load-text span:nth-child(5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  
  .load-text span:nth-child(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  
  .load-text span:nth-child(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .load-text span:nth-child(8) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .load-text span:nth-child(9) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  .load-text span:nth-child(10) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .load-text span:nth-child(11) {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
  }
  .load-text span:nth-child(12) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
  }
  .load-text span:nth-child(13) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .load-text span:nth-child(14) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
  }
  .load-text span:nth-child(15) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
  }
  
  @-webkit-keyframes loading {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes loading {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: var(--theme-base);
    border-radius: 50%;
    mix-blend-mode: difference;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
    z-index: 99999;
}

.cursor-active {
    -webkit-transform: translate(-50%, -50%) scale(8);
    -ms-transform: translate(-50%, -50%) scale(8);
    transform: translate(-50%, -50%) scale(8);
    opacity: .2;
}
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    mix-blend-mode: difference;
  }
  
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  
  .progress-wrap::after {
    position: absolute;
    font-family: var(--font-awesome);
    content: '\f077';
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: #ccc;
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
  }
  
  .progress-wrap svg path {
    fill: none;
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: #ccc;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
  }

/*----------------------------------------*/
/*  00 - Home
/*----------------------------------------*/
/** Homepage 01 **/
.fid-style-7-area{
	margin-right: 70px;
}
.fid-style-7-area .pbminfotech-ele-fid-style-7:not(:first-child){
	border-top: 1px solid #1111121A;
	margin-top: 30px;
	padding-top: 40px;
}
.about-us-one-content{
	padding-left: 120px;
}
.about-us-one-content.right{
	padding-right: 120px;
	padding-left: 0;
}
.fid-one-bg{
	padding: 350px 0px 350px 0px;
}
.fid-bg-area{
	position: relative;
}
.fid-one-bg .pbmit-col-stretched-right{
	background-image: url(../images/homepage-01/bg/fid-bg.jpg);
}
.fid-bg-area .pbmit-col-stretched-right{
	position: absolute;
    height: 100%;
	right: 0;
    top: 0;
    left: 0;
    width: auto;
    z-index: 1;
    overflow: hidden;
    border-radius: 0px;
    background-color: transparent;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.fid-bg-area .fid-style-box{
	position: absolute;
	width: auto;
	max-width: 100%;
	left: 80px;
	bottom: 90px;
}
.team-one .pbmit-teambox-left{
	flex: 0 0 auto;
    width: 30%;
    padding-right: 60px;
}
.team-one .pbmit-teambox-right {
    flex: 0 0 auto;
    width: 70%;
}
.team-arrow .swiper-button-next:after, 
.team-arrow .swiper-button-prev:after,
.team-three-arrow .swiper-button-next:after,
.team-three-arrow .swiper-button-prev:after{
	color: var(--pbmit-secondary-color);
}
.testimonial-one{
	padding: 130px 0 120px 0;
}
.blog-one-bg{
	background-image: url(../images/homepage-01/bg/blog-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
}
.blog-one-rightbox{
	padding: 120px 200px 120px 100px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination-layout{
    padding-top:40px;
    padding-bottom:0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-layout ul li{
    display:inline-block;
    margin:0 3px
}
.pagination-layout ul li:last-child{
    margin-right:0
}
.pagination-layout ul li:first-child{
    margin-left:0
}
.pagination-layout ul li a{
    display:inline-block;
    border:1px solid var(--theme-black);
    color:var(--theme-black);
    font-weight:500;
    background-color:#fff;
    font-size:16px;
    width:50px;
    height:50px;
    line-height:49px;
    text-align: center;
    border-radius: 0;
}
.pagination-layout ul li a.current,
.pagination-layout ul li a:hover{
    background-color:var(--theme-secondary);
    color:var(--theme-black);
    font-weight: 700;
    border-color:transparent
}


/** Homepage 02 **/ 
.ihbox-two .pbmit-column:first-child{
	padding-right: 52px;
}
.ihbox-two .pbmit-column:nth-child(2){
	padding: 0 32px;
}
.ihbox-two .pbmit-column:last-child{
	padding-left: 52px;
}
.service-two{
	overflow: hidden;
}
.service-two-arrow .swiper-button-next:after, 
.service-two-arrow .swiper-button-prev:after{
	color: var(--theme-black);
}
.event-swiper_arrow{
	margin-top: 50px;
}
.event-swiper_arrow .swiper-button-next:after, 
.event-swiper_arrow .swiper-button-prev:after{
	color: var(--theme-black);
}
.about-us-two-content{
	padding: 130px 0px 130px 100px;
}
.about-us-two-content .pbmit-heading {
	margin-top: 40px;
}
.about-us-two-content .pbmit-heading h5{
	color: var(--theme-white);
	margin-bottom: 20px;
}
.pbmit-sticky-special{
	position: relative;
	overflow: hidden;
	height: 100vh !important;
}
.pbmit-miconheading-style-11:first-child .pbmit-ihbox-style-11 .pbmit-ihbox-contents{
	border-top: 2px solid var(--pbmit-blackish-color);
	padding-top: 32px;
}
.accordion-two-box{
	padding-left: 60px;
}
.testimonial-two {
	padding: 130px 0 590px 0;
}
.testimonial-two .pbmit-testimonialbox-right{
	padding-left: 75px;
	border-left: 1px solid rgba(255,255,255,.2);
}
.testimonial-two .swiper-slider,
.testimonial-four .swiper-slider{
	padding-bottom: 0;
}
.testimonial-two .swiper-horizontal>.swiper-pagination-bullets,
.testimonial-four .swiper-horizontal>.swiper-pagination-bullets,
.testimonial-five .swiper-horizontal>.swiper-pagination-bullets{
	bottom: 30px;
	text-align: right;
}
.testimonial-two .swiper-pagination-bullet{
	background: rgb(255,255,255,.50);
}
.testimonial-two .swiper-pagination-bullet-active{
	background-color: var(--theme-white);
}
.fid-bg-two{
	overflow: hidden;
	margin-top: -460px;
}
.fid-bg-two .fid-bg-area{
	padding: 360px 0;
}
.fid-bg-two .pbmit-col-stretched-right{
	background-image: url(../images/homepage-02/bg/fid-bg-01.jpg);
}

/** Homepage 03 **/ 
.about-three_img2{
	margin-top: 30px;
}
.about-us-three-rightbox{
	margin-left: 88px;
}
.about-us-three-content{
	margin-left: 80px;
}
.about-us-three-content .pbmit-desc{
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}
.about-us-three-content .list-group{
	margin: 50px 0;
}
.split-slide-section{
	background-image: url(../images/homepage-03/bg/splitslide-bg-pattern.png);
    background-position: 98% 10%;
    background-repeat: no-repeat;
}
.appointment-three {
	padding-top: 60px;
}
.appointment-three .form-img{
	text-align: center;
}
/** Homepage 04 **/ 
.about-four-rightbox{
	padding-left: 100px;
}
.about-four-right-img{
	background-image: url(../images/homepage-04/about-right-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
}
.pbmit-element-service-style-4 {
	overflow: hidden;
}
.pbmit-mask-image-style-1 .pbmit-mask-image-title-image{
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-position: center center;
	background-size: cover;
}
.pbmit-mask-image-style-1 .pbmit-element-title {
	font-size: 200px;
	line-height: 200px;
	font-weight: 700;
	margin-bottom: 20px;
}
.ihbox-section-four{
	margin-top: 50px;
}
.ihbox-section-four .col-md-6.col-xl-4:first-child .ihbox-style-7-box{
	border-right: 1px solid #384253;
	margin-right: 40px;
	padding-right: 80px;
}
.ihbox-section-four .col-md-6.col-xl-4:nth-child(2) .ihbox-style-7-box{
	padding: 0 70px;
}
.ihbox-section-four .col-md-6.col-xl-4:last-child .ihbox-style-7-box{
	border-left: 1px solid #384253;
	margin-left: 40px;
	padding-left: 80px;
}
.about-us-four-content{
	padding: 130px 0px 130px 100px;
}
.about-us-four-content .pbmit-heading{
	margin-bottom: 20px;
	color: var(--theme-white);
}
.about-us-four-content .list-group{
	margin: 40px 0 40px 50px;
}
.pbmit-bg-color-secondary .pbmit-element-miconheading-style-8 .swiper-button-prev::after,
.pbmit-bg-color-secondary .pbmit-element-miconheading-style-8 .swiper-button-next::after{
	color: rgba(255,255,255,.5);
}
.marquee-four{
	padding-bottom: 590px;
}
.fid-bg-four{
	margin-top: -460px;
	overflow: hidden;
}
.fid-bg-four .fid-bg-area {
    padding: 360px 0;
}
.fid-bg-four .pbmit-col-stretched-right{
	background-image: url(../images/homepage-04/bg/fid-bg.jpg);
}
.testimonial-four{
	padding: 390px 0px 130px 0px;
	margin-top: -260px;
}
.testimonial-four .swiper-button-next:after, 
.testimonial-four .swiper-button-prev:after{
	color: var(--pbmit-secondary-color);
}
.testimonial-four .pbmit-testimonialbox-right{
	border-left: 1px solid rgba(3, 37, 30,.2);
	padding-left: 75px;
}
/** Homepage 05 **/ 
.who-we-are-five-col1{
	width: 48%;
}
.who-we-are-five-col2{
	width: 52%;
}
.who-we-are-five-leftbox{
	padding: 35px 160px 0px 0px;
}
.who-we-are-five-imgbox{
	margin: 0 -55px 0 0;
	text-align: center;
}
.ihbox-five-box{
	border-top: 1px solid #E5E5E5;
	padding: 80px 0 130px 0;
}
.ihbox-five-box .pbmit-col-wrapper:first-child .pbmit-ihbox-style-6{
	margin-right: 75px;
}
.ihbox-five-box .pbmit-col-wrapper:nth-child(2) .pbmit-ihbox-style-6{
	margin: 0 37px;
}
.ihbox-five-box .pbmit-col-wrapper:last-child .pbmit-ihbox-style-6{
	margin-left: 75px;
}
.service-five-leftbox{
	background-image: url(../images/homepage-05/bg/service-side-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
}
.service-five-rightbox{
	position: relative;
	z-index: 1;
	padding: 100px 0px 100px 100px;
}
.service-five-rightbox .pbmit-col-stretched-right{
	position: absolute;
    height: 100%;
	right: 0;
    top: 0;
    left: 0;
    width: auto;
    z-index: -1;
    overflow: hidden;
	background-color: var(--pbmit-blackish-color);
	background-image: url(../images/homepage-05/bg/service-bg-pattern-01.png);
	background-position: 780px 60px;
    background-repeat: no-repeat;
    background-size: auto;
}
.service-five-rightbox .pbmit-heading-subheading .pbmit-subtitle{
	color: var(--theme-white);
	background-color: rgba(255,255,255,.2);
}
.service-five-bg-layer{
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-image: url(../images/homepage-05/bg/service-bg-pattern-02.png);
    background-position: -1% 555px;
    background-repeat: no-repeat;
    opacity: 1;
}
.service-five-rightbox .service-style-box{
	padding-left: 100px;
}
.service-five-rightbox .pbmit-service-style-5 .pbminfotech-box-number{
	color: rgba(255,255,255,.7);
}
.our-process-section-five{
	margin-top: -170px;
    padding: 170px 0px 130px 0px;
	overflow: hidden;
}
.pbmit-bg-color-light .pbmit-element-miconheading-style-8 .swiper-button-next:after, 
.pbmit-bg-color-light .pbmit-element-miconheading-style-8 .swiper-button-prev:after{
	color: var(--pbmit-secondary-color);
}
.testimonial-five{
	margin-top: -230px;
	padding: 360px 0px 130px 0px;
}
.testimonial-five .pbmit-testimonialbox-right{
	padding-left: 75px;
	border-left: 1px solid rgba(255,255,255,.2);
}
.testimonial-five .swiper-slider{
	padding-bottom: 0;
}
.testimonial-five .swiper-pagination .swiper-pagination-bullet{
	background: rgb(255,255,255,.50);
}
.testimonial-five .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--theme-white);
}
.blog-five-left-col{
	width: 40%;
}
.blog-five-right-col{
	width: 60%;
}
/*----------------------------------------*/
/*01 - Inner Page 
/*----------------------------------------*/
/** 01 - Our History **/
.our-history .about-us-three-rightbox .pbmit-desc{
	font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.pbmit-element-timeline-style-1{
	margin-top: 30px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-year{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
	color: var(--theme-white);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-title {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 15px;
	padding: 0px 80px;
	color: var(--theme-white);
}
.pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper {
	position: relative;
}
.pbmit-element-timeline-style-1 .pbmit-heading-subheading {
	margin-bottom: 80px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper:last-child:after,
.pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper:first-child:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -200%;
	width: calc(200% + -20px);
	height: 2px;
	background: rgba(5, 46, 38, 0.10 );
}
.pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper:last-child:after {
	left: inherit;
	right: -200%;
	width: calc(200% + -10px);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-desc{
	margin: 0;
	padding: 0 50px;
}
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-desc {
	color: rgba(255, 255, 255,0.6);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i{
	color: rgba(255, 255, 255,.1);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i:after {
	content: "";
	position: absolute;
	left: 10px;
	right: 0;
	bottom: -36px;
	width: 1px;
	height: 40px;
	margin: 0;
	z-index: -5;
	background-color: rgba(5, 46, 38, 0.10 );
}
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i:after {
	background-color: #29303c;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .steps-dot i:after {
	left: 10px;
	top: -36px;
	bottom: auto;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper {
	display: grid;
	width: 100%;
	height: auto;
	position: relative;
	justify-items: center;
	grid-template-rows: 1fr 1fr;
	text-align: center;
	grid-gap: 160px;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height.steps-content_wrap{
	justify-content: flex-end;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot{
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	height: -moz-fit-content;
	height: fit-content;
	margin: auto !important;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i{
	font-size: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	-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-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after {
	content: "";
	width: calc(56% + 0px);
	height: 2px;
	display: block;
	position: absolute;
	top: 0;
	margin: auto;
	left: -29px;
	background: rgba(5, 46, 38, 0.10 );
}
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before,
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after{
	background-color: rgba(255, 255, 255,.1);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before {
	right: -1px;
    left: inherit;
    width: calc(50% + -6px);
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-same-height {
	display: flex;
	flex-direction: column;
	justify-content: end;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper.pbmit-slide-even .pbmit-feature-image{
	order: 1;
	justify-content: start;
	transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
}
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper:not(.pbmit-slide-even) .pbmit-feature-image {
	transition: all 0.4s, opacity 0.4s 0.9s, transform 0.4s 0.9s;
} 
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-feature-image,
.pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-content_wrap {
	opacity: 1;
} 
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper:last-child:after,
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline .pbmit-timeline-wrapper:first-child:after,
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::before,
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot .steps-dot-line::after,
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i:after {
	background-color: rgba(255,255,255, 0.10 );
}
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .steps-dot i {
	color: rgba(255,255,255, 0.10 );
}
.pbmit-bg-color-blackish .pbmit-element-timeline-style-1 .pbmit-timeline-wrapper .pbmit-timeline-year {
	color: var(--theme-white);
}
/** 02 - Our Plans **/
.our-plans .testimonial-two{
	padding: 130px 0 130px 0;
}
/** 03 - Service Detail **/
.service_details{
	padding-top: 80px;
	padding-bottom: 80px;
}
.service-left-col{
    flex: 0 0 25%;
    max-width: 25%;
}
.service-right-col{
    flex: 0 0 75%;
    max-width: 75%;
	padding-left: 30px;
}
.service_details .all-post-list li{
	padding: 12px 30px;
    margin: 0;
	position: relative;
	border-radius: 50px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.service_details .all-post-list li:not(:last-child){
	margin-bottom: 2px;
}
.service_details .all-post-list li:before{
	position: absolute;
    content: " ";
    display: inline-block;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px;
    -webkit-transition: all .500s ease-in-out;
    transition: all .500s ease-in-out;
}
.service_details .all-post-list ul > li a{
	display: block;
    position: relative;
    border-radius: 0;
    font-size: 14px;
    line-height: 24px;
	font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 25px;
}
.service_details .all-post-list ul > li a:before{
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    z-index: -1;
    -webkit-transition: all .500s ease-in-out;
    transition: all .500s ease-in-out;
    background-color: var(--theme-secondary);
    -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%);
}
.service_details .all-post-list ul > li a:after{
	position: absolute;
    font-family: 'pbminfotech-base-icons';
    content: '\e815';
    right: -15px;
    top: 50%;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    color: var(--theme-black);
    line-height: normal;
    font-weight: 400;
    font-style: normal;
    -webkit-transition: all .500s ease-in-out;
    transition: all .500s ease-in-out;
    -khtml-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    transform: translateX(0%) translateY(-50%) rotate(-45deg);
}
.service_details .all-post-list ul > li.post-active:before{
	width: 100%;
    background-color: var(--theme-secondary);
}
.service_details .all-post-list ul > li.post-active a,
.service_details .all-post-list ul > li:hover a{
	color: var(--theme-black);
}
.service_details .all-post-list ul > li.post-active a:before,
.service_details .all-post-list ul > li:hover a:before{
	background-color: var(--theme-black);
}
.service_details .all-post-list ul > li.post-active a:after,
.service_details .all-post-list ul > li:hover a:after{
	opacity: 1;
    visibility: visible;
}
.service_details .all-post-list ul > li:hover:before{
	width: 100%;
	background-color: var(--theme-secondary);
}
.widget .download .item-download:first-child a{
    margin-bottom: 20px;
}
.widget .download .item-download a{
	position: relative;
    text-align: center;
    padding: 20px 30px 20px 25px;
    display: flex;
	border-radius: 50px;
    align-items: center;
	justify-content: space-between;
	border: 1px solid rgba(33, 44, 64,.5);
}
.widget .download .item-download .pbmit-download-icon{
	display: flex;
    align-items: center;
}
.widget .download .item-download .pbmit-download-icon i{
	font-size: 25px;
    line-height: 25px;
    margin-right: 20px;
}
.widget .download .item-download .pbmit-download-title{
	font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--pbmit-blackish-color);
}
.widget .download .item-download .pbmit-download-arrow i{
	font-size: 20px;
	line-height: 20px;
}
.widget .download .item-download a:hover{
	background-color: var(--pbmit-blackish-color);
}
.widget .download .item-download a:hover .pbmit-download-icon i,
.widget .download .item-download a:hover .pbmit-download-title,
.widget .download .item-download a:hover .pbmit-download-arrow i
/* .widget .download .item-download:last-child .pbmit-download-icon i, */
/* .widget .download .item-download:last-child .pbmit-download-title, */
/* .widget .download .item-download:last-child .pbmit-download-arrow i{ */{
	color: var(--theme-white);
}
/* .widget .download .item-download:last-child a{
	background-color: var(--pbmit-global-color);
} */
/* .widget .download .item-download:last-child a:hover{
	background-color: var(--pbmit-secondary-color);
} */
.pbmit-service-feature-image img{
	width: 100%;
    aspect-ratio: 1000 / 667;
    object-fit: cover;
	margin-bottom: 20px;
}
.pbmit-service-single .pbmit-heading-subheading{
	margin-bottom: 0;
}
.pbmit-service-single .pbmit-heading-subheading .pbmit-title{
	font-weight: 600;
    font-size: 36px;
    line-height: 42px;
	margin-bottom: 20px;
}
.pbmit-service_imgbox{
	margin-bottom: 50px;
}
.pbmit-service-single .list-group{
	margin-bottom: 50px;
	padding-top: 20px;
}
.chart-card-area{
	margin-bottom: 50px;
}

/* --------------------------------*/
/* Document */
/* --------------------------------*/

.document-widget{
    position: relative;
    /* margin-bottom: 40px; */
  }
  .document-box+.document-box{
    margin-top: 20px;
  }
  .document-box {
    padding: 15px 20px;
    border: 1px solid rgba(var(--theme-black-rgb), 0.5);
    border-radius: 50px;
    background-color: transparent;
    /* margin-bottom: 10px;  */
    transition: 0.5s;
  }
  .document-box a{
    display: flex;
    width: 100%;
    align-items: center;
  }
  .document-box .icon span {
    font-size: 24px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    background-color: transparent;
    border: 1px solid rgba(var(--theme-black-rgb), 0.5);
    transition: 0.5s;
    color: var(--theme-black);
  }
  
  .document-box .text h6{
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-black);
    transition: 0.5s;
    text-transform: capitalize;
    margin-bottom: 0;
  }
  .document-box .text p{
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--theme-text-color);
    transition: 0.5s;
    /* margin-top: 5px; */
    margin-bottom: 0 !important;
  }
  .document-box .text span {
    display: block;
    color: var(--theme-gray);
    font-weight: 400;
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .document-box .text {
      font-size: 14px;
    }
  }
  .document-box:hover{
    background: var(--theme-secondary);
    border: 1px solid var(--theme-secondary);
  }
  .document-box:hover .icon span {
    border: 1px solid var(--theme-white);
    color: var(--theme-white);
  }
  .document-box:hover .text h6,
  .document-box:hover .text p{
    color: var(--theme-white) !important;
  }

/* - ------ ------------------ */
/*Galery*/
/* -------------------------------- */

.tp-project-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
  }
  .tp-project-thumb {
    position: relative;
    overflow: hidden;
  }
  .tp-project-thumb::after {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(22, 23, 26, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }
  .tp-project-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: 1.3s all ease;
    margin-bottom: 0 !important;
  }
  .tp-project-content {
    position: absolute;
    width: 80%;
    height: 80%;
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(var(--theme-secondary-rgb), 0.9);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tp-project-content > span.icon {
    height: 60px;
    width: 60px;
    line-height: 64px;
    font-size: 28px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--theme-base);
    background-color: var(--theme-white);
  }
  .tp-project-content > span.icon i{
    font-weight: 300;
  }
  .tp-project-content span {
    font-size: 18px;
    color: #eeeeee;
    display: block;
    margin-bottom: 5px;
  }
  .tp-project-title {
    /* font-size: 22px;
    margin-bottom: 0;
    color: var(--theme-white); */
    font-size: 18px !important;
    margin-bottom: 0;
    color: var(--theme-white) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 20px;
  }
  .tp-project-item:hover .tp-project-content {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .tp-project-item:hover .tp-project-thumb::after {
    opacity: 1;
    visibility: visible;
  }
  .tp-project-item:hover .tp-project-thumb img {
    transform: scale(1.2);
  }

/* -------------------------------- */


/** 04 - Project Detail **/
.pbmit-portfolio-single .pbmit-underline{
	font-weight: 600;
	color: var(--pbmit-blackish-color);
}
.pbmit-single-project-details-list {
    padding: 50px;
    margin-bottom: 60px;
	background-color: var(--pbmit-light-color);
}
.pbmit-portfolio-lines-ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 0 30px;
}
.pbmit-portfolio-lines-ul li{
	position: relative;
	padding-left: 15px;
}
.pbmit-portfolio-lines-ul li{
	font-weight: 700;
	font-family: var(--theme-font-heading);
}
.pbmit-portfolio-lines-ul li:before{
	content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: var(--pbmit-global-color);
}
.pbmit-portfolio-line-title,
.pbmit-portfolio-line-value{
    font-size: 15px;
    line-height: 21px;
	font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--pbmit-blackish-color);
}
.pbmit-portfolio-line-value{
	color: #666;
	padding-left: 5px;
	text-transform: capitalize;
}
.pbmit-pf-entry-content .pbmit-heading-subheading{
	margin-bottom: 0;
}
.pbmit-pf-entry-content .pbmit-heading-subheading .pbmit-title{
	font-size: 36px;
	line-height: 42px;
	font-weight: 600;
	margin-bottom: 20px;
}
.pbmit-pf_imgbox .col-md-4:first-child{
	padding: 0 20px 0 0;
}
.pbmit-pf_imgbox .col-md-4:nth-child(2){
	padding: 0 10px 0 10px;
}
.pbmit-pf_imgbox .col-md-4:last-child{
	padding-left: 20px;
}
.pbmit-pf_content{
	margin-top: 70px;
}
.pbmit-pf_content .list-group{
	margin: 60px 0 40px 0;
}
.pbmit-pf-last_sec{
	margin-top: 70px;
}
.pbmit-team-style_box{
	margin-top: 50px;
}
.pbmit-portfolio-single .navigation{
	margin-top: 80px;
}
.pbmit-portfolio-single .navigation .nav-links{
	padding-bottom: 0;
    margin-bottom: 0;
    justify-content: space-between;
    border-top: 1px solid rgba(17, 25, 38,.1);
}
.masonry-col,
.masonry-wide,
.masonry-grid-col,
.blog-grid-col-4,
.portfolio-grid-col,
.portfolio-grid-col-wide,
.sortable-grid-col{
	padding-left: 15px;
	padding-right: 15px;
}

/** 05 - Blog Detail **/
/** Sidebar Right**/
.sidebar .widget{ 
    border: none;
    padding: 30px;
    margin-bottom: 40px;
    background-color:transparent;
    border: 1px solid var(--theme-black);
}
.sidebar .widget:last-child{
    margin-bottom: 0;
}
.sidebar .widget .widget-title{ 
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
	margin-bottom: 20px;
} 
.widget .search-form {
    position: relative;
}
.widget .search-form input{
	height: 55px;
	padding: 0 50px 0 30px;
    border-radius: 50px;
	display: block;
    width: 100%;
	font-size: 15px;
	line-height: normal;
	font-weight: 400;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-light-color);
    border: 1px solid rgba(17, 25, 38,.2);
}
.widget .search-form .search-submit{
	position: absolute;
    right: 0px;
    padding: 0;
    outline: none;
	height: 55px;
    width: 55px;
	line-height: 58px;
    top: 0px;
    color: var(--theme-white);
    font-size: 16px;
	background-color: transparent;
    z-index: 1;
	border: none;
}
.widget .search-form .search-submit:after{
	position: absolute;
    font-family: 'pbminfotech-base-icons';
    content: '\e80d';
    right: 20px;
    top: 50%;
    font-size: 18px;
    color: var(--pbmit-blackish-color);
    line-height: normal;
    font-weight: 400;
    font-style: normal;
    -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%);
}
.sidebar .widget-categories li{
	position: relative;
	padding: 0;
}
.sidebar .widget-categories .pbmit-cat-li{
	display: flex;
    align-items: center;
    justify-content: space-between;
	font-family: var(--theme-font-heading);
    font-weight: 700;
    font-style: normal;
}
.sidebar .widget-categories .pbmit-cat-li a{
	font-size: 13px;
    text-transform: uppercase;
    color: var(--pbmit-heading-typography-color);
    letter-spacing: 1px;
	font-weight: 600;
	padding: 0 10px 0 20px;
    margin: 8px 0;
    display: block;
    line-height: normal;
    position: relative;
}
.sidebar .widget-categories .pbmit-cat-li a:before{
	content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    background-color: var(--theme-secondary);
    -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%);
}
.sidebar .widget-categories .pbmit-brackets{
	color: var(--theme-secondary);
    font-size: 13px;
}
.sidebar .widget-categories .pbmit-cat-li a:hover,
.sidebar .widget-categories .pbmit-cat-li a:hover+.pbmit-brackets{
	color: var(--theme-secondary);
}
.widget-recent-post .recent-post-list-li{
	display: flex!important;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--theme-black);
}
.widget-recent-post .recent-post-list-li:first-child{
	padding-top: 0;
}
.widget-recent-post .recent-post-list-li:last-child{
	padding-bottom: 0;
    border-bottom: none;
}
.widget-recent-post .recent-post-list-li>a{
	width: 90px;
    flex-shrink: 0;
    margin-right: 15px;
	display: inline-block;
}
.widget-recent-post .recent-post-list-li img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.widget-recent-post .pbmit-rpw-title{
	font-weight: 800;
    font-style: normal;
	font-family: var(--theme-font-heading);
}
.widget-recent-post .pbmit-rpw-title a{
	margin-bottom: 8px;
    font-size: 16px;
    text-transform: none;
    line-height: 22px;
    overflow: hidden;
	font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--theme-black);
}
.widget-recent-post .pbmit-rpw-title a:hover{
	color: var(--theme-secondary);
}
.pbmit-rpw-content .pbmit-rpw-date{
	display: block;
    font-size: 13px;
    line-height: 14px;
    font-weight: 200;
    margin-top: 0;
	text-transform: capitalize;
	color: var(--theme-text-color);
}
.pbmit-rpw-content .pbmit-rpw-date a{
	font-size: 13px;
    color: #666;
	font-weight: 400;
	letter-spacing: 0;
	font-family: var(--theme-font-heading);
}
aside.widget.pbmit-service-ad{
	background-image: url(../images/resources/contact-widget.jpg);
	position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    border: none;
}
aside.widget.pbmit-service-ad:before{
	position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--theme-secondary-rgb), .7);
    mix-blend-mode: multiply;
}
.widget.pbmit-service-ad .textwidget:before,
.widget.pbmit-service-ad .textwidget:after{
	content: "";
    display: table;
}
.widget.pbmit-service-ad .textwidget:after{
	clear: both;
}
.widget.pbmit-service-ad .pbmit-service-ads{
	position: relative;
    overflow: hidden;
	text-align: center;
    padding: 50px 30px;
    color: var(--theme-white);
}
.pbmit-service-ads .pbmit-logo-img img{
	width: 100%;
}
.pbmit-service-ads .pbmit-ads-title{
	margin: 50px 0 30px 0;
}
.pbmit-service-ads .pbmit-title-one{
	font-size: 36px;
    line-height: 46px;
    margin: 0;
    color: var(--theme-white);
    letter-spacing: 1px;
    font-family: var(--theme-font-heading);
    font-weight: 600;
}
.pbmit-service-ads .pbmit-title-second{
	font-size: 32px;
    line-height: 40px;
    margin: 0;
    color: var(--theme-white);    
    font-family: var(--theme-font-heading);
    font-weight: 400;
}
.pbmit-service-ads .pbmit-ads-contact{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	color: var(--theme-white);
}
.pbmit-service-ads .pbmit-ads-contact .pbmit-ads-number{
    font-size: 20px;
    line-height: 24px;
    margin-right: 10px;
    color: var(--theme-white);
}
.pbmit-service-ads .pbmit-ads-contact .pbmit-ads-number a{
    color: inherit;
}

.pbmit-service-ads .pbmit-ads-contact i{
	font-size: 24px;
    line-height: 24px;
    margin-right: 10px;
}
aside.widget.widget-tag-cloud a,
.pbmit-blog-meta-bottom .pbmit-meta-tags a{
	margin: 0 4px 8px 0;
    display: inline-block;
    font-size: 14px;
    padding: 0 16px;
    height: 27px;
    line-height: 27px;
	border-radius: 50px;
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
    letter-spacing: 0px;
    color: var(--pbmit-blackish-color);
    background-color: var(--pbmit-light-color);
}
aside.widget.widget-tag-cloud a:hover,
.pbmit-blog-meta-bottom .pbmit-meta-tags a:hover{
	color: var(--theme-white);
	background-color: var(--pbmit-blackish-color);
}
/** Blog Classic **/
.site_content{
	padding-top: 80px;
	padding-bottom: 80px;
}
.post.blog-classic{
    margin-bottom: 60px;
    position: relative;
    background: transparent;
}
.post.blog-classic:last-child {
    margin-bottom: 0px;
}
.post.blog-classic .pbmit-featured-img-wrapper{
	position: relative;
    margin-bottom: 25px;
}
.blog-classic .pbmit-blog-classic-inner{
	background: transparent;
    padding: 0;
    position: relative;
}
.pbmit-blog-meta.pbmit-blog-meta-top{
	position: relative;
    font-size: 14px;
	margin-bottom: 6px;
}
.pbmit-blog-meta-top .pbmit-meta {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    padding-left: 0;
    font-size: 14px;
	padding-right: 20px;
    letter-spacing: 1px;
	line-height: normal;
    text-transform: uppercase;
}
.pbmit-blog-meta-top .pbmit-meta i{
    margin-right: 3px;
    color: var(--theme-text-color);
}
.pbmit-blog-meta-top .pbmit-meta:last-child{
	margin-right: 0;
	padding: 0;
}
.pbmit-blog-meta-top .pbmit-meta a{
	color: inherit;
}
.pbmit-blog-meta-top .pbmit-meta:not(:last-child):before{
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: var(--theme-secondary-4);
    -khtml-transform: translateX(0%) translateY(-50%);
    -moz-transform: translateX(0%) translateY(-50%);
    -ms-transform: translateX(0%) translateY(-50%);
    -o-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
}
.pbmit-blog-meta-top .pbmit-meta a:hover{
	color: var(--theme-secondary);
}
.blog-classic .pbmit-post-title{
	margin-bottom: 0;
    font-size: 40px;
    line-height: 50px;
	font-weight: 500;
}
.blog-classic .pbmit-entry-content{
	margin-top: 20px;
    margin-bottom: 0;
	padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* =================================================================*/
/* BLOG İÇERİK */
/* =================================================================*/


.blog-classic .pbmit-entry_content h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 6px;
    margin-bottom: 12px;
}
.blog-classic .pbmit-entry_content h1:first-of-type::first-letter {
    color: var(--theme-secondary);
}
.blog-classic .pbmit-entry_content h1:first-of-type{
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pbmit-light-color);
    margin-bottom: 15px;
}
.blog-classic .pbmit-entry_content h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 8px;
    margin-bottom: 12px;
}
.blog-classic .pbmit-entry_content h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.blog-classic .pbmit-entry_content h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.blog-classic .pbmit-entry_content h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.blog-classic .pbmit-entry_content h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.blog-classic .pbmit-entry_content p{
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-text-color);
    line-height: 28px;
}
.blog-classic .pbmit-entry_content p+ul,
.blog-classic .pbmit-entry_content p+p{
    margin-top: 20px;
}
.blog-classic .pbmit-entry_content ul,
.blog-classic .pbmit-entry_content ol{
    padding-left: 20px;
    margin-bottom: 20px;
}
.blog-classic .pbmit-entry_content ul li,
.blog-classic .pbmit-entry_content ol li{
    font-weight: 400;
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 5px;
    list-style: circle;
}
.blog-classic .pbmit-entry_content ul li::marker,
.blog-classic .pbmit-entry_content ol li::marker{
    color: var(--theme-secondary);
}  
.blog-classic .pbmit-entry_content blockquote {
    background: var(--pbmit-light-color);
    border-left: 10px solid var(--theme-secondary);
    margin-bottom: 20px;
    padding: 40px 20px;
    border-radius: 0;
}
.blog-classic .pbmit-entry_content blockquote:before {
    color: var(--theme-secondary);
    content: open-quote;
    font-size: 4.5em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
.blog-classic .pbmit-entry_content blockquote p {
    display: inline;
    font-weight: 400;
    color: var(--theme-text-color);
    font-size: 16px;
}

/* =================================================================*/
/* Hizmet İÇERİK */
/* =================================================================*/


.service_details .pbmit-entry_content h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 1px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 6px;
    margin-bottom: 12px;
}
.service_details .pbmit-entry_content h1:first-of-type::first-letter {
    color: var(--theme-secondary);
    font-size: 55px;
}
.service_details .pbmit-entry_content h1:first-of-type{
    position: relative;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pbmit-light-color);
    margin-bottom: 15px;
}
.service_details .pbmit-entry_content h1:first-of-type::before {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    content: "";
    background-color: var(--theme-secondary);
}
.service_details .pbmit-entry_content h1:first-of-type span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 18px;
        /* padding-left: 0.25em; */
        padding: 10px 0 5px 0;
    color: rgba(var(--theme-black-rgb), 0.6);
    display: block;
}


.service_details .pbmit-entry_content h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 8px;
    margin-bottom: 12px;
}
.service_details .pbmit-entry_content h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.service_details .pbmit-entry_content h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.service_details .pbmit-entry_content h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.service_details .pbmit-entry_content h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: none;
    font-style: normal;
    color: var(--pbmit-heading-color);    
    margin-top: 10px;
    margin-bottom: 12px;
}
  
.service_details .pbmit-entry_content p{
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-text-color);
    line-height: 28px;
}
.service_details .pbmit-entry_content p+ul,
.service_details .pbmit-entry_content p+p{
    margin-top: 20px;
}
.service_details .pbmit-entry_content ul,
.service_details .pbmit-entry_content ol{
    padding-left: 20px;
    margin-bottom: 20px;
}
.service_details .pbmit-entry_content ul li,
.service_details .pbmit-entry_content ol li{
    font-weight: 400;
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 5px;
    list-style: circle;
}
.service_details .pbmit-entry_content ul li::marker,
.service_details .pbmit-entry_content ol li::marker{
    color: var(--theme-secondary);
}  
.service_details .pbmit-entry_content blockquote {
    background: var(--pbmit-light-color);
    border-left: 10px solid var(--theme-secondary);
    margin-bottom: 20px;
    padding: 40px 20px;
    border-radius: 0;
}
.service_details .pbmit-entry_content blockquote:before {
    color: var(--theme-secondary);
    content: open-quote;
    font-size: 4.5em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
.service_details .pbmit-entry_content blockquote p {
    display: inline;
    font-weight: 400;
    color: var(--theme-text-color);
    font-size: 16px;
}


/* -------------------------------- */


.blog-classic .pbmit-read-more-link{
	margin-left: auto;
    vertical-align: top;
    margin-top: 30px;
}
.blog-classic .pbmit-read-more-link a{
	padding: 15px 30px;
	border-radius: 50px;
    display: inline-block;
    position: relative;
	font-weight: 600;
	font-size: 12px;
    line-height: 24px;
    letter-spacing: 1px;
	text-transform: uppercase;
    color: var(--theme-white);
    background-color: var(--pbmit-global-color);
	font-family: var(--theme-font-heading);
}
.blog-classic .pbmit-read-more-link a span{
	padding-right: 25px;
    position: relative;
}
.blog-classic .pbmit-read-more-link a span:after{
	content: "\e815";
    position: absolute;
    right: 0;
    top: 51%;
    font-size: 13px;
    font-family: 'pbminfotech-base-icons';
    -webkit-transition: all .200s ease-in-out;
    transition: all .200s ease-in-out;
    -khtml-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    transform: translateX(0%) translateY(-50%) rotate(-45deg);
}
.blog-classic .pbmit-read-more-link a:hover span:after{
	transform: translateX(0%) translateY(-50%) rotate(0);
}
/** Blog Single **/
.blog-details:before,
.blog-details:after{
	content: "";
    display: table;
}
.blog-details:after{
	clear: both;
}
.blog-details .post.blog-classic{
	margin-bottom: 0;
}

.blog-details .post.blog-classic .pbmit-featured-img-wrapper img.page-banner{
	width: 100%;
    aspect-ratio: 1000 / 667;
    object-fit: cover;
}

.blog-details .pbmit-blog-meta.pbmit-blog-meta-top{
	margin-bottom: 20px;
}
.pbmit-entry_content .pbmit-underline,
.pbmit-entry-content .pbmit-underline{
	font-weight: 600;
	color: var(--pbmit-blackish-color);
}
.pbmit-entry_content blockquote{
	border: none;
    font-size: 22px;
    line-height: 34px;
    margin: 40px 0 40px;
    padding: 45px 55px 45px 120px;
    position: relative;
    font-weight: 500!important;
    overflow: hidden;
	border-left: 5px solid var(--pbmit-blackish-color);
    color: var(--pbmit-blackish-color);
	background: var(--pbmit-light-color);
	font-family: var(--theme-font-heading);
}
.pbmit-entry_content blockquote:before{
	position: absolute;
    content: '\e88e';
    font-family: 'pbminfotech-base-icons';
    font-size: 30px;
    line-height: 30px;
    left: 60px;
    top: 55px;
    z-index: 1;
    color: rgba(33, 44, 64,.7);
}
.pbmit-entry_content blockquote cite{
	display: block;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-style: normal!important;
    margin-top: 10px;
    opacity: 1;
	font-weight: 500;
    letter-spacing: 1px;
    color: var(--pbmit-blackish-color);
	font-family: var(--theme-font-heading);
}
.pbmit-entry_content blockquote:after{
	position: absolute;
    content: "\e8d6";
    font-family: "pbminfotech-base-icons";
    font-size: 85px;
    line-height: 80px;
    left: 1px;
    top: 40px;
    z-index: 1;
    color: var(--pbmit-global-color);
}
.pbmit-entry_content .wp-block-columns{
	display: flex;
	margin-bottom: 1.75em;
}
.pbmit-entry_content .wp-block-columns img{
	margin: 15px 0;
}
.pbmit-entry_content .pbmit-blog_list{
	padding: 0;
	margin-top: 10px;
    line-height: 35px;
    font-weight: 500;
    color: var(--pbmit-global-color);
    display: block;
}
.pbmit-blog-meta-bottom{
	display: flex;
	padding: 40px 0 30px;
    margin-top: 0;
	border-bottom: 1px solid #e5e5e5;
}
.pbmit-blog-meta-bottom .pbmit-meta-tags a{
	color: #787c8b;
}
.blog-details .post-navigation{
	padding-bottom: 50px;
}
.post-navigation .nav-links{
	margin-top: 0;
    padding: 50px 0;
	padding-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    align-items: normal;
    width: 100%;
}
.blog-details .post-navigation .nav-previous,
.blog-details .post-navigation .nav-next{
	position: relative;
    width: calc(50% - 15px);
}
.post-navigation .nav-previous{
	text-align: left;
    margin-right: auto!important;
}
.blog-details .post-navigation .nav-links a{
	display: block;
    text-align: left;
    width: 300px;
	color: var(--pbmit-blackish-color);
}
.post-navigation .pbmit-post-nav-icon{
	display: inline-flex;
    align-items: center;
}
.post-navigation .pbmit-post-nav-icon i:before{
	font-size: 16px;
    line-height: 16px;
	color: var(--pbmit-blackish-color);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.post-navigation .nav-previous .pbmit-post-nav-icon i:before{
	transform: rotate(45deg);
}
.post-navigation .pbmit-post-nav-head{
	font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 10px;
	line-height: 24px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
	font-family: var(--theme-font-heading);
}
span.pbmit-post-nav-wrapper{
	display: block;
    padding-top: 5px;
	text-align: left;
    word-break: break-word;
}
.pbmit-post-nav-wrapper .pbmit-post-nav{
	font-size: 20px;
    line-height: 26px;
    font-weight: 600 !important;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.pbmit-post-nav-wrapper .pbmit-post-nav,
.comments-area .pbmit-comment-meta{
	font-weight: 800;
    font-style: normal;
	font-family: var(--theme-font-heading);
}
.post-navigation .nav-previous a:hover .pbmit-post-nav-icon i:before,
.post-navigation .nav-next a:hover .pbmit-post-nav-icon i:before{
	transform: rotate(0);
}
.post-navigation .nav-next{
	text-align: right;
    margin-left: auto;
}
.post-navigation .nav-next .pbmit-post-nav-head{
	margin: 0 10px 0 0;
}
.post-navigation .nav-next .pbmit-post-nav-icon i:before{
	transform: rotate(-45deg);
}
.blog-details .post-navigation .nav-next a{
	display: block;
    text-align: right;
    margin-left: auto;
}
.post-navigation .nav-next .pbmit-post-nav-wrapper{
	text-align: right;
}
.comments-area{
	margin-top: 60px;
}
.comments-area .comments-title{
	font-size: 35px;
    line-height: 44px;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 35px;
}
.comment-list li:not(:last-child) .pbmit-comment{
	margin-bottom: 30px;
    border-bottom: 1px solid rgba(17, 25, 38,.1);
}
.comment-list .pbmit-comment-avatar{
	float: left;
}
.comment-list .pbmit-comment-avatar img{
	border-radius: 0;
    width: 90px;
    height: 90px;
}
.comments-area .pbmit-comment-content{
	position: relative;
    flex-grow: 1;
    padding: 0 0 30px 0;
    background: transparent;
    margin-left: 120px;
}
.comments-area .pbmit-comment-meta{
	display: inline-flex;
    align-items: center;
}
.pbmit-comment-content .pbmit-comment-author {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
	font-weight: 500;
    display: inline-flex;
    position: relative;
}
.pbmit-comment-author-inner{
	margin: 0 5px;
	font-weight: 600;
	font-size: 18px;
	color: var(--pbmit-global-color);
}
.pbmit-comment-author-inner a{
	color: var(--pbmit-global-color);
}
.comments-area .pbmit-comment-date{
	display: block;
    font-size: 18px;
    line-height: 24px;
    margin-left: 5px;
    padding-left: 15px;
	position: relative;
}
.comments-area .pbmit-comment-date:before{
	position: absolute;
    content: "/";
    top: 50%;
    left: 0;
    -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%);
}
.comments-area .pbmit-comment-date a{
	color: #666;
    position: relative;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
	font-family: var(--theme-font-heading);
}
.comments-area .pbmit-comment-content p{
	margin: 12px 0 20px 0;
}
.comments-area .pbmit-comment-content .reply a{
	position: relative;
    display: inline-block;
    font-size: 13px;
    line-height: 13px;
    font-weight: 600;
    letter-spacing: 0px;
	padding: 10px 20px;
	border-radius: 50px;
    text-transform: capitalize;
    -webkit-transition: .4s ease-out 0s;
    -o-transition: .4s ease-out 0s;
    transition: .4s ease-out 0s;
    color: var(--theme-white);
	background-color: var(--pbmit-global-color);
	font-family: var(--theme-font-heading);
}
.comments-area .pbmit-comment-content .reply a i{
	padding-left: 2px;
}
.comments-area .pbmit-comment-content .reply a i:before{
	transform: rotate(-45deg);
    top: 1px;
    position: relative;
    -webkit-transition: 0.4s ease-out 0s;
    -o-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
}
.comments-area .pbmit-comment-content .reply a:hover i:before{
	transform: rotate(0deg);
}
.comment-list .children{
	margin-left: 100px;
    padding-top: 8px;
}
.comments-area .comment-respond{
	margin-bottom: 0;
    padding: 60px 65px;
    background: var(--pbmit-light-color);
}
.comment-respond .comment-reply-title{
	font-size: 36px;
    line-height: 44px;
}
.comment-respond .comment-form .comment-notes,
.comment-respond .comment-form label.form-check-label{
	font-size: 14px;
}
.comment-respond .comment-form .form-control{
	margin-bottom: 25px;
}
.comment-respond .comment-form .form-control::placeholder{
	color: rgba(5, 46, 38,.6);
}
.comment-respond .comment-form .form-check{
	margin-bottom: 25px;
    margin-top: 15px;
}
.comment-respond .comment-form .submit-btn{
	padding: 15px 30px;
	border-radius: 50px;
	font-family: var(--theme-font-heading);
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
	border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    color: var(--theme-white);
    background-color: var(--pbmit-global-color);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.comment-respond .comment-form .submit-btn span{
	position: relative;
	padding-right: 25px;
}
.comment-respond .comment-form .submit-btn span:after{
	content: "\e815";
    position: absolute;
    right: 0;
    top: 51%;
    font-size: 14px;
    font-family: 'pbminfotech-base-icons';
    -webkit-transition: all .200s ease-in-out;
    transition: all .200s ease-in-out;
    -khtml-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(0%) translateY(-50%) rotate(-45deg);
    transform: translateX(0%) translateY(-50%) rotate(-45deg);
}
.comment-respond .comment-form .submit-btn:hover{
	background-color: var(--pbmit-blackish-color);
}
.comment-respond .comment-form .submit-btn:hover span:after{
	transform: translateX(0%) translateY(-50%) rotate(0deg);
}

/** 06 - Team Single **/
.marquee_bg{
	padding: 40px 0;
}
.pbmit-team-single {
    padding: 80px 0;
}
.pbmit-team-single .pbmit-team-detail{
	padding: 45px 35px;
    background: var(--pbmit-light-color);
}
.pbmit-team-single .pbmit-team-designation{
	font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
	padding-left: 15px;
	letter-spacing: 0;
    text-transform: uppercase;
	position: relative;
    color: #666;
}
.pbmit-team-single .pbmit-team-designation:before{
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: var(--pbmit-global-color);
    -khtml-transform: translateX(0%) translateY(-50%);
    -moz-transform: translateX(0%) translateY(-50%);
    -ms-transform: translateX(0%) translateY(-50%);
    -o-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
}
.pbmit-team-single .pbmit-team-title{
	font-size: 26px;
    line-height: 32px;
    margin-bottom: 0;
    text-transform: capitalize;
}
.pbmit-team-single .pbmit-single-team-info{
	position: relative;
	padding: 0;
	font-size: 16px;
	margin: 30px 0 30px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(33, 44, 64,.08);
}
.pbmit-team-single .pbmit-single-team-info li{
    padding-bottom: 20px;
	word-wrap: break-word;
    font-weight: 500;
    font-style: normal;
	color: var(--pbmit-heading-typography-color);
	font-family: var(--theme-font-heading);
}
.pbmit-team-single .pbmit-single-team-info li:last-child{
	padding-bottom: 0;
}
.pbmit-team-single .pbmit-single-team-info li label{
	display: block;
	line-height: 21px;
	position: relative;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    color: var(--pbmit-blackish-color);
	font-family: var(--theme-font-heading);
}
.pbmit-team-single .pbmit-single-team-info li a{
	color: #666;
}
.pbmit-team-single .pbmit-single-team-info li a:hover{
	color: var(--pbmit-global-color);
}
.pbmit-team-single .pbmit-team-social-links li{
	margin-right: 0;
    margin-bottom: 5px;
    padding-right: 10px;
	float: left;
}
.pbmit-team-single .pbmit-team-social-links li a {
	display: inline-block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
	border-radius: 50px;
    color: var(--pbmit-blackish-color);
    border: 1px solid rgba(33, 44, 64,.08);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.pbmit-team-single .pbmit-social-links{
	display: inline-block;
}
.pbmit-team-single .pbmit-team-social-links li a:hover{
	color: var(--theme-white);
	border-color: var(--pbmit-blackish-color);
	background-color: var(--pbmit-blackish-color);
}
.pbmit-teammember-content .pbmit-heading-subheading{
	margin-bottom: 0;
}
.pbmit-teammember-content .pbmit-heading-subheading .pbmit-title{
	font-weight: 600;
    font-size: 36px;
    line-height: 42px;
	margin-bottom: 20px;
}
.pbmit-team-inner_box{
	margin-top: 60px;
}
.pbmit-team-inner_box ul li{
	display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
	margin-bottom: 30px;
	border-bottom: 1px solid #E5E5E5;
}
.pbmit-team-inner_box ul li .pbmit-title{
	font-size: 20px;
    line-height: 30px;
	margin-bottom: 20px;
	width: 15%;
}
.pbmit-team-inner_box ul li .pbmit-content{
	margin-bottom: 30px;
	width: 85%;
}
.pbmit-team-personal_info{
	margin-top: 70px;
}
.pbmit-team-personal_info .counter_box{
	margin-top: 45px;
}
.pbmit-team-personal_info .pbmit-ihbox-style-3{
	margin-top: 40px;
}
.team-details-contact{
	margin-top: 70px;
	padding: 70px 70px 40px 70px;
	background-color: var(--pbmit-light-color);
}
.team-details-contact .pbmit-btn{
	padding: 12px 30px;
	margin-bottom: 30px;
}

/* ----------------------------------------------------------------*/
/* CUSTOM CONTENT */
/* ----------------------------------------------------------------*/
.custom-content h4{
    font-size: 32px;
    font-weight: 600;
    /* line-height: 1.3; */
    margin-bottom: 30px !important;
  }
  .custom-content p{
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
    color: var(--theme-text-color);
    margin-bottom: 20px !important;
    /* letter-spacing: 1px; */
  }
  .custom-content strong{
    font-weight: 700 !important;
  }
  .custom-content p a{
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .custom-content p a:hover{
    color: var(--theme-base);
  }
  
  .custom-content ul, 
  .custom-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .custom-content ul li,
  .custom-content ol li {
    font-weight: 300;
    color: var(--theme-text-color);
    font-size: 16px;
    line-height: 30px;
    /* margin-bottom: 5px; */
    padding-left: 10px;
    list-style: circle;
  }
  .custom-content ul li::marker, 
  .custom-content ol li::marker {
    color: var(--theme-secondary);
  }

/** 07 - Contact us **/
.ihbox-section .pbmit-col-wrapper{
	border-width: 1px 1px 1px 0px;
	border-style: solid;
	border-color: #E8E8E9;
	padding: 60px 80px 60px 80px;
}
.ihbox-section .pbmit-col-wrapper .pbmit-heading-desc{
    color: var(--theme-text-color);
}
.ihbox-section .pbmit-col-wrapper .pbmit-heading-desc a{
    color: var(--theme-text-color);
}
.ihbox-section .pbmit-col-wrapper .pbmit-heading-desc a:hover{
    color: var(--theme-secondary);
}
.contact-us-col1{
	width: 35%;
}
.contact-form-leftbox{
	background-image: url(../images/resources/contact-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	display: flex;
}
.contact-us-left-inner{
	display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
	background-color: var(--theme-secondary);
	margin: 367px 0px 0px 0px;
    position: relative;
}
.contact-us-left-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/resources/isohips.png);
    background-position: center center;
    background-size: auto;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.contact-form-left-title {
    padding: 30px 40px 0px 40px;
}
.contact-form-left-title h2.pbmit-title {
    font-size: 32px;
    line-height: 40px;
	font-weight: 600;
    margin-bottom: 20px;
    color: var(--theme-white);
    position: relative;
    z-index: 2;
}
.contact-us-col1 .pbmit-social-link {
    padding: 0px 40px 40px 40px;
    position: relative;
    z-index: 2;
}
.contact-us-col1 .pbmit-social-link h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
    color: var(--theme-white);
}
.contact-us-col1 .pbmit-social-link ul li {
    float: left;
}
.contact-us-col1 .pbmit-social-link ul li:first-child {
    margin-left: 0;
}
.contact-us-col1 .pbmit-social-link ul li:not(:last-child) {
    padding-right: 10px;
}
.contact-us-col1 .pbmit-social-link ul li a {
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
    /* display: inline-block; */
    color: var(--theme-white);
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-us-col1 .pbmit-social-link ul li a:hover {
    color: var(--theme-secondary);
    border-color: var(--theme-black);
    background-color: var(--theme-black);
}
.contact-us-col2 {
    width: 65%;
}
.contact-form-main {
    margin-left: 100px;
}
.contact-form-main p {
    margin: 50px 0 0 0;
}
.contact-form {
    margin-top: 80px;
}
.contact-form form {
    padding: 80px 80px 50px 80px;
    background-color: var(--pbmit-light-color);
}
.contact-form form h2 {
    margin-bottom: 55px;
}
.iframe-section {
    height: 600px;
    max-width: 100%;
    width: 100%;
}
.iframe-section iframe {
    height: 600px;
    max-width: 100%;
    width: 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;
}
.form-control.error{
	margin-bottom: 0;
}

/**08 - Comment Form **/
.form-control{
	height: 50px;
	font-size: 16px;
	background-color: transparent;
	border: 0;
	padding: 0;
	margin-bottom: 30px;
	border-radius: 0;
	border-bottom: 1px solid var(--theme-gray);
	font-family: var(--theme-general-font);
}
.form-control::placeholder{
	color: rgba(var(--theme-gray-rgb),0.7);
}
.form-control:focus{
	border-color: inherit;
	background-color: transparent;
}
textarea.form-control{
	height: 90px;
	resize: none;
}

form h4{
	margin-bottom: 20px;
	margin-top: 10px;
}

/* ------------------ */
/* Choose File */
/* ------------------ */
form input[type="file"]{
    height: 50px;
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid var(--theme-gray);
    color: var(--theme-gray);
    font-weight: 400;
    position: relative;
    font-size: 16px;
	margin-bottom: 30px;
}
form input[type="file"]::file-selector-button{
    height: 50px;
    border:none;
    padding: 0 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--theme-gray);
    background-color: var(--theme-black);
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
	/* border-radius: 0 30px 30px 0; */
}
form input[type="file"]::file-selector-button:hover{
    background-color: var(--theme-secondary);
    border-bottom: 1px solid var(--theme-secondary);
    color: var(--theme-black);
}

/* ------------------ */
/* Aydınlatma Metni */
/* ------------------ */

form .check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    margin-top: 5px;
    color: #333;
	margin-bottom: 30px;
  }
  
  form .check-container a{
    text-decoration: underline;
    color: var(--theme-black);
  }
  
  form .check-container a:hover{
    color: var(--theme-secondary);
  }
  
  form .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    border-radius: 0.25rem;
  }
  
  form input[type="checkbox"] {
    margin-bottom: 20px;
    border-radius: 0.25rem;
  }
  
  form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--theme-gray);
  }
  
  form .check-container input:checked~.checkmark {
    background-color: var(--theme-secondary);
    border:none;
  }
  
  form .check-container input:checked~.checkmark:after {
    display: block;
  }
  
  form .check-container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  select.form-control {
	background-image: linear-gradient(45deg, transparent 50%, var(--theme-gray) 50%),
	  linear-gradient(135deg, var(--theme-gray) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(1em + 2px),
	  calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	padding: 10px;
  }
  
  select.form-control:focus {
	background-image: linear-gradient(45deg, var(--theme-black) 50%, transparent 50%),
	  linear-gradient(135deg, transparent 50%, var(--theme-black) 50%);
	background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em,
	  calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	border-color: var(--theme-black);
	outline: 0;
  }
  
  select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
  }

  select.form-control option {
	background-color: #333;
	color: #fff;
	border-radius: 0;
	padding: 10px;
  }