@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700;800;900&display=swap');
  
*{
	margin:0;
	padding:0;
	outline:0 none;
	font-family: inherit;
	box-sizing: border-box;
}

:root{
	/** logo colors */ 
	--l-color-1:#90406e;
	--l-color-2:#ae4a84;
	--l-color-3:#cd679c;
	--l-color-4:#ef89b6;
	--l-color-5:#387ab5;
	/** theme colors */
	--t-color-1:#00a9e3;
	--t-color-2:#1a2c45;
	--t-color-3:#aaeaff;
	--t-color-4:#1a2c45;
	/** components colors */
	--c-color-1:#1a2c45;
	--c-color-1-overlay:rgba(26,44,69,.85);
	--c-color-2:#00a9e3;
	--c-color-2-overlay:rgba(38,125,254,.85);
	--font-1:'Outfit',sans-serif;
	--font-2:'Outfit',sans-serif;
	--c-light-font-color:#212121;
	--radius-30:30px;
	--c-1-rgb:0,169,227;
	--c-2-rgb:26,44,69;
}

html{
	font-size:14px;
	font-family:var(--font-1);
	font-weight:400;
}

body{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	height: 100%; /* 1, 3 */
	max-width:100%;
	width:100%;
	overflow-x: hidden;
	background: #ffffff;
}

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:1370px;
	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;
}

.inside .container{
	width: 100%;
}

.select-trigger{
	width: 100%;
	height:52px;
	padding:0 10px;
	border:1px solid var(--l-color-1);
	background: #fff;
	font-size:14px;
	display: none;
}

/*--------------
	SUB
---------------*/
.sub-wrapper{
	border-bottom:1px solid #e8e8e8
}

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

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

.sub-contact{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color:#212121;
	border-right:1px solid #e8e8e8;
	padding:15px 15px;
	gap:0 10px
}

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

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

.sub-buttons-item{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
	color:#212121;
	font-style: normal;
	border-left:1px solid #e8e8e8;
	padding:15px
}

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

.all-header-wrapper{
	position: relative;
	top:0;
	left:0;
	z-index:7000;
	padding:0 30px;
}

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

.header-container{
	padding:0
}

.header{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	position: relative;
	padding:0
}

.logo{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 7000;
	padding:15px 0;
	margin-left:15px;
}

.dir-rtl .logo{
	margin-left:0;
	margin-right:15px
}

.header-menu{
	display: flex;
	flex:1;
	align-items: stretch;
	justify-content: space-between
}

.menu{
	width: 100%;
	display:flex;
	align-items: stretch;
	justify-content: center;
	list-style: none;
	gap:0 35px;
}

.menu-li {
	display: flex;

}

.sub-li{
	position: relative;
}

.menu-link{
	width: 100%;
	display: flex;
	font-size:16px;
	color:var(--t-color-2);
	position: relative;
	z-index:1001;
	font-weight: 400;
	white-space: nowrap;
	align-items: center;
	justify-content: center;
	padding:15px 0;
	font-family: var(--font-1);
}

.menu-link::after{
	content:"";
	width: 0;
	height: 3px;
	display: block;
	background: var(--t-color-2);
	position: absolute;
	bottom:0;
	left:0;
	transition: width .5s ease 0s;
}

.menu-li:hover > .menu-link::after,
.menu-li.active > .menu-link::after{
	width: 100%;
	background: var(--t-color-1);
}

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

.menu-sub{
	position: absolute;
	top:0;
	left:0;
	transform: translateX(-40px);
	opacity: 0;
	visibility: hidden;
	min-width: 300px;
	z-index:1000
}

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

.menu-sub ul {
	margin-top: 122px;
	min-width: 100%;
	display: block;
	padding: 15px 0;
	list-style-type: none;
	background: var(--t-color-2);
	border-radius: 0 0 16px 16px;
}

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

.menu-sub ul li a{
	display: flex;
	flex:1;
	padding:10px 0;
	white-space: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	color:#fff;
	font-weight: 400;
	font-size:16px;
}

.menu-sub ul li a::before{
	content:"";
	display: inline-block;
	width: 0;
	height: 3px;
	background: #fff;
	transition: width .2s ease 0s;
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(calc(-50% - 3px));
}

.menu-sub ul li a span{
	display: inline-block;
	margin-left:45px;
	font-size:14px;
	letter-spacing: .5px;
}

.menu-sub ul li:hover > a,
.menu-sub ul li.active > a{
	color:#fff
}

.menu-sub ul li:hover > a::before{
	width: 30px;
}

.header-actions{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	z-index: 1000
}

.header-langs{
	display: flex;
	padding:2px 4px;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	background: var(--t-color-2);
	gap:0 4px;
	color:var(--t-color-1)
}

.header-lang{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	color:#fff;
	font-size:12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

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

.mobile-langs{
	display: flex;
	padding:2px 4px;
	align-items: center;
	justify-content: center;
	background: var(--t-color-2);
	gap:0 3px;
	color:var(--t-color-1)
}

.mobile-lang{
	width: 24px;
	height: 24px;
	color:#fff;
	font-size:12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

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


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

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

.footer-top{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom:1px solid #ffffff10;
	padding:30px 0
}

.footer-top ul{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
}

.footer-list li{
	display: block;
	margin-right:30px
}

.footer-list li a{
	color:var(--footer-item-color);
	font-size:15px;
}

.footer-list li a:hover{
	color:var(--footer-item-color);
}

.footer-social li{
	margin-left:10px;
}

.footer-social li a{
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:24px;
	background: var(--t-color-1);
	color:#fff;
	border-radius: 50%;
}

.footer-social li a:hover{
	color:var(--footer-item-color)
}

.footer-center{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top:30px
}

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

.footer-center-item{
	flex:auto;
	display: flex;
	flex-wrap: wrap;
	padding:30px 0;
	padding-right:60px;
	justify-content: flex-start;
}

.footer-center-title{
	width: 100%;
	display: block;
	font-size:18px;
	color:var(--t-color-1);
	font-weight: 600;
}

.footer-center-list{
	width: 100%;
	list-style: none;
	margin-top:30px
}

.footer-center-list li{
	display: block;
	width: 100%;
	margin-bottom:10px
}

.footer-center-list li a{
	display: inline-block;
	color:#fff;
	font-size:14px
}

.footer-center-right{
	flex:1;
	display: flex;
	flex-wrap: wrap;
	padding:30px 0;
	justify-content: flex-end;
}

.footer-contacts{
	margin-top:30px;
}

.footer-contact{
	display: block;
	width: 100%;
	margin-bottom:10px
}

.footer-contact-item{
	font-size:14px;
	color:#fff;
	display: inline-block;
}

/*--------------------
	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(--t-color-1);
	padding:10px 15px
}


/*------
FIXED
-------*/

.ikon-menu{
	position: fixed;
	right:15px;
	bottom:15px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index:9000;
	display: flex;
}

.go-top{
	background:var(--t-color-1);
	color: #fff;
	width: 48px;
	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;
	align-items: center;
	justify-content: center;
	margin-bottom:10px
}

.whatsapp{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.w-box-wrapper{
	max-width: 300px;
	display: none
}

.w-box-wrapper.active{
	display: flex;
}

.w-box{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 20px;
	overflow: hidden;
}

.w-box-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding:15px;
	background: var(--t-color-1);
	gap:0 20px
}

.w-box-avatar{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border:1px solid #fff;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:5px
}

.w-box-avatar img{
	max-width: 100%;
	max-height: 100%;
}

.w-box-person{
	display: flex;
	flex-direction: column;
	flex:1;
	justify-content: center;
	align-items: flex-start;
	color:#fff
}

.w-box-name{
	width: 100%;
	display: block;
	font-size:13px
}

.w-box-title{
	font-size:12px;
	display: block;
	margin-top:2px
}

.w-box-body{
	width: 100%;
	padding:15px 15px;
	background: #f1f1f1;
}

.w-box-text-wrapper{
	padding:15px;
	position: relative
}

.w-box-text{
	background: #fff;
	padding:15px;
	display: block;
	border-radius: 0 15px 15px 15px;
	position: relative;
	font-size:13px;
	line-height: 19px;
}

.w-box-text::before{
	content:"";
	display: inline-block;
	width:0;
	height: 0;
	border:8px solid transparent;
	border-top-color:#fff;
	border-right-color:#fff;
	position: absolute;
	top:0;
	left:-15px
}

.w-box-footer{
	width: 100%;
	padding:0 15px 15px;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.w-box-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:12px 25px;
	color:#fff;
	background: var(--t-color-1);
	border-radius: 30px;
	gap:0 5px
}

.w-box-link i{
	font-size:22px
}

.w-box-link:hover{
	background: var(--t-color-2);
	color:#fff
}

.w-button{
	display: flex;
	align-items: center;
	justify-content: center;
	width:48px;
	height:48px;
	background: var(--t-color-1);
	border-radius:50%;
	text-align: center;
	font-size:36px;
	color:#fff;
	margin-top:8px;
	box-shadow:2px 2px 13px rgba(0,0,0,0.6);
}

/*---------
ROUTE
----------*/

.route-wrapper{
	padding:15px 0
}

.route{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding:0 15px
}

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

.route li::after{
	content:"/";
	display: inline-block;
	margin:0 10px;
	color:#7e7a7a
}

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

.route li a{
	display: inline-block;
	color:#7e7a7a
}

.banner-all-wrapper .route li::after,
.banner-all-wrapper .route li a{
	color:#fff
}

/*---------
PAGE
----------*/

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

.page-container{
	padding:0
}

.with-menu .page-components .container{
	width: 100%;
}

.page-menu-wrapper{
	width: 286px;
	display: none;
	flex-direction: column;
	padding-right:30px
}

.with-menu .page-menu-wrapper{
	display: flex;
}

.page-menu{
	width: 100%;
	background: #f9f9f9;
	border-radius: 30px;
	padding:30px
}

.page-menu-list{
	width: 100%;
	display: block;
	list-style-type: none;
}

.page-menu-list li{
	width: 100%;
	display: block;
	padding:10px 0;
	border-bottom:1px solid #f1f1f1
}

.page-menu-list li a{
	font-size:14px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color:#000;
	letter-spacing: .6px;
}

.page-components{
	width: 100%;
	display: flex;
	flex-wrap: wrap
}

.with-menu .page-components{
	display: flex;
	flex: 1;
	width: 1040px;
}

/*---------
PAGE BANNER
----------*/

.banner-all-wrapper{
	padding:0 30px;
	position: relative;
}

.banner-overlay{
	width: 100%;
	height: 70%;
	display: block;
	position: absolute;
	z-index: 0;
}

.banner-wrapper{
	align-items: center;
	padding:30px 0 30px 0;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius:30px;
	height: 400px;
	z-index: 2;
	background-color: var(--t-color-1);
}

.banner-wrapper::before{
	content:"";
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0;
	display: block;
	background: rgba(var(--c-2-rgb),.7);
	border-radius:30px;
}

.banner-container{
	position: relative;
	z-index: 200
}

.banner{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:0 30px
}

.banner-title{
	display: inline-block;
	color:#fff;
	font-weight: 700;
	margin-bottom:5px;
	text-align: center;
	font-family: var(--font-title);
}

.banner-category{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:10px 20px;
	color:#1d1d1d;
	background: var(--t-color-1);
	border-radius: 20px;
}

.banner-values{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap:0 15px
}

.banner-value{
	display: inline-flex;
	align-items: center;
	gap:0 10px;
	color:#fff;
	margin-top:15px
}

.banner-seo-box{
	width: 50%;
	display: flex;
	flex-direction: column;
	padding-bottom:30px
}

.banner-seo-content{
	width: 90%;
	display: block;
	color:#1d1d1d;
	margin-top:30px
}

/*---------
SINGLE
----------*/

.single-wrapper{
	position: relative;
	z-index: 500;
}

.single{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom:60px
}

.single-left{
	width: 27%;
	padding-right:30px
}

.single-right {
	width: 73%;
	position: sticky;
	top: 0;
}

.single-gallery-wrapper{
	width: 100%;
	margin-top:30px
}

.single-gallery{
	width: 100%;
	display: block;
	position: relative;
}

.swiper-single{
	overflow: hidden;
}

.single-gallery-item{
	display: flex;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.single-gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-gallery-item-overlay{
	position: absolute;
	inset:0;
	width: 100%;
	height: 100%;
	background: var(--c-color-2-overlay);
	color:#fff;
	font-size:60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.with-radius .single-gallery-item,
.with-radius .single-gallery-item img{
	border-radius: 16px;
}

.single-gallery-nav{
	position: absolute;
	top:50%;
	left:0;
	padding:0 15px;
	transform:translateY(-50%);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 300;
	pointer-events: none;
}

.single-gallery-button{
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--t-color-1);
	color:#fff;
	font-size:20px;
	border:none;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
}

.single-section{
	width: 100%;
	margin-top:15px;
	border:1px solid var(--t-color-3);
}

.with-radius .single-section{
	border-radius: 16px;
}

.single-section-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:15px 30px;
	cursor: pointer;
}

.single-section-title{
	font-weight: 600;
	letter-spacing: 1px;
	font-size:18px;
	color: var(--t-color-2);
}

.single-section-content{
	display: none;
}

.single-section-text{
	width: 100%;
	display: none;
	padding:0 30px 30px 30px
}

.single-section-text p{
	width: 100%;
	display: block;
	margin-bottom:15px
}

.single-section.active .single-section-content{
	display: block;
}

.single-tab-item{
	width: 100%;
	display: block;
	margin-top:0
}

.single-tab-item-header{
	width: 100%;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: flex-start;
	background: #f9f9f9;
	padding:15px 0;
	border-radius: 0 16px 16px 0;
}

.single-tab-item-title{
	font-size:18px;
	font-weight: 400;
	letter-spacing: 1px;
	color:var(--t-color-1);
	padding-left:30px
}

.single-tab-item-day{
	position: relative;
	display: inline-block;
	display: block;
	font-size:16px;
	margin-left:-30px;
	letter-spacing: 1px;
	background: var(--t-color-1);
	color:#fff;
	padding:8px 20px;
	border-radius: 20px;
}

.single-tab-item-content{
	padding:30px
}

.single-card-wrapper {
	width: 100%;
	margin-top: -85px;
	border-radius: 12px;
	padding-bottom: 15px;
	box-shadow: 0 8px 8px 1px rgba(0,0,0,.1);
	overflow: hidden;
}

.single-card-wrapper form{
	width: 100%;
	display: block;
}

.single-card{
	width: 100%;
}

.single-card-header{
	background: var(--t-color-1);
	color:#fff;
	padding:20px 15px;
	display: block;
	border-radius: 12px 12px 0 0;
	letter-spacing: 1px;
	font-weight: 600;
}

.single-card-items{
	width: 100%;
	padding:0 15px;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
}

.single-card-item{
	width: 100%;
	display: block;
	margin-top:15px
}

.single-card-input{
	width: 100%;
	height: 52px;
	padding:0 15px;
	display: block;
	border-radius: 6px;
	border:1px solid #e8e8e8;
	font-size:14px
}

.single-card-button{
	display: block;
	border:none;
	background: var(--t-color-1);
	color:#fff;
	border-radius: 6px;
	padding:10px 20px;
	cursor: pointer;
}

.single-card-button:hover{
	background: var(--t-color-2);
}

.single-card-label{
	width: 100%;
	display: block;
	position: relative;
	cursor: pointer;
}

.single-card-checkbox{
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.single-card-label span{
	display: flex;
	align-items: flex-start;
	position: relative;
	color:#7e7a7a;
}

.single-card-label span::before{
	content:"\f111";
	display: inline-block;
	font-family: 'Line Awesome Free';
	font-weight: 900;
	margin-right:5px;
	font-size:24px;
	line-height: 24px;
}

.single-card-checkbox:checked + span::before{
	content:"\f058";
	color:var(--t-color-1)
}

.single-whens-wrapper {
	background: #fff;
	padding: 0 15px;
	margin-top: 15px;
	border-radius: 12px;
	border: 1px solid #f1f1f1;
}

.single-when {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: 1px solid #f1f1f1;
}

.single-when-top {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.single-when-info {
	display: inline-block;
}

.single-when-dates {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: #202020;
}

.single-when-top small {
	display: block;
	color: #606060;
	margin-top: 6px;
	width: 100%;
}

.single-when-pointer {
	display: inline-flex;
	width: 20px;
	height: 20px;
	text-align: center;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--t-color-1);
	border-radius: 50%;
}

.single-when-pointer.active::before {
	content: '';
	width: 14px;
	height: 14px;
	background: var(--t-color-1);
	border-radius: 50%;
	display: inline-block;
}

/*---------
ITEMS 1
----------*/

.items-1-container{
	padding:30px 0 60px 0
}

.items-1-categories{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin:60px 0 0 0;
	gap:0 15px
}

.items-1-category-link{
	background: var(--t-color-2);
	color:#fff;
	padding:5px 10px;
	border-radius: 20px;
	letter-spacing: .6px;
}

.items-1-category-link.active{
	background: var(--t-color-1);
}

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

.item-1-wrapper{
    display: flex;
    width: 25%;
    padding: 0 15px;
    margin-top:30px
}

.item-1{
    width: 100%;
    height: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 500ms ease-in-out 0s;
    overflow: hidden;
    background: var(--c-color-1);
    padding:0
}

.with-radius .item-1{
    border-radius: 16px;
}

.item-1-image{
    width: 100%;
    height: 100%;
    display: block;
}

.item-1 picture{
    width: 100%;
    height: 100%;
    display: block;
}

.item-1-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:transform .2s ease 0s
}

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

.item-1-content-wrapper{
    position: absolute;
    inset:0;
    width: 100%;
    height: 100%;
    display: flex;
    background: rgba(0,0,0,.3);
    padding:30px;
    transition:background .2s ease 0s
}

.item-1:hover .item-1-content-wrapper{
    background: var(--c-color-1-overlay);
}

.item-1-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.item-1-category{
    display: inline-flex;
    width: max-content;
    background: #fff;
    color:var(--c-color-2);
    padding:5px 10px;
    border-radius: 30px;
    opacity: .5;
    transition: opacity .2s ease 0s;
}

.item-1:hover .item-1-category{
    opacity: 1;
    background: var(--c-color-2);
    color:#fff
}

.item-1-title{
    width: 100%;
    display: block;
    color:#fff;
    letter-spacing: 1px;
    margin-bottom:15px
}

.item-1-value{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    gap:0 10px;
    font-size:14px
}

/*----------
ITEMS 2
-----------*/

.items-2-wrapper{
	padding:30px 0 60px 0
}

.items-2-container{
	padding:0
}

.items-2{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

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

.item-2{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start
}

.item-2-image{
	width: 100%;
	height: 320px;
	display: block;
	overflow: hidden;
	border-radius: 16px;
}

.item-2-image picture{
	width: 100%;
	height: 100%;
	display: block;
}

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

.item-2-content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.item-2-title{
	width: 100%;
	display: block;
	color:var(--t-color-1);
	margin:20px 0
}

.item-2-text{
	width: 100%;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}



/*----------
R BOX
-----------*/

.r-box-wrapper{
	margin:30px 0;
	position: sticky;
	top:0;
	z-index:9000
}

.r-box{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f9f9f9
}

.r-box-item-wrapper{
	flex:auto;
	padding:15px;
	border-right:1px solid #f1f1f1
}

.r-box-item-wrapper:last-child{
	border-right: none
}

.r-box-item{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.r-box-left{
	width: 48px;
	height:48px;
	overflow: hidden;
}

.r-box-icon{
	font-size:30px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.r-box-image{
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}

.r-box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.r-box-content{
	padding-left:15px
}

.r-box-title{
	width: 100%;
	display: block;
	font-size:14px;
	font-weight: 600;
}

.r-box-sub-title{
	width: 100%;
	display: block;
	font-size:12px;
	margin-top:5px;
	color:#7e7a7a
}

.r-box-button{
	width: 100%;
	background: #339933;
	color:#fff;
	padding:15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:12px;
	border-radius: 4px;
	font-weight: 500;
	letter-spacing: 1px;
	white-space: nowrap;
}

.r-box-button:hover{
	background: #52ab52
}

/*----------
LEGAL TEXTS
-----------*/

.metin-content{
	padding:60px 0;
	width: 100%;
	font-size:16px;
	line-height: 28px;
	color:var(--light-font-color)
}

/*----------
MOBILE NAV
-----------*/
.mobile-header-wrapper{
	justify-content: space-between;
	position: relative;
	z-index:2000;
	background: #fff;
	padding:15px 15px;
	align-items: center;
	display: none
}


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

.mobile-randevu-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap:0 10px;
	background: var(--color-3);
	color:var(--light-font-color);
	font-size:10px;
	font-weight: 500;
	letter-spacing: 1px;
	padding:10px 10px
}

.mobile-randevu-link:hover{
	background: var(--l-color-1);
	color:#fff
}

.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;
	transition:all 300ms ease 0s
}

.rMenu.active{
	right: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-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(--l-color-1);
}

.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(--l-color-1)
}

.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.active{
	display: block;
}

.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(--l-color-1);
}

.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(--l-color-1);
}

.r-whatsapp{
	background: #000
}

.fixed-wrapper{
	position: fixed;
	width: 100%;
	display: none;
	left:0;
	bottom:0;
	z-index:3000
}

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

.fixed-link{
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:15px 5px;
	color:#fff;
	font-size:12px;
	min-height: 100%;
}

.fixed-link i{
	font-size:20px;
	margin-right:5px
}

.fixed-phone{
	background: #006699
}

.fixed-whatsapp{
	background: #339933;
}

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

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

.toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--t-color-1);
	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:var(--t-color-1);
	cursor:pointer;
	z-index:5000
}

.close-menu span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--t-color-1);
	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
--------------*/

.dir-ltr{
	direction:ltr
}

.dir-rtl{
	direction: rtl;
}

.f-title-14{
	font-size: 14px
}

.f-title-16{
	font-size:16px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: var(--font-1);
}

.f-title-18{
	font-size:18px;
	line-height: 1.5;
	font-family: var(--font-1);
}

.f-title-20{
	font-size:20px;
	line-height: 1.5;
	font-family: var(--font-1);
}

.f-title-24{
	font-size:24px;
	line-height: 1.5;
	font-family: var(--font-1);
}

.f-title-30{
	font-size:30px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: var(--font-1);
}

.f-title-36{
	font-size:36px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: var(--font-1);
}

.f-title-40{
	font-size:40px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: var(--font-1);
}

.f-title-53{
	font-size:53px;
	line-height: 1.5;
	letter-spacing: 1px;
	font-family: var(--font-1);
}

.f-title-60{
	font-size:clamp(1.5rem, 2rem + 1.5625vw,3.75rem);
	line-height: 72px;
	font-weight: 700;
}

.with-menu .f-title-40{
	font-size:30px
}

.f-content-14{
	font-size:14px;
	line-height: 21px;
	font-family: var(--font-1);
}

.f-content-16{
	font-size:16px;
	line-height: 1.85;
	font-family: var(--font-2);
}

.f-content-18{
	font-size:18px;
	line-height: 1.85;
	font-family: var(--font-2);
}

.f-content-20{
	font-size:20px;
	line-height: 1.85;
	font-family: var(--font-2);
}


.f-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: #fff;
    color:var(--c-color-2);
	letter-spacing: 1px;
	gap:0 10px
}

.with-radius .f-link{
	border-radius: 30px;
}

.f-link-sm{
	font-size:14px;
    padding:10px 20px;
	letter-spacing: 1px;
}

.f-link-md{
	font-size:14px;
    padding:16px 24px;
}

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

.f-link-border{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	padding:12px 20px;
	transition: all .6s ease 0;
	letter-spacing: 1px;
	gap:0 10px;
	border-width: 2px;
	border-style: solid;
	font-family: var(--font-title);
	background: transparent;
	cursor: pointer;
	touch-action: manipulation;
}

.f-link-border i{
	transform:rotate(-45deg);
	transition: all .6s ease 0s;
}

.dir-rtl .f-link-border i{
	transform:rotate(-135deg);
}

.f-link-border:hover i{
	transform: rotate(0);
}

.dir-rtl .f-link-border:hover i{
	transform: rotate(-180deg);
}

.f-link-border-1{
	border-color:var(--t-color-1);
    color:var(--t-color-1);
}

.f-link-border-1:hover{
	background: var(--t-color-1);
	border-color:var(--t-color-1);
	color:#fff
}

.f-link-border-2{
	border-color:var(--t-color-2);
    color:var(--t-color-2);
}

.f-link-border-2:hover{
	background: var(--t-color-2);
	border-color:var(--t-color-2);
	color:#fff
}

.f-link-border-3{
	border-color:var(--t-color-3);
    color:var(--t-color-3);
}

.f-link-border-3:hover{
	background: var(--t-color-1);
	border-color:var(--t-color-1);
	color:#fff
}

.f-link-border-4{
	border-color:var(--t-color-4);
    color:var(--t-color-4);
}

.f-link-border-4:hover{
	background: var(--t-color-4);
	border-color:var(--t-color-4);
	color:var(--t-color-1)
}

.f-link-bg-1{
	background: var(--t-color-1);
	color:#fff;
	border-color:var(--t-color-1)
}

.f-link-bg-2{
	background: var(--t-color-2);
	color:#fff;
	border-color:var(--t-color-2)
}

.f-link-bg-1:hover{
	background: var(--t-color-2);
	border-color: var(--t-color-2);
}


.w-900{
	font-weight: 900;
}

.w-800{
	font-weight: 800;
}

.w-700{
	font-weight: 700;
}

.w-600{
	font-weight: 600;
}

.w-500{
	font-weight: 500;
}

.w-400{
	font-weight: 400;
}

.w-300{
	font-weight: 300;
}

.w-200{
	font-weight: 200;
}

.w-100{
	font-weight: 100;
}

@media (max-width:1368px) {
	
	.container{
		width:100%
	}
	
	.header-wrapper{
		justify-content: space-between;
		padding:15px 0 15px 0
	}

	.cookies-box-buttons{
		width: 100%;
		margin-top:15px
	}

}

@media (max-width:1559px) {	

	.cookies-box{
		padding:15px;
	}

}

@media (max-width:1359px) {

	.all-header-wrapper{
		display: none;
	}

	.mobile-header-wrapper{
		display: flex;
	}

	.container{
		width: 100%;
	}

	.sub-wrapper{
		display: none;
	}

	.banner-all-wrapper{
		padding:0;
	}

	.banner-wrapper,.banner-wrapper::before{
		border-radius: 0;
	}

	.page-menu-wrapper{
		width: 100%;
		padding-right:0;
		display: none;
	}

	.f-title-16{
		font-size:14px
	}

	.f-title-30{
		font-size:20px;
	}

	.f-title-36{
		font-size:30px
	}

	.f-title-40{
		font-size:30px;
	}
	
	.f-title-53{
		font-size:30px;
	}
	
	.f-content-16{
		font-size:14px
	}

	.f-content-20{
		font-size:16px
	}

	.f-link-sm{
		font-size: 12px;
		padding:8px 14px
	}

	.f-link-md{
		font-size: 14px;
		padding:12px 20px
	}

}

@media (max-width:1024px){

	.item-1-wrapper{
		width: 50%;
	}

	.item-2-wrapper{
		width: 50%;
	}

	.item-1{
		height: 380px;
	}

	.banner-wrapper{
		height: auto;
		padding:60px 0 30px 0
	}

	.banner-header{
		flex-direction: column-reverse;
		align-items: flex-start;
		gap:15px 0
	}

	.single-left{
		width: 100%;
		padding-right:0
	}

	.single-right {
		width: 100%;
		position: relative;
		top:0;
		margin-top:30px
	}

	.single-card-wrapper {
		margin-top:0
	}

	.f-title-36{
		font-size:20px
	}
	
	.f-link-md{
		font-size: 12px;
		padding:10px 20px
	}

	.footer-center-left{
		display: none;
	}

	.footer-center-right{
		justify-content: flex-start;
	}
	

}

@media (max-width:768px){

	.f-title-40{
		font-size:20px;
	}

	.f-title-53{
		font-size:20px;
	}

	.single-section-title{
		font-size:14px
	}

	.single-tab-item-title{
		font-size:14px
	}

	.single-tab-item-day{
		margin-left:15px
	}

}

@media (max-width:600px){ 

    .item-1-wrapper{
		width: 100%;
	}

	.item-2-wrapper{
		width: 100%;
	}

}

@media (max-width:480px){ 

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

@media (max-width:360px) {

	.mobile-logo-link img{
		width: 100px;
		height: 45px;
	}

	.mobile-randevu-link{
		display: none;
	}

	.heading-summary{
		display: none;
	}

}