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

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

:root{
	/** theme colors */
	--t-color-1:#1a3d63;
	--t-color-2:#d05778;
	--t-color-3:#EEF9FF;
	--t-color-4:#ad1f24;
	/** components colors */
	--c-color-1:#1a3d63;
	--c-color-1-overlay:rgba(205,114,118,.55);
	--c-color-2:#d05778 ;
	--c-color-2-overlay:rgba(37,130,106,.55);
	--c-color-3:#EEF9FF;
	--c-color-3-overlay:rgba(181,190,255,.55);
	--c-color-4:#ad1f24;
	--c-color-4-overlay:rgba(240,247,253,.55);
	--font-1:'Outfit', sans-serif;
	--font-2:'Inter', sans-serif;
	--c-light-font-color:#657078;
	--c-dark-font-color:rgba(255,255,255,.6);
	--radius-30:30px;
	--c-1-rgb:26,61,99;
	--c-2-rgb:208,87,120;
	--c-3-rgb:181,190,255;
	--c-4-rgb:240,247,253;
}

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:1360px;
	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{
	background: var(--t-color-1);
	padding-bottom:50px;
}

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

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

.sub-contact{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
	color:#fff;
}

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

.sub-right-item{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
	color:#fff;
	font-style: normal;
}

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

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

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

.header-container{
	padding:0
}

.header{
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	position: relative;
	padding:0;
	background:#fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
	border-radius: 20px;
}

.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 30px;
}

.menu-li {
	display: flex;

}

.sub-li{
	position: relative;
}

.menu-link{
	width: 100%;
	display: flex;
	font-size:14px;
	color:#000;
	position: relative;
	z-index:1001;
	font-weight: 500;
	white-space: nowrap;
	align-items: center;
	justify-content: center;
	letter-spacing: .7px;
	padding:15px 0
}

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

.menu-li:hover > .menu-link::after,
.menu-li.active > .menu-link::after{
	width: 100%;
}

.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: 40px;
	min-width: 100%;
	display: block;
	padding: 15px 0;
	list-style-type: none;
	background: var(--t-color-2);
}

.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:var(--t-color-1);
	font-weight: 600;
}

.menu-sub ul li a::before{
	content:"";
	display: inline-block;
	width: 0;
	height: 3px;
	background: var(--t-color-1);
	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:var(--t-color-1)
}

.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;
	padding-right:15px
}

.header-social-buttons{
	display: flex;
	padding:8px 15px;
	background: var(--t-color-2);
	border-radius: 30px;
}

.header-social-link{
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:18px;
	background: #fff;
	color:var(--t-color-2);
	border-radius: 50%;
}

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

.header-buttons{
	display: flex;
	align-items: center;
	position: relative;
}

.header-randevu-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--t-color-2);
    color:#fff;
	letter-spacing: 1px;
	padding:0 15px;
	height: 52px;
	font-size:14px;
	gap:0 10px;
	border-radius: 0;
}

.header-randevu-link:hover{
	background: var(--t-color-2);
}

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

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

.bottom-menu{
	width: 100%;
	display: flex;
	background: rgba(255,255,255,.2);
	border-radius: 0 0 16px 16px;
}

/* .in-page .bottom-menu{
	background: var(--t-color-1);
} */

.bottom-list{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	gap:0 40px;
	padding:15px 0
}

.bottom-menu-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color:#fff;
}

.sub-lang-current{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 8px;
	color:#000;
	padding:0 30px;
	font-size:14px;
	position: relative;
	z-index: 2;
}

.sub-langs{
	display: flex;
	flex-direction: column;
	position: relative;
}

.sub-langs-list-wrapper{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	min-width: 100px;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	border-radius: 0 0 20px 20px;
	overflow: hidden;
}

.sub-langs:hover .sub-langs-list-wrapper{
	opacity: 1;
	visibility: visible;
}

.sub-langs-list{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top:56px;
	list-style: none;
}

.sub-langs-list li{
	width: 100%;
	display: flex;
}

.sub-langs-list li a{
	width: 100%;
	display: flex;
	align-items: center;
	padding:15px 30px;
	gap:0 8px;
	color:#000;
	white-space: nowrap;
	font-size:14px
}

.sub-langs-list li a:hover{
	background: var(--t-color-2);
	color:#fff
}

.sub-langs img{
	max-width: 16px;
	height: auto;
	display: block;
}

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

.all-footer-wrapper{
	position: relative;
	background-color: #fff;
}

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

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

.footer-top-logo img{
	max-width: 100%!important;
}

.footer-center{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top:60px
}

.footer-center-left-wrapper{
	flex: auto;
	display: flex;
	justify-content: space-between;
}

.footer-center-div{
	width: 33.33%;
	display: flex;
	flex-direction: column;
}

.footer-center-right-wrapper{
	display: flex;
	padding-left:15px
}

.footer-center-title{
	width: 100%;
	display: block;
	color:var(--t-color-6);
}

.footer-center-items{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top:30px
}

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

.footer-center-link{
	display: inline-block;
	color:var(--t-color-6);
}

.footer-center-contacts{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-top:30px
}

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

.dir-rtl .footer-center-contact-item{
	display: flex;
	flex-direction: row-reverse;
	text-align: right;
}

.footer-center-contact{
	display: inline-flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
	font-size:14px;
	color:var(--t-color-6);
	gap:0 10px
}

.dir-rtl .footer-center-contact{
	flex-direction: row-reverse;
}

.dir-rtl .footer-center-contact-item{
	direction: ltr;
}

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

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

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

.footer-copyright{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top:60px;
	padding:15px 0;
	border-top:1px solid rgba(0,0,0,.1);
}

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

.copyright{
	font-size:12px;
	color:#aaa;
	font-family: var(--t-color-2);
}

.manos{
	font-size:12px;
	color:#aaa;
	font-family: var(--t-color-2);
}

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

.cookies-box-wrapper{
	position: fixed;
	bottom:15px;
	left:15px;
	z-index:10000;
	max-width: 260px;
	background:rgba(var(--c-2-rgb),.5);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	border-radius: 16px;
}

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

.cookies-box-left{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

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

.cookies-box-buttons{
	width: 100%;
	margin:15px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.cookies-inline-link{
	display: inline-block;
	color:var(--color-5);
	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-2);
	padding:10px 15px;
	border-radius: 6px;
}


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

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

.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);
}

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

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

.page-left{
	width: 374px;
	display: flex;
	flex-direction: column;
	margin-top:60px;
	margin-bottom:60px;
	flex-shrink: 0;
	position: relative;
}

.page-right{
	display: block;
	width: calc(100% - 374px);
	margin-bottom:60px;
	padding-left:30px;
}

.dir-rtl .page-right{
	padding-left:0;
	padding-right:30px
}

.page-menu-wrapper{
	width: 100%;
	display: flex;
	margin-bottom:30px;
	background: rgba(var(--c-2-rgb),.05);
	padding:30px;
}

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

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

.page-menu > li {
	width: 100%;
	display: block;
	margin-bottom:6px;
	border-bottom:1px solid rgba(3, 27, 78,.1);
}

.page-menu > li > a{
	width: 100%;
	display: flex;
	padding:16px 0 16px 0;
	font-size:16px;
	letter-spacing: .3px;
	border-radius: 4px;
	color:#1d1d1d;
	font-weight: 400;
	align-items: center;
	justify-content: space-between;
	gap:0 20px;
	position: relative;
}

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

.page-menu li a i{
	font-size:12px;
	color:var(--t-color-1)
}

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

.dir-rtl .page-menu li a i{
	transform: rotateY(180deg);
}

.page-menu-item-left{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
}

.page-menu-item-left img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: block;
	border:1px solid var(--t-color-1)
}

.page-sub-menu {
	display: none;
}

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

.page-sub-menu-1{
	padding:15px 0
}

.page-sub-menu li{
	width: 100%;
	display: block;
	padding:10px 0
}

.page-sub-menu li a{
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	font-size:14px;
	color:#161616;
	font-weight: 400;
	gap:0 10px;
	letter-spacing: .5px;
	padding:0 15px
}

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

.page-sub-menu-2{
	padding:15px 0
}

.page-sub-menu-3{
	padding:15px 0
}

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

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

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

/*----------
PRODUCTS
-----------*/

.products{
	width: 100%;
	display: flex;
	align-items: flex-start;
}

.products-left{
	width:300px;
	padding-right:30px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	margin-top:60px
}

.products-left-item-wrapper{
	width: 100%;
	display: block;
	background: #fff;
	padding:0 15px;
	margin-bottom:60px
}

.products-left-menu{
	width: 100%;
	display: flex;
	flex-direction: column;
	border-top:2px solid var(--t-color-3);
	padding:15px 0
}

.products-menu-title{
	width: 100%;
	display: block;
	margin-bottom:30px;
	color:var(--t-color-1)
}

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

.products-menu > li {
	width: 100%;
	display: block;
	margin-bottom:3px
}

.products-menu > li > a{
	width: 100%;
	display: flex;
	padding:15px;
	background: #f9f9f9;
	font-size:14px;
	letter-spacing: .5px;
	border-radius: 4px;
	color:#000;
	font-weight: 400;
	font-family: var(--font-2);
	align-items: center;
	justify-content: flex-start;
	gap:0 20px
}

.products-menu > li > a > img{
	border-radius: 50%;
}

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

.products-select{
	width: 100%;
	margin-top:30px;
	background: rgba(243,173,186,.1);
	padding:0 15px;
	border:1px solid var(--t-color-3)
}

.products-right{
	display: flex;
	flex:auto;
	flex-wrap: wrap;
	margin-bottom:60px
}

.products-sub-menu {
	display: none;
}

.products-menu li.active > .products-sub-menu{
	display: block;
}

.products-sub-menu-1{
	padding:15px 0
}

.products-sub-menu li{
	width: 100%;
	display: block;
	padding:10px 0
}

.products-sub-menu li a{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font-size:14px;
	color:#161616;
	font-weight: 500;
	gap:0 10px;
	letter-spacing: .5px;
}

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

.products-sub-menu-2{
	padding:15px 0
}

.products-sub-menu-3{
	padding:15px 0
}

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

.page-updates{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding:30px 0 0 0;
	color:#7e7a7a
}

.page-updates span{
	display: inline-block;
	margin-left:8px
}

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

.banner-wrapper{
	min-height: 400px;
	background: var(--t-color-1);
	align-items: center;
	padding-top:160px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.in-page-banner-wrapper{
	min-height: auto;
	height: auto;
	padding:60px 0
}

.banner-wrapper::before{
	content:"";
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0;
	background:rgba(var(--c-1-rgb),.85);
	z-index: 1;
}

.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-size:30px;
	line-height: 42px;
	font-weight: 700;
	margin-top:15px;
	text-align: center;
}

.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
}

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

.route-wrapper{
	padding:15px 0
}

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

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

.route li::after{
	content:"/";
	display: inline-block;
	margin:0 10px;
	color:rgba(255,255,255,.6)
}

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

.route li a{
	display: inline-block;
	color:rgba(255,255,255,.6)
}

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

.pagination{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin:50px 0 0 0
}

.pagination-list{
	display: flex;
	align-items: center;
	justify-content: center;
	list-style-type: none;
	gap:0 15px
}

.pagination-list li{
	display: flex;
	align-self: center;
	justify-content: center;
}

.pagination-list li a{
	padding:15px 20px;
	border:1px solid var(--t-color-2);
	border-radius: 4px;
	color:var(--t-color-2)
}

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

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

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

.items-1-container{
	padding:0
}

.item-1-wrapper{
    width: 33.33%;
    display: flex;
	overflow: hidden;
	position: relative;
	padding:0 7.5px 30px 7.5px;
}

.item-1{
    width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column-reverse;
	border:1px solid transparent;
	padding:5px;
	background: #f9f9f9;
	transition: all .2s;
	align-items: center;
	position: relative;
}


.item-1-image{
    width: 100%;
	height: 310px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}

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

.item-1-icon{
	position: absolute;
	right:5px;
	bottom:5px;
	width: 48px;
	height: 48px;
	padding:5px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dir-rtl .item-1-icon{
	right:auto;
	left:5px;
	transform:rotate(-180deg)
}

.item-1-link{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: absolute;
	inset:0;
	z-index: 1000;
}

.item-1-link i{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color:var(--c-color-1);
}

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

.item-1-content-wrapper{
    width: 100%;
	display: flex;
	flex-direction: column;
	padding:30px;
	flex:1;
}

.layout-12-content{
    width: 100%;
	display: block;
	justify-content: center;
}

.item-1-title{
    display: block;
	color:var(--c-color-1);
	font-weight: 600;
	text-align: left;
	font-family: var(--font-4);
	transition: color .2s ease 0s;
}

.dir-rtl .item-1-title{
	text-align: right;
	direction: rtl;
}

.item-1-summary{
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin:15px 0;
	color:var(--c-light-font-color)
}

.item-1:hover{
	background: var(--c-color-1);
	box-shadow: 0 7.5px 7.5px rgba(0,0,0,.1);
}

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

.item-1:hover .item-1-summary{
	color:#fff
}

/*----------
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:1;
	flex-direction: column;
	align-items: flex-start;
	background: #fff;
	padding:0 15px 30px 15px;
	border-radius: 0 0 16px 16px;
}

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

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

/*----------
ITEMS 3
-----------*/

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

.items-3-container{
	padding:0
}

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

.item-3-wrapper{
    width: 33.33%;
    display: flex;
	overflow: hidden;
	position: relative;
	padding:0 7.5px 30px 7.5px;
}

.item-3{
    width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	border:1px solid transparent;
	border-radius: 30px;
	padding:5px;
	background: #f9f9f9;
	transition: all .2s;
	align-items: center;
	position: relative;
}

.item-3-image{
    width: 100%;
	height: 310px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	background: #fff;
}

.item-3-image img{
    width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 30px;
	margin: 0 auto;
}

.item-3-icon{
	position: absolute;
	right:5px;
	bottom:5px;
	width: 48px;
	height: 48px;
	padding:5px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-3-link{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: absolute;
	inset:0;
	z-index: 1000;
}

.item-3-link i{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color:var(--c-color-1);
}

.item-3-link:hover i{
	background: var(--c-color-3);
	color:#fff
}

.item-3-content-wrapper{
    width: 100%;
	display: flex;
	flex-direction: column;
	padding:30px;
	flex:1;
}

.item-3-content{
    width: 100%;
	display: block;
	justify-content: center;
}

.item-3-title{
    display: block;
	color:var(--c-color-1);
	font-weight: 600;
	text-align: left;
	font-family: var(--font-4);
	transition: color .2s ease 0s;
}

.item-3-summary{
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin:15px 0;
	color:var(--c-light-font-color)
}

.item-3:hover{
	background: var(--c-color-1);
	box-shadow: 0 7.5px 7.5px rgba(0,0,0,.1);
}

.item-3:hover .item-3-title{
	color:var(--c-color-3)
}

.item-3:hover .item-3-summary{
	color:#fff
}

/*---------
ITEMS 4
----------*/
.items-4{
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

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

.item-4{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: #f9f9f9;
	min-height: 100px;
	padding:0 15px
}

/*-------------
	VIDEOS
--------------*/

.video-player-wrapper{
	background: var(--t-color-1);
	padding:200px 0 30px 0
}

.video-player-container{
	justify-content: center;
}

.video-wrapper{
    width: 80%;
    display:block;
	text-align: center
}

.video-howto{
	max-width: 100%;
    margin:0 auto;
	display: block
}

.video-embed{
	display: block;
	overflow: hidden;
	position: relative;
	padding-bottom: 57.14285714%;
	height: 0;
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.video-object{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0
}

.video-info{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin:30px 0;
	color:#fff;
	text-align: left;
}

.video-desc{
	color:rgba(255,255,255,0.6);
	margin-top:15px;
	font-weight: 400;
}

.video-item-wrapper{
    width: 33.33%;
    display: flex;
	overflow: hidden;
	position: relative;
	padding:0 7.5px 30px 7.5px;
}

.video-item{
    width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	border:1px solid transparent;
	padding:5px;
	background: #f9f9f9;
	transition: all .2s;
	align-items: center;
	position: relative;
}

.video-item-image{
    width: 100%;
	height: 236px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: relative;
}

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

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

.video-item-icon{
	position: absolute;
	right:5px;
	bottom:5px;
	width: 48px;
	height: 48px;
	padding:5px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:20px
}

.video-item-link{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: absolute;
	inset:0;
	z-index: 1000;
}

.video-item-link i{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color:var(--c-color-1);
}

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

.video-item-content-wrapper{
    width: 100%;
	display: flex;
	flex-direction: column;
	padding:15px;
	flex:1;
}

.video-content{
    width: 100%;
	display: block;
	justify-content: center;
}

.video-item-title{
    display: block;
	color:#223645;
	font-weight: 400;
	text-align: left;
	font-family: var(--font-4);
	transition: color .2s ease 0s;
}

.dir-rtl .video-item-title{
	text-align: right;
	direction: rtl;
}

.video-item:hover{
	background: var(--c-color-1);
	box-shadow: 0 7.5px 7.5px rgba(0,0,0,.1);
}

.video-item:hover .video-item-title{
	color:#fff
}

.video-item:hover .video-item-summary{
	color:#fff
}


/*---------
ARTICLE
----------*/

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

.article-components{
	display: block;
	width: calc(100% - 360px);
	margin-top:60px;
	margin-bottom:60px;
	padding-right:30px;
}

.dir-rtl .article-components{
	padding-right:0;
	padding-left:30px;
}

.article-image{
	width: 100%;
	display: block;
	overflow: hidden;
	margin-bottom:30px;
}

.article-image img{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 30px;
}

.article-summary{
	margin-top:30px;
	width: 100%;
	display: block;
	color:var(--c-light-font-color);
	padding-bottom:30px;
	border-bottom:1px solid rgba(0,0,0,.1);
	font-weight: 400;
}

.article-content{
	margin-top:30px;
	width: 100%;
	display: block;
	color:var(--c-light-font-color)
}

.article-content h2{
	font-size:24px;
	line-height: 1.5;
	color:#1d1d1d;
	font-weight: 600;
	margin:15px 0;
	font-family: var(--font-1);
}

.article-content h3{
	font-size:20px;
	line-height: 1.5;
	color:#1d1d1d;
	font-weight: 600;
	margin:15px 0;
	font-family: var(--font-1);
}

.article-content ul,.article-content ol{
	width: 100%;
	display: block;
	padding:30px;
	border-radius: 16px;
	background: rgba(240,247,253,1);
	list-style-type: none;
	margin:30px 0
}

.article-content ul li,.article-content ol li{
	width: 100%;
	display: block;
	margin:6px 0;
}

.article-content ul li::before,.article-content ol li::before{
	content:"\f061";
	display: inline-block;
	margin-right:15px;
	font-family: 'Line Awesome Free';
	font-weight: 900;
	color:var(--t-color-2)
}

.article-widgets{
	width: 360px;
	display: flex;
	flex-direction: column;
	margin-top:60px;
	margin-bottom:60px;
	flex-shrink: 0;
}

.article-widget {
	margin-bottom:30px
}

.recent-posts-wrapper{
	display: flex;
}

.recent-posts{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding:30px;
	background: rgba(var(--c-2-rgb),.1);
	border-radius: 16px;
	overflow: hidden;
}

.recent-posts-header{
	color:var(--t-color-2)
}

.recent-posts-items{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top:30px
}

.recent-post-wrapper{
	width: 100%;
	display: flex;
	margin-bottom:20px
}

.recent-post{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	gap:0 15px;
	position: relative;
}

.recent-post-image{
	width: 80px;
	height: 60px;
	display: flex;
	flex-shrink: 0;
	overflow: hidden;
}

.recent-post-image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
}

.recent-post-content{
	display: flex;
	flex-direction: column;
}

.recent-post-title{
	display: block;
	width: 100%;
	color:var(--c-light-font-color);
	font-size:15px;
	line-height: 21px;
}

.recent-post-title::after{
	content:"";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0
}

.recent-post:hover .recent-post-title{
	color:var(--t-color-1)
}


/*-----------
PATIENT COMMENTS
------------*/

.p-comments-list-wrapper{
	margin-top:60px
}

.p-comments-container{
	padding:0
}

.p-comments{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
	margin-bottom:30px
}

.p-comment-wrapper{
    width: 50%;
    display: flex;
	overflow: hidden;
	position: relative;
	padding:0 15px;
	font-size:0;
	margin-bottom:30px;
}

.p-comment{
    width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	border:1px solid transparent;
	transition: all .2s;
	align-items: center;
	position: relative;
	background: var(--c-color-5);
	border-radius: 16px;
}

.p-comment:hover .p-comment-image img{
	transform: scale(1.05);
}

.p-comment-top{
	width: 100%;
	display: flex;
	flex:1;
	padding:30px;
}

.p-comment-summary{
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 10;
	color:var(--c-light-font-color)
}

.p-comment-bottom{
	width: 100%;
	display: flex;
	padding:15px 30px;
	border-top:1px solid rgba(0,0,0,.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:0 20px;
}

.p-comment-title{
    display: block;
	color:var(--c-color-1);
	font-weight: 600;
	text-align: left;
	transition: color .2s ease 0s;
}

.p-comment-stars{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.p-comment-stars i{
	font-size:16px;
	color:var(--t-color-3)
}


/*--------------
	WIDGETS
---------------*/

.widget-1-wrapper{
	width: 100%;
	display: flex;
	margin-bottom:60px
}

.widget-1{
	width: 100%;
	background: var(--c-color-1);
}

.widget-1-sections{
	width: 100%;
	display: flex;
	flex-direction: column;
}

.widget-1-header{
	width: 100%;
	padding:15px 30px 15px 30px;
	display: block;
	border-left:5px solid var(--t-color-2);
}

.widget-1-sub-title{
	display: block;
	color:var(--t-color-2);
	letter-spacing: 1px;
}

.widget-1-title{
	display: block;
	color:#fff;
	letter-spacing: 1px;
}

#widget-1-form{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top:0
}

.widget-1-form-items{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:15px 0;
	padding:0 30px 30px 30px;
}

.widget-1-input{
	width: 100%;
	display: block;
	background: transparent;
	border:none;
	border-bottom:1px solid rgba(255,255,255,.75);
	padding:0 5px;
	font-size:16px;
	color:#fff;
	height: 52px;
}

.widget-1-buttons{
	width: 100%;
	margin-top:15px
}

.widget-1-button{
	display: inline-flex;
	padding:10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:0 15px;
	font-size:16px;
	color:#fff;
	background: var(--t-color-2);
	border:none;
	cursor: pointer;
	text-transform: uppercase;
}

.widget-1-button:hover{
	background: var(--t-color-2);
}

.self-input{
	opacity: 0;
	visibility: hidden;
}

.widget-1-result {
    width:100%;
    display: block;
	position: relative;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	border: 1px solid transparent;
	border-radius: 4px;
}    

.widget-1-error {
	display: block;
    width:100%;
    font-size:14px;
    padding:15px;
	color: #ed1c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

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

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

.r-menu-body{
	width:100%;
	height:auto;
	position:relative;
	padding:30px 15px;
	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 rgba(255,255,255,.1);
	color:#fff
}

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

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

.rMenu ul li i{
	color:#fff
}

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

.rMenu ul li ul{
	padding:0 0 0 5px;
	margin:0 0 15px 0;
	list-style-type:none;
	width:100%;
	height:auto;
	display:none;
	position:relative;
}

.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:rgba(255,255,255,.7);
	text-decoration:none!important;
	border:none
}

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

.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:first-child{
	border-right:1px solid rgba(255,255,255,.2)
}

.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(--t-color-2);
}

.r-whatsapp{
	background: var(--t-color-2)
}

.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;
}

.fixed-instagram{
	background: #c13584;
}

.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: #fff;
	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-16{
	font-size:16px;
	line-height: 28px;
}

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

.f-title-20{
	font-size:20px;
	line-height: 1.5;
}

.f-title-24{
	font-size:24px;
	line-height: 1.5;
}

.f-title-30{
	font-size:30px;
	line-height: 1.5
}

.f-title-36{
	font-size:36px;
	line-height: 1.5
}

.f-title-40{
	font-size:40px;
	line-height: 1.5
}

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

.f-title-57{
	font-size:57px;
	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-2);
}

.f-content-16{
	font-size:16px;
	line-height: 28px;
	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;
	background: var(--t-color-1);
    color:#fff;
	letter-spacing: 1px;
	padding:0 30px;
	height: 52px;
	font-size:14px;
	gap:0 10px;
	border-radius: 4px
}


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

.f-link-2{
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	border-radius: 40px;
	white-space: nowrap;
	padding:0 2px 0 32px;
	color:#fff;
	font-size:14px;
	background: var(--t-color-2);
	border:none;
	cursor: pointer;
}

.f-link-2 i {
	margin-left: 23px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	color: var(--t-color-2);
	font-size: 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

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

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

.dir-rtl .f-link-2{
	padding:0 32px 0 2px
}

.dir-rtl .f-link-2 i{
	margin-left:0;
	margin-right:23px;
	transform: rotate(-180deg);
}

.sub-title{
	display: inline-block;
	padding:3px 23px 3px 23px;
	border-radius: 30px;
	font-size:14px;
	background: #fff;
	color:var(--t-color-1);
	letter-spacing: .6px;
	font-weight: 500;
	line-height: 24px;
}


.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;
}

.layout-header{
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	align-items: center;
	gap:10px 0
}

.layout-sub-title{
	background:rgba(var(--c-2-rgb),.1);
	color:var(--c-color-2);
	padding:8px 16px;
	border-radius: 16px;
	letter-spacing: 1px;
	font-size:14px;
}

.layout-title{
	color:var(--c-color-1);
	letter-spacing: 1px;
}
@media (max-width:1610px) {	

	.cookies-box{
		padding:15px;
	}

}

@media (max-width:1470px) {

	.all-header-wrapper{
		padding:0 15px
	}

	.container{
		width:100%
	}

	.logo img{
		width: 200px;
	}

	.menu{
		gap:0 30px
	}

	.header-button{
		padding:10px 10px;
		gap:0 5px;
	}

	.menu-sub ul{
		margin-top:72px
	}

	.mega{
		margin-top:72px
	}

}

@media (max-width:1368px) {

	.menu{
		gap:0 30px
	}

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

	.f-title-57{
		font-size:40px;
		line-height: 54px;
	}

}

@media (max-width:1359px) {

	.select-trigger{
		display: block;
	}

	.hidden-1359{
		display: none!important;
	}

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

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

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

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

	.f-title-30,.article-content h2{
		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-18{
		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
	}

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

	.f-link-2{
		height: 42px;
		padding:0 2px 0 20px;
		font-size:12px
	}

	.f-link-2 i {
		width: 42px;
		height: 42px;
	}

}

@media (max-width:1280px){


	.banner-wrapper{
		height: auto;
	}

	.banner-title{
		font-size:30px
	}

	.page{
		flex-direction: column-reverse;
	}

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

	.page-left{
		width: 100%;
		margin:0
	}

	.video-item-wrapper{
		width: 33.33%;
	}

	.video-item-image{
		height: 216px;
	}

	.fixed-wrapper{
		display: flex;
	}

	.ikon-menu{
		display: none;
	}

}

@media (max-width:1024px){

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

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

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

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

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

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

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

	.f-title-57 {
		font-size: 30px;
		line-height: 44px;
	}
	
	.f-link-md{
		font-size: 12px;
		padding:10px 20px
	}

	.article{
		flex-direction: column;
	}

	.article-components{
		width: 100%;
		padding:0
	}

	.dir-rtl .article-components{
		padding-left:0
	}

	.article-widgets{
		width: 100%;
		margin-top:0
	}

	.footer-center{
		margin-top:0
	}

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

}

@media (max-width:768px){

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

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

	.hidden-768{
		display: none;
	}

	.video-item-image {
		height: 197px;
	}

}

@media (max-width:600px){ 

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

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

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

	.footer-center{
		flex-direction: column;
	}

	.footer-center-left-wrapper{
		width: 100%;
	}

	.footer-center-right-wrapper{
		width: 100%;
		padding-left:0;
		margin-top:60px
	}

	.video-item-image {
		height: auto;
	}
	
}

@media (max-width:480px){ 

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

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

@media (max-width:360px) {


	.footer-top-items{
		display: none;
	}

}