@font-face {
    font-family: 'CloverGrotesk';
    src: url('../webfonts/CloverGrotesk-Regular.woff2') format('woff2'); /* Fayl adını tam olaraq proyektindəkini yaz */
    font-weight: 400;
    font-style: normal;
}

/* - Header */
.header {
	padding: 50px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.header.fixed {
	padding-top: 30px;
	padding-bottom: 30px;
	top: 0;
	background: #1d1d1d;
}

.header:after {
	content: '';
	position: relative;
	display: block;
	clear: both;
}

.header .head-top {
	position: relative;
}

.header .menu-btn {
	position: relative;
	margin: 0 auto;
	width: 30px;
	height: 20px;
}

.header .menu-btn:before, .header .menu-btn:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFF;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.header .menu-btn:after {
	top: auto;
	bottom: 0;
}

.header .menu-btn span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFF;
	margin-top: -1px;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}

.header .logo {
	position: absolute;
	overflow: hidden;
	top: 50%;
	width: 150px;
	font-size: 16px;
	line-height: 2.5;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	white-space: nowrap;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.header .logo img {
	max-width: 100%;
	width: auto;
	height: auto;
	display: block;
}

.header .logo a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	display: block;
}

.header .logo strong {
	color: #FFF;
}

.header .top-menu {
	text-align: right;
}

.header .top-menu .menu-top-menu-container {
	display: inline-block;
}

.header .top-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header .top-menu ul li {
	margin-left: 40px;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.header .top-menu ul li a {
	position: relative;
	overflow: hidden;
	display: block;
	font-size: 1em;
	line-height: 2.5;
	color: #053d3d;
	font-weight: 600;
	opacity: 1.0;
	text-decoration: none;
	transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-moz-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-webkit-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-o-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}



.header .top-menu ul li:hover > a, .header .top-menu ul li.current-menu-item > a {
	opacity: 1;
}

.header .top-menu ul li.menu-item-has-children > a .mask-lnk:after {
	content: "\f078";
	margin-left: 5px;
	position: relative;
	top: 0;
	display: inline-block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 0.8em;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.background-enabled .header .top-menu ul li.current-menu-item > a {
	opacity: 1;
}


.hover-masks .mask-lnk,
.hover-masks-logo .mask-lnk {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transition: opacity 0.7s cubic-bezier(0.165, 0.85, 0.45, 1), color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1), transform 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	transition: opacity 0.7s cubic-bezier(0.165, 0.85, 0.45, 1), color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1), transform 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}


.hover-masks .mask-lnk.mask-lnk-hover,
.hover-masks-logo .mask-lnk.mask-lnk-hover {
	position: absolute;
	opacity: 0;
	transform: translateY(32px);
	-webkit-transform: translateY(32px);
	-moz-transform: translateY(32px);
	-o-transform: translateY(32px);
}


.hover-masks a:hover .mask-lnk,
.hover-masks-logo a:hover .mask-lnk {
	opacity: 1;
	transform: translateY(-32px);
	-webkit-transform: translateY(-32px);
	-moz-transform: translateY(-32px);
	-o-transform: translateY(-32px);
}


.hover-masks a:hover .mask-lnk.mask-lnk-hover,
.hover-masks-logo a:hover .mask-lnk.mask-lnk-hover {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
}


/* header active */
.header.active {
	padding-top: 4vw;
	top: 0;
	overflow: auto;
	height: 100%;
	background: #101010;
	-webkit-overflow-scrolling: touch;
}

.header.active .menu-btn:before {
	opacity: 0;
}

.header.active .menu-btn:after {
	bottom: 9px !important;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.header.active .menu-btn span {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.header.active .top-menu {
	height: auto;
	opacity: 1;
	visibility: visible;
}

.header.active .top-menu ul li .sub-menu,
.header.active .top-menu ul li .children {
	display: block;
}

.header.active .top-menu ul > li > ul li a {
	line-height: 20px;
}


/* header tablet */
@media (max-width: 1199px) {
	.header .logo {
		position: relative;
		top: 0;
		transform: translateY(0%);
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-o-transform: translateY(0%);
	}


	.header .menu-btn {
		display: block;
		transform: translateY(50%);
		-webkit-transform: translateY(50%);
		-moz-transform: translateY(50%);
		-o-transform: translateY(50%);
	}


	.header .top-menu-nav {
		display: block;
	}


	.header .top-menu {
		position: relative;
		top: 0;
		left: 0;
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
		float: none;
		width: auto;
		height: 0px;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
		-moz-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
		-webkit-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
		-o-transition: opacity 0.35s cubic-bezier(0.165, 0.85, 0.45, 1);
	}


	.header.active .top-menu {
		margin-top: 20px;
	}


	.header .top-menu .menu-top-menu-container {
		display: block;
	}


	.header .top-menu ul li {
		margin-left: 0;
		display: block;
	}


	.header .top-menu-nav .sub-menu, .header .top-menu-nav .children {
		position: relative;
		left: 0;
		top: 0;
		margin: 20px 0;
		width: auto;
		text-align: center;
		pointer-events: none;
		display: block;
		opacity: 0;
		visibility: hidden;
	}


	.header.active .top-menu-nav .sub-menu, .header.active .top-menu-nav .children {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}


	.header .top-menu-nav .sub-menu:before, .header .top-menu-nav .children:before {
		margin-left: -6px;
		left: 50%;
	}


	.header .top-menu-nav .sub-menu li .sub-menu, .header .top-menu-nav .children li .children {
		left: 0;
		top: 0;
		margin: 0 -20px;
		background: #f4f4f4;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		-khtml-box-shadow: none;
	}


	.header .top-menu-nav .sub-menu li .sub-menu:before, .header .top-menu-nav .children li .children:before {
		left: 50%;
		top: -12px;
		border: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #FFF;
	}


	.header .top-menu ul li:last-child .sub-menu:before, .header .top-menu-nav .children:before {
		right: 50%;
		left: auto;
		margin-left: 0;
		margin-right: -6px;
	}


	.header .menu-btn {
		display: block;
		float: right;
	}

}

/* header mobile */
@media (max-width: 720px) {
	.header {
		margin: 0;
		padding: 0 30px;
		top: 30px;
	}


	.header .logo {
		padding: 0;
		max-width: 240px;
	}


	.header.active .top-menu {
		padding-bottom: 30px;
	}


	.wp-block-media-text {
		display: block;
	}


	.wp-block-media-text .wp-block-media-text__content {
		padding: 0;
	}

}

/* - Section */
.section {
	position: relative;
	padding-left: 20%;
	padding-right: 20%;
	padding-top: 70px;
	padding-bottom: 70px;
	z-index: 12;
}

.section:first-child {
	padding-top: 150px;
}

.section .content {
	position: relative;
}

.section .content .portfolio-cols .title {
	margin-left: 0;
}

.section .content-box {
	margin-right: -1px;
	padding: 35px;
	font-size: 16px;
	background: transparent;
	border: 1px solid #053d3d;
}

.section .content-box .single-post-text > *:first-child {
	margin-top: 0;
}

.section .title {
	position: relative;
	margin: 0 0 35px 35px;
}

.section .title .title_inner {
	display: inline-block;
	vertical-align: top;
	position: relative;
	font-size: 24px;
	color: #181818;
	font-weight: 600;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}


/* section tablet */
@media (max-width: 1199px) {
	.section {
		padding-left: 50px;
		padding-right: 50px;
	}

}

/* section mobile */
@media (max-width: 720px) {
	.section {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 30px;
		padding-right: 30px;
	}


	.section .title {
		margin: 0 0 30px 0;
	}

}

/* - Started */
.section.started {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	height: 100vh;
	z-index: 11;
}

.section.started.personal {
	z-index: 12;
}

.section.started .started-content .logo {
	position: relative;
	display: inline-block;
	top: -100px;
	left: -300px;
	width: 740px;
	height: 600px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-clip-path: polygon(31% 0, 100% 25%, 61% 100%, 0 93%);
	clip-path: polygon(31% 0, 100% 25%, 61% 100%, 0 93%);
}

.section.started .started-content .h-title {
    margin: 0 !important;
    position: relative !important; 
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important; 
    padding-top: 50px !important;  
    padding-bottom: 20px !important; 
    font-size: 40px !important;
    color: #181818 !important;
}

.section.started .started-content .h-title strong {
	color: #053d3d;
}

.section.started .started-content .h-subtitles {
	font-size: 38px;
	height: 38px;
	opacity: 0;
}

.section.started .started-content .h-subtitles.ready {
	opacity: 1;
}

.section.started .started-content .h-subtitle,
.section.started .started-content .typed-subtitle,
.section.started .started-content .typed-bread {
	margin-top: -45px;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: block;
	font-size: 90px;
	line-height: 90px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
}

.section.started .started-content .h-subtitle strong,
.section.started .started-content .typed-subtitle strong {
	color: #053d3d;
}

.section.started.layout-creative {
	margin: 0 auto;
	margin-bottom: 0;
	padding-top: 20%;
	padding-left: 20%;
	padding-right: 20%;
	padding-bottom: 70px;
	width: auto;
	height: auto !important;
}

.section.started.layout-creative .started-content {
	padding-left: 0;
	padding-right: 0;
	display: block;
	text-align: left;
}

.section.started.layout-creative .started-content .h-title {
	margin: 0 0 5px 33px;
	padding-right: 0;
	position: relative;
	left: 0;
	top: 0;
	bottom: auto;
	max-width: 800px;
	font-size: 44px;
	font-family: "CloverGrotesk";
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0em;
}

.section.started.layout-creative .started-content .h-subtitle,
.section.started.layout-creative .started-content .typed-subtitle,
.section.started.layout-creative .started-content .typed-bread,
.section.started.layout-creative .started-content .typed-cursor {
	margin-top: 0;
	margin-left: 35px;
	position: relative;
	font-size: 18px;
	line-height: 40px;
	text-align: left;
	color: #999;
}

.section.started.layout-creative .started-content .h-subtitle,
.section.started.layout-creative .started-content .typed-subtitle {
	top: 0;
}

.section.started.layout-creative .started-content .h-subtitle p {
	font-size: 18px;
	line-height: 40px;
}

.section.started.personal {
	text-align: center;
}

.section.started.personal .started-content .h-title {
	margin-left: -85px;
	margin-top: 85px;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	width: 560px;
	text-align: left;
}

.section.started.personal .started-content .typed-subtitle,
.section.started.personal .started-content .typed-bread {
	margin-top: 0;
	top: auto;
	bottom: 50px;
	left: 20%;
	line-height: 74px;
	text-align: left;
}

.section.started.section-title .started-content .h-title {
	margin-top: 0;
	padding-right: 0;
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	max-width: 100%;
	font-size: 7vw;
	line-height: 7vw;
	font-weight: 600;
	text-align: center;
}

.section.started.section-title .started-content .h-subtitles {
	height: auto;
}

.section.started.section-title .started-content .h-subtitle,
.section.started.section-title .started-content .typed-subtitle,
.section.started.section-title .started-content .typed-bread {
	margin: 0;
	padding-left: 35px;
	position: absolute;
	left: 20%;
	top: auto;
	bottom: 50px;
	width: auto;
	max-width: 560px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	text-align: left;
}

.section.started.section-title .started-content .h-subtitle p {
	margin: 0;
	font-size: 20px;
	line-height: 1.5;
}

.section.started .mouse_btn {
	font-size: 24px;
	color: #69bcbc;
	text-align: center;
	position: absolute;
	width: 20px;
	height: 40px;
	left: 50%;
	bottom: 7%;
	margin-left: -10px;
	z-index: 2;
}

.section.started .mouse_btn .icon {
	position: relative;
	top: 0px;
	animation: mouse-anim 1s ease-out 0s infinite;
}

.section.started .swiper-nav {
	position: absolute;
	left: calc(20% + 35px);
	bottom: 120px;
	width: 66px;
	height: 24px;
	z-index: 3;
}

.section.started .swiper-nav .swiper-button-prev,
.section.started .swiper-nav .swiper-button-next {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: none;
	font-size: 22px;
	color: #FFF;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}


.section.started + .section,
.section.started.layout-creative + .section {
	margin-top: 70px;
}


.section.started.section-title .started-content .typed-bread,
.section.started.layout-creative .started-content .typed-bread,
.background-enabled .section.started.section-title .started-content .typed-bread,
.background-enabled .section.started.layout-creative .started-content .typed-bread {
	top: auto;
	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 400;
	opacity: 1;
}


.section.started.section-title .started-content .typed-bread a,
.section.started.layout-creative .started-content .typed-bread a {
	color: #FFF;
	text-decoration: none;
	font-weight: 500;
	opacity: 1;
}


.section.started .started-content .typed-cursor,
.section.started.layout-creative .mouse_btn,
.section.started.layout-post-creative .mouse_btn {
	display: none !important;
}


.section.started .swiper-button-prev, .section.started .swiper-container-rtl .swiper-button-next {
	left: 0;
	right: auto;
}


.section.started .swiper-button-next, .section.started .swiper-container-rtl .swiper-button-prev {
	left: auto;
	right: 0;
}


.started-carousel {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.started-carousel .swiper-container,
.started-carousel .swiper-wrapper {
	height: 100%;
}

.started-carousel .swiper-slide {
	opacity: 1 !important;
}

.started-carousel .swiper-slide.first {
	z-index: 2;
}

.started-carousel .main-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: polygon(0 0, 20% 0, 20% 0, 40% 0, 40% 0, 60% 0, 60% 0, 80% 0, 80% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 80% 100%, 80% 100%, 60% 100%, 60% 100%, 40% 100%, 40% 100%, 20% 100%, 20% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 20% 0, 20% 0, 40% 0, 40% 0, 60% 0, 60% 0, 80% 0, 80% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 80% 100%, 80% 100%, 60% 100%, 60% 100%, 40% 100%, 40% 100%, 20% 100%, 20% 100%, 0 100%);
	transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-moz-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-webkit-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-o-transition: 1s all cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.started-carousel .swiper-slide.swiper-clip-active .main-img {
	clip-path: polygon(0 0, 20% 0, 20% 100%, 40% 100%, 40% 0, 60% 0, 60% 100%, 80% 100%, 80% 0, 100% 0, 100% 0, 100% 100%, 100% 0%, 80% 0%, 80% 100%, 60% 100%, 60% 0%, 40% 0%, 40% 100%, 20% 100%, 20% 0%, 0 0%);
	-webkit-clip-path: polygon(0 0, 20% 0, 20% 100%, 40% 100%, 40% 0, 60% 0, 60% 100%, 80% 100%, 80% 0, 100% 0, 100% 0, 100% 100%, 100% 0%, 80% 0%, 80% 100%, 60% 100%, 60% 0%, 40% 0%, 40% 100%, 20% 100%, 20% 0%, 0 0%);
}


.section.started .mouse_btn {
	left: auto;
	right: calc(20% + 35px);
	margin-left: 0;
}

/* section started desktop */
@media (min-width: 1200px) {
	.section.started .started-content .logo {
		top: -11.5vh;
		left: -18.5vw;
		width: 56vw;
		height: 80vh;
	}
	.section.started.personal .started-content .h-title {
		margin-left: 0;
		margin-top: 0;
		left: 50vw;
		top: 60vh;
		bottom: auto;
	}
}

/* section started tablet */
@media (max-width: 1199px) {
	.section.started.layout-creative, .section.started.layout-post-creative {
		padding-top: 35vw;
		padding-left: 50px;
		padding-right: 50px;
	}


	.section.started .started-content .h-title {
		left: 50px;
	}


	.section.started .started-content .h-title br {
		display: none;
	}


	.section.started .started-content .h-subtitle,
	.section.started .started-content .typed-subtitle,
	.section.started .started-content .typed-bread {
		margin-top: -35px;
		font-size: 60px;
		line-height: 70px;
	}


	.section.started.section-title .started-content .h-subtitle,
	.section.started.section-title .started-content .typed-subtitle,
	.section.started.section-title .started-content .typed-bread {
		padding-left: 0;
		left: 50px;
	}


	.section.started.personal .started-content .typed-subtitle,
	.section.started.personal .started-content .typed-bread {
		left: 50px;
		width: auto;
	}


	.section.started .swiper-nav {
		left: 50px;
	}


	.section.started .started-content .logo {
		top: -50px;
		left: -150px;
		width: 640px;
		height: 560px;
	}


	.section.started.personal .started-content .h-title {
		margin-left: 15px;
		margin-top: 115px;
		width: 320px;
	}


	.section.started.layout-creative .started-content .h-title,
	.section.started.layout-creative .started-content .h-subtitle,
	.section.started.layout-creative .started-content .typed-subtitle,
	.section.started.layout-creative .started-content .typed-bread,
	.section.started.layout-creative .started-content .typed-cursor {
		margin-left: 0;
	}


	.section.started .mouse_btn {
		left: auto;
		right: 120px;
		margin-left: 0;
	}

}

/* section started mobile */
@media (max-width: 720px) {
	.section.started {
		padding: 0 30px;
	}


	.section.started.layout-creative,
	.section.started.layout-post-creative {
		padding-top: 50vw;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
	}


	.section.started .started-content .h-title {
		left: 0;
		bottom: 30px;
		padding-right: 50px;
		font-size: 17px;
	}


	.section.started .started-content .h-subtitle,
	.section.started .started-content .typed-subtitle,
	.section.started .started-content .typed-bread {
		margin-top: -20px;
		font-size: 30px;
		line-height: 40px;
	}


	.section.started.section-title .started-content .h-title {
		font-size: 10vw;
		line-height: 10vw;
	}


	.section.started.section-title .started-content .typed-bread,
	.section.started.layout-creative .started-content .typed-bread,
	.background-enabled .section.started.section-title .started-content .typed-bread,
	.background-enabled .section.started.layout-creative .started-content .typed-bread {
		font-size: 14px;
	}


	.section.started.layout-creative .started-content .h-title,
	.section.started.layout-post-creative .started-content .h-title {
		font-size: 23px;
	}


	.section.started .started-content .logo {
		position: absolute;
		top: 0;
		left: -30px;
		width: 110vw;
		height: 62vh;
		-webkit-clip-path: polygon(25% 0, 100% 25%, 80% 100%, 0 85%);
		clip-path: polygon(25% 0, 100% 25%, 80% 100%, 0 85%);
	}


	.section.started.personal .started-content .h-title {
		left: 0;
		top: 64vh;
		bottom: auto;
		width: 100%;
		margin-top: 0;
		margin-left: 0;
	}


	.section.started.personal .started-content .typed-subtitle,
	.section.started.personal .started-content .typed-bread {
		left: 0;
		bottom: 30px;
		padding-right: 50px;
		font-size: 20px;
		line-height: 30px;
	}


	.section.started .swiper-nav {
		left: 30px;
	}


	.section.started .mouse_btn {
		right: 50%;
		margin-left: 0;
		margin-right: -10px;
		bottom: 150px;
	}


	.section.started.section-title .started-content .h-subtitle,
	.section.started.section-title .started-content .typed-subtitle,
	.section.started.section-title .started-content .typed-bread {
		left: 0;
	}


	.section.started + .section, .section.started.layout-creative + .section {
		margin-top: 0;
	}

}

/* section started mobile */
@media (max-width: 340px) {
	.section.started .swiper-nav {
		bottom: 145px;
	}

}

/* section started mobile landscape */
@media screen and (orientation: landscape) and (min-device-width: 319px) and (max-device-width: 1199px) {
	.section.started .started-content .logo {
		position: absolute;
		left: -30px;
		right: -30px;
		top: 0;
		width: auto;
		height: 100%;
		-webkit-clip-path: none;
		clip-path: none;
	}


	.section.started.personal .started-content .h-title {
		top: auto;
		left: 50px;
		bottom: 50px;
		width: auto;
		margin-left: 0;
		margin-top: 0;
		margin-right: 50px;
	}


	.section.started.personal .started-content .typed-subtitle,
	.section.started.personal .started-content .typed-bread {
		display: none;
	}


	.section.started .swiper-nav {
		bottom: 120px;
	}

}

@media screen and (orientation: landscape) and (min-device-width: 319px) and (max-device-width: 670px) {
	.section.started.personal .started-content .h-title {
		left: 0;
		bottom: 30px;
		margin-right: 30px;
	}


	.section.started .swiper-nav {
		bottom: 100px;
	}

}

/* - About */
.section.about .image {
	float: left;
	width: 160px;
	font-size: 0;
}

.section.about .image img {
	width: 100%;
	height: auto;
}

.section.about .desc {
    /* 1. Məcburən mərkəzə yığırıq */
    width: 600px !important;  
    max-width: 80% !important; 
    
    /* 2. Kənarlardan avtomatik boşluq buraxırıq */
    margin: 0 auto !important; 
    
    /* 3. Digər dartıcı faktorları deaktiv edirik */
    float: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
}

.section.about .desc p {
	word-break: break-word;
}

.section.about .desc p:first-child {
	margin-top: 0;
}


.info-list {
	margin-bottom: 20px;
}

.info-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.info-list ul li {
	display: inline-block;
	vertical-align: top;
	width: 48%;
	margin: 0 0 6px 0;
}

.info-list ul li strong {
	font-weight: 400;
	color: #69bcbc;
}


/* section about fullhd */
@media (min-width: 1700px) {
	.info-list ul li {
		width: 32%;
	}

}

/* section about tablet */
@media (max-width: 1199px) {
	.section.about .image {
		width: 120px;
		margin-right: 0;
		margin-bottom: 25px;
	}


	.section.about .desc {
		margin-left: 145px;
	}

}

/* section about mobile */
@media (max-width: 720px) {
	.section.about .image {
		margin: 0 auto 20px auto;
		float: none;
		width: 100px;
		text-align: center;
	}


	.section.about .desc {
		margin-left: 0;
		text-align: center;
	}


	.info-list ul li {
		width: 100%;
	}

}

/* - Resume */
.section .col:nth-child(odd) {
	padding-right: 35px;
}

.section .col:nth-child(even) {
	padding-left: 35px;
}

.section .col:nth-child(even) .content-box {
	margin-right: -1px;
}


.resume-items .resume-item {
	position: relative;
	margin: 70px 0 0 0;
}

.resume-items .resume-item:first-child {
	margin: 0;
}

.resume-items .resume-item .date {
	position: relative;
	margin: 0 0 5px 0;
	display: inline-block;
	font-size: 12px;
	color: #999;
}

.resume-items .resume-item .name {
	margin: 0 0 15px 0;
	color: #053d3d;
	font-weight: 500;
}

.resume-items .resume-item.active .date {
	color: #69bcbc;
	font-weight: 600;
}


/* section resume tablet */
@media (max-width: 1199px) {
	.section .col:nth-child(odd) {
		padding-right: 20px;
	}


	.section .col:nth-child(even) {
		padding-left: 20px;
	}


	.resume-items .resume-item {
		margin: 40px 0 0 0;
	}

}

/* section resume mobile */
@media (max-width: 720px) {
	.section .col:nth-child(odd) {
		padding-right: 0;
		margin-bottom: 40px;
	}


	.section .col:nth-child(even) {
		padding-left: 0;
	}

}



/* - Service */
.service-items {
	margin-top: -70px;
	font-size: 0;
	text-align: center;
}

.service-items .service-col {
	margin-top: 70px;
	display: inline-block;
	vertical-align: top;
	width: 50%;
}

.service-items .service-col:nth-child(odd) .content-box {
	margin-right: 35px;
}

.service-items .service-col:nth-child(even) .content-box {
	margin-left: 35px;
}

.service-items .service-item .icon {
	font-size: 36px;
	line-height: normal;
	color: #053d3d;
}

.service-items .service-item .name {
	margin: 15px 0;
	color: #053d3d;
	font-weight: 500;
}


/* section service tablet */
@media (max-width: 1199px) {
	.service-items {
		margin-top: -40px;
	}


	.service-items .service-col {
		margin-top: 40px;
	}


	.service-items .service-col:nth-child(odd) .content-box {
		margin-right: 20px;
	}


	.service-items .service-col:nth-child(even) .content-box {
		margin-left: 20px;
	}

}

/* section service mobile */
@media (max-width: 720px) {
	.service-items .service-col {
		width: 100%;
	}


	.service-items .service-col:nth-child(odd) .content-box {
		margin-right: 0;
	}


	.service-items .service-col:nth-child(even) .content-box {
		margin-left: 0;
	}

}

/* - Portfolio */
.section.works {
	padding-bottom: 0;
}

.section.works .filter-menu {
	margin-bottom: 70px;
}

.section.works .filters {
	margin-top: -10px;
}

.section.works .filters input {
	display: none;
}

.section.works .filters .btn-group {
	display: inline-block;
	vertical-align: top;
}

.section.works .filters label {
	display: inline-block;
	vertical-align: top;
	margin-right: 25px;
	margin-top: 10px;
	font-size: 16px;
	color: #053d3d;
	font-weight: 400;
	position: relative;
	padding-bottom: 0;
	transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-moz-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-webkit-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-o-transition: color 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.section.works .filters label.glitch-effect {
	color: #053d3d;
}


.box-items {
	position: relative;
	margin-left: -50px;
	margin-right: -50px;
	font-size: 0px;
}

.box-items .box-item {
	width: 50%;
	margin: 0;
	padding: 0 50px 100px 50px;
	position: relative;
	text-align: center;
	font-size: 13px;
	float: left;
}

.box-items .box-item .image {
	position: relative;
	overflow: hidden;
}

.box-items .box-item .image a {
	display: block;
	font-size: 0;
}

.box-items .box-item .image a img {
	width: 100%;
	height: auto;
	position: relative;
	top: 0;
}

.box-items .box-item .image .info {
	text-align: center;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

.box-items .box-item .image .info .icon {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #101010;
	font-size: 18px;
	display: inline-block;
	font-weight: normal;
	opacity: 0;
	transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.box-items .box-item .image .desc {
	padding: 10px 20px;
	position: relative;
	display: block;
	opacity: 0;
	transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0s;
}

.box-items .box-item .image .desc .name {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: #101010;
	word-wrap: break-word;
}

.box-items .box-item .image:hover .icon {
	opacity: 0.6;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
}

.box-items .box-item .image:hover .desc {
	top: 0;
	opacity: 1;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1) 0.35s;
}

.box-items .box-item .category {
	margin: 0;
	display: block;
	font-size: 14px;
	color: #101010;
	opacity: 0.6;
}


.portfolio-cols {
	display: flex;
}


.description-col {
	width: 78%;
}


.details-col {
	padding-left: 50px;
	width: 24%;
}


.single-post-text .details-list li {
	margin-bottom: 20px;
	padding-left: 0;
	font-size: 13px;
	text-transform: uppercase;
}

.single-post-text .details-list li:before {
	display: none;
}

.single-post-text .details-list li strong {
	margin-bottom: 5px;
	display: block;
	color: #053d3d;
	font-weight: 500;
}


/* section portfolio tablet */
@media (max-width: 1199px) {
	.section.works .filter-menu {
		margin-bottom: 40px;
	}


	.section .content-box {
		padding: 25px;
	}


	.box-items {
		margin-left: -20px;
		margin-right: -20px;
	}


	.box-items .box-item {
		width: 50%;
		padding: 0 20px 40px 20px;
	}


	.portfolio-cols {
		display: block;
	}


	.description-col {
		width: 100%;
	}


	.details-col {
		width: 100%;
	}


	.details-col {
		padding: 40px 0 0 0;
		width: 100%;
	}


	.section.works .filters label {
		margin-right: 15px;
	}

}

/* section portfolio mobile */
@media (max-width: 720px) {
	.section.works .filters label {
		font-size: 14px;
	}


	.box-items {
		margin-left: 0;
		margin-right: 0;
	}


	.box-items .box-item {
		padding-left: 0;
		padding-right: 0;
		float: none;
		width: 100%;
	}


	.box-items .box-item:last-child {
		padding-bottom: 0;
	}

}

/* - Contacts */
.section.contacts .alert-success {
	display: none;
}

.section.contacts .alert-success p {
	margin: 0;
	font-size: 16px;
	color: #053d3d;
}


.map {
	position: absolute;
	left: 0;
	top: -5vh;
	width: 100vw;
	height: 110vh;
}




/* - Testimonials */
.reviews-carousel {
	position: relative;
	width: calc(100% + 1px);
}

.reviews-carousel .content-box {
	margin-right: 0;
}

.reviews-carousel .swiper-nav {
	position: absolute;
	left: auto;
	right: 35px;
	top: -58px;
	height: 24px;
	z-index: 3;
}

.reviews-carousel .swiper-nav .swiper-button-prev,
.reviews-carousel .swiper-nav .swiper-button-next {
	margin-left: 15px;
	margin-top: 0;
	position: relative;
	top: 0;
	left: 0;
	right: auto;
	width: 20px;
	height: 20px;
	background: none;
	font-size: 22px;
	color: #FFF;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}


.reviews-item {
	position: relative;
}

.reviews-item .image {
	float: left;
	margin-bottom: 15px;
	margin-right: 15px;
	width: 70px;
	font-size: 0;
}

.reviews-item .image img {
	width: 100%;
	height: auto;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
}

.reviews-item .info {
	margin-top: 10px;
	margin-left: 85px;
}

.reviews-item .name {
	margin: 0 0 5px 0;
	color: #053d3d;
	font-weight: 500;
}

.reviews-item .company {
	font-size: 14px;
	color: #999;
}

.reviews-item .text {
	clear: both;
}


/* section testimonials tablet */
/* section testimonials mobile */
@media (max-width: 720px) {
	.reviews-carousel .swiper-nav {
		right: 0;
	}

}

/* - Blog */
.started-content .date {
	margin: 0 0 10px;
	display: inline-block;
	padding: 0 5px;
	height: 20px;
	line-height: 18px;
	font-weight: 500;
	font-size: 11px;
	color: #69bcbc;
	border: 1px solid #69bcbc;
}


.single-post-text, .comment-text {
	word-wrap: break-word;
}


.single-post-text:after {
	content: '';
	position: relative;
	clear: both;
	display: block;
}


.single-post-text .content-box *, .comment-text .content-box * {
	margin-top: 0;
}


.single-post-text img, .comment-text img {
	max-width: 100%;
	height: auto;
}


.single-post-text p:last-child {
	margin-bottom: 0;
}


.single-post-text p a, .comment-text p a {
	color: #69bcbc;
}


.single-post-text p a:hover, .comment-text p a:hover {
	text-decoration: underline;
}


blockquote {
	margin: 25px 0;
	padding: 0 0 0 20px;
	font-size: 14px;
	line-height: 24px;
	color: #999;
	font-style: italic;
	font-weight: 300;
	border-left: 2px solid #69bcbc;
}


blockquote code {
	padding: 2px;
	display: inline;
}


iframe, object {
	max-width: 100%;
}


.single-post-text ul, .comment-text ul {
	list-style: none;
}


.single-post-text ol, .comment-text ol {
	list-style-position: inside;
}


.single-post-text ul > li, .single-post-text ol > li, .comment-text ul > li, .comment-text ol > li {
	margin: 5px 0;
	padding: 0 0 0 18px;
	position: relative;
	font-weight: 400;
}


.single-post-text ol > li, .comment-text ol > li {
	margin: 5px 0;
	padding: 0;
	position: relative;
	font-size: 14px;
	font-weight: 400;
}


.single-post-text ul > li:before, .comment-text ul > li:before {
	margin: 0;
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 4px;
	background: #69bcbc;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
}


.wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
	padding: 0;
}


.wp-block-gallery .blocks-gallery-image:before, .wp-block-gallery .blocks-gallery-item:before {
	display: none;
}


.single-post-text figure, .comment-text figure {
	margin: 0 0 30px 0;
	max-width: 100%;
}


.single-post-text figure .wp-caption-text, .comment-text figure .wp-caption-text, .gallery-caption, .bypostauthor {
	margin-top: 10px;
	font-size: 12px;
	font-style: italic;
	color: #999;
}


.gallery {
	margin: 30px -10px;
}


.single-post-text .gallery {
	margin-bottom: 0;
}


.gallery .gallery-item {
	margin: 0;
	padding: 10px;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}


.gallery .gallery-item img {
	width: 100%;
	height: auto;
}


.gallery.gallery-columns-1 .gallery-item {
	width: 100%;
}


.gallery.gallery-columns-2 .gallery-item {
	width: 50%;
}


.gallery.gallery-columns-3 .gallery-item {
	width: 33.333%;
}


.gallery.gallery-columns-4 .gallery-item {
	width: 25%;
}


.gallery.gallery-columns-5 .gallery-item {
	width: 20%;
}


.gallery.gallery-columns-6 .gallery-item {
	width: 16.666%;
}


.gallery.gallery-columns-7 .gallery-item {
	width: 14.28%;
}


.gallery.gallery-columns-8 .gallery-item {
	width: 12.5%;
}


.gallery.gallery-columns-9 .gallery-item {
	width: 11.111%;
}


.post-comments {
	margin-top: 60px;
}


.post-comments .comments, .post-comments .children {
	margin: 0;
	padding: 0;
	list-style: none;
}


.post-comments .post-comment {
	padding: 20px 0;
	border-top: 1px solid #dddddd;
}


.post-comments .post-comment:first-child {
	padding-top: 0;
	border-top: none;
}


.post-comments .post-comment .image {
	float: left;
	width: 80px;
	height: 80px;
}


.post-comments .post-comment .image img {
	width: 100%;
	height: 100%;
}


.post-comments .post-comment .desc {
	margin-left: 100px;
	position: relative;
}


.post-comments .post-comment .desc .name {
	font-size: 13px;
	color: #141414;
	text-transform: uppercase;
	font-weight: 700;
	padding: 5px 0 0 0;
	margin: 0 0 10px 0;
}


.post-comments .post-comment .desc p {
	margin: 0;
}


.post-comments .form-comment .title {
	margin: 30px 0 15px 0;
}


.post-comment.pingback .image {
	display: none;
}


.post-comment.pingback .desc {
	margin-left: 0px;
}


.post-text-bottom {
	padding: 25px 0 10px 0;
}


.post-text-bottom .share-btn {
	position: relative;
	display: inline-block;
	top: 1px;
	margin-left: 7px;
	margin-right: 7px;
	font-size: 16px;
}


.post-text-bottom > span, .post-text-bottom > .social-share {
	margin-right: 30px;
	margin-bottom: 20px;
	display: inline-block;
	vertical-align: middle;
}


.post-text-bottom span.cat-links, .post-text-bottom .byline, .post-text-bottom .social-share {
	font-size: 12px;
	color: #999;
}


.post-text-bottom span.cat-links a {
	color: #69bcbc;
}


.post-text-bottom span.cat-links a:hover {
	text-decoration: underline;
}


.post-text-bottom .tags-links {
	display: block;
	line-height: 18px;
}


.post-text-bottom .tags-links a, .post-text-bottom .tags-links span {
	margin: 0 10px 10px 0;
	display: inline-block;
	padding: 0 5px;
	height: 20px;
	line-height: 18px;
	font-weight: 500;
	font-size: 11px;
	color: #69bcbc;
	border: 1px solid #69bcbc;
}


.post-comments ul.children {
	padding: 20px 20px 0 100px;
	border-top: none;
	background: #f6f6f6;
}


.post-comments ul.children ul.children {
	padding: 20px 0 0 40px;
	border-top: none;
	background: #f6f6f6;
}


.comment-info {
	padding: 10px 0 5px 0;
}


.comment-info span.comment-time {
	font-size: 11px;
	color: #999;
}


.comment-info span.comment-date {
	font-size: 11px;
	color: #999;
}


.comment-info span.comment-reply {
	position: absolute;
	top: 3px;
	right: 0;
}


.comment-respond {
	position: relative;
	margin-top: 40px;
}


.comment-respond .title_inner small {
	position: absolute;
	top: 0;
	left: 120%;
	display: block;
	white-space: nowrap;
	color: #999;
}


.comment-respond .title_inner small a {
	color: #999;
}


.section .pager, .page-links, .nav-links {
	clear: both;
	padding: 20px 0 60px 0;
	text-align: center;
}


.page-numbers {
	margin: 0 5px;
	display: inline-block;
	vertical-align: top;
}


.page-numbers.current {
	color: #999;
}


.page-links, .nav-links {
	color: #999;
}


.nav-links {
	padding: 0;
}


@media (max-width: 1160px) {
	.post-comments .post-comment .image {
		width: 60px;
		height: 60px;
	}


	.post-comments .post-comment .desc {
		margin-left: 80px;
	}


	.post-comments .post-comment.pingback .desc {
		margin-left: 0;
	}


	.post-comments ul.children {
		padding: 20px 20px 0 80px;
	}


	.post-comments ul.children ul.children {
		padding: 20px 0 0 20px;
	}


	.post-comments ul.children ul.children ul.children ul.children {
		padding: 20px 0 0 10px;
	}

}

@media (max-width: 840px) {
	.post-comments ul.children {
		padding: 20px 20px 0 20px;
	}


	.post-comments ul.children ul.children {
		padding: 20px 0 0 20px;
	}


	.post-comments ul.children ul.children ul.children {
		padding: 20px 0 0 20px;
	}


	.post-comments ul.children ul.children ul.children ul.children {
		padding: 20px 0 0 10px;
	}

}

@media (max-width: 480px) {
	.section .content .comment-respond .title.comment-reply-title {
		text-align: left;
	}


	.post-comments ul.children {
		padding: 15px 15px 15px 15px;
	}


	.post-comments ul.children ul.children {
		padding: 15px 0 0 10px;
	}


	.post-comments ul.children ul.children ul.children {
		padding: 15px 0 0 5px;
	}


	.post-comments ul.children ul.children ul.children ul.children {
		padding: 15px 0 0 5px;
	}


	.post-comments .post-comment .image {
		width: 40px;
		height: 40px;
	}


	.post-comments .post-comment .desc {
		margin-left: 55px;
	}


	.post-comments .post-comment.pingback .desc {
		margin-left: 0;
	}


	.gallery .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-1 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-2 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-3 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-4 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-5 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-6 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-7 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-8 .gallery-item {
		width: 100%;
	}


	.gallery.gallery-columns-9 .gallery-item {
		width: 100%;
	}


	th {
		border: 2px solid #FFF;
		padding: 5px;
	}


	td {
		border: 2px solid #FFF;
		padding: 5px;
	}

}

/* - Footer */
.footer {
	padding: 0;
	position: fixed;
	bottom: 50px;
	left: 50px;
	right: 50px;
	width: auto;
	height: 1px;
	z-index: 100;
}

.footer .copy {
	position: absolute;
	left: 0;
	bottom: 0;
}

.footer p,
.footer .copy {
	margin: 2px 0 0 0;
	font-size: 14px;
	line-height: 2;
	color: #181818;
}

.footer .soc-box {
	position: absolute;
	right: 0;
	bottom: 0;
	float: right;
	width: 24px;
}

.footer .soc a {
	display: block;
	margin-bottom: 20px;
	text-align: center;
	color: #181818;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.footer .soc a:last-child {
	margin-bottom: 0;
}

.footer .soc a .icon {
	font-size: 18px;
	color: #181818;
}

.footer .soc a:hover {
	color: #FFF;
	opacity: 1;
}

.footer .soc a:hover .icon {
	color: #FFF;
}


.follow-label {
	padding-right: 75px;
	position: absolute;
	bottom: 100%;
	right: 0;
	color: #181818;
	font-size: 14px;
	line-height: 24px;
	height: 24px;
	white-space: nowrap;
	transform-origin: 100% 0;
	text-align: right;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}

.follow-label:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 50px;
	height: 1px;
	background: #181818;
}


/* section footer tablet */
@media (max-width: 1199px) {
	.footer .copy {
		display: none;
	}


	.footer .follow-label {
		display: none;
	}


	.footer {
		padding: 50px 0;
		position: relative;
		top: 0;
		bottom: auto;
		left: 0;
		right: auto;
		height: auto;
	}


	.footer .copy {
		margin-bottom: 10px;
		display: block;
		position: relative;
		text-align: center;
	}


	.footer .soc-box {
		position: relative;
		right: auto;
		left: 0;
		top: 0;
		bottom: auto;
		float: none;
		width: auto;
		text-align: center;
	}


	.footer .soc a {
		margin: 0 10px;
		display: inline-block;
	}


	.home .footer {
		padding: 0;
		position: fixed;
		bottom: 50px;
		top: auto;
		left: 50px;
		right: 50px;
		height: 1px;
	}


	.home .footer .copy {
		display: none;
	}


	.home .footer .soc-box {
		position: absolute;
		right: 0;
		left: auto;
		top: auto;
		bottom: 0;
		float: right;
		width: 20px;
	}


	.home .footer .soc a {
		margin: 10px 0 0 0;
		display: block;
	}


	.home .footer .soc a .icon {
		font-size: 17px;
	}

}

/* section footer mobile */
@media (max-width: 720px) {
	.home .footer {
		bottom: 30px;
		top: auto;
		left: 30px;
		right: 30px;
	}

}

/* Sidebar */
.content-sidebar .widget-area {
	position: relative;
	overflow: auto;
	height: 100%;
}


.content-sidebar .widget {
	padding: 25px;
}


.content-sidebar .widget tfoot {
	display: none;
}


.content-sidebar .widget th {
	color: #000;
	padding: 5px;
	text-align: center;
}


.content-sidebar .widget td {
	padding: 5px;
	text-align: center;
}


.content-sidebar .widget label {
	padding-bottom: 0;
}


.content-sidebar .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}


.content-sidebar .widget ul ul {
	margin-top: 10px;
	margin-left: 0;
	margin-bottom: 10px;
	padding: 15px 10px;
	background: #f6f6f6;
	font-size: 12px;
}


.content-sidebar .widget ul ul ul {
	margin-top: 10px;
	margin-left: 5px;
	margin-bottom: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
}


.content-sidebar .widget ul li {
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #999;
	border-bottom: 1px solid #f2f2f2;
}


.content-sidebar .widget ul li li {
	padding-bottom: 0;
	border-bottom: none;
}


.content-sidebar .widget ul li:last-child {
	margin-bottom: 0;
}


.content-sidebar .widget ul li a {
	padding-bottom: 5px;
}


.content-sidebar .widget ul li a:hover {
	color: #69bcbc;
}


.content-sidebar .widget.widget_recent_comments a, .content-sidebar .widget.widget_recent_entries a, .content-sidebar .widget.widget_rss a {
	padding-top: 5px;
	font-size: 14px;
	font-weight: 500;
	display: block !important;
}


.content-sidebar .widget ul li .post-date {
	margin: 0;
	display: inline-block;
	padding: 0;
	height: 20px;
	line-height: 18px;
	font-weight: 400;
	font-size: 11px;
	color: #999;
}


.content-sidebar .widget img {
	max-width: 100%;
	height: auto;
}


.content-sidebar .widget .rss-date, .content-sidebar .widget cite {
	margin: 5px 0 10px 0;
	padding: 0;
	display: block;
	height: 20px;
	line-height: 18px;
	font-weight: 400;
	font-size: 11px;
	color: #999;
}


.content-sidebar .widget cite {
	margin: 10px 0 0 0;
}


.content-sidebar .widget .rssSummary {
	color: #363636;
}


.content-sidebar span.screen-reader-text {
	display: none;
}


.search-form input.search-field {
	margin: 0;
	padding: 0 50px 0 15px;
	border: solid 1px #ddd;
	width: 100%;
	height: 50px;
	font-weight: 400;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-khtml-box-shadow: none;
}


.search-form input.search-submit {
	margin-top: -34px;
	margin-right: 12px;
	float: right;
	width: 18px;
	height: 18px;
	background: url(assets/images/android-search.png) no-repeat center center;
	background-size: 18px 18px;
	font-size: 0;
	border: none;
}


.content-sidebar h2.widget-title {
	padding-bottom: 20px;
	margin: -26px -25px 25px -25px;
	border-bottom: 1px solid #dddddd;
	padding: 25px 30px;
	display: block;
	line-height: 18px;
	font-size: 13px;
	color: #141414;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 400;
}


.content-sidebar h2.widget-title span {
	position: relative;
	left: -5px;
}


.content-sidebar .close {
	position: absolute;
	top: 0;
	left: -68px;
	width: 68px;
	height: 68px;
	background: #f9f9f9;
	cursor: pointer;
}


.content-sidebar .close:before, .content-sidebar .close:after {
	content: '';
	margin: 0 0 0 -10px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 1px;
	background: #363636;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}


.content-sidebar .close:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}


.content-sidebar .recentcomments {
	font-size: 11px;
	color: #999;
}


.content-sidebar .recentcomments a {
	padding-top: 6px;
	display: block !important;
	font-size: 13px;
}


.content-sidebar .recentcomments a.url {
	margin: 0;
	padding: 0;
	display: inline-block;
	height: 20px;
	line-height: 18px;
	font-weight: 400;
	font-size: 11px;
	color: #999;
}


.content-sidebar .recentcomments .comment-author-link {
	margin: 0;
	padding: 0;
	display: inline-block;
	height: 20px;
	line-height: 18px;
	font-weight: 400;
	font-size: 11px;
	color: #999;
}


.content-sidebar .tagcloud a {
	margin: 4px 2px;
	display: inline-block;
	vertical-align: bottom;
	padding: 0 5px;
	font-weight: 500;
	font-size: 11px;
	color: #69bcbc;
	border: 1px solid #69bcbc;
}


.content-sidebar .screen-reader-text {
	display: none;
}


.content-sidebar .widget select {
	width: 100%;
	height: 34px;
}


.content-sidebar table {
	margin: 0;
}


.content-sidebar .widget.widget_media_image {
	max-width: 100%;
}


.navigation.post-navigation {
	height: 18px;
}


.navigation.post-navigation .nav-links a {
	position: relative;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	color: #aca3a3;
	line-height: 20px;
	position: relative;
	padding: 5px 10px;
	display: inline-block;
	transition: all 0.2s ease-out 0s;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	-o-transition: all 0.2s ease-out 0s;
}


.navigation.post-navigation .nav-links .nav-previous a {
	float: left;
	padding-left: 34px;
}


.navigation.post-navigation .nav-links .nav-previous a:before, .navigation.post-navigation .nav-links .nav-next a:after {
	margin-top: -10px;
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	background: url(assets/images/pag.png) no-repeat center center;
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
}


.navigation.post-navigation .nav-links .nav-next a {
	float: right;
	padding-right: 34px;
}


.navigation.post-navigation .nav-links .nav-next a:after {
	left: auto;
	right: 0;
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
}


.post-edit-link {
	font-size: 12px;
	color: #999;
	text-decoration: underline;
}


.post-edit-link:hover {
	text-decoration: none;
}


.sticky {
	background-color: #fdfbf2;
}


/* - Popups */
.popup-box {
	margin: 30px auto;
	width: 520px;
	background: #101010;
	position: relative;
	padding: 0;
}


@media (max-width: 720px) {
	.popup-box {
		width: 440px;
	}

}

@media (max-width: 480px) {
	.popup-box {
		width: 320px;
	}

}

.popup-box .image {
	height: 560px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}


.popup-box .image img {
	width: 100%;
	height: auto;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-o-transform: none !important;
}


.popup-box .desc {
	padding: 35px;
}


.popup-box .category {
	margin: 0 0 5px 0;
	display: block;
	font-size: 14px;
	color: #053d3d;
}


.popup-box .desc h4 {
	margin: 0 0 15px 0;
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
}


.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
}


/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}


/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}


/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	-webkit-transition: all 0.15s ease-out;
	-o-transition: all 0.15s ease-out;
}


/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}


/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}


.mfp-close-btn-in .mfp-close {
	top: 40px !important;
	right: 0 !important;
	padding-right: 0 !important;
	width: 54px !important;
	height: 54px !important;
	line-height: 54px !important;
	opacity: 1 !important;
	font-weight: 300;
	color: #FFF;
	font-size: 24px;
	text-align: center !important;
	font-family: 'Verdana' !important;
}


.mfp-close-btn-in .mfp-close {
	color: #FFF !important;
}


.mfp-close-btn-in .popup-box .mfp-close, .mfp-close-btn-in .mfp-iframe-holder .mfp-close {
	top: 0 !important;
}


/* Background Option */
.video-bg {
	margin-left: -50vw;
	position: absolute !important;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}


.jarallax .jarallax-img {
	max-width: 100%;
}


.background-enabled .header .top-menu ul li a,
.background-enabled .sidebar_btn,
.background-enabled .footer .soc a .ion,
.background-enabled .footer .copy,
.background-enabled-footer .footer .soc a .ion,
.background-enabled-footer .footer .copy,
.background-enabled .section.started .started-content .h-subtitle,
.background-enabled .section.started .started-content .typed-bread,
.background-enabled .section.started .started-content .typed-bread a,
.background-enabled .section.started .started-content .typed-subtitle,
.background-enabled .section.started .started-content .typed-cursor,
.background-enabled .section.started .mouse_btn {
	color: #FFF;
}


.background-enabled .header .logo img {
	filter: brightness(0) invert(1);
}


.background-enabled .header .logo {
	color: rgba(255, 255, 255, 0.5);
}


.background-enabled .header .logo strong {
	color: #FFF;
}


.background-enabled .header .top-menu ul li a:hover {
	color: #FFF;
}


.section.started.background-enabled .started-content .h-title {
	color: #FFF;
}


.background-enabled .header .top-menu-nav .sub-menu li a {
	color: #FFF;
}


.background-enabled .header .top-menu-nav .sub-menu li a:hover {
	color: #FFF;
}


.background-enabled .header,
.background-enabled .footer,
.background-enabled-footer .footer,
.background-enabled .glitch-effect:before,
.background-enabled .glitch-effect:after,
.background-enabled .section.started {
	background: transparent;
	border-bottom-color: transparent;
}


@media (max-width: 480px) {
	.video-bg {
		margin-left: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

}

.video-bg-mask {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #101010;
	opacity: 0.4;
	z-index: 2;
}


.video-bg-texture {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
}



.disable-default-mask:before {
	display: none;
}


.embed-container {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}


.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Header-i flexbox ilə düzənləyirik */
.header .head-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header .top-menu .menu {
    display: flex !important;
    gap: 30px; /* Linklər arası məsafə */
    
    li {
        a {
            color: #F5F5F5; /* Standart rəng */
            &:hover { color: #69bcbc !important; } /* Hover rəngi */
        }
        
        &.current-menu-item a {
            color: #69bcbc !important; /* Firuzəyi rəng */
            font-weight: bold;
        }
    }
}

/* --- Header Düzəlişi --- */
.header {
    .head-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 40px !important; 
    }

    .logo {
        float: none !important;
        img {
            max-height: 80px !important; 
            width: auto !important;
        }
    }

    .top-menu {
        float: none !important;
        .menu {
            display: flex !important;
            gap: 30px !important; 
            list-style: none !important;
        }
    }
}


.current-menu-item a {
    color: #69bcbc !important; 
}

.header {
    position: relative !important; 
    height: auto !important;
    padding: 20px 0 !important;

    .head-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 30px !important;
        float: none !important;
    }

    .logo {
        position: static !important; 
        float: none !important;
        display: block !important;
        
        img {
            max-height: 60px !important; 
            width: auto !important;
            display: block !important;
        }
    }

    .top-menu {
        position: static !important;
        float: none !important;
        display: block !important;

        .menu {
            display: flex !important;
            gap: 40px !important;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
        }
    }
}

.header {
    padding-top: 30px !important; 
    padding-bottom: 20px !important;

    .head-top {
        display: flex !important;
        align-items: center !important; 
        justify-content: space-between !important;
    }

    .logo {
        margin-top: 10px !important; 
        
        img {
            max-height: 90px !important; 
            width: auto !important;
        }
    }

    .top-menu {
        margin-top: 10px !important; 
    }
}

.header {
    padding: 30px 50px !important;  
    
    .head-top {
        display: flex !important;
        align-items: center !important; 
        justify-content: space-between !important;
        height: 100px !important; 
    }

    .logo {
        float: none !important;
        margin: 0 !important;
        
        a {
            display: block !important;
            line-height: 0 !important;
        }

        img {
            max-height: 110px !important; /* Logonun ölçüsünü burada istədiyin kimi böyüt */
            width: auto !important;
            display: block !important;
        }
    }

    .top-menu {
        float: none !important;
        margin: 0 !important;
        
        .menu {
            display: flex !important;
            align-items: center !important;
            gap: 40px !important;
            margin: 0 !important;
            padding: 0 !important;
        }
    }
}

/* --- SƏRT MÜDAXİLƏ: POZİSİYANIN SIFIRLANMASI --- */
.header {
    position: relative !important; 
    top: 0 !important;
    padding-top: 50px !important;  
    padding-bottom: 20px !important;
    width: 100% !important;

    .head-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 50px !important; 
    }

    .logo {
        position: relative !important; 
        float: none !important;
        
        img {
            max-height: 120px !important; 
            width: auto !important;
        }
    }

    .top-menu {
        position: relative !important;
        float: none !important;
        margin-top: 0 !important;
        
        .menu {
            display: flex !important;
            gap: 40px !important;
        }
    }
}

/* --- LOQO VƏ HEADER KONTEYNER DÜZƏLİŞİ --- */

.header {
    .head-top {
        display: flex !important;
        align-items: center !important;     /* Şaquli mərkəzləmə */
        justify-content: space-between !important;
        height: 120px !important;           /* Elementi 120px hündürlükdə saxla */
        padding: 0 40px !important;         /* Konteynerin daxilində sağa-sola boşluq */
        background: transparent !important;
    }

    .logo {
        margin: 0 !important;               /* Kənar boşluqları sıfırla */
        padding: 0 !important;
        
        img {
            max-height: 80px !important;    /* Loqonu 80px-ə qədər böyüt */
            width: auto !important;
            vertical-align: middle !important;
        }
    }

    .top-menu {
        margin: 0 !important;
        padding: 0 !important;
        
        .menu {
            display: flex !important;
            align-items: center !important;
            gap: 30px !important;
        }
    }
}

/* --- LOQONU MƏCBURİ BÖYÜTMƏ VƏ MƏRKƏZLƏMƏ --- */

.header .logo {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;

    a {
        display: block !important;
        /* Logonun özünü böyük göstərmək üçün */
        height: auto !important; 
    }

    img {
        max-height: none !important; 
        height: 100px !important;    
        width: auto !important;
        display: block !important;
        object-fit: contain !important;
    }
}

#section-started {
    height: auto !important;
    min-height: auto !important; 
    padding-top: 40px !important; 
    padding-bottom: 0px !important; 
}

.section.works {
    padding-top: 10px !important;
}

.h-title {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.centrize.full-width {
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    /* Erzwinge die Sichtbarkeit für Kategorie und Name */
    .project-item .category, 
    .project-item .name {
        opacity: 1 !important;        /* Sichtbar machen */
        visibility: visible !important;
        position: relative !important; /* Aus dem Hover-Layer herausnehmen */
        display: block !important;     /* Untereinander setzen */
        transform: none !important;    /* Eventuelle Hover-Animationen stoppen */
    }

    /* Falls die Texte über dem Bild liegen, schieben wir sie jetzt darunter */
    .project-item {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .category {
        font-size: 0.8rem;
        color: #5ba4a6; /* Dein Highlight-Farbton */
        margin-top: 10px;
    }
    .name {
        font-weight: bold;
        margin-bottom: 20px; /* Platz zum nächsten Projekt */
    }
}