﻿@charset "utf-8";

/*
	reklamega.net - 15/05/2018
*/









#loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	visibility: hidden;
	background: #fff;
	opacity: 0;
	-webkit-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	   -moz-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	    -ms-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	     -o-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	        transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
}

#loader.active {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	   -moz-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	    -ms-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	     -o-transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
	        transition: all 0.5s 0s cubic-bezier(0.42, 0, 0.58, 1);
}

#loader.start {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0s 0s cubic-bezier(0.42, 0, 0.58, 1);
	   -moz-transition: all 0s 0s cubic-bezier(0.42, 0, 0.58, 1);
	    -ms-transition: all 0s 0s cubic-bezier(0.42, 0, 0.58, 1);
	     -o-transition: all 0s 0s cubic-bezier(0.42, 0, 0.58, 1);
	        transition: all 0s 0s cubic-bezier(0.42, 0, 0.58, 1);
}


@-webkit-keyframes rotate {
	  100% {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes rotate {
	  100% {
		-moz-transform: rotate(360deg);
	}
}
@keyframes rotate {
	  100% {
		transform: rotate(360deg);
	}
}




@-webkit-keyframes bounce {
	0%, 100% {
		-webkit-transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes bounce {
	0%, 100% {
		-moz-transform: scale(0);
	}
	50% {
		-moz-transform: scale(1);
	}
}
@keyframes bounce {
	0%, 100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}



#spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 46px;
	margin: -23px 0 0 -23px;
	text-align: center;
	vertical-align: middle;
	opacity: 1;

	-webkit-animation: rotate 2.0s infinite linear;
	   -moz-animation: rotate 2.0s infinite linear;
	        animation: rotate 2.0s infinite linear;

	-webkit-transition: opacity 1s 0s cubic-bezier(0.42, 0, 0.58, 1);
	   -moz-transition: opacity 1s 0s cubic-bezier(0.42, 0, 0.58, 1);
	    -ms-transition: opacity 1s 0s cubic-bezier(0.42, 0, 0.58, 1);
	     -o-transition: opacity 1s 0s cubic-bezier(0.42, 0, 0.58, 1);
	        transition: opacity 1s 0s cubic-bezier(0.42, 0, 0.58, 1);
}

.dot1, .dot2 {
	position: absolute;
	top: 0;
	width: 23px;
	height: 23px;
	background-color: #76be74;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	   -moz-animation: bounce 2.0s infinite ease-in-out;
	        animation: bounce 2.0s infinite ease-in-out;
}

.dot2 {
	top: auto;
	bottom: 0px;
	background-color: #50a4cb;
	-webkit-animation-delay: -1.0s;
	   -moz-animation-delay: -1.0s;
	        animation-delay: -1.0s;
}






.backstretch > div {
	background-image: url(../images/pattern.png);
}




html {
	background: #fff;
}

body {
	min-width: 980px;
	font-family: 'Open Sans', Arial, Tahoma;
	line-height: 20px;
	font-size: 13px;
	font-weight: 400;
	color: #333;
}

h1, h2, h3, h4, h5, h6, strong, b {
	font-weight: 700;
}

a {
	color: #333;
	-webkit-transition: color .3s linear;
       -moz-transition: color .3s linear;
            transition: color .3s linear;
}

a:hover {
	color: #000;
}

form {
	float: left;
	width: 100%;
}
form label {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
form label span {
	display: block;
	margin-bottom: 2px;
	font-size: 14px;
	color: #7C7C7C;
}
input[type="text"],
input[type="password"],
select,
textarea {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 26px;
	margin: 0px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-family: 'Roboto Slab', Arial;
	font-size: 14px;
	font-weight: 400;
	background: #ddd;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-transition: background .3s linear;
	   -moz-transition: background .3s linear;
	        transition: background .3s linear;
	-webkit-box-shadow: inset 0px 1px 9px rgba(0, 0, 0, 0.15);
	   -moz-box-shadow: inset 0px 1px 9px rgba(0, 0, 0, 0.15);
	        box-shadow: inset 0px 1px 9px rgba(0, 0, 0, 0.15);
}
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	background: #d0d0d0;
}
form input.error,
form select.error,
form textarea.error {
	border-color: #f00;
}
textarea {
	height: 100px;
}
form button[type="submit"] {
	float: right;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}
form button[type="submit"] span {
	display: block;
	line-height: 36px;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	padding: 0px 25px;
	background-color: #7e2822;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
form button[type="submit"]:hover span {
	background-color: #373737;
}
form button[type="submit"][disabled] span {
	cursor: default;
	background-color: #7c736c !important;
}
.placeholder {
	position: absolute;
	top: 11px;
	left: 11px;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	color: #777;
	cursor: text;
	text-decoration: none !important;
}
textarea + .placeholder {
	top: 8px;
}
.placeholder.aktif {
	color: #969696;
}
form .not {
	float: left;
	font-size: 11px;
	color: #969696;
}
form select {
	color: #777;
}















.fancybox-lock .fixed-fixes {
	margin-right: 17px;
}


.giris {
	position: absolute;
	top: 0px;
	width: 50%;
	height: 100%;
	background-repeat: no-repeat;
}

#giris-sol {
	left: 0px;
}
#giris-sag {
	left: 50%;
}

.giris header {
	width: 70%;
	margin: 100px 15% 30px;
}
.giris header .logo {
	text-align: center;
}
.giris img {
	max-width: 100%;
	height: auto;
}
.giris footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	margin: 0 15% 70px;
	line-height: 16px;
	font-size: 13px;
	color: #fff;
	text-align: center;
}
.giris footer h3 {
	margin-bottom: 3px;
}
.giris .buton {
	display: inline-block;
	margin-top: 30px;
	line-height: 44px;
	font-size: 14px;
	font-weight: 700;
	color: #0a0b57;
	padding: 0 30px;
	text-decoration: none;
	background-color: #fff;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
	        transition: all .3s ease-in-out;
}
.giris  a.buton:hover {
	background-color: #DBDBDB;
}
#giris-sag footer {
	color: #8f2c26;
}
#giris-sag a.buton {
	color: #fff;
	background-color: #8f2c26;
}
#giris-sag a.buton:hover {
	background-color: #6d1e19;
}



/*
======================================================
	ÜST
======================================================
*/
#ust {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 105px;
	padding-bottom: 33px;
	background: url(../images/header_bg.png) no-repeat 50% 100%;
	/*
	border-bottom: 5px solid #7e2822;
	background-color: #fff;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	        transition: all .3s ease;
	-webkit-transform: rotate(-2deg);
	   -moz-transform: translate3D(0px, 0px, -1px) rotate(-2deg);
        -ms-transform: translate3D(0px, 0px, -1px) rotate(-2deg);
	        transform: translate3D(0px, 0px, -1px) rotate(-2deg);
	*/
			
}
#ust a.logo {
	float: left;
	margin-top: 15px;
	margin-left: 15px;
}
#ust nav {
	float: right;
}
#ust nav > ul {
	float: right;
}
#ust nav > ul > li {
	position: relative;
	float: left;
	margin-left: 1px;
}
#ust nav > ul > li > a {
	position: relative;
	z-index: 0;
	display: block;
	line-height: 73px;
	padding: 0px 15px;
	font-size: 12px;
	font-weight: 600;
	color: #0d104a;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#ust nav > ul > li:hover > a,
#ust nav > ul > li.selected > a {
	color: #fff;
}

#ust nav > ul > li > a:after {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#ust nav > ul > li:hover > a:after,
#ust nav > ul > li.selected > a:after {
	background-color: #7e2822;
}
#ust nav > ul > li.m1 > a:after {top: 0px}
#ust nav > ul > li.m2 > a:after {top: -1px}
#ust nav > ul > li.m3 > a:after {top: -2px}
#ust nav > ul > li.m4 > a:after {top: -4px}
#ust nav > ul > li.m5 > a:after {top: -5px}




#ust nav > ul > li ul {
	overflow: hidden;
	display: none;
	position: absolute;
	top: 58px;
	left: 0px;
	z-index: 1;
	background-image: url(../images/blank.gif);
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#ust nav > ul > li ul ul {
	top: 5px;
	left: 98%;
}
#ust nav > ul > li:hover ul {}
#ust nav > ul > li li {
	position: relative;
	float: none;
	display: block;
}
#ust nav > ul > li li.dropdown:after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 3px;
	height: 6px;
	margin-top: -3px;
	margin-left: 8px;
	content: "";
	background: url(../images/sprite.html) no-repeat -186px -23px;
}
#ust nav > ul > li li.dropdown:hover:after {
	right: -15px;
	-webkit-transition: right .3s linear;
       -moz-transition: right .3s linear;
            transition: right .3s linear;
}
#ust nav > ul > li li a {
	display: block;
	width: 220px;
	line-height: 36px;
	padding: 0 10px;
	font-size: 13px;
	color: #385C72;
	letter-spacing: -0.1px;
	text-decoration: none;
	border-bottom: 1px solid #C3C3C3;
	background-color: #FFF;
	-webkit-transition: all .3s linear;
       -moz-transition: all .3s linear;
            transition: all .3s linear;
}
#ust nav > ul > li li:hover > a,
#ust nav > ul > li li.selected > a {
	background-color: #EDEDED;
}

.nav-button {
	display: none;
	float: right;
	height: 40px;
	margin: 0;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: url(../images/blank.gif);
	opacity: 1;
	-webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
            transition: all .3s ease;
}
.nav-button:hover {
	opacity: .7;
}
.nav-button:active {
	-webkit-transition: 0;
	   -moz-transition: 0;
	        transition: 0;
}
.nav-button .lines {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 5px;
	background-color: #d66b2f;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-transition: 0.3s all ease;
	   -moz-transition: 0.3s all ease;
	        transition: 0.3s all ease;
}
.nav-button .lines:before,
.nav-button .lines:after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #d66b2f;
	content: "";
	-webkit-transition: 0.3s all ease;
	   -moz-transition: 0.3s all ease;
	        transition: 0.3s all ease;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-transform-origin: 0.28571rem center;
	   -moz-transform-origin: 0.28571rem center;
	        transform-origin: 0.28571rem center;
}
.nav-button .lines:before {
	top: 8px;
}
.nav-button .lines:after {
	top: -8px;
}
.nav-button.open {
	-webkit-transform: scale3d(0.8, 0.8, 0.8);
	   -moz-transform: scale3d(0.8, 0.8, 0.8);
	        transform: scale3d(0.8, 0.8, 0.8);
}
.nav-button.open .lines {
	background-color: transparent;
}
.nav-button.open .lines:before,
.nav-button.open .lines:after {
	top: 0;
	width: 100%;
	-webkit-transform-origin: 50% 50%;
	   -moz-transform-origin: 50% 50%;
	        transform-origin: 50% 50%;
}
.nav-button.open .lines:before {
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	   -moz-transform: rotate3d(0, 0, 1, 45deg);
	        transform: rotate3d(0, 0, 1, 45deg);
}
.nav-button.open .lines:after {
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	   -moz-transform: rotate3d(0, 0, 1, -45deg);
	        transform: rotate3d(0, 0, 1, -45deg);
}

/*
======================================================
	// ÜST
======================================================
*/













/*
======================================================
	ANA SAYFA
======================================================
*/
#ana-sayfa {
	position: absolute;
	bottom: 40px;
	left: 0px;
	width: 100%;
	height: 140px;
	padding-top: 75px;
	background: url(../images/index_nav.png) no-repeat 50% 0;
}
#ana-sayfa .container_12 {
	margin-top: -60px;
}
#ana-sayfa .grid_12 {
	height: 100px;
}
#ana-sayfa a {
	position: absolute;
	width: 125px;
	text-align: center;
	text-decoration: none;
}
#ana-sayfa a.m1 {
	left: 93px; top: -66px;
}
#ana-sayfa a.m2 {
	left: 301px; top: -66px;
}
#ana-sayfa a.m3 {
	left: 509px; top: -66px;
}
#ana-sayfa a.m4 {
	left: 721px; top: -66px;
}
#ana-sayfa a img {
	display: block;
	margin: 0 auto;
	opacity: .77;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	        transition: all .3s ease;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	        transform: scale(1);
}
#ana-sayfa h3 {
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}
#ana-sayfa a:hover img {
	opacity: 1;
	-webkit-transform: scale(1.03);
	   -moz-transform: scale(1.03);
	        transform: scale(1.03);
}
/*
======================================================
	// ANA SAYFA
======================================================
*/









/*
======================================================
	HAKKIMIZDA
======================================================
*/
#hakkimizda {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
}
#hakkimizda article {
	width: 960px;
	height: 458px;
	padding-right: 390px;
	padding-left: 60px;
	padding-top: 75px;
	padding-bottom: 50px;
	color: #FCE7E7;
	text-align: justify;
	background: url(../images/hakkimizda_icerik_bg.png) no-repeat;
	background-size: 100%;
}
/*
======================================================
	// HAKKIMIZDA
======================================================
*/






.beyaz {
	background: #fff;
}




/*
======================================================
	ILETISIM
======================================================
*/
#iletisim {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	padding-top: 50px;
}
#iletisim .harita {
	overflow: hidden;
	position: relative;
	width: 960px;
	height: 310px;
}
#iletisim .harita #map {
	float: left;
	width: 120%;
	height: 100%;
	margin-left: -10%;
	margin-top: 3%;
	-webkit-transform: rotate(3deg) !important;
	   -moz-transform: rotate(3deg) !important;
	        transform: rotate(3deg) !important;
}
#iletisim .harita a, #iletisim .harita img {
	display: block;
	width: 100%;
	height: 100%;
}
#iletisim .beyaz .grid_12 {
	padding: 20px 20px 60px;
}
#iletisim .sol {
	float: left;
	width: 54%;
}
#iletisim .sag {
	float: left;
	width: 38%;
	margin-left: 8%;
}
#iletisim header h1 {
	font-size: 18px;
	font-weight: 400;
}
#iletisim b {
	font-weight: 600;
}
#iletisim .konum-bilgisi {
	float: left;
	width: 100%;
	line-height: 16px;
	margin-top: 20px;
	font-size: 12px;
}
#iletisim .konum-bilgisi h3 {
	font-size: 15px;
	font-weight: 400;
}
#iletisim .sag h2 {
	font-size: 18px;
	font-weight: 400;
}
/*
======================================================
	// ILETISIM
======================================================
*/










/*
======================================================
	DAVET & ORGANIZASYON
======================================================
*/
/*
#davet-organizasyon {
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	height: 449px;
	margin-top: -225px;
	text-align: center;
}
#davet-organizasyon img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
#davet-organizasyon h2 {
	position: absolute;
	top: 225px;
	left: 0;
	z-index: 1;
	width: 100%;
	line-height: 50px;
	margin: 0;
	font-size: 42px;
	font-weight: 300;
	color: #fff;
	color: rgba(255, 255, 255, .6);
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#davet-organizasyon a.paket-buton {
	position: absolute;
	bottom: 25px;
	left: 0;
	z-index: 1;
	width: 80%;
	max-width: 80%;
	line-height: 68px;
	margin: 0 10%;
	font-size: 25px;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	background-color: #847b61;
	background-color: rgba(132, 123, 97, 0.78);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#davet-organizasyon .altin a.paket-buton {
	background-color: #e0be00;
	background-color: rgba(224, 190, 0, 0.78);
}
#davet-organizasyon .gumus a.paket-buton {
	background-color: #818181;
	background-color: rgba(129, 129, 129, 0.78);
}
#davet-organizasyon .grid_4:hover h2 {
	color: #fff;
}
#davet-organizasyon .platin:hover a.paket-buton {
	background-color: #847b61;
}
#davet-organizasyon .altin:hover a.paket-buton {
	background-color: #e0be00;
}
#davet-organizasyon .gumus:hover a.paket-buton {
	background-color: #818181;
}

.paket-menu .fancybox-close {
	top: 2px;
	right: 6px;
	background: none;
}
*/

/*
======================================================
	// DAVET & ORGANIZASYON
======================================================
*/









/*
======================================================
	DAVET & ORGANIZASYON
======================================================
*/
#davet-organizasyon {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	padding-top: 50px;
}
#davet-organizasyon .ust {
	float: left;
	width: 940px;
	height: 51px;
	margin-top: -30px;
	background: url(../images/brunch-ust.png) no-repeat;
}
#davet-organizasyon .alt {
	background-color: #ca413b;
}
#davet-organizasyon .alt article {
	float: left;
	width: 100%;
	min-height: 300px;
	padding: 50px 40px;
	color: #FCE7E7;
	text-align: justify;
}
#davet-organizasyon .yazi {
	float: left;
	width: 470px;
}
#davet-organizasyon .galeri {
	float: left;
	width: 310px;
	margin-left: 50px;
}
#davet-organizasyon .galeri > div {
	float: left;
	margin-left: -10px;
}
#davet-organizasyon .galeri a {
	position: relative;
	float: left;
	width: 54px;
	height: 54px;
	margin-left: 10px;
	margin-bottom: 10px;
	text-decoration: none;
}
#davet-organizasyon .galeri a img {
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #FCE7E7;
}




#davet-organizasyon .galeri a.video:before {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url(../images/ytplay.png) no-repeat 50% 50% / 48px 34px;
}
#davet-organizasyon .galeri a.video:after {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
	width: 100%;
	height: 100%;
	content: "";
	border: 2px solid #FCE7E7;
	background-color: rgba(0, 0, 0, .5);
	-webkit-transition: all .3s ease;
            transition: all .3s ease;
}
#davet-organizasyon .galeri a.video:hover:after {
	background-color: transparent;
}








#davet-organizasyon a.paket-buton {
	display: inline-block;
	line-height: 40px;
	margin-left: 10px;
	padding: 0 20px;
	font-size: 17px;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	background-color: #847b61;
	background-color: rgba(132, 123, 97, 0.78);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#davet-organizasyon a.altin {
	background-color: #e0be00;
	background-color: rgba(224, 190, 0, 0.78);
}
#davet-organizasyon a.gumus {
	background-color: #818181;
	background-color: rgba(129, 129, 129, 0.78);
}
#davet-organizasyon a.platin:hover {
	background-color: #847b61;
}
#davet-organizasyon a.altin:hover {
	background-color: #e0be00;
}
#davet-organizasyon a.gumus:hover {
	background-color: #818181;
}
.paket-menu .fancybox-close {
	top: 2px;
	right: 6px;
	background: none;
}
/*
======================================================
	// DAVET & ORGANIZASYON
======================================================
*/










/*
======================================================
	FIX MENU
======================================================
*/
#fix-menu {
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	height: 449px;
	margin-top: -225px;
	text-align: center;
}
#fix-menu img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0 auto;
}
#fix-menu h2 {
	position: absolute;
	bottom: 25px;
	left: 0;
	z-index: 0;
	width: 80%;
	line-height: 70px;
	margin: 0 10%;
	font-size: 25px;
	font-weight: 300;
	color: #fff;
	background-color: #8e2d26;
	background-color: rgba(142, 45, 38, 0.88);
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
	        border-radius: 10px;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;
}
#fix-menu .grid_4:hover h2 {
	background-color: #8e2d26;
}
#fix-menu a {
	color: #fff;
	text-decoration: none;
}
/*
======================================================
	// PAKETLER
======================================================
*/








/*
======================================================
	MENU
======================================================
*/
#menu {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	padding-top: 0px;
}
#menu .beyaz {
	min-height: 300px;
}
#menu nav {
	float: left;
	width: 960px;
	height: 103px;
	margin-left: -10px;
	background: url(../images/menu_tab_bg.png) no-repeat;
}
#menu nav a {
	float: left;
	line-height: 60px;
	padding: 0 20px 43px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}
#menu nav a.selected {
	color: #822923;
	background-color: #fff;
}
#menu .tab {
	float: left;
	display: none;
	width: 100%;
	min-height: 389px;
	padding: 40px 320px 40px 30px;
}
#menu hr {
	clear: both;
	display: block;
	width: 100%;
	height: 1px;
	margin: 20px 0;
	border: 0;
	background: url(../images/hr.png) no-repeat 100% 50%;
}
/*
======================================================
	// MENU
======================================================
*/






/*
======================================================
	BRUNCH
======================================================
*/
#brunch {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	padding-top: 50px;
}
#brunch .ust {
	float: left;
	width: 940px;
	height: 51px;
	margin-top: -30px;
	background: url(../images/brunch-ust.png) no-repeat;
}
#brunch .alt {
	background-color: #ca413b;
}
#brunch .alt article {
	float: left;
	width: 100%;
	min-height: 300px;
	padding: 50px 40px;
	color: #FCE7E7;
	text-align: justify;
}
#brunch .yazi {
	float: left;
	width: 470px;
}
#brunch .galeri {
	float: left;
	width: 310px;
	margin-left: 50px;
}
#brunch .galeri > div {
	float: left;
	margin-left: -10px;
}
#brunch .galeri a {
	float: left;
	width: 54px;
	height: 54px;
	margin-left: 10px;
	margin-bottom: 10px;
	text-decoration: none;
}
#brunch .galeri a img {
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #FCE7E7;
}
/*
======================================================
	// BRUNCH
======================================================
*/
















/*
======================================================
	GALERI
======================================================
*/
#galeri {
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	min-height: 462px;
	margin-top: 50px;
	padding-bottom: 50px;
}
#galeri .beyaz {
	min-height: 300px;
}


#galeri .tab {
	display: none;
}
#galeri .tabs nav {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
#galeri .tabs nav > div {
	float: left;
	margin-left: -20px;
}
#galeri .tabs nav a {
	position: relative;
	float: left;
	width: 300px;
	line-height: 56px;
	margin-left: 20px;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #582520;
}
#galeri .tabs nav a.selected {
	background-color: #c63f3b;
}
#galeri .tabs nav a:after {
	position: absolute;
	right: 10px;
	bottom: -20px;
	border: 10px solid transparent;
	border-top-color: #c63f3b;
	content: none;
}
#galeri .tabs nav a.selected:after {
	content: "";
}



#galeri .galeri {
	float: left;
	width: 100%;
}
#galeri .galeri > div {
	float: left;
	margin-left: -20px;
}
#galeri .galeri a {
	position: relative;
	float: left;
	width: 140px;
	/*height: 140px;*/
	margin-left: 20px;
	margin-bottom: 20px;
	text-decoration: none;
}
#galeri .galeri a img {
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid #FCE7E7;
}
#galeri .galeri a span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	line-height: 15px;
	margin-top: 5px;
	padding: 5px 10px;
	font-size: 11px;
	background-color: #fff;
}





#galeri .galeri.video a {
	width: 300px;
	height: 226px;
}
#galeri .galeri.video a:before {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url(../images/ytplay.png) no-repeat 50% 50%;
}
#galeri .galeri.video a:after {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-color: rgba(0, 0, 0, .5);
	-webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
            transition: all .3s ease;
}
#galeri .galeri.video a:hover:after {
	background-color: transparent;
}




/*
======================================================
	// GALERI
======================================================
*/









/*
======================================================
	ALT
======================================================
*/
#alt {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	z-index: 0;
	height: 95px;
	padding: 35px 0 0;
	background: url(../images/footer_bg.png) no-repeat 50% 0;
}

#alt .sosyal {
	float: left;
}
#alt .sosyal a, #site-nav .sosyal a {
	position: relative;
	z-index: 0;
	overflow: hidden;
	float: left;
	width: 39px;
	height: 60px;
	margin-right: 5px;
	background: url(../images/sosyal.png) no-repeat;
	opacity: 1;
	-webkit-transition: opacity .3s ease-in-out;
	   -moz-transition: opacity .3s ease-in-out;
	        transition: opacity .3s ease-in-out;
}
#alt .sosyal a:hover {
	opacity: 1;
}
#alt .sosyal a.fb, #site-nav .sosyal a.fb {
	background-position: 0px 0px;
}
#alt .sosyal a.ins, #site-nav .sosyal a.ins {
	background-position: -43px 0px;
}
#alt .sosyal a.fo, #site-nav .sosyal a.fo {
	background-position: -88px 0px;
}
#alt .sosyal a.tw, #site-nav .sosyal a.tw {
	background-position: -131px 0px;
}
#alt .sosyal a.yt, #site-nav .sosyal a.yt {
	background-position: -175px 0px;
}

/*
#alt .sosyal a:after {
	position: absolute;
	z-index: -1;
	left: 0px;
	top: 0px;
	width: 150%;
	height: 150%;
	content: "";
	background-color: #507cbe;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	        transition: all .3s ease;
	-webkit-transform: rotate(-1deg);
	   -moz-transform: rotate(-1deg);
	        transform: rotate(-1deg);
}
#alt .sosyal a.fb:after {
	top: 5px;
	background-color: #507cbe;
}
#alt .sosyal a.ins:after {
	top: 4px;
	background-color: #c7c5b3;
}
#alt .sosyal a.fo:after {
	top: 3px;
	background-color: #d97aa6;
}
#alt .sosyal a.tw:after {
	top: 3px;
	background-color: #63cdf1;
}
#alt .sosyal a.yt:after {
	top: 2px;
	background-color: #f16261;
}
*/







#alt .copyright {
	float: right;
	line-height: 20px;
	margin-right: 10px;
	padding-right: 10px;
	margin-top: 17px;
	font-size: 11px;
	color: #0d104a;
	border-right: 1px solid #BBBCCF;
}
#alt a.web-tasarim {
	float: right;
	width: 61px;
	height: 27px;
	margin-top: 8px;
	text-indent: -9999px;
	background: url(../images/vera.png) no-repeat;
	opacity: .58;
	-webkit-transition: opacity .3s linear;
	   -moz-transition: opacity .3s linear;
	        transition: opacity .3s linear;
}
#alt a.web-tasarim:hover {
	opacity: 1;
}
/*
======================================================
	// ALT
======================================================
*/















/*
======================================================
	TAKVIM
======================================================
*/
.ui-datepicker {
	display: none;
	width: 216px;
	margin: 0 0 0 10px;
	padding: 0;
	font-family: Arial;
	font-size: 12px;
	border: 1px solid #dadada;
	background: #fff;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
}
.ui-datepicker table {
	margin: 0 0 -1px;
}
.ui-datepicker table th {
	padding: 0;
	font-size: 11px;
	color: #333;
	cursor: default;
}
.ui-datepicker table td {
	padding: 0;
}
.ui-datepicker .ui-datepicker-header {
	height: 35px;
	line-height: 35px;
	padding: 0;
	border: 0;
	border-bottom: 1px solid #dadada;
	background: #f7f7f7;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0;
	line-height: 35px;
	font-weight: bold;
	text-align: center;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 35px;
	height: 35px;
	border: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	        border-radius: 0;
}
.ui-datepicker .ui-datepicker-prev {
	left: 0px;
}
.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-state-focus,
.ui-datepicker .ui-widget-content .ui-state-focus,
.ui-datepicker .ui-widget-header .ui-state-focus {
	color: #599FCF;
	border: 0;
	background: #ebebeb;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 6px;
	height: 10px;
	margin-left: -3px;
	margin-top: -5px;
	text-indent: -99999px;
	background: url(../images/takvim_arrow.png) no-repeat 0px 0px;
}
.ui-datepicker .ui-datepicker-next span {
	background-position: -7px 0px;
}
.ui-datepicker .ui-datepicker-prev.ui-state-hover span {
	background-position: 0px -10px;
}
.ui-datepicker .ui-datepicker-next.ui-state-hover span {
	background-position: -7px -10px;
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
	display: block;
	width: 30px;
	height: 25px;
	line-height: 25px;
	margin: -1px 0 0 -1px;
	padding: 0;
	font-size: 11px;
	font-weight: bold;
	color: #666;
	text-align: center;
	text-decoration: none;
	border: 1px solid #dadada;
	background: #fff;
}
.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight {
	color: #fff;
	border-color: #0094FF;
	background-color: #499bea;
}
.ui-datepicker .ui-state-disabled,
.ui-datepicker .ui-widget-content .ui-state-disabled,
.ui-datepicker .ui-widget-header .ui-state-disabled {
	   -moz-opacity: .35;
	opacity: .35;
	filter: Alpha(Opacity=35);
	background-image: none;
}
/*
======================================================
	// TAKVIM
======================================================
*/











/*
======================================================
	REZERVASYON
======================================================
*/
#rezervasyon {
	/*float: left;*/
	width: 500px;
}
#rezervasyon h3 {
	font-size: 18px;
	font-weight: 600;
}
#rezervasyon .label-grup {
	position: relative;
	float: left;
	width: 104%;
	margin-left: -4%;
	margin-bottom: 10px;
}
#rezervasyon .label-grup label {
	width: 46%;
	margin-left: 4%;
	margin-bottom: 0;
}
/*
======================================================
	// REZERVASYON
======================================================
*/








/* RESPONSIVE */

#outer-wrap {
	overflow: hidden;
	position: relative;
	width: 100%;
}
#inner-wrap {
	position: relative;
	width: 100%;
}
.nav-active #inner-wrap {
	/*left: 270px;*/
}
#site-wrap {
	overflow: hidden;
	position: relative;
	z-index: 0;
	width: 100%;
}
#site-trans-background {
	position: fixed;
	left: -100%;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.nav-active #site-trans-background {
	left: 0;
}
#site-nav {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: -300px;
	z-index: 2;
	width: 300px;
	height: 100%;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #fff;
}
.nav-active #site-nav {
	height: auto;
}
#site-nav .close-btn {
	position: absolute;
	top: 0px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: #7E2822 url("../images/icon-close.png") no-repeat;
	background-size: 100%;
	border-radius: 5px;
}
#site-nav .logo {
	display: block;
	width: 227px;
	margin: 20px auto 20px;
	padding: 5px 10px;
	background-color: #fff;
	border-radius: 5px;
}
#site-nav .logo a {
	display: block;
	width: 187px;
	height: 83px;
	margin: 0 auto;
	/*text-indent: -9999px;*/
	border-radius: 5px;
	background-size: 100%;
}
#site-nav .main-nav {
	color: #0A0A0A;
	border-radius: 5px;
}
#site-nav .main-nav ul {
	margin: 0 0 15px;
    padding-left: 20px;

}
#site-nav .main-nav a {
	text-transform: uppercase;
}



#site-nav nav {
	position: relative;
	clear: left;
	float: left;
	width: 100%;
}
#site-nav .main-nav {
	position: relative;
	width: 100%;
	border: 1px solid #0A315A;
}
#site-nav .main-nav.active {
	display: block;
}
#site-nav .main-nav > li {
	clear: both;
	width: 100%;
	padding: 0;
	border-bottom: 1px solid #97272c;
	border-top: 1px solid #97272c;
	background-color: #7E2822;
}
#site-nav .main-nav > li > a {
	position: relative;
	display: block;
	line-height: 40px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.25px;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
			transition: all .3s linear;
}
#site-nav .main-nav > li:hover > a,
#site-nav .main-nav > li.selected > a {
	color: #fff !important;
	background-color: #8f2a2b;
}

#site-nav .sosyal {
	float: left;
	margin: 30px 20px;
	
}
#site-nav .sosyal a {
	height: 39px;
	border-radius: 4px;
}

#site-nav .sosyal a:hover {
	opacity: 1;
}
#site-nav .sosyal a.fb {
	background-position: 0px -10px;
}
#site-nav .sosyal a.ins {
	background-position: -43px -10px;
}
#site-nav .sosyal a.fo {
	background-position: -88px -10px;
}
#site-nav .sosyal a.tw {
	background-position: -131px -10px;
}
#site-nav .sosyal a.yt {
	background-position: -175px -10px;
}


#site-nav .web-tasarim-wrap {
	position:absolute;
	bottom: 0;
	clear: left;
	overflow: hidden;
	width: 100%;
	height: 43px;
	margin-right:10px;
	padding-right: 20px;
	text-align: center;
	border-top: #ccc solid 1px;
	background-color: #fff;
}


#site-nav a.web-tasarim {
    display: inline-block;
	float:right;
    width: 61px;
    height: 27px;
    margin-top: 7px;
    text-indent: -9999px;
    background: url(../images/vera.png) no-repeat;
	-webkit-transition: all .3s linear;
	   -moz-transition: all .3s linear;
	        transition: all .3s linear;

}

#site-nav .web-tasarim-wrap .copyright {
    float: right;
    line-height: 20px;
    margin-right: 10px;
    padding-right: 10px;
    margin-top: 17px;
    font-size: 11px;
    color: #0d104a;
    border-right: 1px solid #BBBCCF;	
}

#site-nav .web-tasarim-wrap .dil > a {
	text-decoration: none;
	text-align: center;
	
}

.fancybox-lock .fixed-fixes {
	margin-right: 17px !important;
}

.fancybox-margin {

}

/* RESPONSIVE END	*/








/*
======================================================
	SISTEM MESAJ
======================================================
*/
.ft-form-mesaj {
	overflow: hidden;
	position: relative;
	clear: both;
	float: left;
	width: 100%;
	margin: 10px 0;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.ft-form-mesaj > div {
	margin: 1px;
	padding: 12px 0 12px 37px;
	font-size: 12px;
	font-weight: 400;
	color: #2b2b2b;
	text-align: left;
	background-color: #f2bba0;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	        box-sizing: border-box;
}
.ft-form-mesaj.error {
	color: #833;
	border: 1px solid #F6988F;
}
.ft-form-mesaj.error > div {
	background: #FDD2D1 url(../images/ft-form-mesaj/error.png) no-repeat 10px 10px;
}
.ft-form-mesaj.success {
	color: #398B03;
	border: 1px solid #50C602;
}
.ft-form-mesaj.success > div {
	background: #e9ffda url(../images/ft-form-mesaj/success.png) no-repeat 10px 10px;
}
.ft-form-mesaj.warning {
	color: #B17A01;
	border: 1px solid #FFE072;
}
.ft-form-mesaj.warning > div {
	background: #FDFAED url(../images/ft-form-mesaj/warning.png) no-repeat 10px 10px;
}
.ft-form-mesaj.info {
	color: #1A4773;
	border: 1px solid #79AAD9;
}
.ft-form-mesaj.info > div {
	background: #dde9f4 url(../images/ft-form-mesaj/info.png) no-repeat 10px 10px;
}
.ft-form-mesaj.loading {
	color: #1A4773;
	border: 1px solid #79AAD9;
}
.ft-form-mesaj.loading > div {
	background: #dde9f4 url(../images/ft-form-mesaj/loading.gif) no-repeat 10px 15px;
}
/*
======================================================
	// SISTEM MESAJ
======================================================
*/





















/*
======================================================
	TARAYICI BAZLI DÜZELTMELER
======================================================
*/
.ie9m * {
	filter: none !important;
}
/*
======================================================
	// TARAYICI BAZLI DÜZELTMELER
======================================================
*/

















/*
======================================================
	Global Clear Style
======================================================
*/

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http: //sonspring.com/journal/clearing-floats */

.clr, .clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http: //www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.konteyner:before,
.konteyner:after,
.container_12:before,
.container_12:after,
.clearfix:before,
.clearfix:after {
	content: ".";
	display: block;
	overflow: hidden;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
}

.konteyner:after,
.container_12:after,
.clearfix:after {
	clear: both;
}

.konteyner,
.container_12,
.clearfix {
	display: inline-block;
}

* html .konteyner,
* html .container_12,
* html .clearfix {
	height: 1%;
}

.konteyner,
.container_12,
.clearfix {
	display: block;
}

/*
	The following zoom: 1 rule is specifically for IE6 + IE7.
	Move to separate stylesheet if invalid CSS is a problem.
*/

.konteyner,
.container_12,
.clearfix {
	zoom: 1;
}

.first, .alpha {
	margin-left: 0 !important;
}

.last, .omega {
	margin-right: 0 !important;
}

.hide, .hidden {
	display: none;
}

/*
======================================================
	End Global Clear Style
======================================================
*/