/*

Tooplate 2113 Earth

https://www.tooplate.com/view/2113-earth

*/

@keyframes seq-preloader {
  50% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
  }
}

.seq-preloader {
  background: white;
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 10003;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.seq-preloader.seq-preloaded {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s .5s, opacity .5s;
}

.seq-preload-indicator {
  overflow: visible;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seq-preload-circle {
  display: inline-block;
  height: 12px;
  width: 12px;
  fill: #7a7a7a;
  opacity: 0;
  animation: seq-preloader 1.25s infinite;
}

.seq-preload-circle-2 {
  animation-delay: .15s;
}

.seq-preload-circle-3 {
  animation-delay: .3s;
}

.seq-preload-indicator-fallback {
  width: 42px;
  overflow: visible;
}

.seq-preload-indicator-fallback .seq-preload-circle {
  width: 8px;
  height:8px;
  background-color: #f4f4f4;
  border-radius: 100%;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.seq-preload-indicator-fallback .seq-preload-circle-2 {
  margin-left: 3px;
  margin-right: 3px;
  width: 12px;
  height: 12px;
}

.seq-preload-indicator-fallback .seq-preload-circle-3 {
  width: 16px;
  height: 16px;
}


/* MAIN CSS */

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@-webkit-keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
@keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
	overflow: hidden;
}

body {
  overflow: hidden;
  font-size: 100%;
	
	}

   
	
 /*ürünlerdeki popup penceresi stilleri başlangıcı*/
.popup-container {
	display: inline-flex;
	.button {
		height: 40px;
		line-height: 40px;
		'background: blue;
		padding: 0 15px;
		border-radius: 3px;
		font-size: 18px;
		color: #000;
		cursor: pointer;
		align-items: center;
		font-weight: bold;
		width: 100%;
		text-align: center;
	}
	.popup {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(#000,.5);
		z-index: 10;
		opacity: 0;
		visibility: hidden;
		transition: 400ms all;
		>label {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			cursor: pointer;
		}
		.inner {
			position: absolute;
			top: 100%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: #fff;
			min-width: 300px;
			box-sizing: border-box;
			transition: 400ms all;
			z-index: 10;
			max-height: 100%;
			overflow: auto;
			.title {
				height: 40px;
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 0 15px;
				position: sticky;
				top: 0;
				background: #FDFFBA;
				h6 {
					font-size: 16px;
					font-weight: bold;
					color: #0E3050;
				}
				label {
					font-size: 14px;
					color: #999;
					cursor: pointer;
					&:hover {
						color: #222;
					}
				}
			}
			.content {
				padding: 5px 15px 15px;
				z-index: 10000;
				ul {
					li {
						margin-bottom: 15px;
						&:last-child {
							margin-bottom: 0;
						}
						input {
							width: 100%;
							box-sizing: border-box;
							border: none;
							border-bottom: 1px solid #ddd;
							padding-bottom: 10px;
							font-size: 12px;
							&:focus {
								outline: 0;
								border-color: blue;
							}
						}
						button {
							width: 100%;
							height: 30px;
							border-radius: 3px;
							border: none;
							background: blue;
							color: #fff;
							font-size: 13px;
							cursor: pointer;
						}
					}
				}
				p {
					font-size: 13px;
					line-height: 130%;
					margin-bottom: 15px;
					&:last-child {
						margin-bottom: 0;
					}
				}
				.close-btn {
					margin-top: 15px;
					padding-top: 15px;
					border-top: 1px solid #ddd;
					label {
						background: rgba(#000, .05);
						display: block;
						line-height: 30px;
						text-align: center;
						font-size: 13px;
						color: #444;
						border-radius: 3px;
						cursor: pointer;
						&:hover {
							background: rgba(#000,.1);
						}
					}
				}
			}
		}
	}
	>input {
		position: absolute;
		left: -9999px;
		opacity: 0;
		&:checked + .popup {
			opacity: 1;
			visibility: visible;
			.inner {
				top: 50%;
			}
		}
	}
}
.popup-container input {
    position: absolute;
    left: -9999px;
}
.popup-container .popup {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    z-index: 90;
}
.popup-container .popup .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
}
.popup-container input:checked + .popup {
    opacity: 1;
    visibility: visible;
} /*ürünlerdeki popup penceresi stilleri sonu*/

nav {
	/*top: 15%;*/
  text-align: center;
	background-color: #f4f4f4;
  background: rgba(0, 0, 0, 0.5); /*soldaki menünün arkasındaki transparanlık*/
  position: fixed;
  z-index: 100;
  height: 100%;
  left: 0;
  width: 15%;
  font-weight: 300;
  font-size: 1rem;
}
nav em {
	font-style: normal;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
	margin-top: 15px;
	color: #fff;
}

nav ul li a {
	text-align: center;
}

nav ul {
	position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	text-align: left;
	list-style-type: none;
	height: 85%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
	-ms-flex-pack: distribute;
  justify-content: space-around;
}
nav ul li {
	text-align: center;
	margin: 5px 0px;
}
nav a, nav a:visited, nav a:active {
  color: #0e3050;
}
nav a {
	text-decoration: none!important;
	display: inline-block;
	width: 140px;
	padding: 15px 0px;
	position: relative;
	z-index: 0;
	transition: all .5s;
}
nav a.active {
  background-color: rgba(0,0,0,0.8);
}
nav a::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}
.logo {
	margin-top: 10px;
	padding-top: 0px;
  top: 0;
  left: 15%;
  z-index: 999999;
  position: fixed;
 	display: inline-block;
  text-align: center;
	/*background-color: #f4f4f4;/*#faf5b2; /*üstteki logonun arka orjinal rengi*/
	opacity: 100%;
	/*background: rgba(0, 0, 0, 0.5); /*üstteki logonun arkasındaki transparanlık*/
	height: 15%;
	width: 80%;
}
#logoaltyazi {
	
        width: 80%;

        position: absolute;
        top: 17%;     
		left:15%;
		z-index: 100;
    }
.logo h1 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
	
	background: rgba(0, 0, 0, 0.5); /*üstteki logonun arkasındaki transparanlık*/
}
.logo h2 {
  display: none;
	background: rgba(0, 0, 0, 0.5); /*üstteki logonun arkasındaki transparanlık*/
}
.slides {
  width: 500vw;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.slides .slide {
  height: 100vh;
  width: 100vw;
	overflow: auto;
  float: left;
  text-align: center;
  background-size: cover;
	align-items: center;
}
.slides .slide .content {
  overflow-y: scroll;
  position: relative;
  width: 80%;
  height: 80%;
  left: 15%; /*bize ulaşın kısmının soldan uzaklığı*/
  top: 10%;
}
.content::-webkit-scrollbar {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
/* Add a thumb */
.content::-webkit-scrollbar-thumb {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
.slides .slide {
  background-position: center center;
  background-size: cover;
  background-position: fixed;
}
.slides .slide:nth-child(1) {

}
.slides .slide:nth-child(2) {
  background-image: url(../images/about-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(3) {
  background-image: url(../images/gallery-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(4) {
  background-image: url(../images/contact-bg.jpg);
  background-position: fixed;
}

/* Slide 1 Stlye */
#slider-wrapper{
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
#image-slider {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: auto;
  display: block;
}
#image-slider ul {
  margin-bottom: 0;
  width: 100%;
  height: 100vh;
  position: relative;

}
#image-slider ul li {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height:100%; 
}
#image-slider ul li {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
#image-slider ul li:nth-child(1) {
  background-image: url(../images/full-bg-01.jpg);
}
#image-slider ul li:nth-child(2) {
  background-image: url(../images/full-bg-02.jpg);
}
#image-slider ul li:nth-child(3) {
  background-image: url(../images/full-bg-03.jpg);
}
#image-slider ul li:nth-child(4) {
  background-image: url(../images/full-bg-04.jpg);
}
#image-slider ul li:nth-child(5) {
  background-image: url(../images/full-bg-05.jpg);
}
#image-slider ul li:nth-child(6) {
  background-image: url(../images/full-bg-06.jpg);
}
#image-slider ul li:nth-child(7) {
  background-image: url(../images/full-bg-07.jpg);
}
#image-slider ul li:nth-child(8) {
  background-image: url(../images/full-bg-08.jpg);
}
#image-slider ul li:nth-child(9) {
  background-image: url(../images/full-bg-09.jpg);
}
#image-slider ul li.active-img{
  left: 0;
}
#thumbnail {
  position: absolute;
  z-index: 10001;
  bottom: 40px;
	left: 60%;
  margin-right: 20px;
	width: 40%;
	height: 40%;
	padding-top: 20px;
	padding-bottom: 10px;
}
#thumbnail ul {
  padding:0px;
  margin: 0px;

}
#thumbnail ul li {
  display:inline-flex;
	width: calc(100% / 7); /*küçük resimlerin genişliği*/
	float:left;
  max-width: 150px;
  max-height: 150px;
  margin-left: 55px;/*orjinalinde boşluk 30px*/
  cursor: pointer;
  border: 4px solid transparent;
  /*transition: all 0.5s;*/
}
#thumbnail ul li.active {
  'border: 5px solid #4dc5d6;/*#faf5b2; eski rengi*/
}
#thumbnail ul li img {
  max-width: 100%;
  overflow: hidden;
}
.slide-caption {
  text-align: right;
  right: 30px;
  position: absolute;
  top: 45%; /*ana sayfadaki sloganlı resimlerin yazısınınyukarıya uzaklığı*/
	transform: translateY(-50%);
}
.slide-caption h6 {  /*Ana sayfadaki sloganın üstündeki yazının özellikleri*/
  margin-top: -120px;
margin-left:15%;
	width: 50%;
	float: right;
  font-size: 15px;
  /*text-transform: uppercase;*/
  font-weight: 700;
  color: #fff;
	text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
	padding-bottom: 30px;
}
.slide-caption h2 {
	clear: both;
float: right;
  margin-top: -40px;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
	
}




/* Slide 2 Style */
.second-content {
	top: 170%!important; /*orjinalinde 180di. kurumsalın üstten uzaklığı*/
	transform: translateY(-180%);
}
#tabs {
  float: right;
  margin-right: 0px;
}
#tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#tabs ul li span { /*kurumsaldaki ikonların boyutu*/
  text-align: center; 
  background-color: transparent;
  border: 4px solid #4dc5d6;
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 32px;
  line-height: 70px;
  border-radius: 50%;
}
#tabs ul .ui-tabs-active span { /*ikonların arkaplan rengi*/
  background: #4dc5d6;
  border: #0e3050;
  line-height: 70px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #000;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
  margin-left: 60px;
  width: 885px;
  text-align: left;
  display: inline-block;
  background: #fff;
  margin-right: 30px;
  padding: 60px;
	opacity: 70%;
}
.tabs-content h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #1e1e1e;
  margin-top: 0px;
}
.tabs-content span {
  font-size: 15px;
  color: #7a7a7a;
  text-transform: uppercase;
}
.tabs-content p { /*hakkmızda bölümğndeki yazıların stili*/
  font-size: 14px;
  color: #1e1e1e;
  margin-top: 30px;
  margin-bottom: 0px;
}



/* Slide 3 Style */
.third-content {
	top: 115%!important;
	transform: translateY(-120%);
	overflow: auto;
}
.third-slide a {
  text-decoration: none;
}
.featured-item {
  transition: all 0.5s;
  text-align: left;
}
.featured-item img {
  width: 80%;
}
.featured-item .down-content {
  background-color: #fff;
  border: 5px solid #faf5b2;
  padding: 10px;
}
.featured-item h4 {
  margin-top: 0px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: #1e1e1e;
  transition: all 0.5s;
	text-align: center;
}
.featured-item h6 {
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 0px;
}
.owl-dots {
  text-align: center;
  margin-top: 30px;
}
.owl-dots .owl-dot {
  outline: none;
  display: inline-block;
}
.owl-dots .active span {
  background-color: #faf5b2!important;
}
.owl-dots .owl-dot span {
  background-color: #fff;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0px 5px;
  outline: none;
  cursor: pointer;
}



/* Slide 4 Style */
.fourth-content {
	top: 140%!important;
  height: 100%;
	transform: translateY(-140%);
}
#contact {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  margin-bottom: 100px;
  padding: 40px;
  background-color: rgba(0,0,0,0.6);
}
#contact h2 {
  font-size: 29px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 50px;
}
#contact h3 {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 25px;
}
#contact input,
#contact textarea {
  padding-left: 15px;
  background-color: rgba(0,0,0,0.1);
  border: 1px solid #fff;
  border-radius: 0px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}
#contact input:focus,
#contact textarea:focus {
  color: #fff;
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(250,245,178,1);
  background-color: rgba(0,0,0,0.1);
}
#contact textarea {
  height: 160px;
  padding: 15px;
}
#contact button {
  border: 2px solid #fff;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background-color: transparent;
  height: 44px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}
#contact button:hover {
  background-color: #faf5b2;
  border-color: #faf5b2;
  color: #1e1e1e;
}

@media (max-width: 1500px) {
	#thumbnail {
  bottom: 60px;
	left: 50%;
	width: 50%;
	right: 25px;
		}
}

/* Responsive Style */
@media (max-width: 991px) {

  .slides .slide .content {
	width: 100%;
	height: 90%;
	left: 0;
  }
  .second-content {
	top: 250%!important;
	transform: translateY(-250%);
  }
  .third-content { 'yukarıdan olan uzaklıklar'
	top: 150%!important;
	transform: translateY(-140%);
  }
  .fourth-content {
	top: 230%!important;
	transform: translateY(-220%);
  }
  .logo h1 {
    display: none;
  }
  .logo h2 {
  	margin-top: 20px;
    line-height: 40px;
    height: 40px;
    width: 15vw;
    top: 0;
    left: 0;
    z-index: 10002;
    position: fixed;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    color: #111;
    display: inline-block;
    text-align: center;
    /*background-color: #f4f4f4;*/
  }
	.logo {
		width: 80%;
		
		margin-left: -5%;		
	}
	#logoaltyazi {
        width: 80%;
        top: 10%;     
		left:10%;
    }
	.logo img{
	margin-top: 5px;
		width: 30%;
    
	}
  nav {
    top: 20vh;
    height: 75px;
    width: 100vw;
    margin-left: 0vw;
  }
  nav ul {
    flex-direction: row;
  }
  nav ul li {
    display: inline;
    margin: 0px;
  }
  nav ul li img {
	width: 35%;
  }
  nav ul li em {
    display: none;
  }
  nav a {
  	text-align: center;
	  width: 60px;
	  height: 60px;
    line-height: 30px;
    display: inline-block;
  }
  .second-slide {
    top: 140px;
  }
  .slide-caption h2 {
  	font-size: 48px;
  }
  .tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 30px;
    padding: 20px;
	  
  }
  .tabs-content p {
    margin-top: 20px;
  }
  #tabs ul li {
    display: inline-block;
    margin: 0px 10px;
  }
  #tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #thumbnail ul li {
    max-width: 80px;
    max-height: 80px;
    margin-left: 10px;
  }
  .slide-caption {
    padding-left: 30px;
  }
  #tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .featured-item {
    padding: 30px 15px;
  }
  .owl-dots {
    margin-top: 10px;
    padding-bottom: 30px;
  }
  .tabs-content h2 {
    font-size: 21px;
  }
  .third-slide {
    text-align: center;
    margin: 0px;
  }
  .fourth-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 140px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form h2 {
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
  }

}
@media (max-width: 591px) {
	.logo {
		width: 100%;
		
		margin-left: -15%;		
	}
	#logoaltyazi {
        width: 100%;
        top: 8%;     
		left:0%;
    }
  nav {
    top: 13vh;
    height: 75px;
    width: 100vw;
    margin-left: 0vw;
	}
#thumbnail { /*mobil cihazlardaki küçük resim ayarları*/
  bottom: 10px;
  right: 10px;
	width: 90%;
	height: 40%;
	padding-top: 15px;
}

#thumbnail ul li {
  display:inline-flex;
	width: calc(100% / 3); /*küçük resimlerin genişliği*/
	float:left;
  max-width: 140px;
  max-height: 140px;
  margin-left: 15px;/*orjinalinde boşluk 30px*/
  cursor: pointer;
  /*border: 4px solid transparent;*/
  /*transition: all 0.5s;*/
}

}

.language-container select {
        display: flex;
	position:absolute;
    top:5px;
    right:15px;
        border-radius: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
	z-index: 10;
	
}
.language-container {
 display: flex;
	position:absolute;
    top:10px;
    right:15px;
 justify-content: center;
 align-items: center;
 padding-bottom: 10px;
	font-size: 14px;
}
.language-container2 {
 display: flex;
	position:absolute;
    top:100px;
    right:15px;
 justify-content: center;
 align-items: center;
 padding-bottom: 10px;
	font-size: 14px;
	z-index: 10;
	opacity: 60%;
}

.buyutec
{
    position: relative;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -ms-transition: all .2s ease-in;
  padding:10px;
}

.buyutec:hover
{
    z-index:4;
    -webkit-transform: scale(2.7);
    -ms-transform: scale(2.7);  
    -moz-transform: scale(2.7);
    transform: scale(2.7);
}