
/* Font awesome free icon */
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

/* Goggle Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Rubik:wght@500;700;900&display=swap');
/* General Style */
body{
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
	font-family: 'Montserrat',sans-serif;
	font-weight: 400;
}
*{
	margin: 0;
	padding: 0;
	outline: none;
	text-decoration: none;
	box-sizing: border-box;
}
::before,::after{
	box-sizing: border-box;

}
input,textarea,select{
	font-family: 'Montserrat',sans-serif;
}
.section{
	background-color: #f2f2fc;
	min-height: 100vh;
	display: block;
	padding: 0 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.section .container{
	padding-top: 60px;
	padding-bottom: 70px;
}
.section-title{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 60px;
}
.section-title h2{
	font-size: 40px;
	color: #302e4d;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	margin: 0;
	position: relative;
}
.section-title h2::before{
	content: '';
	height: 4px;
	width: 50px;
	position: absolute;
	top: 100%;
	left: 0;
}
.section-title h2::after{
	content: '';
	height: 4px;
	width: 25px;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
}
.row{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	position: relative;
}
.padd-15{
	padding-left: 15px;
	padding-right: 15px;
}
.main-content{
	padding-left: 270px;

}
.container{
	max-width: 1100px;
	width: 100%;
	margin: auto;
	
}
.shadow-dark{
	-webkit-box-shadow:  0 0 20px rgba(48,46,77,0.15);
	box-shadow:  0 0 20px rgba(48,46,77,0.15);
}
.btn{
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	padding: 12px 35px;
	color: #ffffff;
	border-radius: 40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: inline-block;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}
.btn:hover{
	-webkit-transform:scale(1.05);
	transform: scale(1.05);

}
.hidden{
	display: none!important;
}
.marg-top{
	margin-top: 40px;
}
/* Top İnfo */

.top-info{
	position: fixed;
	top:0px;
	background-color: #0c8f38;
	z-index: 150;
	left: 0;
	width: 100%;
	height: auto;
	

}
.top-info .container{
	margin-top: 6px;
	display: flex;
	justify-content: center;
	list-style: none;
	
}
.top-info .container .phone-info{
	display: block;
	overflow: hidden; 

}
.top-info .container .phone-info label{
	font-size: 18px;
	font-weight: 900;
	color: #f7f7f7;
	cursor: pointer;
	margin-left: 20px;
}
.top-info .container .mail-info{
	display: block;
	overflow: hidden;
}
.top-info .container .phone-info a:link{
		color: #f7f7f7;
}
.top-info .container .mail-info a:link{
		color: #f7f7f7;
}
.top-info .container .mail-info label{
	font-size: 18px;
	font-weight: 900;
	color: #f7f7f7;
	cursor: pointer;
	margin-left: 30px;
}


/*--------------------------- Aside -----------------------------*/

.aside{
	width: 270px;
	background-color: #f7f7f7;
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	border-right: 1px solid #e8dfec;
	padding: 30px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;


}

.aside .logo{
	margin: 80px 0;

}

.aside .nav-toggler{
	height: 45px;
	width: 45px;
	border:1px solid #d4d4e3;
	cursor: pointer;
	position: fixed;
	left: 300px;
	top:100px;
	z-index: 11;
	border-radius: 5px;
	background-color: #fdf9ff;
	/*display: -ms-flexbox;
	display: flex;*/
	display: none;
	-ms-flex-align:center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.aside .nav-toggler.open span{
	background-color: transparent;
}
.aside .nav-toggler span{
	height: 2px;
	width: 18px;
	display: inline-block;
	position: relative;
}
.aside .nav-toggler.open span::before{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top:0px;
}
.aside .nav-toggler span::before{
	content: '';
	height: 2px;
	width: 18px;
	position: absolute;
	top:-6px;
	left: 0;
}
.aside .nav-toggler.open span::after{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top:0px;
}
.aside .nav-toggler span::after{
	content: '';
	height: 2px;
	width: 18px;
	position: absolute;
	top:6px;
	left: 0;
}
.aside .nav{
	list-style: none;
	margin: 80px 0;
	padding: 0;
}
.aside .nav li{
	display: block;
}
.aside .nav li a{
	font-size: 18px;
	font-weight: 900;
	color: #302e4d;
	text-decoration: none;
	line-height: 45px;
	display: block;
	border-bottom: 1px solid #e8dfec;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.aside .nav li a:not(.active):hover{
	padding-left: 5px;
}
.aside .nav li a .fa{
	margin-right: 5px;
}
.aside .copyright-text{
	margin: 200px 0 0 0;
	font-size: 14px;
	color: #7d7d7d;
}
.aside .highlights{
	height: 60px;
	width: auto;
	-ms-flex-align:center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 13px;
	text-decoration: none;
	list-style: none;
	margin: 40px 5px ;
	cursor: pointer;
	
}
.aside .highlights h5{
	font-size: 13px;
}
.aside .highlights .highlights-product li{
	display: block;
	font-weight: 300;
}

/* Home */
.home{
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
}

.home .intro{
	position: absolute;
	height: 60%;
	width: 60%;
	margin-top: 10%;
	margin-left: 12%;
	border-radius: 5px;
	display: inline-block;
	border: 8px solid #ffffff;
	background-image: url(images/depolar.jpeg);
	background-size: 100% 100%;
	box-shadow: 2px 3px 10px 10px black;
	animation: slider 10s infinite cubic-bezier(0.52,0,1,5);
	animation-delay: 2.1s, 480ms;
}
@keyframes slider {
	0%{
		background-image: url(images/depolar.jpeg);
		
	}
	40%{
		background-image: url(images/makine.jpeg);
		
	}
	70%{
		background-image: url(images/pvc-mdflam.jpeg);
		
	}
}

.home .intro h1{
	position: absolute;
	margin-left: 9%;
	top: 510px;
	display: block;
	text-align: center;
	z-index: 1;
	font-size: 150%;
	color: #0c8f38;
	font-family: 'Rubik', sans-serif;
	font-weight: 900;
}
.home .intro p{
	font-size: 16px;
	font-weight: 500;
	margin:0;
	line-height: 22px;
	color: #504e70;
}

/* About Section */

.about .about-content{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.about .about-content .about-text{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.about .about-content .about-text h3{
	font-size: 24px;
	margin-top: 15px;
	font-weight: 700;
	color: #302e4d;
}
.about .about-content .about-text p{
	font-size: 16px;
	line-height: 25px;
	color: #504e70;
	margin: 0;

}
.about .about-content .education {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 30px;

} 
.about .about-content .experience{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 30px;
}

.about .about-content h3.title{
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 700;
	color: #302e4d;
}
.about .about-content .timeline-box{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.about .about-content .timeline{
	background-color: #fdf9ff;
	padding: 30px 15px;
	border:1px solid #d4d4e3;
	border-radius: 10px;
	width: 100%;
	position: relative;
}
.about .about-content .timeline .timeline-item{
	position: relative;
	padding-left: 37px;
	padding-bottom: 50px;
}
.about .about-content .timeline .timeline-item:last-child{
	padding-bottom: 0px;
}
.about .about-content .timeline .timeline-item::before{
	content: '';
	width: 1px;
	position: absolute;
	height: 100%;
	left:7px;
	top: 0;

}

.about .about-content .timeline .circle-dot{
	position: absolute;
	left: 0;
	top: 0px;
	height: 15px;
	width: 15px;
	left: 0px;
	border-radius: 50%;


}
.about .about-content .timeline .timeline-date{
	font-weight: 14px;
	font-weight: 400;
	margin-bottom: 12px;
	color: #504e70;

}
.about .about-content .timeline .timeline-date .fa{
	margin-right: 5px;
	font-size: 16px;
}
.about .about-content .timeline .timeline-title{
	font-weight: 700;
	line-height: 15px;
	font-size: 18px;
	margin-bottom: 15px;
	text-transform: capitalize;
	color: #302e4d;
}
.about .about-content .timeline .timeline-text{
	font-size: 16px;
	line-height: 25px;
	color: #504e70;
	margin: 0;

}


/* Service Section */

.service .container{
	padding-bottom: 40px;
} 
.service .service-item{
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
	max-width: 33.33%;
	margin-bottom: 30px;
	display: -ms-flexbox;
	display: flex;
}

.service .service-item .service-item-inner{
	background-color: #fdf9ff;
	border: 1px sloid $d4d4e3;
	border-radius: 10px;
	padding: 30px 15px;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover{
	-webkit-box-shadow:  0 0 20px rgba(48,46,77,0.15);
	box-shadow:  0 0 20px rgba(48,46,77,0.15);
}


.service .service-item .service-item-inner .icon{
	height: 60px;
	width: 60px;
	/*background-color: red;*/
	display: block;
	margin: 0 auto 30px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.service .service-item .service-item-inner .icon .fa{
	font-size: 40px;
	line-height: 60px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.service .service-item .service-item-inner .service-img{
	height: 100px;
	width: 200px;
	background-image: url("images/");
	background-size: 100% 100%;
}
.service .service-item .service-item-inner:hover .icon .fa{
	font-size: 25px;
	color: #ffffff;

}
.service .service-item .service-item-inner h4{
	font-size: 18px;
	margin-bottom: 15px;
	color: #302e4d;
	font-weight: 700;
	text-transform: capitalize;

}
.service .service-item .service-item-inner p{
	font-size: 16px;
	color: #503e70;
	line-height: 25px;
	margin: 0;

}



/* lightbox */

.lightbox{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,0.6);
	z-index: 100;
	display: none;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack:center;
	justify-content: center;
	cursor: zoom-out;
	padding: 30px;
}

.lightbox.open{
	display: -ms-flexbox;
	display: flex;
}

.lightbox .lightbox-content img{
	height: auto;
	width: auto;
	max-height: 500px;
	max-width: 100%;
	cursor: pointer;
	display: block;
	padding: 40px 0 30px;

}
.lightbox .lightbox-content {
	position: relative;
}
.lightbox.open .lightbox-content{
	animation: lightboxImage .5s ease;
}
@-webkit-keyframes lightboxImage{
	0%{
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	100%{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes lightboxImage{
	0%{
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	100%{
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.lightbox .lightbox-content  .lightbox-close{
	position: absolute;
	height: 40px;
	width: 40px;
	top: 0;
	right: 0;
	font-size: 32px;
	text-align: right;
	color: #ffffff;
	line-height: 40px;

}
.lightbox .lightbox-content .lightbox-caption{
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	-ms-flex-pack:space-between;
	justify-content: space-between;
	color: #ffffff;
	font-weight: 400;
	z-index: -1;

}
.lightbox .lightbox-controls .prev-item,
.lightbox .lightbox-controls .next-item{
	position: absolute;
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	top:50%;
	margin-top: -20px;
	z-index: 110;
	-webkit-transition:all 0.3s ease;
	transition: all 0.3s ease;
}
.lightbox .lightbox-controls .prev-item:hover,
.lightbox .lightbox-controls .next-item:hover{
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.lightbox .lightbox-controls .prev-item:active,
.lightbox .lightbox-controls .next-item:active{
	-webkit-transform:scale(1);
	transform:scale(1);
}
.lightbox .lightbox-controls .prev-item{
	left:30px;
}
.lightbox .lightbox-controls .next-item{
	right:30px;
}
.lightbox .lightbox-controls .prev-item .fa,
.lightbox .lightbox-controls .next-item .fa{
	font-size: 32px;
	line-height: 40px;

}




/* Contact Section*/

.contact .contact-info-item{
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
	max-width: 33.33%;
	text-align: center;
	margin-bottom: 40px;

}

.contact .contact-info-item .icon{
	display: inline-block;
}
.contact .contact-info-item .icon .fa{
	font-size: 40px;
}
.contact .contact-info-item h4{
	font-size: 18px;
	font-weight: 700;
	color: #302e4d;
	text-transform: capitalize;
	margin: 15px 0 5px;
}
.contact .contact-info-item p{
	font-size: 16px;
	line-height: 25px;
	color: #504e70;
	margin: 0;
	font-weight:400;
}
.contact .contact-form{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.contact .contact-form .col-6{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.contact .contact-form .col-12{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.contact .contact-form .form-item{
	margin-bottom: 30px;

}
.contact .contact-form .form-item .form-control{
	width: 100%;
	height: 50px;
	border-radius: 25px;
	border:1px solid #d4d4e3;
	padding: 10px 25px;
	font-size: 16px;
	color: #504e70;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.contact .contact-form .form-item .form-control:focus{
	-webkit-box-shadow:  0 0 20px rgba(48,46,77,0.15);
	box-shadow:  0 0 20px rgba(48,46,77,0.15);
}
.contact .contact-form .form-item textarea.form-control{
	height: 140px;
}
.contact .contact-form .btn{
	height: 50px;
	padding: 0 50px;
}
/* Responsive */


@media (max-width: 1199px){
	.section .container{
		padding-top: 70px;
	}

	.aside .nav-toggler{
		display: -ms-flex;
		display: flex;
		left: 30px;
	}
	.aside .nav-toggler.open{
		left: 300px;
	}
	.aside{
		left:-270px;
	}
	.main-content{
		padding-left: 0;
	}
	.aside.open{
		left: 0;
	}
	.section{
		left:0;
	}
	.section.open{
		left:270px;
	}
	.about .about-content .personal-info .info-item p span{
		display: block;
		margin-left: 0;
	}
	.home .intro{
		margin-left: 10%;
		margin-top: 10%;
		width: 80%;
	}
	.home .intro h1{
		top: 700px;
		margin-left: 1%;
		font-size: 160%;
	}

}
@media (max-width: 991px){
	
	.blog .blog-item,
	.portfolio .portfolio-item,
	.service .service-item{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.home .intro{
		margin-left: 10%;
		margin-top: 15%;
		width: 80%;
	}
	.top-info .container .mail-info .fa-map-marker{
		margin-left: 15%;
		width: 100%;
	}
	.top-info .container .mail-info .fa-envelope{
		margin-left: 15%;
		width: 100%;
	}
	.home .intro h1{
		top: 730px;
		margin-left: 1%;
		font-size: 160%;
	}

}
@media (max-width: 767px){
	
	.contact .contact-form .col-6,
	.blog .blog-item,
	.service .service-item,
	.about .about-content .experience,
	.about .about-content .education,
	.about .about-content .skills,
	.about .about-content .personal-info{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.portfolio .portfolio-filter button{
		margin-bottom: 8px;
	}
	.home .intro{
		margin-top: 20%;
		width: 80%;
	}
	.top-info .container .mail-info .fa-map-marker{
		margin-left: 5%;
		width: 100%;
	}
	.top-info .container .mail-info .fa-envelope{
		margin-left: 5%;
		width: 100%;
	}
	.home .intro h1{
		top: 720px;
		margin-left: 1%;
		font-size: 150%;
	}


}
@media (max-width: 575px){
	.contact .contact-info-item,
	.portfolio .portfolio-item{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.home .intro{
		margin-top: 30%;
		width: 70%;
		
	}
	.top-info .container .mail-info .fa-map-marker{
		width: 90%;
	}
	.top-info .container .mail-info .fa-map-marker{
		margin-left: 1%;
		width: 100%;
	}
	.top-info .container .mail-info .fa-envelope{
		margin-left: 1%;
		width: 100%;
	}
	.home .intro h1{
		top: 700px;
		margin-left: 1%;
		font-size: 130%;
	}
}
@media (max-height: 750px){
	.home .intro{
		margin-top: 30%;
		width: 65%;
		height: 55%;
		
	}
	.home .intro h1{
		top: 240px;
		margin-left: 1%;
		font-size: 100%;
	}
}
