@charset "utf-8";
/* CSS Document */
body{
	background: #eee;
}
.container{
	width: 100%;
	height: 100%;
}
.ana{
	width: 100%;
	max-width: 1200px;
	height: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: #eee;
	margin: 0 auto;
}
/*banner div ayarları*/
.baslik{
	width: 100%;
	height: auto;
		
}
.telephone{
	float: left;
	width: 60%;;
	height: auto;
	
}
.telephone img{
	width: 200px;
	height: auto;
	margin-top: 3px;
	float: right;
		
}
.sosyal{
	float: left;
	width: 40%;
}
.sosyal img{
	width: 35px;
	height:auto;
	margin: 3px;
		
}
.banner{
	width: 100%;
	height: auto;
	margin: 5px;
	border-radius: 10px;
	text-align: center;	
}
/*banner resmi*/
.banner img{
	width: 100%;
	height: auto;
	border-radius: 10px;
}
/*küçük resimlerin alanı*/
.icerik{
	width: 288px;
	height: 200px;
	text-align: center;
	background: #eee;
	border-radius: 10px;
	margin: 5px;
}
.icerik img{
	width: 100%;
	height: 100%;
	border-radius: 10px;	
}
/*listenin içinde olduğu div*/
.icerik img:hover{  /*resmin üzerine gelin */
	border: 3px solid red;
}
.tel
{
	float: right;
}
.tel img{
	margin-top: 9px;
	margin-right: 5px;
	height: 35px;
	width: 300px;
	float: right;
}
.menuliste{
	margin-top: 10px;
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: center;
}
/* liste resmi*/
.menuliste img{
	width: 100%;
	height: auto;
	margin: 0 auto;/*resmi ortaladı*/
}
/*bu kısım üst menu için*/
/* menü genel özellikleri */
.menu {
  background-color: #555;
  overflow: hidden;
	width: 100%;
	height: auto;
	margin: 5px;
	border-radius: 10px;
}

/* menü içindeki linklerin özellikleri */
.menu a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
 
/* linklerin üzerlerine gelindiğindeki halleri */
.menu a:hover {
  background-color: #ddd;
  color: black;
}
 
/* en soldaki elemanı farklı kılmak amaçlı stil */
.active {
  background-color: #000;
  font-weight:bold;
  color: white;
}
 
/* menü düğmesini gizliyoruz */
.menu .icon {
  display: none;
}
 
/* menü ikonunun görünümü */
.menu .icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}
 
/* Genişlik 800px altına düştüğünde ilk eleman haricindekiler gizlensin, menü ikonu ise görünsün */
@media screen and (max-width: 800px) {
  .menu a:not(:first-child) {display: none;}
  .menu a.icon {
    float: right;
    display: block;
  }
}
 
/* responsive sınıfı, javascript ile menüye uygulanacak (ikona tıklandığında), böylece küçük ekranlarda menü dikey hale gelecek. */
@media screen and (max-width: 800px) {
  .menu.responsive {position: relative;}
  .menu.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .menu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	.tel img{
		width: 130px;height: auto;
		margin-top: 10px;
	}
}
/*üst menü burada bitti*/

/*slider in içinde bulunduğu div*/
.slayt{
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.slayt img{
	border-radius: 10px;
}
.ilteisimana{
	width: 100%;
	max-width: 1200px;
	height: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: #eee;
	margin: 0 auto;
	margin-top: 10px;
}
.map{
	margin-top: 10px;
	width: 500px;
	height: 350px;
	
}
.iletisimm{
	width:500px;
	height: auto;	
	float: left;
	text-align: center;
}
.icerik1{	
	width: 288px;
	height: 200px;
	text-align: center;
	background: #eee;
	border-radius: 10px;
	margin: 5px;
}
.icerik1 img{
	padding-top: 50px;
}
/*popup  başlangıç*/
section.duyuru{
	display: flex;
	position: fixed;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	z-index: 9999;	
	animation:  duyurukapat 15s 1;
	visibility: hidden;
	
}
section.duyuru div{
	background: white;
	padding: 1em;
	max-width: 60%;
	max-height: 80%;
	position: relative;
}
section.duyuru div a{
	position: absolute;
	top: -20;
	right: -20;
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;;
	text-align: center;
	background: black;
	border-radius: 20px;
	font-weight: bolder;
	color: white;
}
section.duyuru div a::before{
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background: white;
	position: absolute;
	z-index: -1;
	border-radius: 20px;
	top: -5px;
	right: -5px;
}
section:target{
	animation: none;
	visibility: hidden;
}
section.duyuru img {
	width: 100%;
	max-height: 80%;
}
@keyframes duyurukapat{
	0%{opacity: 1; visibility: visible;}
	80%{opacity: 1;visibility: visible;}
	100%{opacity: 0;visibility: hidden ;}
}
/*popup bitiş*/


