*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body{
	overflow:hidden;
	margin:0 auto !important;
}

/*scroll*/

::-webkit-scrollbar {
	width: 0px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #938282;
}

/*scroll end*/

.resimArkaPlan{
   object-fit: fill !important;
}
/*nav menu*/

.main-text-logo{
	width: 95% !important;
	height:auto;
	margin-top:-5px;
	margin-left:10px;
}

#nav-logo{
	width:18%;
	height:auto;
	position:fixed;
	top:3%;
	left:12.3%;
	padding:5px;
	display:none;
}

.logo{
	width:20%;
	height:100%;
	padding:5px;
}

nav{
	z-index: 99;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	background:rgb(32,39,47);
	box-shadow: 0 8px 8px 0 rgba(0,0,0, .5);
}
nav .wrapper{
	position: relative;
	max-width: 1700px;
	height: 100px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	z-index: 99;
}

.wrapper .nav-links{
	display: inline-flex;
	line-height:100px;
}
.nav-links li{
	list-style: none;
}
.nav-links li a{
	color: #E7D5D5;
	text-decoration: none;
	font-size: 14px;
	padding: 9px 15px;
	transition: all 0.5s ease;
	position:relative;
	letter-spacing:1px;
}

.nav-links li a:hover
{
	color:rgb(229,107,3);
}
.altBar:hover
{
	color:rgb(229,107,3) !important;
}
.nav-links li a::before 
{
	content:'';
	position:absolute;
	left:10%;
	bottom:0;
	width:0px;
	max-width:80%;
	height:2px;
	background:rgb(229,107,3);
	opacity:0;
	-webkit-transition: width 2s;
	transition: width 2s;
}

.nav-links li a:hover:before
{
	opacity:1;
	width:100%;
}

.nav-links li a::after 
{
	content:'';
	position:absolute;
	left:10%;
	top:0;
	width:0px;
	max-width:80%;
	height:2px;
	background:rgb(229,107,3);
	opacity:0;
	-webkit-transition: width 2s;
	transition: width 2s;
}

.nav-links li a:hover:after
{
	opacity:1;
	width:100%;
}

.nav-links .mobile-item{
	display: none;
}

.wrapper .btn{
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}
.wrapper .btn.close-btn{
	position: absolute;
	right: 30px;
	top: 0px;
	color:rgb(229,107,3);
}

@media screen and (max-width: 970px) {

	#nav-logo{
		display:inline;
		position:relative;
		top:0%;
		left:0%;
		width:100%;
		height:auto;
	}

	.logo{
		width:35%;
	}

	.wrapper{
		padding:10px;
	}

	.wrapper .btn{
		display: block;
		color:black;
	}
	.wrapper .nav-links{
		position: fixed;
		height: 100vh;
		width: 100%;
		max-width: 350px;
		top: 0;
		left: -100%;
		background: rgb(32,39,47);
		display: block;
		padding: 50px 10px;
		line-height: 50px;
		overflow-y: auto;
		box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
		transition: all 0.3s ease;
	}
	
	#menu-btn:checked ~ .nav-links{
		left: 0%;
	}
	#menu-btn:checked ~ .btn.menu-btn{
		display: none;
	}
	#close-btn:checked ~ .btn.menu-btn{
		display: block;
	}
	.nav-links li{
		margin: 15px 10px;
	}
	.nav-links li a{
		padding: 0 30px;
		display: block;
		font-size: 20px;
		color:#fff;
	}

	.menu-btn{
		margin-right:20px;
	}

	.menu-btn i{
		font-size:30px;
		color:#fff;
		line-height:70px;
	}

	.nav-links .desktop-item{
		display: none;
	}
	.nav-links .mobile-item{
		display: block;
		color: #f2f2f2;
		font-size: 20px;
		font-weight: 500;
		padding-left: 20px;
		cursor: pointer;
		border-radius: 5px;
		transition: all 0.3s ease;
	}
	.nav-links .mobile-item:hover{
		background: #3A3B3C;
	}
	
	.content .row header{
		font-size: 19px;
	}
}
nav input{
	display:none;
}

/*nav menu end*/

/*slider*/

#demo{
	margin:auto;
}

.carousel-inner img {
	width: 100%;
	height: 800px;
}

@keyframes zoom {
	from {
		transform: scale(1,1);
	}
	to {
		transform: scale(1.4,1.4);
	}
}

.carousel-item img {
	-webkit-animation: zoom 23s;
	animation: zoom 23s;
}

.slider-text p{
    color:#fff;
    text-shadow: 2px 2px #242121;
    background-color:rgb(32,39,47,0.7);
    padding:10px;
    opacity:0.9;
    max-width:800px;
    font-family: 'Oswald', sans-serif;
    font-weight:500;
    letter-spacing:1px;
}

.slider-text{
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    left:10% !important;
    animation-duration:2s !important;
}
.sl-2{
	height: 30vh;
}

/*slider end*/

/*container*/
.renk{
    width:100%;
    height:79.5px;
    background-color:rgb(32,39,47,0.5);
    position:absolute;
    top:10%;
    z-index:-1;
}
.main{
	background-color:rgb(32,39,47,0.7);
	width:23%;
	height:96%;
	position:fixed;
	top:0%;
	left:10%;
	z-index:5;
	box-shadow: 0 8px 8px 0 rgba(0,0,0,0.5);
}

.main-text-box{
	margin-top:35px;
	max-height:800px;
	overflow:auto;
}

.main h1{
	text-align:center;
	font-size:25px;
	line-height:60px;
	color:rgb(229,107,3);
	font-family: 'Poppins', sans-serif;
	font-weight:bold; 
	letter-spacing:2px;
}

.main hr{
	width:90%;
	height:2px;
	background-color:rgb(229,107,3);
	margin:auto;
}

.main-text{
	color:#fff;
	width:90%;
	height:100%;
	margin:auto;
	font-family: 'Montserrat', sans-serif;
	padding:10px;
}

.main-text p{
	text-align:center;
	font-size:15px;
}

.main-text h2{
	text-align:center;
	font-size:25px;
	color:rgb(229,107,3);
	font-family: 'Poppins', sans-serif;
	letter-spacing:2px;
}

.main-text ul{
	font-size:16px;
	width:90%;
	margin:auto;
	font-family: 'Montserrat', sans-serif;
}

ul{
	list-style:square;
}

.main-text-footer{
	border:2px solid rgb(229,107,3);
	padding:10px;
}

/*container end*/

/*footer*/

.footer {
	height: 50px;
	background:rgb(32,39,47);
	color: black;
	text-align: center;
	padding: 0px;
	box-sizing: border-box;
}

.footer-left-area{
	width:40%;
	height: 100%;
	float:left;
	margin-left:5px;
}

.footer-left-area i{
    line-height:45px;
    font-size:17px;
    margin-left:25px;
    color:#fff;
    -webkit-transition:all 0.6s ease;
    -moz-transition:all 0.6s ease;
    -o-transition:all 0.6s ease;
    -ms-transition:all 0.6s ease;
    transition:all 0.6s ease;
}

.footer-right-area{
    font-size:13.5px;
	width:50%;
	height:100%;
	float:right;
	background-color:rgb(32,39,47);
	color:#fff;
	line-height:45px;
}
.footer-right-area a{
    color:rgb(229,107,3);
}

.footer-right-area a:hover{
    text-decoration:none;
    color:rgb(229,107,3);
}
.footer-icon-1:hover{
	color:#3b5998;
}

.footer-icon-2:hover{
	color:#F77737;
}

.footer-icon-3:hover{
	color:#FF0000;
}

.footer-icon-4:hover{
	color:#D44638;
}

.footer-icon-5:hover{
	color:#008000;
}

.footer-left-area i:hover{
	cursor:pointer;
	transform:scale(1.2);
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}

/*footer end*/

/*contact page*/

#contactForm input{
	height:35px;
	width:100%;
	border-radius:5px;
	border:none;
	padding:5px;
	outline:none;
}

#contactForm textarea{
	height:35px;
	width:100%;
	border-radius:5px;
	border:none;
	padding:5px;
	outline:none;
}

#contactForm textarea:focus{
	border:2px solid rgb(229,107,3);
}

#contactForm input:focus{
	border:2px solid rgb(229,107,3);
}

#contactForm textarea{
	height:70px;
	resize:none;
}

#contactForm button{
	width:30%;
	float:right;
	border:none;
	height:35px;
	border-radius:5px;
	background-color:rgb(229,107,3);
	color:#fff;
	transition:all 0.5s ease;
	letter-spacing:1px;
	
}

#contactForm button:hover{
	color:rgb(229,107,3);
	background-color:#fff;
	font-weight:600;
}

#contactForm .btn:focus{
	border:2px solid rgb(229,107,3);
}

/*contact page end*/

/*animation page*/

.animation{
	width:62%;
	height:36.5%;
	position:absolute;
	top:57%;
	left:35%;
	z-index:9;
	border-radius:10px;
	padding:10px;
}

.animation-box{
	width:100%;
	height:240px;
	margin:20px auto;
	border-radius:10px;
	background-color:rgb(32,39,47,0.7);
}

.container { margin:auto;}
#mixedSlider {
	position: relative;
}
#mixedSlider .MS-content {
	white-space: nowrap;
	overflow: hidden;
	margin-left: -10px;
}
#mixedSlider .MS-content .item {
	display: inline-block;
	width: 23%;
	position: relative;
	vertical-align: top;
	overflow: hidden;
	height: 100%;
	white-space: normal;
	padding: 0 10px;
	margin-top:40px;
}

#mixedSlider .MS-content .item .imgTitle img {
	height: auto;
	width: 100%;
}

#mixedSlider .MS-content .item h2{
	font-size:22px;
}

.animation-page-title{
	text-align:center;
	color:#fff;
	font-size:16px;
	letter-spacing:1px;
}

#mixedSlider .MS-content .item p {
	font-size: 15px;
	font-family: 'PT Sans', sans-serif;
	letter-spacing:1px;
}

#mixedSlider .MS-content .item a:hover {
	text-shadow: 0 0 1px grey;
}

#mixedSlider .MS-controls button {
	position: absolute;
	border: none;
	background-color: transparent;
	outline: 0;
	font-size: 100px;
	top:15%;
	color: rgba(0, 0, 0, 0.4);
	transition: 0.15s linear;
}

#mixedSlider .MS-controls button:hover {
	color: rgba(0, 0, 0, 0.8);
}

#basicSlider { position: relative; }

#basicSlider .MS-content {
	white-space: nowrap;
	overflow: hidden;
	margin: 0 2%;
	height: 50px;
}

#basicSlider .MS-content .item {
	display: inline-block;
	width: 20%;
	position: relative;
	vertical-align: top;
	overflow: hidden;
	height: 100%;
	white-space: normal;
	line-height: 50px;
	vertical-align: middle;
}

#basicSlider .MS-controls .MS-left {
	top: 35px;
	left: 10px;
}

#basicSlider .MS-controls .MS-right {
	top: 35px;
	right: 10px;
}

.video{
	width:900px;
	height:500px;
}

#fade {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 1001;
	-moz-opacity: 0.8;
	opacity: .80;
	filter: alpha(opacity=80);
}

#light {
	display: none;
	position:fixed;
	top: 20%;
	left: 35%;
	max-width: 700px;
	max-height: 400px;
	z-index: 1002;
	overflow:visible;
}

#boxclose {
	float: right;
	cursor: pointer;
	color: #fff;
	border-radius: 3px;
	background: red;
	font-size: 25px;
	font-weight: bold;
	display: inline-block;
	line-height: 0px;
	padding:20px 6px;
	position: absolute;
	right:-200px;
	width:31px;
	height:20px;
	z-index: 1002;
	opacity: 0.9;
}

.boxclose:before {
	content: "×";
}

/*animation page end*/

/*projects page*/

.project{
	width:64%;
	height:77%;
	position:absolute;
	top:15%;
	left:35%;
	z-index:889;
	background-color:rgb(32,39,47,0.0);
	border-radius:10px;
	padding:10px;
	overflow-x: hidden;
	overflow-y: auto;
	color:#fff;
}

.project-box{
	width:98%;
	height:170px;
	margin:20px auto;
	border-radius:10px;
	background-color:rgb(32,39,47,0.7);
	padding:5px;
}

.lg-outer #lg-share {
	display:none;
}

.lg-toolbar .lg-download{
	display:none;
}

.project-box-text-bar{
	margin-top:-10px;
	margin-left:15px;
	font-family: 'Open Sans', sans-serif;
}

.slider-title{
	margin:5px 0 0 30px;
}

.slider-title p{
	font-size:16px;
	font-family: 'PT Sans', sans-serif;
}

#mixedSlider .MS-content {
	white-space: nowrap;
	overflow: hidden;
	margin-left:-10px;
}
#mixedSlider .MS-content .item {
	display: inline-block;
	width: 20%;
	position: relative;
	vertical-align: top;
	overflow: hidden;
	height: 100%;
	white-space: normal;
	padding: 0 10px;
	margin-top:40px;
}

@media (max-width: 991px) {
	#mixedSlider .MS-content .item {
		width: 50%;
	}
}
@media (max-width: 767px) {
	#mixedSlider .MS-content .item {
		width: 100%;
	}
}

#mixedSlider .MS-content .item .imgTitle img {
	height: auto;
	width: 100%;
}

#mixedSlider .MS-content .item h2{
	font-size:22px;
}

#mixedSlider .MS-content .item p {
	font-size: 15px;
	font-family: 'PT Sans', sans-serif;
	letter-spacing:1px;
}

#mixedSlider .MS-content .item a:hover {
	text-shadow: 0 0 1px grey;
}
#mixedSlider .MS-controls button {
	position: absolute;
	border: none;
	background-color: transparent;
	outline: 0;
	font-size: 100px;
	top:15%;
	color: rgba(0, 0, 0, 0.4);
	transition: 0.15s linear;
}
#mixedSlider .MS-controls button:hover {
	color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 992px) {
	#mixedSlider .MS-controls button {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	#mixedSlider .MS-controls button {
		font-size: 20px;
	}
}
#mixedSlider .MS-controls .MS-left {
	left: -15px;
}
@media (max-width: 767px) {
	#mixedSlider .MS-controls .MS-left {
		left: -10px;
	}
}
#mixedSlider .MS-controls .MS-right {
	right: -20px;
}
@media (max-width: 767px) {
	#mixedSlider .MS-controls .MS-right {
		right: -10px;
	}
}
#basicSlider { position: relative; }

#basicSlider .MS-content {
	white-space: nowrap;
	overflow: hidden;
	margin: 0 2%;
	height: 50px;
}

#basicSlider .MS-content .item {
	display: inline-block;
	width: 20%;
	position: relative;
	vertical-align: top;
	overflow: hidden;
	height: 100%;
	white-space: normal;
	line-height: 50px;
	vertical-align: middle;
}
@media (max-width: 991px) {

	#basicSlider .MS-content .item { width: 25%; }
}
@media (max-width: 767px) {

	#basicSlider .MS-content .item { width: 35%; }
}
@media (max-width: 500px) {

	#basicSlider .MS-content .item { width: 50%; }
}

#basicSlider .MS-content .item a {
	line-height: 50px;
	vertical-align: middle;
}

#basicSlider .MS-controls button { position: absolute; }

#basicSlider .MS-controls .MS-left {
	top: 35px;
	left: 10px;
}

#basicSlider .MS-controls .MS-right {
	top: 35px;
	right: 10px;
}

/*projects page end*/

/*hover effect*/

.hover-overlay-container:hover .overlay-image {
	opacity: 0.3;
}

.hover-overlay-container:hover .overlay-btn-container {
	opacity: 1;
}

.hover-overlay-container .overlay-image {
	display: block;
	width: 100%;
	height: auto;
	opacity: 1;
	transition: .5s ease;
	backface-visibility: hidden;
}

.hover-overlay-container .overlay-btn-container {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transition: .5s ease;
	text-align: center;
	transform: translate(-50%, -50%);
}

.hover-overlay-container .overlay-btn-container .overlay-btn {
	color: #fff;
	font-size: 16px;
	padding: 10px 16px;
	background-color: rgb(229,107,3);
	text-decoration: none;
	border-radius:5px;
	transition:0.8s;
}

.hover-overlay-container .overlay-btn-container .overlay-btn:hover{
	color:rgb(229,107,3);
	background-color:#fff;
}

.small {
	font-size: 11px;
	color: #999;
	display: block;
	margin-top: -10px
}

.cont {
	text-align: center;
}

.page-head {
	padding: 60px 0;
	text-align: center;
}

.page-head .lead {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 50px;
	margin-top: 0;
}

.btn {
	-moz-user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857;
	margin-bottom: 0;
	padding: 6px 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	text-decoration: none;
}

.btn-lg {
	border-radius: 2px;
	font-size: 18px;
	line-height: 1.33333;
	padding: 10px 16px;
}

.btn-primary:hover {
	background-color: #fff;
	color: #152836;
}

.btn-primary {
	background-color: #152836;
	border-color: #0e1a24;
	color: #ffffff;
}

.btn-primary {
	border-color: #eeeeee;
	color: #eeeeee;
	transition: color 0.1s ease 0s, background-color 0.15s ease 0s;
}

.page-head h1 {
	font-size: 42px;
	margin: 0 0 20px;
	color: #FFF;
	position: relative;
	display: inline-block;
}

.page-head h1 .version {
	bottom: 0;
	color: #ddd;
	font-size: 11px;
	font-style: italic;
	position: absolute;
	width: 58px;
	right: -58px;
}

.demo-gallery > ul {
	margin-bottom: 0;
	padding-left: 15px;
}

.demo-gallery > ul > li {
	margin-bottom: 15px;
	width: 1000px;
	margin-right: 0px;
	list-style: outside none none;
}

.demo-gallery > ul > li a {
	border-radius: 3px;
	display: block;
	overflow: hidden;
	position: relative;
	float: left;
}

.lg-thumb-item{
	display:none;
}

.lg-thumb-outer{
	display:none;
}

.lg-pager-outer{
	display:none;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
	opacity: 1;
}

.demo-gallery > ul > li a .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > img {
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
	opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
	height: 48px;
	margin-left: -24px;
	margin-top: -24px;
	opacity: 0.8;
	width: 48px;
}

.demo-gallery.dark > ul > li a {
	border: 3px solid #04070a;
}