/* CSS Document */


@import url(https://fonts.googleapis.com/css?family=Open+Sans);




html {
  height:100%;
background: #E9EFDD	;

    
}

#myContent {
    height: 100%;
}
body 
{ height: 100%;
    margin: 0;
    padding: 0;
  
	}

nav {
  max-width: 80%;
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #e6e6e8 25%, #e6e6e8 75%, rgba(255, 255, 255, 0) 100%);
  margin: 0 auto;
   padding-top:10px;
  padding-bottom:10px ;
}

nav ul {
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  padding: 18px;
  font-family: "Open Sans";
  text-transform:uppercase;
  color: #051F20;
  font-size: 18px;
  text-decoration: none;
  display: block;
}

nav ul li a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #8EB69B;
}


.kapsayıcı
{ 
width:100%;
margin: 0 auto;
	}
	.üstmenü
	{
		width:80%;
		margin:0 auto;
		
		}

	
	
section {
  text-align: center;

}

section:nth-child(odd) {
  
}



img {
 
  
}

.base img {
  width: 100%;
  height: 100%;
}

.fill img {
  object-fit: fill;
}

.contain img {
  object-fit: contain;
}

.cover img {
  object-fit: cover;
}

.scale-down img {
  object-fit: scale-down;
}

.none img {
  object-fit: none;
}
.sol
{
	float:left;
	margin-left: 0px ;
	}
figure *, figure *::before, figure *::after{
  -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}


figure{
  width: 100%;
  overflow: hidden;
  position: relative;
  margin:auto;
  
 
}


figcaption{
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  display: table;
}


figcaption div{
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: 20px;
  left: 0px;
    opacity: 0;
  color: white;
}
 
figcaption div:after{
  position: absolute;
  content: "";
  left: 0; right: 0;
  bottom: 40%;
  text-align: center;
  margin: auto;
  width: 0%;
  height: 3px;
  background: white;
}
 
figcaption:hover div{
  opacity: 1;
  top: 0;
}
 
figcaption:hover div:after{
  width: 0%;
}

figure img{
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
 
figure:hover img{
  -webkit-transform: scale3d(1.3, 1.3, 1);
          transform: scale3d(1.3, 1.3, 1);
}

figure:hover figcaption{
 background: rgba(1,1,1,.8);
}

.ilkresimyazı
{
	font:"Advent Pro";
	font-size:25px;
	text-align:center;
	
	color:#FFF;
	line-height:1.5;}
@media only screen and (max-width:800px){
    .ilkresimyazı>p{
		line-height:2;
		font-size:15px;
		
    }
}




a.buton{
    background:#235347;
    padding:5px 10px;
    text-decoration:none;
    color:#fff;
    font:bold 20px Arial, Helvetica, sans-serif;
    border-radius: 7px;
    box-shadow: 0 1px 2px #000;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
}

a.buton:hover{
    background-color:#8EB69B;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}


.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


.orta
{
	
	}

.ortayazı
{ margin:0 auto;
text-align:center;
font:bold;
color:#051F20;
	}

.organik{
border-radius:15px;
width:512px; height:288px;
background-color:#bb5046;
color:#FFF;
-moz-box-shadow:inset 0 0 80px #822820; 
-webkit-box-shadow: inset 0 0 80px #822820;
box-shadow: inset 0 0 80px #822820;

}
  
.organik img{
position:absolute;
z-index:1;
-moz-transition: opacity 0.5s;
-webkit-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
border-radius:15px;
}
  
.organik img:hover{opacity:0;}
  
.organik p{
padding:10px;
text-align:center;
font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color:#fcd1cd;
text-shadow: #822820 2px 1px;
}
  
.organik h1{
padding-top:15px;
font:20px Georgia, 'Times New Roman';
color:white;
letter-spacing: -1px;
text-align:center;
text-shadow: #822820 2px 1px;
}

.con{
	
	
}

aside{
    width: 100%;
    display: block;
    margin: 0 auto;

}
side{
    
	height:auto;
    display: block;
	font-size:18px;
	color:#344734;
	text-align:justify;
	font:"Advent Pro";
	
	
	
   
   
    float: left;
}
side>.con>img{
        float: left;
		width:50%;
	
    
}
@media only screen and (max-width:1000px){
    side>.con>img{
        width: 100%;
		
    }
}

.con2{
	
	
}

aside{
    width: 100%;
    display: block;
    margin: 0 auto;

}
side{
    width: 100%;
	height:auto;
    display: block;
	
	
	
	
   
   
    float: left;
}
side>.con2>img{
        float: left;
		width:100%;
    
}
@media only screen and (max-width:1000px){
    side>.con2>img{
        width: 100%;
		
    }
}

.altmönü
{
	width: 100%;
	height:70px;
	background:#374933;
	
	}
	.altmönüsol a {
    line-height: 1;
    display: inline-block;
   color: #8EB69B;
    text-decoration:none;
}
.altmönüsol a:after {
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color: #9b8838;
    transition: width .3s ease-in-out;
}
.altmönüsol a:hover:after,
.altmönüsol a:focus:after {
    width: 100%;
}

	.altmönüsol
	{
		float:left;
		color:#0F0;
		width:auto;
		height:auto;
		padding-left:10px;
		padding-top:23px;
		
		
		}
		
		
	.altmönüsağ
	{
		float:right;
		
		padding-right:50px;
		padding-top:23px;
		}
.sosyalımg
{
	width:32px;
	height:32px; 
	float:left;
	margin-left:20px;}
		
.clear
{
	clear:both;}

	


	.hakkımızda
	{
		margin-left:55px;
		margin-top:40px;
		width:auto;
		height:auto;
		color:#051F20;
		}
.hakkımızdakap2
{
	width:70%;
	height:auto;
	
	margin-left:70px;
	float:left;
	}
.hakkımızdayazı
{
	margin:0 auto;
	text-align:justify;
	width:90%;
	height:auto;
		font-size:16px;
	color: #374933;
	line-height:1.3;
	font:"Advent Pro";
	
	

	
	}
	
	.hakkımızdaresim
	{
			
		
		text-align:center;
		
		}
		.hakkımızdaresim>img{
			width:300px;
			text-align:center;
			
		}
		@media only screen and (max-width:800px){
    .hakkımızdaresim>img{
        width:400px;
		
    }
}

.iletişimkutu
{
	margin:0px 50px auto;
	color: #374933;
	line-height:2;
	text-align:left;
	width:79%;
  background-color:#E1E1E1;
  box-shadow: 10px 10px 5px  #617e67;
  float:left;}
  .iletişimyazı
  {
	  margin:0 auto; 
	  color: #374933;
	line-height:2;
	text-align:left;
	margin:0 auto;
	font-size:15px;
	font:"Advent Pro";
	
	  }
	  