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

:root{
	--color-1:#b59650;
	--color-2:#58595b;
	--color-3:#cd9c24;
	--color-4:#f8e597;
	--color-5:#182b9b;
	--light-bg-color:#fff;
	--dark-bg-color:#212121;
	--light-font-color:#707070;
	--dark-font-color:#ddd;
	--font-1:Arial,sans-serif;
	--font-2:Arial,sans-serif;
}

body{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	height: 100%; /* 1, 3 */
	max-width:100%;
	width:100%;
    font-family:var(--font-1);
	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:1270px;
	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;
}

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

.all-header-wrapper{
	width:100%;
	flex-shrink: 0;
	transition: all 1s ease 0s;
	background-color: #ffffff;
}

.in-page-all-header{
	position: relative;
	top:0;
	background: #fff;
}

.sub-wrapper{
	background: var(--color-1);
	align-items: center;
	font-size:0
}

.sub-container{
	justify-content: space-between;
	align-items: center;
}

.sub-left{
	display: flex;
	align-items: center;
}

.sub-item{
	display: inline-flex;
	padding:0 15px
}

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

.sub-link i{
	margin-right:10px;
	font-size:24px
}

.sub-right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left:auto
}

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

.sub-social-link{
	color:#fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:28px;
	margin-left:5px;
	height:40px;
	padding:0 5px
}

.sub-social-link:hover{
	background: #fff;
	color:var(--color-2)
}

.sub-logo{
	display: none;
}

.header-wrapper{
	width:100%;
	position: relative;
}

.header{
	width:100%;
	display:flex;
	align-items: center;
	justify-content: space-between;
	padding:13px 0;
	font-size:0
}

.header-logo{
	display: inline-flex
}

.header-center{
	display: flex;
	align-items: center;
	flex:1;
	justify-content: center;
	padding:0 70px
}

.header-form-form{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius:20px;
	height:40px;
	overflow: hidden;
}

.header-search-input{
	height:40px;
	width:100%;
	line-height: 40px;
	padding:0 19px;
	font-size:14px;
	font-weight: 300;
	color:var(--color-2);
	border-radius:20px;
	border:1px solid #dddddd;
	transition: all .7s ease 0s;
}

.header-search-input:focus{
	border-color:var(--color-2)
}

.header-search-button{
	position: absolute;
	width:24px;
	height:24px;
	display: block;
	background-image:url(../../../img/site/search.svg);
	background-repeat: no-repeat;
	background-position:center center;
	border:none;
	background-color:transparent;
	right:19px;
}

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

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

.header-lang{
	display: inline-flex;
	align-items: center;
	padding:8px;
	font-size:14px;
	border:2px solid var(--color-1);
	margin-left:10px;
	color:var(--color-1);
	font-weight: 700;
}

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

.in-page-all-header .header-lang{
	border-color: var(--color-1);
	color:var(--color-1)
}

.in-page-all-header .header-lang:hover,
.in-page-all-header .header-lang.active{
	background: var(--color-1);
	color:#fff
}

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

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

.menu li{
	display:block;
	position: relative;
	margin-left:45px
}

.menu li a{
	color:var(--color-2);
	font-family: var(--font-1);
	font-weight: 700;
	font-size:17px;
	position: relative;
	z-index:200;
	display: block;
	width:100%;
}

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

.menu li .sub-div{
	position: absolute;
	top:0;
	left:0;
	z-index:50;
	opacity: 0;
	visibility: hidden;
}

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

.sub-menu{
	min-width:260px;
	display: block;
	list-style-type:none ;
	background:var(--color-2);
	margin-top:63px;
	padding:0 0;
}
.sub-menu li{
	display:block;
	width:100%;
	padding:0;
	margin:0;
	position: relative;
}

.sub-menu li a{
	width:100%;
	display: inline-block;
	font-size:14px;
	color:#fff;
	position: relative;
	padding:12px 15px;
	white-space: nowrap;
	font-weight: 500;
}

.sub-menu li a:after{
	display: none!important;
}

.sub-menu li:hover > a{
	background-color: var(--color-3);
	color:#fff
}

.sub-menu li ul{
	position: absolute;
	left:100%;
	top:0;
	margin:0;
	opacity: 0;
	visibility: hidden;
}

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

.header-randevu-button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border:2px solid #000;
	font-size:14px;
	padding:10px 15px;
	color:#000;
	transition: all .4s ease 0s;
	letter-spacing: 1px;
}

.header-randevu-button:hover{
	background-color: var(--color-1);
	color:#fff;
	border-color:var(--color-1)
}

.header-actions{
	position: relative;
}

.randevu-button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:16px;
	background: var(--color-1);
	color:#fff;
	white-space: nowrap;
	padding:10px 15px
}

.randevu-button:hover{
	background: var(--color-3);
}

.randevu-area{
	display: block;
	position: absolute;
	top:42px;
	right:0;
	width:360px;
	opacity: 0;
	visibility: visible;
	z-index:-1
}

.randevu-area.active{
	opacity: 1;
	visibility: visible;
	z-index:100
}

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

.mobile-wrapper{
	align-items: center;
	justify-content: space-between;
	padding:5px 15px
}

.mobile-logo img{
	max-height:60px
}

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

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

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

.footer-top-wrapper{
	background: var(--color-1);
	padding:30px 0
}

.footer-top-container{
	align-items: flex-start;
	justify-content: space-between;
}

.footer-left{
	flex:0;
	display: flex;
	flex-wrap:wrap;
	align-items: flex-start;
	justify-content:flex-start;
}

.footer-center{
	display: flex;
	flex:1;
	align-items: flex-start;
	justify-content: center;
	flex-wrap:wrap;
	padding:0 30px
}

.footer-map{
	width: 100%;
	height: 335px;
	display: block;
	overflow: hidden;
}

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

.footer-contacts{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color:#fff
}

.footer-contact{
	width: 100%;
	display: block;
	margin:0 0 30px 0
}

.footer-contact-item{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-size:16px;
	line-height: 26px;
	color:#fff
}

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

.footer-right{
	width:30%;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
}

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

.go-top {
	position: fixed;
	bottom: 80px;
	right: 15px;
	background:#ddd;
	color: #000;
	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: block;
	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: #25d366;
	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);
}

.footer-bottom-wrapper{
	background: var(--color-1);
}

.footer-bottom-container{
	align-items: center;
	justify-content: space-between;
	padding:15px
}

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

.members-div{
	display: flex;
	align-items: center
}

.members-div a{
	display: inline-block;
	color:#fff;
	margin-left:15px;
	font-size:14px
}

.members-div a:hover{
	text-decoration: underline!important;
}

.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;
	padding:15px 15px;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.cookies-desc{
	display: inline-block;
	color:#f9f9f9;
	font-size:12px;
	padding-right:30px;
}

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

.cookies-link:hover{
	background: var(--color-3);
}

/*-------------
	KURUMSAL
--------------*/

.kurumsal-wrapper{
	padding:60px 0
}

.kurumsal-left-wrapper{
	width:25%;
	display: block;
	padding-right:30px
}

.kurumsal-right{
	width:75%;
	display: block;
}

.kurumsal-menu{
	list-style: none;
}

.kurumsal-menu li{
	display: block;
	margin-top:10px;
	margin-bottom:15px;
}

.kurumsal-menu li a{
	display: block;
	color:var(--color-2);
	font-size:16px;
	font-weight: 700;
}

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

.kurumsal-text{
	width: 100%;
	color:var(--light-font-color)
}
/*--------------------
	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: #f9f9f9;
}

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

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

.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:16px;
	color:#000
}

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

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

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

.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:block;
	width:100%;
	height:auto;
	text-align:center;
	border:none
}

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

.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: #000;
	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: #000;
	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-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;
}