@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

  
*{
	margin:0;
	padding:0;
	outline:0 none;
	font-family: inherit;
	box-sizing: border-box;
}

:root{
	--color-1:#CFA670;
	--color-2:#000;
	--color-3:#f8df76;
	--light-font-color:#656565;
	--dark-font-color:#ddd;
	--footer-font-color:#ababab;
	--light-bg:#ffffff;
	--dark-bg:#f4f4f4;
	--font-1:'Alata',sans-serif;
	--font-2:'Barlow',sans-serif;
}

body{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	height: 100%; /* 1, 3 */
	max-width:100%;
	width:100%;
    font-family:var(--font-2);
	font-weight:400;
	font-size:14px;
	line-height: normal;
	overflow-x: hidden;
}

body.dark-theme{
	background-color:var(--dark-bg-color);
}

a{
	text-decoration:none!important;
	outline:0 none!important
}

img{
	outline:0 none!important
}

.wrap {
	width:100%;
	flex:1;
}

.wrapper{
	width:100%;
	display:flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap:wrap
}

.container{
	width:1350px;
	padding:0 15px;
	display:flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap:wrap
}

.flex-center{
	display: flex;
	align-items: center;
	justify-content: center;
}

.default-pointer{
    cursor: default!important;
}

/*--------------
	SUB
---------------*/

.sub-wrapper{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: var(--color-1);
}

.sub{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom:1px solid rgba(255,255,255,.15);
	padding:10px 0
}

.sub-left{
	display: flex;
}

.sub-left-item{
	margin-right:15px;
	display: flex;
	align-items: center;
}

.sub-left-item:after{
	content:"";
	height:20px;
	background: rgba(255,255,255,.5);
	width: 1px;
	display: inline-block;
	margin-left:15px
}

.sub-left-item:last-child::after{
	display: none;
}

.sub-left-link{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-size:14px;
	color:#fff
}

.sub-left-link i{
	margin-right:5px
}

.sub-right{
	display: flex;
}

.sub-social{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.sub-social-item{
	margin-left:10px;
	display: flex;
	align-items: center;
}

.sub-social-item:after{
	content:"";
	height:20px;
	background: rgba(255,255,255,.5);
	width: 1px;
	display: inline-block;
	margin-left:10px
}

.sub-social-item:last-child::after{
	display: none;
}

.sub-social-link{
	display: block;
	font-size:24px;
	color:#fff
}

/*--------------
	HEADER
---------------*/

.all-header-wrapper{
	position: absolute;
	top:0;
	left:0;
	z-index: 9000;
}

.header-wrapper{
	justify-content:center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index:7000;
	font-size:0;
	padding:30px 0;
}

.header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo{
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu{
	width: 100%;
	display:flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
}

.menu li {
	margin:0;
	position: relative;
	display: flex;
	flex: 1;
}

.menu li a{
	width: 100%;
	display: flex;
	font-size:18px;
	color:#fff;
	position: relative;
	z-index:1000;
	font-weight: 400;
	padding:15px;
	white-space: nowrap;
	align-items: center;
	justify-content: center;
}


.menu li:hover > a,
.menu li.active > a{
	color: var(--color-3);
}

.menu-sub{
	position: absolute;
	top:0;
	left:0;
	visibility: hidden;
	opacity: 0;
	min-width:100%
}

.menu li:hover .menu-sub{
	opacity: 100;
	visibility: visible;
}

.menu-sub ul{
	margin-top:48px;
	background:#fff;
	min-width:100%;
	display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius:0;
	padding:15px 0;
	list-style-type: none;
}

.menu-sub ul li{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	margin:0;
	padding:0
}

.menu-sub ul li a{
	display: flex;
	flex:1;
	padding:8px 15px;
	font-size:14px;
	color:var(--color-1);
	white-space: nowrap;
	font-weight: 400;
	font-family: var(--font-2);
	justify-content: flex-start;
}

.menu-sub ul li:hover > a,
.menu-sub ul li.active > a{
	background: var(--color-1);
	color:#fff
}


.menu-sub ul li ul{
	position: absolute;
	left:100%;
	top:-15px;
	margin-top:0;
	list-style-type: none;
	display: none;
}

.menu-sub ul li:hover > ul{
	display: block;
}

.header-right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-reservation{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left:15px;
}

.header-reservation-link{
	display: flex;
	font-size:14px;
	font-family: var(--font-1);
	color:#fff;
	padding:10px 20px;
	border-radius: 35px;
	border:2px solid #fff;
	align-items: center;
	justify-content: center;
}

.header-appointment-link:hover{
	background: var(--color-1);
	color:#fff
}

.header-langs{
	display: inline-flex;
	margin-left:20px;
}

.header-lang{
	width: 60px;
	height: 41px;
	display: inline-flex;
	background: #fff;
	font-size:14px;
	font-weight: 700;
	color:var(--color-1);
	align-items: center;
	justify-content: center;
	border-radius: 44px;
}

.mobile-header-wrapper{
	display: none;
	align-items: center;
	justify-content: space-between;
	padding:15px;
	background: #f4f4f4
}

.mobile-logo-link{
	display: inline-flex;
}

.mobile-logo-link img{
	max-height:80px;
}

.mobile-header-right{
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
}

.mobile-header-langs{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.mobile-header-lang{
	display: flex;
	align-items: center;
	justify-content: center;
	border:2px solid #fff;
	color:#fff;
	padding:10px 15px;
	font-size:12px;
	font-weight: 300;
}

.mobile-header-lang.active{
	background: #fff;
	color:var(--color-1)
}

/*--------------------
	FOOTER
---------------------*/

.all-footer-wrapper{
	background-color: var(--color-2);
}

.footer-top{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding:53px 0
}

.footer-top-title{
	color:var(--color-2)
}

.footer-social{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top:15px
}

.footer-social-item{
	margin-right:20px
}

.footer-social-link{
	display: block;
	font-size:30px;
	color:#fff
}

.footer-social-link:hover{
	color:#fff
}

.footer-top-right{
	flex: 1;
	display: flex;
	justify-content: flex-end;
	padding-left:60px;
	align-items: flex-start;
}

.footer-item{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	padding:0 30px 0 60px;
	align-items: flex-start;
}

.footer-title{
	display: block;
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	font-family: var(--font-1);
	color:#fff;
	letter-spacing: .6px;
	white-space: nowrap;
}

.footer-list{
	display: block;
	width: 100%;
	list-style-type: none;
	margin-top:18px
}

.footer-list li {
	display: block;
	width: 100%;
	margin-top:10px;
	font-style: 14px;
	color:var(--footer-font-color)
}

.footer-list li a{
	display: inline-block;
	font-size:14px;
	color:var(--footer-font-color)
}

.footer-list li a:hover{
	text-decoration: underline!important;
}

.footer-contacts{
	display: block;
	width: 100%;
}

.footer-contact{
	display: flex;
	width: 100%;
	margin-top:15px
}

.footer-contact-item{
	width: 100%;
	display: flex;
	font-size:14px;
	font-weight: 300;
	color:var(--footer-font-color);
	align-items: flex-start;
	font-weight: 400;
}

.footer-contact-item i{
	display: inline-block;
	margin-right:15px;
	margin-top:1px
}

.footer-contact-content{
	display: inline-block;
	color:var(--footer-font-color);
}

.ikons-div{
	position: fixed;
	z-index:999999;
	right:15px;
	bottom:15px;
	display: block;
}

.go-top {
	position: fixed;
	bottom: 80px;
	right: 15px;
	background:var(--color-1);
	color: #fff;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	-webkit-transition: all 100ms ease 0s;
	transition: all 100ms ease 0s;
	z-index: 2000;
	display: none;
}

.go-top:hover{
	background: var(--color-2);
	color:#fff
}

.whatsapp{
	display: flex;
	align-items:center;
	justify-content: center;
}

.whatsapp-popup{
	display: none;
	background: #fff;
	color:var(--black);
	padding:5px 10px;
	border:1px solid #e2e2e2;
	box-shadow:2px 2px 13px rgba(0,0,0,0.1);
	max-width:200px;
	font-size:12px;
	position: relative;
	border-radius:10px;
	margin-right:10px
}

.whatsapp-popup::after {
	content: '';
	position: absolute;
	background: white;
	border-bottom: 1px solid #e2e2e2;
	border-right: 1px solid #e2e2e2;
	right: -5px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	z-index: 1;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.whatsapp-ikon{
	display: inline-block;
	width:52px;
	height:52px;
	background: var(--color-2);
	border-radius:50%;
	text-align: center;
	line-height: 52px;
	font-size:36px;
	color:#fff;
	box-shadow:2px 2px 13px rgba(0,0,0,0.6);
}

/*--------------------
	COOKIE BOX
---------------------*/

.cookies-box-wrapper{
	position: fixed;
	bottom:0;
	left:0;
	z-index:10000;
	width:100%;
	background:#000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.cookies-box{
	align-items: center;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding:15px 0
}

.cookies-box-left{
	display: flex;
	flex:1;
	flex-wrap: wrap;
	padding-right:30px;
}

.cookies-desc{
	width: 100%;
	display: inline-block;
	color:#fff;
	font-size:12px
}

.cookies-inline-link{
	display: inline-block;
	color:#fff;
	text-decoration: underline!important;
	font-size:12px
}
.cookies-link{
	display: inline-block;
	text-align: center;
	font-size:12px;
	font-weight: 700;
	color:#fff;
	background: var(--color-1);
	padding:10px 15px
}

/*---------
HEADING
----------*/

.heading-wrapper-inner{
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height:500px;
	align-items: stretch;
	position: relative;
	overflow: hidden;
}

.heading-wrapper-inner:before{
	content:"";
	display: inline-block;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.3)
}

.heading-container{
	min-height:100%;
	align-items: flex-end;
	position: relative;
	z-index:100;
	padding-bottom:80px
}

.heading{
	width:100%
}

.heading-body{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding:30px 0;
}

.heading-content{
	width:100%;
	text-align: center
}

.heading-title{
	color:#ffffff;
	display: block
}

.heading-sub-title{
	display: block;
	margin-top:30px;
	color:#fff
}

.heading-summary{
	display:block;
	width:100%;
	color:#fff;
	margin-top:30px
}

.heading-bottom{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	bottom:34px;
	left:0;
	padding:0 15px
}

.heading-date{
	display: inline-block;
	color:#fff
}

.heading-back{
	display: inline-flex;
	padding:15px 25px;
	border-radius:47px;
	background: #fff;
	color:var(--color-1);
	align-items: center;
	justify-content: center;
}

.heading-back i{
	margin-right:10px
}

.heading-back:hover{
	background: var(--color-2);
	color:#fff
}

.route{
	width: 100%;
	display: flex;
	margin-top:20px;
}

.route ul{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.route ul li{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	color:#fff
}

.route ul li:after{
	content:"\f105";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	display: inline-block;
	margin:0 5px
}

.route ul li:last-child:after{
	display: none;
}

.route ul li a{
	font-size:16px;
	color:#fff
}

.kurumsal-wrapper{
	position: relative;
}

.page-menu-button-wrapper{
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	z-index:1000
}

.page-toggle{
	background: #fff;
	padding:10px 15px;
	border-radius:4px 4px 0 0
}

.toggle-link span{
	display: block;
	width: 32px;
	height: 3px;
	background: #7e7a7a;
	margin: 8px 0;
	position: relative;
	top: 0;
}

.toggle-link span:nth-child(2){
	width:26px;
}

.toggle-link span:nth-child(3){
	width:22px;
}

.toggle-link:hover span{
	width:32px;
	transition: top .15s 0s linear,width .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	background: var(--color-2);
}

.page-menu-wrapper{
	width:25%;
	position: absolute;
	top:0;
	left:0;
	opacity: 0;
	visibility: hidden;
	z-index: 9000;
	transition: all 300ms ease 0s;
	max-height:100%;
}

 .page-menu-wrapper.active{
	opacity: 1;
	visibility: visible;
}

.page-menu{
	margin:0;
	padding:0;
	display:flex;
	list-style-type: none;
	box-shadow: 0px 1px 20px 0px rgba(218, 227, 232, 0.75);
	padding: 30px;
	width: 100%;
	flex-wrap:wrap;
	background: #fff;
}

.page-menu li{
	display:flex;
	width: 100%;
	flex-wrap:wrap;
	align-items: center;
	border-bottom:1px solid #e8e8e8;
}

.page-menu li a{
	display:flex;
	flex:1;
	align-items:center;
	padding:15px 30px 15px 0;
	font-size:14px;
	font-weight: 400;
	color:#707070;
	position: relative;
}

.page-menu li:last-child{
	border:none
}

.page-menu li button{
	color:#aaa;
	font-size:16px;
	cursor: pointer;
	border-radius: 50%;
	border:none;
	width:24px;
	height:24px;
	background: none;
}

.page-menu li button:after{
	content:"\f105";
	font-family: 'Line Awesome Free';
	font-weight: 900;
}

.page-menu li.active > button:after{
	content:"\f107"
}

.page-menu li ul{
	margin:0;
	padding:0 0 10px 0;
	display: none;
	width:100%;
}

.page-menu li ul li{
	display:flex;
	width:100%;
	border:none
}

.page-menu li ul li a{
	font-size:14px;
	border:none;
	padding:8px 0
}

.page-menu-li ul li a.active{
	color:var(--color-1)
}

.page-menu li.active > ul {
	display: block;
}

.page-menu li:hover > a,.page-menu li.active > a{
	color:var(--color-2)
}

.page-menu li:hover button,.page-menu li.active > button{
	color: var(--color-2);
}

.kayit-wrapper{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding:30px 0 60px 0
}

.kayit-form{
	width: 100%;
}

.kayit-form form{
	width: 100%;
}

/*---------
ERRORS
----------*/

.errors{
	width:100%;
	display: block;
}

.error{
	width:100%;
	padding:12px 15px;
	border:1px solid #f5c2c7;
	background: #f8d7da;
	color:#842029;
	font-size:14px;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.errors i{
	display: inline-flex;
	font-size:20px;
	margin-right:10px
}

/*---------
PAGINATION
----------*/

.pagination-wrapper{
	display: flex;
	width:100%;
	text-align: center;
	margin:60px 0;
	padding:0 15px
}

.pagination-wrapper ul{
	margin:0;
	padding:0;
	list-style-type: none
}

.pagination-wrapper ul li{
	display: inline-block;
	margin-right:5px;
}

.pagination-wrapper ul li a{
	padding:10px 20px;
	display: inline-block;
	border:1px solid var(--color-1);
	color:var(--color-1);
}

.pagination-wrapper ul li a:hover,
.pagination-wrapper ul li a.active{
	background: var(--color-1);
	color:#fff
}

/*------
MENULER
-------*/

.category-wrapper{
	padding:90px 0;
}

.category-wrapper:nth-child(even){
	background: #f9f9f9;
}

.category-header{
	width: 100%;
	display: block;
	text-align: center;
}

.category-title{
	width: 100%;
	display: block;
	color:var(--color-1)
}

.category-summary-wrapper{
	width: 100%;
	display: block;
	text-align: center;
}

.category-summary{
	width: 70%;
	display: block;
	margin:30px auto 0;
	color:var(--light-font-color)
}

.foods-wrapper{
	margin-top:0
}

.foods{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}

.food-wrapper{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	margin-top:90px;
	padding:0
}

.food-wrapper:nth-child(odd){
	padding-right:60px
}

.food-wrapper:nth-child(even){
	padding-left:60px
}

.food{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}

.food-image{
	width: 130px;
	height:130px;
	display: block;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: 0 5px 10px 0 rgba(26,47,51,.15);
}

.food-image img{
	width: 100%;
	height: 100%;
	display: block;
	object-position: center;
	object-fit: cover;
	border-radius: 50%;
}

.food-content{
	display: flex;
	flex: 1;
	flex-basis: 0;
	flex-wrap: wrap;
	flex-direction: column;
	padding-left:30px;
}

.food-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.food-line{
	flex:1;
	display: flex;
	border-bottom:1px dashed #000;
}

.food-title{
	display: inline-flex;
	padding-right:15px;
	color:var(--color-1)
}

.food-prices{
	display: inline-flex;
	padding-left:15px;
	align-items: center;
	justify-content: flex-end;
}

.food-summary{
	margin-top:15px;
	width: 100%;
	display: block;
	color:var(--light-font-color)
}

.food-price span{
	font-size:16px
}

/*-------------
ARTICLES
--------------*/

.makaleler-wrapper{
	padding:30px 0 60px 0
}

.makaleler-container{
	padding:0
}

.makaleler{
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}

.makale-item-wrapper{
	width: 50%;
	display: flex;
	font-size:0;
	padding:0 15px;
	margin-top:30px
}

.makale-item{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.makale-item-top-wrapper{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 350px;
	margin-top:0;
	overflow: hidden;
}

.makale-item-image{
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden
}

.makale-item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.makale-item-top-icon{
	position: absolute;
	bottom:15px;
	left:0;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	display: flex;
	z-index: 2000;
	padding:0 22px
}

.makale-item-content{
	padding:25px;
}

.makale-item-title{
	display: flex;
	width: 100%;
	color:var(--color-1);
}

.makale-item:hover .makale-item-title{
	color:var(--color-2)
}

.makale-item-summary-wrapper{
	margin-top:15px;
	width: 100%;
}

.makale-item-text{
	width: 100%;
	display:-webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	color:#8A8A8A
}

.makale-item:hover .makale-item-top-icon svg path{
	fill:var(--color-2)
}

.makale-page-content{
	width: 100%;
	font-size:16px;
	line-height: 30px;
	font-weight: 300;
	padding:60px 0 60px 0;
}

.makale-page-merkezler{
	background: #f9f9f9;
}

/*------
BLOG
-------*/

.items{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	padding:30px 0 60px 0
}

.item-wrapper{
	width: 33.33%;
	display: flex;
	flex-wrap: wrap;
	padding:0 15px;
	margin:30px 0;
}

.item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	background: #fff;
	align-items: flex-start;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08);
}

.item-image{
	display: flex;
	width: 100%;
	height: 230px;
	overflow: hidden;
	position: relative
}

.item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 250ms ease 0s;
}

.item:hover .item-image img{
	transform:scale(1.05)
}

.item-content{
	flex:1;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	padding:0 15px 30px;
}

.item-title{
	display: block;
	width: 100%;
	font-size:18px;
	font-family: var(--font-1);
	line-height: 28px;
	font-weight: 500;
	color:var(--color-1);
	margin-top:15px
}

.item-summary-wrapper{
	width: 100%;
	display: flex;
	flex:1;
	flex-wrap: wrap;
	margin-top:15px;
}

.item-summary{
	width: 100%;
	display: block;
}

.item-text{
	width: 100%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	color:var(--light-font-color);
	font-size:16px;
	font-weight: 300;
	line-height: 26px;
}

.item-dates-wrapper{
	width: 100%;
	height: 100%;
	display: flex;
	padding:12px 15px;
	align-items: flex-end;
	justify-content: flex-start;
	position: absolute;
	top:0;
	left:0;
	z-index:1000;
	color:#fff;
	background: #00000040
}

.item-footer{
	display: flex;
	width: 100%;
	margin-top:15px;
	justify-content: flex-end
}

.item-footer i{
	font-size:20px;
	color:var(--color-1)
}

/*------
CONTACT
-------*/

.iletisim-wrapper{
	padding:52px 0
}

.iletisim-left{
	width:50%;
	padding-right:12px
}

.iletisim-right{
	width:50%;
	padding-left: 24px
}

#iletisim-form{
	width:100%
}

.form-item{
	width:100%;
	display: block;
	position: relative;
	margin-top:30px
}

.form-label{
	display: block;
	width:100%;
	color:var(--color-1);
	margin-bottom:10px;
	font-family: var(--font-1);
	font-size:16px;
	font-weight: 400;
}

.form-input{
	width:100%;
	padding:0 15px;
	height:50px;
	border-radius: 6px;
	border:1px solid #e8e8e8;
	color:#000;
	line-height: 50px;
	font-size:16px
}

.form-error .form-input{
	border-color:#ec1d24
}

.form-select{
	width:100%;
	display: block;
	padding:0 15px;
	height:50px;
	border:1px solid #e8e8e8;
	color:#e8e8e8;
	border-radius: 25px;
}

.form-textarea{
	width:100%;
	padding:15px;
	height:150px;
	border-radius: 6px;
	border:1px solid #e8e8e8;
	color:#000;
	font-size:16px;
	line-height: 19px;
	resize:vertical
}

.form-buttons{
	text-align: left;
}

.form-button{
	display: inline-flex;
	border:none;
	background: var(--color-2);
	font-family: var(--font-1);
	color:#fff;
	font-size:18px;
	font-weight: 400;
	border-radius: 6px;
	align-items: center;
	justify-content: center;
	padding:0 44px;
	height:50px;
	cursor: pointer
}

.form-button:hover{
	background: #339933;
}

.form-input:focus,.form-textarea:focus,
.form-select:focus{
	border-color:var(--color-1)
}

.iletisim-map{
	width:100%;
	height:500px;
	overflow: hidden;
	position: relative;
	margin-top:30px;
	border-radius: 37px;
}

.iletisim-map iframe{
	width:100%!important;
	height:100%!important
}

.iletisim-info{
	width:100%;
	display: block
}

.iletisim-item{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap:wrap;
	margin-top:25px;
}

.iletisim-item-left{
	display:flex;
	align-items: center;
	padding-right:42px;
	min-width:10%;
}

.iletisim-item-left i{
	margin-right:7px;
	font-size:35px;
	color:var(--color-1)
}

.iletisim-span{
	color:var(--color-1)
}

.iletisim-item-right{
	display: flex;
	padding-left:15px;
	position: relative;
	flex: 1;
	color:#414141
}

.iletisim-item-link{
	color:#414141
}

.arama-item-wrapper{
	width: 100%;
	margin-top:30px;
}

.arama-item{
	width:100%;
	display: block;
	padding-bottom: 30px;
	border-bottom: 1px solid #f1f1f1;
}

.arama-item-header{
	width: 100%;
	display: block;
}

.arama-item-title{
	display: block;
	font-size:18px;
	color:var(--color-1)
}

.arama-item-summary-wrapper{
	width: 100%;
	display: block;
	margin-top:5px
}

.arama-item-summary{
	width: 100%;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp:4;
	font-size:14px;
	line-height: 29px;
}

.arama-sonuc-yok{
	display: block;
	width: 100%;
	padding:30px 0;
	font-size:18px;
}

.metinler-wrapper{
	padding:60px 0
}

/*--------------
	URUN
---------------*/

.urun{
	max-width: 475px;
	display: block;
	margin:60px auto
}

.urun-image{
	width: 100%;
	display: block;
	margin:0 auto;
	text-align: center;
	overflow: hidden;;
}

.urun-image img{
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto
}

.urun-header{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin:30px 0
}

.urun-title{
	display: inline-flex;
	padding-right:15px
}

.urun-prices{
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	padding-left:15px
}

.urun-line{
	display: flex;
	flex:1;
	border-bottom:1px dashed #000
}

/*----------
MOBILE NAV
-----------*/

.rMenu{
	width:100%;
	height:100vh;
	background:#fff;
	position:fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index:999999;
	left:auto;
	right:-150%;
	top:0;
	overflow:hidden;
	overflow-y: auto;
	scrollbar-width: none;
	padding:0 0
}

.rMenu::-webkit-scrollbar {
    width: 0px;
	background: transparent;
	display: none;
}

.r-menu-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:10px 30px;
	background: #f4f4f4
}

.r-logo{
	display: inline-flex;
}

.r-logo img{
	max-height:40px
}

.r-menu-body{
	width:100%;
	height:auto;
	position:relative;
	padding:30px 30px;
	display: flex;
	flex:1;
	flex-wrap: wrap;
	align-items: flex-start
}

.rMenu ul{
	padding:0;
	margin:0;
	list-style-type:none;
	width:100%;
	height:auto;
	display:inline-block;
	position:relative;
}

.rMenu ul li {
	display:flex;
	align-items: center;
	flex-wrap:wrap;
	justify-content: space-between;
	width:100%;
	height:auto;
	text-align:left;
	border-bottom:1px solid #f1f1f1
}

.rMenu ul li a{
	flex:1;
	display:flex;
	align-items:center;
	padding: 13px 0;
	text-align:left;
	font-size:15px;
	color:#000;
}

.rMenu ul li:hover > a,.rMenu ul li.active > a{
	color:var(--color-2);
}

.rMenu ul li label{
	display: inline-block;
	font-style: normal;
	font-size:14px;
	margin-left:auto;
	transition:all 300ms ease 0s;
	cursor: pointer;
	color:#000;
	text-align: center
}

.rMenu ul li i:hover{
	color:var(--color-2)
}

.rMenu ul li ul{
	padding:0 0 0 5px;
	margin:0;
	list-style-type:none;
	width:100%;
	height:auto;
	display:none;
	position:relative;
	border-top:1px solid #f1f1f1
}

.rMenu ul li ul li {
	display:flex;
	width:100%;
	height:auto;
	text-align:center;
	border:none
}

.rMenu ul li ul li a{
	padding: 10px 5px 10px 0;
	text-align:left;
	font-size:14px;
	font-weight: 300;
	color:#000;
	text-decoration:none!important;
	border:none
}

.rMenu ul li ul li:hover > a,.rMenu ul li ul li.active > a{
	color:var(--color-2);
}

.rMenu ul li input[type=checkbox]{
	opacity: 0;
	visibility: hidden;
}

.rMenu ul li input[type=checkbox]:checked + ul{
	display: block;
}

.r-menu-footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f1f1f1;
}

.r-foot-link{
	flex:1;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: center;
	color:#fff;
	padding:15px
}

.r-foot-link i{
	font-size:30px
}

.r-foot-link:hover{
	background: #339933;
}

.r-foot-text{
	width:100%;
	text-align: center;
	margin:5px 0;
	font-size:12px
}

.r-phone{
	background: var(--color-1);
}

.r-whatsapp{
	background: #000
}

.plr0 {
	padding-left:0;
	padding-right:0
}

.toggle {
	display:none;
	padding: 0;
	margin-left:15px;
	font-size: 18px;
	position: relative;
	z-index: 3000;
}

.toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--color-2);
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

.toggle.active span:nth-child(1){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(45deg);
	top:8px;
}

.toggle.active span:nth-child(2){
	transition: opacity 0s .15s linear,background .3s 0s linear;
	opacity:0
}

.toggle.active span:nth-child(3){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(-45deg);
	top:-12px
}

#closeMenu {
	font-size:30px;
	display: inline-block;
	color:#fff;
	cursor:pointer;
	z-index:5000
}

.close-menu span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--color-2);
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

.close-menu span:nth-child(1){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(45deg);
	top:8px;
}

.close-menu span:nth-child(2){
	transition: opacity 0s .15s linear,background .3s 0s linear;
	opacity:0
}

.close-menu span:nth-child(3){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(-45deg);
	top:-12px
}

/*-------------
	COMMON
--------------*/

.font-10{
	font-size:10px;
	line-height:20px;
}

.font-12{
	font-size:12px;
	line-height:22px;
}

.font-14{
	font-size:14px;
	line-height:24px;
}

.font-16{
	font-size:16px;
	line-height:26px;
}

.font-18{
	font-size:18px;
	line-height:28px;
}

.font-20{
	font-size:20px;
	line-height:30px;
}

.font-22{
	font-size:22px;
	line-height: 32px;
}

.font-24{
	font-size:24px;
	line-height: 34px;
}

.font-26{
	font-size:26px;
	line-height: 36px;
}

.font-28{
	font-size:28px;
	line-height: 38px;
}

.font-30{
	font-size:30px;
	line-height: 40px;
}

.font-32{
	font-size:32px;
	line-height: 42px;
}

.font-34{
	font-size:34px;
	line-height: 44px;
}

.font-36{
	font-size:36px;
	line-height: 46px;
}

.font-38{
	font-size:38px;
	line-height: 48px;
}

.font-40{
	font-size:40px;
	line-height: 50px;
}

.font-42{
	font-size:42px;
	line-height: 52px;
}

.font-48{
	font-size:48px;
	line-height: 58px;
}

.font-50{
	font-size:50px;
	line-height: 60px;
}

.font-64{
	font-size:64px;
	line-height: 74px;
}

.weight-100{
	font-weight: 100
}

.weight-200{
	font-weight:200
}

.weight-300{
	font-weight: 300
}

.weight-400{
	font-weight: 400
}

.weight-500{
	font-weight: 500
}

.weight-600{
	font-weight: 600
}

.weight-700{
	font-weight: 700
}

.weight-800{
	font-weight: 800
}

.weight-900{
	font-weight: 900
}

.fam-1{
	font-family: var(--font-1);
}

.fam-2{
	font-family: var(--font-2);
}

.dir-ltr{
	direction:ltr
}

.dir-rtl{
	direction: rtl;
}