@import url('https://fonts.googleapis.com/css2?family=Outfit: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:#013a1c;
	--t-color-2:#94b745;
	--t-color-3:#d2e4d6;
	--t-color-4:#fff;
	/** components colors */
	--c-color-1:#013a1c;
	--c-color-1-overlay:rgba(1,58,28,.55);
	--c-color-2:#94b745;
	--c-color-2-overlay:rgba(148,183,69,.85);
	--c-color-3:#d2e4d6;
	--c-color-3-overlay:rgba(210,228,214,.85);
	--c-color-4:#fff;
	--font-1:'Outfit', sans-serif;
	--font-2:'Outfit', sans-serif;
	--c-light-font-color:#657078;
	--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
}

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(--t-color-1);
	background: #fff;
	font-size:14px;
	display: none;
}

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

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

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

.sub-contacts{
	display: flex;
	gap:0 30px;
	padding:10px 0;
}

.sub-contact{
	display: flex;
	align-items: center;
	gap:0 8px;
	color:#fff;
	font-size:14px
}

.sub-contact i{
	display: inline-flex;
	color: #fff;
	font-size:16px;
	align-items: center;
	justify-content: center;
}

.sub-right{
	display: flex;
	margin-left:auto
}

.sub-langs{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left:15px;
	position: relative;
	z-index:500;
	gap:0 5px;
	padding:3px 3px;
	border-radius: 30px;
}

.sub-lang{
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.sub-lang:hover,
.sub-lang.active{
	background: #fff
}

.sub-social-buttons{
	display: flex;
	align-items: center;
	justify-content: center;
	gap:0 8px;
}

.sub-social-link{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:24px;
}

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

.all-header-wrapper{
	position: absolute;
	top:0;
	left:0;
	z-index:7000;
	padding:0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, rgba(0,0,0,0.499019676229867) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.499019676229867) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(180deg, rgba(0,0,0,0.499019676229867) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

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

.in-page .sub-wrapper{
	background: var(--t-color-1);
}

.in-page .menu-link{
	color:var(--t-color-1)
}


.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: stretch;
	justify-content: space-between;
	position: relative;
}

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

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

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

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

.menu-li {
	display: flex;

}

.sub-li{
	position: relative;
}

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

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

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

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

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

.in-page .menu-sub ul{
	margin-top:81px
}

.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;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	color:#fff;
	font-weight: 500;
}

.menu-sub ul li a::before{
	content:"";
	display: inline-block;
	width: 0;
	height: 3px;
	background: var(--t-color-2);
	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;
	padding-right:45px;
	font-size:14px;
	letter-spacing: .5px;
}

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

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

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

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

.header-search-wrapper form{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.header-search{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	border:1px solid #fff;
	border-radius: 30px;
	padding:0 2px 0 15px
}

.search-input{
	border:none;
	display: inline-block;
	font-size:14px;
	background: transparent;
	color:#fff;
	height: 42px;
}

.search-button{
	display: block;
	font-size:20px;
	border:none;
	background: none;
	cursor: pointer;
	color:#fff;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.in-page .header-search{
	border-color:var(--t-color-1)
}

.in-page .search-input{
	color:var(--t-color-1)
}

.in-page .search-button{
	color:var(--t-color-1)
}

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

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

.footer-top-wrapper{
	padding:70px 0 30px 0
}

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

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

.footer-bottom{
	width: 100%;
	padding:90px 0 90px 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-bottom-logo{
	margin-top:60px
}

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

.footer-sorumluluk-reddi{
	width: 100%;
	display: block;
	color:#fff;
	padding-bottom:30px;
	border-bottom:1px solid #ffffff24;
	font-size:14px;
	line-height: 28px;
	color:rgba(255,255,255,0.6)
}

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

.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:15px;
	left:15px;
	z-index:10000;
	max-width: 260px;
	background:var(--t-color-1);
	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-wrapper{
	overflow: hidden;
}

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

.page-container{
	padding:0
}

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

.page-menu-wrapper::before{
	content:"";
	position: absolute;
	top:0;
	bottom:0;
	right:160px;
	width: 500%;
	background: #f9f9f9
}

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

.page-menu{
	width: 100%;
	margin:60px 0;
	background: #f9f9f9;
	padding:15px;
	border-radius: 9px;
	position: relative;
	z-index:20
}

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

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

.page-menu-list li a{
	font-size:14px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	color:#161616;
	background: #fff;
	padding:15px;
	letter-spacing: .6px;
	border-radius: 9px;
}

.page-menu-list li.active > a{
	background: var(--t-color-1);
	color:#fff;
}

.page-menu-list li:hover > a{
	background: var(--t-color-1);
	color:#fff
}


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

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

/*---------
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{
	background: var(--t-color-1);
	align-items: center;
	padding:60px 0 60px 0;
	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(1,58,28,.85);
	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;
	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
}

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

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

/*---------
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;
	color:#fff
}

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

/*----------
PRODUCT DETAILS
-----------*/

.product-stage-wrapper{
	margin: 60px 0;
}

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

.product-slides{
	width: 50%;
	display: flex;
}

.gallery-container {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.gallery-main {
	width: 85%;
	height: 500px;
	border:1px solid #f1f1f1;
	position: relative;
	overflow: hidden;
}

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

.center-item img{
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.gallery-main-nav{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	z-index: 5000;
}

.gallery-main .swiper-button-prev, .gallery-main .swiper-button-next {
	height: 40px;
	width: 40px;
	background: #f9f9f9;
	color: #1e1e1e;
}

.gallery-main .swiper-button-prev::after, .gallery-main .swiper-button-next::after {
	font-size: 12px;
}

.gallery-thumbs {
	order: -1;
	width: 15%;
	height: 300px;
	padding-right: 15px;
	overflow: hidden;
}

.thumb-item{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumb-item img{
	max-width: 100%;
	max-height: 100%;
	display: block;
	cursor: pointer;
	border:2px solid transparent
}

.gallery-thumbs .swiper-slide-thumb-active img{
	border-color: var(--t-color-2);
  }


@-webkit-keyframes slide-in {
from {
	opacity: 0;
	right: -50%;
}
}

@keyframes slide-in {
from {
	opacity: 0;
	right: -50%;
}
}

.product-info-wrapper{
	display: flex;
	flex-flow: row nowrap;
	flex: 0 0 auto;
	width: 50%;
	justify-content: center;
}

.product-info{
	padding: 0 0 0 48px;
	flex-grow: 1;
}

.product-info-header{
	display: flex;
	margin-bottom:8px;
	align-items: center;
	justify-content: space-between;
}

.product-info-heading{
	flex:1 1 auto;
	width: 0;
	margin:0;
	padding-right:30px
}

.product-info-title,.product-info-sub-title {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-info-title {
	letter-spacing: 2px;
	line-height: 40px;
	color:var(--color-2)
}

.product-info-description{
	font-size: 16px;
	letter-spacing: .5px;
	line-height: 26px;
	font-weight: 400;
	display: block;
	width: 100%;
	margin-bottom:24px;
	margin-top:30px
}

.pro-content h3{
	margin:15px 0;
	display: block;
	width: 100%;
}

.pro-content ul,.pro-content ol{
	width: 100%;
	display: block;
	padding:15px;
	background: #f9f9f9;
	list-style: none;
}

.pro-content ul li,.pro-content ol li{
	width: 100%;
	display: flex;
	margin:16px 0;
	align-items: flex-start;
	justify-content: flex-start;
	gap:0 15px;
	flex-wrap: wrap;
}

.pro-content ul li::before,.pro-content ol li::before{
	content:"\f061";
	display: inline-block;
	font-family: 'Line Awesome Free';
	font-weight: 900;
	color:var(--c-color-1)
}

.product-buttons-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top:60px;
	gap:0 15px
}

.product-button{
	display: flex;
	align-items: center;
	justify-content: center;
	gap:0 8px;
	padding:15px 15px;
	border:1px solid var(--color-2);
	color:var(--color-2);
	flex:auto
}

.product-button i{
	font-size:20px
}

.product-button:hover{
	background: var(--color-2);
	color:#fff
}


/*---------
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-wrapper{
	font-size:0;
	margin:60px 0 30px 0
}

.items-1-container{
	padding:0;
	position: relative;
	overflow: hidden;
}

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

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

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

.item-1-overlay{
	position: absolute;
	inset:0;
	transform:scale(1);
	transition:all .3s ease 0s;
	transform-origin: center;
	background: #fff;
	border-radius: 16px 16px 280px 16px
}

.item-1:hover .item-1-overlay{
	transform:scale(1);
	border-radius: 16px 16px 16px 16px
}

.item-1-data{
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 20;
}

.item-1-image{
	width: 100%;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	border-radius: 16px;
}

.item-1-image img{
	max-width: 100%;
	max-height: 100%;
	display: block;
	transition: all .4s ease 0s;
}

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

.item-1-title{
    display: block;
	color:var(--c-color-1);
	text-align: center;
	font-weight: 500;
	background: #f9f9f9;
	padding:5px 20px;
	border-radius: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

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

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

.item-1-title::before{
	content:"";
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0;
	z-index: 60;
}

.item-1-icon{
	display: inline-block;
	text-align: center;
	position: absolute;
	top:0px;
	right:0;
	width: 32px;
	height: 32px;
	background: #f1f1f1;
	color:var(--c-color-1);
	border-radius: 30px;
	font-size:14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease 0s;
}

.item-1:hover .item-1-icon{
	color: #f1f1f1;
	background:var(--c-color-2);
}

/*----------
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: 25%;
	display: flex;
	padding:0 15px;
	margin-top:30px
}

.item-3{
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding:15px;
	border:2px solid #fff;
}

.item-3-image{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.item-3-image img{
	max-width: 100%;
	max-height:100px;
	display: block;
}

.item-3:hover{
	border-color: var(--t-color-1);
}

/*----------
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(--color-1);
	background: #f4f5f6;
	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: 25%;
    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: #f1f1f1
}

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

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

.project-image-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	inset:0;
	z-index: 1;
	background: var(--c-color-1-overlay);
	color:#fff;
	align-items: center;
	justify-content: center;
	font-size:60px;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease 0s;
}

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

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

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

.project-content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap:5px 0
}

.project-title{
    display: block;
	color:var(--c-color-1);
	text-align: center;
}

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

.project-country{
	display: block;
	color:var(--c-light-font-color)
}

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

.pd-banner-wrapper{
	position: relative;
	background: var(--t-color-1);
}

.pd-banner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	padding:90px 0 90px 0
}

.pd-banner-info{
	width: 50%;
	display: flex;
	flex-direction: column;
}

.pd-info-wrapper{
	padding-bottom:60px
}

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

.pd-info-left-wrapper{
	width: 50%;
	display: flex;
	padding-top:0;
	padding-right:30px;
}

.pd-info-left{
	width: 100%;
	padding:30px 0 0 0;
}

.pd-info-image{
	width: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	flex-shrink: 0;
	margin-top:-210px
}

.pd-info-image img{
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}

.pd-boxes-wrapper{
	margin-bottom:60px
}

.pd-boxes{
	width: 100%;
	display: flex;
	justify-content: space-between;
	border:1px solid #e2e2e2;
	padding:15px 0
}

.pd-box-wrapper{
	width: 20%;
	display: flex;
	flex:auto;
	padding:0 15px;
	border-right:1px solid #e2e2e2
}

.pd-box-wrapper:last-child{
	border:none
}

.pd-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:30px 0
}

.pd-box-title{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom:15px;
	font-size:14px;
	color:#7e7a7a
}

.pd-box-value{
	width: 100%;
	display: flex;
	justify-content: center;
	font-size:24px;
	font-weight: 700;
	color:var(--t-color-1)
}

.pd-summary-wrapper{
	margin-bottom:60px;
	color:var(--c-light-font-color)
}

.pd-gallery-wrapper{
	margin-bottom:60px
}

.pd-gallery-container{
	position: relative;
}

.pd-gallery{
	width: 100%;
	display: flex;
	overflow: hidden;
}

.pd-image{
	width: 25%;
	height: 300px;
	display: flex;
	overflow: hidden;
}

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

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

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

.pd-gallery-nav-button.swiper-button-disabled{
	opacity: 0;
	visibility: hidden;
}

.pd-gallery-nav-button:hover{
	color: var(--t-color-3);
}


/*----------
SUGGESTIONS
-----------*/

.suggestions-wrapper{
	margin:90px 0
}

.suggestions-header-wrapper{
	margin-bottom:30px;
}

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

.suggestions-title{
	color: var(--t-color-1);
	font-family: var(--font-2);
}

.suggestions-nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:0 2px
}

.suggestion-button{
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--t-color-1);
	color:#fff;
	font-size:18px;
	border:none;
	cursor: pointer;
}

.suggestions-items-container{
	align-items: stretch;
	overflow: hidden;
}

.suggests{
	width: 100%;
	display: flex;
	overflow: hidden;
}

.suggestions-items{
	width: 100%;
	display: block;
	position: relative;
}

.suggestions-wrapper .item-1-wrapper{
	padding:0
}

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

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

.arama-results-container{
	margin:30px 0 60px 0
}

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

.arama-item{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding:15px;
	background: #f9f9f9;
	border-radius: 8px;
}

.arama-item-header{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:8px 0
}

.arama-item-modul{
	color:var(--t-color-2);
	font-size:12px
}

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

.arama-item-summary{
	width: 100%;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top:15px
}


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

.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 rgba(0,0,0,.05);
}

.rMenu ul li a{
	flex:1;
	display:flex;
	align-items:center;
	padding: 13px 0;
	text-align:left;
	font-size:20px;
	color:var(--t-color-1);
}

.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 rgba(250,211,189,.45);
}

.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(--t-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-2);
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

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

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

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

#closeMenu {
	font-size:30px;
	display: inline-block;
	color:var(--t-color-1);
	cursor:pointer;
	z-index:5000
}

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

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

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

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

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

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

.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;
    font-size:14px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 700;
    background:var(--c-color-2);
    color:#fff;
    padding:0 20px;
    height: 52px;
    transition: all .3s;
	border-radius: 30px;
	gap:0 10px
}

.f-link i{
    display: inline-block;
    color:#fff;
    font-size:16px;
    transition: all .3s;
}

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

.f-link:hover i{
    color:#fff;
    transform: rotate(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width:1610px) {	

	.cookies-box{
		padding:15px;
	}

}

@media (max-width:1470px) {

	.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) {
	
	.all-header-wrapper{
		padding:0 15px
	}

	.menu{
		gap:0 30px
	}

	.header-langs{
		margin-left:15px
	}

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

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

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

	.pro-top-wrapper{
		margin-top:0
	}

	.pro-top-container{
		padding:0
	}

}

@media (max-width:1280px){

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

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

	.banner-wrapper{
		height: auto;
	}

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

	.products{
		flex-direction: column;
	}

	.select-trigger{
		display: block;
	}

	.hidden-1280{
		display: none;
	}

	.products-left{
		display: none;
	}

	.products-right{
		width: 100%;
		flex:auto
	}

}

@media (max-width:1024px){

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

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

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

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

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

	.project-wrapper{
		width: 50%;
	}

	.project-detail{
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

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

	.project-detail-content-wrapper{
		width: 100%;
		padding:30px 15px
	}

	.product-stage{
		flex-wrap: wrap;
	}
	
	.product-slides{
		width: 100%;
	}

	.product-info-wrapper{
		width: 100%;
		margin-top:30px
	}

	.product-info{
		padding: 0;
		flex-grow: 1;
	}

	.item-1{
		height: 400px;
	}

	.pd-banner{
		padding:30px 0 90px 0
	}

	.banner-title{
		line-height: 1.25;
	}

	.pd-info{
		flex-direction: column;
		flex-direction: column-reverse;
	}

	.pd-info-image{
		width: 100%;
		justify-content: center;
		margin-top:-60px
	}

	.pd-info-left-wrapper{
		width: 100%;
	}

	.pd-box-title{
		font-size:12px
	}

	.pd-box-value{
		font-size:18px
	}

}

@media (max-width:768px){

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

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

	.hidden-768{
		display: none;
	}

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

	.project-wrapper{
		margin-bottom:30px
	}

	.project{
		flex-direction: column;
	}

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

	.project-content-wrapper{
		width: 100%;
		padding:30px
	}

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

	.banner-seo-box{
		width: 100%;
	}

	.pd-info-wrapper{
		padding-bottom:30px
	}

	.pd-boxes-wrapper{
		margin-bottom:30px
	}

	.pd-boxes{
		flex-wrap: wrap;
		border:none
	}

	.pd-box-wrapper{
		width: 33.33%;
		flex:auto;
		border:none;
		margin-bottom:15px
	}

	.pd-box{
		border:1px solid #ddd
	}

	.pd-gallery-nav{
		padding:0 30px
	}

	.pd-gallery-nav-button{
		width: 30px;
		height: 30px;
		font-size:16px
	}

}

@media (max-width:600px){ 

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

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

	.project-wrapper{
		width: 100%;
	}

	.gallery-thumbs{
		display: none;
	}

	.gallery-main{
		width: 100%;
		height: 300px;
	}

	.center-item{
		height: 100%;
	}

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

	.pd-box-wrapper{
		width: 50%;
		padding:0 5px
	}

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

@media (max-width:480px){ 

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

	.pd-box-wrapper{
		width: 100%;
		padding:0
	}

	
    
}

@media (max-width:360px) {

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


}