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

:root{
	/** logo colors */ 
	--l-color-1:#e30613;
	--l-color-2:#1d1d1b;
	--l-color-3:#fff;
	/** theme colors */
	--t-color-1:#e30613;
	--t-color-2:#232d34;
	--t-color-3:#aaeaff;
	--t-color-4:#1c242a;
	/** components colors */
	--c-color-1:#e30613;
	--c-color-1-overlay:rgba(227,6,19,.45);
	--c-color-2:#232d34;
	--c-color-2-overlay:rgba(35,45,52,.85);
	--font-1:'Manrope', sans-serif;
	--font-2:'Rubik', sans-serif;
	--c-light-font-color:#1d1d1b;
	--radius-30:30px
}

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

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:1430px;
	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{
	width: 100%;
}

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

.sub-contacts{
	display: flex;
}

.sub-contact-link{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color:var(--l-color-1);
	font-size:14px;
	margin-right:15px
}

.sub-contact-link i{
	margin-right:10px
}

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

.sub-list{
	display: flex;
	align-items:center;
	justify-content: flex-end;
	list-style-type: none
}

.sub-list li{
	display: inline-block;
	margin-right:15px;
}

.sub-list li a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size:14px;
	color:var(--l-color-1);
}

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

.sub-social{
	display: flex;
	justify-content: flex-end;
	gap:0 5px
}

.sub-social-link{
	margin-left:0;
	font-size:20px;
	background: var(--l-color-1);
	color:#fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right:1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
}

.sub-social-link:last-child{
	border:none
}

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


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

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

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

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

.logo{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top:20px
}

.pc-logo-img{
	display: inline-block;
}

.header-right{
	flex:1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

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

.header-contacts{
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap:0 20px
}

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

.header-contact:hover{
	color:var(--t-color-1)
}

.header-socials{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap:0 10px;
	margin-left:20px
}

.header-social-link{
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border:1px solid #fff;
	color:#fff;
	font-size:18px
}

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

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

.header-menu{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin:34px 0 0 0
}

.menu{
	flex:1;
	display:flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
	gap:0 45px
}

.menu-li {
	display: inline-flex;
}

.sub-li{
	position: relative;
}

.menu-link{
	width: 100%;
	display: flex;
	font-size:14px;
	color:#fff;
	position: relative;
	z-index:1000;
	font-weight: 700;
	white-space: nowrap;
	align-items: center;
	justify-content: center;
	letter-spacing: .7px;
	border-bottom:2px solid transparent;
	padding-bottom: 8px;
}

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

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

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

.menu-sub ul {
	margin-top: 55px;
	min-width: 100%;
	display: block;
	border-radius: 0 0 16px 16px;
	padding: 15px 10px;
	list-style-type: none;
	background: rgb(112,111,111);
	background: linear-gradient(180deg, rgba(112,111,111,0.5634454465379901) 0%, rgba(112,111,111,1) 80%); 
}

.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 15px;
	font-size:14px;
	color:#fff;
	white-space: nowrap;
	font-weight: 300;
	font-family: var(--font-2);
	justify-content: flex-start
}

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

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

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

.mega-menu-overlay{
	width: 100%;
	height: 100%;
	position: fixed;
	top:0;
	left:0;
	background: rgba(0,0,0,.55);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .2s .2s,visibility 0s .4s;
}

.mega-menu-wrapper{
	position: absolute;
	display: flex;
	align-items: flex-start;
	top:0;
	left:0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
}

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

.mega-li:hover ~ .mega-menu-overlay{
	opacity: 1;
	visibility: visible;
	transition-delay: .1s;
}

.mega-menu{
	width: 100%;
	padding:0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background: #fff;
	position: relative;
	margin-top:90px;
	border-top:1px solid #f1f1f1
}

.mega-left{
	width: 70%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding:30px 0 45px 0;
	border-right:1px solid #f1f1f1
}

.mega-item{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	padding:0 30px
}

.mega-list{
	width: 100%;
	display: block;
}

.mega-list-li{
	display: block;
	width: 100%;
	font-size:14px;
	padding:22px 0;
	border-bottom:1px solid #f1f1f1
}

.mega-list-link{
	display: flex;
	width: 100%;
	font-size:14px;
	color:#212121;
	font-weight: 300;
	letter-spacing: .5px;
	align-items: center;
	justify-content: space-between;
}

.mega-list-link:hover{
	color:var(--l-color-1)
}

.mega-right{
	width: 30%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	padding:30px 15px;
	overflow: hidden;
}

.mega-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
}

.mega-box-image{
	width: 100%;
	height: 200px;
	display: flex;
	overflow: hidden;
	border-radius: 16px;
}

.mega-box-image picture{
	width: 100%;
	height: 100%;
	display: block;
}

.mega-box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 16px;
}

.mega-box-content{
	width: 100%;
	padding:15px 0;
	display: flex;
}

.mega-box-text{
	width: 100%;
	display: block;
	font-size:14px;
	line-height: 24px;
	font-weight: 300;
	color:var(--light-font-color)
}

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

.header-langs{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left:43px;
	margin-top:4px;
	position: relative;
	z-index:500;
	gap:0 10px
}

.sub-lang{
	display: inline-block;
}

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

.all-footer-wrapper{
	position: relative;
}

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

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

.newsletter-left{
	width: 40%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.newsletter-right{
	flex:1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-left:120px
}

.newsletter-result{
	width: 100%;
	display: block;
	margin-top:15px;
	text-align: left;
	color:#fff;
	padding:0 20px
}

.newsletter-title{
	display: block;
	color:#fff;
	font-size:57px;
	line-height: 72px;
	font-weight: 700;
	letter-spacing: -0.05em;
}

.newsletter-description{
	display: block;
	margin-top:30px;
	color:#b2bdc6;
	width: 80%;
	font-family: var(--font-2);
}

.newsletter-form{
	width: 100%;
	display: flex;
	position: relative;
}

.newsletter-input{
	display: block;
	width: 100%;
	height: 64px;
	border-radius: 30px;
	padding:0 20px;
	border:1px solid #4b5257;
	color:#b2bdc6;
	font-family: var(--font-2);
	font-size:16px;
	background: transparent;
}

.newsletter-input:focus{
	border-color:#fff
}

.newsletter-input:focus + button{
	background: #fff;
	color:var(--t-color-2)
}

.newsletter-button{
	position: absolute;
	top:5px;
	right:5px;
	background: #232d34;
	border:none;
	color:#b2bdc6;
	padding:10px 40px;
	height: 51px;
	border-radius: 25px;
	cursor: pointer;
}

.newsletter-button:hover{
	background: #fff;
	color:var(--t-color-4)
}

.footer-bottom-wrapper{
	background-color: var(--t-color-2);
	background-image: url(../../../img/site/footer-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

.footer-bottom-25{
	width: 25%;
	display: flex;
	flex-wrap: wrap;
}

.footer-bottom-title{
	color:#fff;
	display: block;
	width: 100%;
	font-size:30px;
	line-height: 36px;
	letter-spacing: -0.05em;
	font-weight: 500;
}

.footer-bottom-contacts{
	width: 100%;
	display: block;
	margin-top:30px;
	padding-right:60px;
}

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

.footer-bottom-contact-item{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
	color:#b2bdc6;
	font-size:16px;
	line-height: 28px;
	font-family: var(--font-2);
}

.footer-bottom-adres-item{
	align-items: flex-start;
}

.footer-bottom-adres-item i{
	margin-top:6px
}

.footer-bottom-contact-item:hover{
	color:#fff
}

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

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

.footer-bottom-list li a{
	display: inline-block;
	color:#b2bdc6;
	font-size:14px;
	line-height: 28px;
	font-family: var(--font-2);
	font-weight: 500;
}

.footer-bottom-list li a:hover{
	color:#fff
}

.footer-social-list{
	width: 100%;
	display: flex;
	margin-top:30px;
	align-items: center;
	justify-content: flex-start;
	gap:0 20px;
}

.footer-social-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border:2px solid #ffffff40;
	font-size:30px;
	color:#fff;
	transition:all .3s
}

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

.footer-copyright{
	width: 100%;
	margin-top:100px;
	padding:25px 0 10px 0;
	border-top:1px solid #ffffff24;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.copyright{
	font-size:14px;
	color:#fff;
	font-family: var(--t-color-2);
	font-weight: 700;
}

.trampAD{
	font-size:14px;
	color:#fff;
	font-family: var(--t-color-2);
	font-weight: 700;
}

/*--------------------
	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);
}

/*---------
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-wrapper{
	height: 400px;
	background: var(--t-color-2);
	align-items: center;
	padding:90px 0 30px 0;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.banner-wrapper::before{
	content:"";
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0;
	background: rgba(26,44,69,.3);
	z-index: 1;
}

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

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

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

.banner-title{
	display: inline-block;
	color:#fff;
	font-size:72px;
	line-height: 72px;
	letter-spacing: -0.05em;
	font-weight: 700;
	margin-top:15px
}

.banner-category{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:10px 20px;
	color:#fff;
	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
}

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

.route-wrapper{
	padding:15px 0
}

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

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

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

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

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

/*---------
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: 73%;
	padding-right:30px
}

.single-right {
	width: 27%;
	position: sticky;
	top: 95px;
}

.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{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin:60px 0
}

.item-1-wrapper{
    width: 33.33%;
    display: flex;
    padding:0 15px;
    margin-bottom:30px;
    position: relative;
}

.item-1{
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    box-shadow: 10px 41px 57px -17px rgba(0,0,0,.22);
    transition: all .3s;
}

.item-1-image{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset:0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all .3s;
}

.item-1-image::after{
    content:"";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset:0;
    z-index: 2;
    background: rgba(0,0,0,.52);
}

.item-1:hover .item-1-image{
    opacity: 1;
    visibility: visible;
}

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

.item-1-box{
    padding:40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    z-index: 3;
}

.item-1-box-top{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex:1;
}

.item-1-icon{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
    margin-bottom:20px;
    transition: all .3s;
}

.item-1-last-icon{
    position: absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.item-1:hover .item-1-first-icon{
    opacity: 0;
    visibility: hidden;
}

.item-1:hover .item-1-last-icon{
    opacity: 1;
    visibility: visible;
}

.item-1-title{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom:20px;
    font-size:20px;
    line-height: 28px;
    letter-spacing: -0.05em;
    font-weight: 700;
    transition: all .3s;
}

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

.item-1-summary{
    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: center;
    font-size:14px;
    line-height: 22px;
    color:#657078;
    font-family: var(--font-2);
}

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

.item-1-box-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:30px
}

.item-1-box-link{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #d7dbde;
    border-radius: 50%;
    color:var(--c-color-1);
    transition: all .3s;
}

.item-1-box-link::before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    inset:0
}

.item-1:hover .item-1-box-link{
    border-color: var(--c-color-1);
    background: var(--c-color-1);
    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
}


/*----------
PROJECTS
-----------*/

.projects-wrapper{
	padding:60px 0
}

.projects-container{
	flex-wrap: wrap;
}

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

.project-category{
	display: block;
	margin-right:30px
}

.project-category-link{
	display: inline-flex;
	padding:14px 25px;
	border-radius: 25px;
	color:var(--t-color-2);
	background: #fff;
	font-size:16px;
}

.project-category-link:hover,
.project-category-link.active{
	background: var(--t-color-1);
	color:#fff
}

.projects{
	padding-bottom:60px
}

.projects-list-container{
	padding:0
}

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

.project-wrapper{
    width: 33.33%;
    padding:0 15px;
    display: flex;
    position: relative;
    margin-bottom:30px
}

.project{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    align-items: stretch;
    position: relative;
    border-radius: 16px;
    transition: background 500ms ease-in-out 0s;
	background: #fff;
}

.project-image{
    width: 100%;
    height:270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	border-radius: 16px;
}

.project-image picture{
    width: 100%;
    height: 100%;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 500ms ease 0s;
	border-radius: 16px;
}

.project-content-wrapper{
    width: 100%;
    z-index:20;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
	padding:15px
}

.project-content{
	width: 100%;
	display: flex;
	flex-direction: column;
}

.project-header{
    width: 100%;
    display: flex;
	flex-direction: column;
    position: relative;
    align-items: center;
    margin-bottom:30px
}

.project-title{
	width: 100%;
    display: flex;
    position: relative;
    font-size:20px;
    line-height: 34px;
	font-weight: 700;
	letter-spacing: -0.05em;
	color:var(--light-font-color)
}

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

.project-property{
	padding:10px 10px;
	border:1px solid #e8e8e8;
	border-radius: 30px;
	font-size:12px;
	display:inline-flex;
	align-items: center;
	justify-content: center;
	color:#7e7a7a;
	gap:0 5px
}

.project-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top:45px;
	padding:15px;
}

.project-link{
    color:#aaa;
    align-items: center;
	display: flex;
}

.project-link:hover{
    border-color:var(--color-1);
}

.project-link::before{
	content:"";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top:0;
	left:0
}

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

/*--------------
PROJECT DETAILS
--------------*/

.project-hero-wrapper{
	position: relative;
	margin:60px 0
}

.project-hero-content-wrapper{
	position: relative;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:100;
	pointer-events: none
}

.project-hero-left-wrapper{
	width: 80%;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: flex-start;
	padding:60px 0 60px 0
}

.project-hero-left{
	width: 100%;
	padding-right:60px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}

.project-hero-info{
	width: 670px;
	display: flex;
	flex-direction: column;
	max-width: 670px;
}

.project-hero-header{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	position: relative
}

.project-hero-header h1{
	font-size:53px;
	line-height: 76px;
	font-weight: 100;
	font-family: var(--font-1);
	display: inline-flex;
}

.project-hero-header::after{
	content:"";
    flex:auto;
    height: 2px;
    display: block;
    background: var(--color-3);
    margin-left:30px
}

.project-hero-description{
	margin-top:60px;
	padding-right:30px;
	color:#657078
}

.project-hero-properties{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items:stretch;
	justify-content: flex-start;
	margin-top:60px;
	margin-left:-15px
}

.project-hero-property-wrapper{
	width: 25%;
	padding:0 15px;
	margin-top:30px;
	display: flex;
}

.project-hero-property{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	padding:30px 15px
}

.project-hero-key{
	width: 100%;
	display: block;
	font-size:14px;
	text-align: center;
	color:#909090
}

.project-hero-value{
	width: 100%;
	display: block;
	font-size:22px;
	text-align: center;
	padding:30px 0 0 0
}

.project-hero-gallery-wrapper{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	align-items: stretch;
	justify-content: flex-end;
	display: flex;
}

.project-hero-gallery{
	width: 50%;
	height: 100%;
	display: flex;
	flex-shrink: 0;
}

.project-hero-swiper, .swiper-wrapper{
	width: 100%;
	height: 100%;
	cursor: grab;
}

.project-hero-gallery-item,.project-hero-gallery-item-link{
	width: 100%;
	height: 100%;
	display: flex;
}

.project-hero-gallery-item-link picture{
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}

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


/*----------
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-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;
	letter-spacing: -0.05em;
}

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

.f-title-40{
	font-size:40px;
	line-height: 1.5;
	letter-spacing: -0.05em;
}

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

.f-title-57{
	font-size:57px;
	line-height: 72px;
	letter-spacing: -0.05em;
	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;
	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;
}

.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:1559px) {	

	.cookies-box{
		padding:15px;
	}

}

@media (max-width:1470px) {

	.container{
		width:100%
	}

}

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

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

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

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

}

@media (max-width:1359px) {

	.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{
		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:1280px){

	.newsletter-description{
		margin-top:15px;
		width: 100%;
	}

	.footer-bottom-title{
		font-size:24px;
	}

	.footer-bottom-contact-item{
		font-size:14px
	}

	.banner-wrapper{
		height: auto;
	}

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

}
@media (max-width:1024px){

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

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

	.project-wrapper{
		width: 50%;
	}

	.newsletter-left{
		width: 100%;
		flex-wrap: wrap;
	}

	.newsletter-right{
		justify-content: flex-start;
		padding-left:0;
		margin-top:30px;
		display: flex;
	}

	.newsletter-title{
		font-size:30px;
		line-height: 44px;
	}

	.footer-bottom{
		flex-wrap: wrap;
	}

	.footer-bottom-25{
		width: 100%;
		margin-bottom:30px;
		padding:0
	}

	.footer-bottom-title{
		font-size:20px
	}

	.footer-bottom-25:first-child{
		display: none;
	}

	.footer-copyright{
		margin-top:0
	}

	.project-hero-content-wrapper{
		order:2
	}

	.project-hero-left-wrapper{
		width: 100%;
	}

	.project-hero-left{
		padding-right:0
	}

	.project-hero-info{
		width: 100%;
		max-width: 100%;
	}

	.project-hero-header h1{
		font-size:40px;
		line-height: 56px;
	}

	.project-hero-description{
		padding-right:0;
		margin-top:30px
	}

	.project-hero-properties{
		margin-top:30px
	}

	.project-hero-value{
		font-size:18px
	}

	.project-hero-gallery-wrapper{
		position: relative;
		order:0
	}

	.project-hero-gallery{
		width: 100%;
	}

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

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

}

@media (max-width:768px){

	.project-properties{
		flex-direction: column;
		align-items: flex-start;
		gap:5px 0
	}

	.project-hero-header h1{
		font-size:30px;
		line-height: 46px;
		font-weight: 400;
	}

	.project-hero-properties{
		margin-left:0
	}

	.project-hero-property-wrapper{
		width: 33.33%;
	}

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

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

	.hidden-768{
		display: none;
	}

	.select-trigger{
		display: block;
	}

}

@media (max-width:600px){ 

	.project-wrapper{
		width: 100%;
	}

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

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

	.project-hero-property-wrapper{
		width: 50%;
	}

	.project-hero-left-wrapper{
		padding:30px 0
	}

	.project-hero-header h1{
		font-size:20px;
		line-height: 36px;
	}

	.project-hero-header::after{
		display: none;
	}
	
}

@media (max-width:480px){ 

	.project-hero-property-wrapper{
		width: 100%;
		padding:0
	}

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

@media (max-width:360px) {

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

	


}