@media (min-width: 992px) {
	:root {
		--slide-height: 100vh;
	}
}

@media (max-width: 991px) {
	:root {
		--slide-height: 500px;
	}
}

:root {
	--color-1: #212121;
	--color-2: #858585;
	--color-3: #313131;
	--color-4: #292929;
	--color-5: #00212a;
}

html {
	overflow-y: scroll;
	-ms-overflow-style: scrollbar;
}

html, body {
	height: 100%;
	position: relative;
	-webkit-font-smoothing: subpixel-antialiased;
}

::selection,
::-moz-selection,
::-webkit-selection {
	color: #fff;
	background: #000;
}

iframe {
	border: none;
}

a, b, div, ul, li {
	-webkit-tap-highlight-color: transparent;
	-moz-outline: none;
}

a:focus:not(.focus-visible),
a:active {
	outline: none;
}

.dropdown-item.active,
.dropdown-item:active {
	color: var(--color-2);
	text-decoration: none;
	background-color: unset;
}

a:focus.focus-visible,
button:focus.focus-visible,
div:focus.focus-visible {
	outline: 2px dotted #36a367 !important;
	outline-offset: 0 !important;
}

img[data-sizes="auto"] {
	display: block;
	width: 100%;
}

body {
	color: var(--color-1);
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	background: #fff;
}

* {
	outline: 0;
	border: 0;
}

.btn.focus, .btn:focus,
button:active, button:focus {
	box-shadow: none;
	outline: 0;
}

ul {
	list-style: none outside;
	padding: 0;
}

a {
	color: var(--color-3);
	transition: all 0.3s ease;
	text-decoration: none !important;
	cursor: pointer;
}

a:hover, a:focus {
	text-decoration: none;
	color: #2a2a2a;
}

h3 {
	font-weight: 700;
	font-size: 36px;
	color: var(--color-3);
	margin-bottom: 20px;
}

.page {
	overflow: hidden;
}

.rotate {
	transform: rotate(270deg);
	transform-origin: 0 0;
}

.btn {
	border-radius: 30px;
	font-size: 16px;
	border: 1px solid transparent;
	padding: 0 20px;
	color: var(--color-1);
	font-weight: 500;
	background: var(--color-3);
	line-height: 40px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.7s ease;
	z-index: -1;
}

.btn:hover {
	background-color: var(--color-4);
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
	left: 100%;
}

.btn:active {
	transform: translateY(-1px) scale(1.02);
}

.btn.white {
	color: #2d297d;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
	padding: 0 40px;
}

.btn.white:hover {
	color: #fff;
	background-color: #2d297d;
}

.btn.transparent {
	border-color: #858585;
	color: #fff;
	background: transparent;
}

.btn.transparent:hover {
	color: #fff !important;
	background-color: #858585;
}

.btn.dark {
	background-color: #01caff;
	color: #fff;
}

.btn.dark:hover {
	border-color: #ff0039;
	background-color: #ff0039;
	color: #fff;
}

.btn.green {
	background: #00a956;
	border: 1px solid transparent;
	color: #fff !important;
	transition: 0.3s;
	display: inline-block;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}

.btn.green:hover {
	background: #fff;
	color: #00a956 !important;
	border: 1px solid #00a956;
}

.btn.main {
	font-size: 14px;
	color: var(--color-3);
	padding: 2px 20px 2px 20px;
	line-height: 40px;
	border-color: var(--color-2);
	background-color: #fff;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;

}

.btn.main img {
	margin-left: 20px;
}

.btn.main:hover {
	background-color: var(--color-2);
	border-color: var(--color-2);
	color: #fff;
}

.btn.grey {
	background-color: #464646;
	color: #fff;
}

.btn.grey:hover {
	background-color: #bf2d32;
	color: #fff;
}

.btn.grey:hover img {
	filter: brightness(0) invert(1);
}

.btn.pink {
	background-color: #ff318e;
	color: #fff;
	position: relative;
}

.btn.pink:hover {
	background-color: #fff;
	color: #ff318e;
}

.border-white {
	border: 1px solid #fff;
}

.btn.shadow {
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.white-bg {
	background-color: #fff;
}

.white-bg .inner {
	padding: 60px;
	position: relative;
}

.content-page .inner:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: -100%;
	background: #fff;
	z-index: 1;
}

.bg-icon {
	background-image: url(../images/icon-bg.png);
	background-position: center;
	background-repeat: no-repeat;
}

.grey-bg {
	background-color: #f6f6f6;
}

.red-bg {
	background-color: #474747;
}

h2 {
	font-size: 36px;
}

.heading-title {
	font-weight: 400;
	font-size: 30px;
	color: var(--color-2);
	position: relative;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.heading-title span:before {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	background: var(--color-2);
	position: absolute;
	left: 0;
	top: 50%;
}

.heading-title span {
	display: block;
	position: relative;
	padding-left: 120px;
	color: var(--color-3);
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 5px;
}

h1.heading-title {
	color: var(--color-2);
	font-size: 60px;
	font-weight: 400;
}

.heading-title strong {
	display: block;
	font-size: 18px;
	color: #b8b8b8;
	font-weight: 500;
	text-transform: uppercase;
}

.heading-title-2 {
	position: relative;
	font-size: 40px;
	font-weight: 700;
	margin-top: 0;
	color: #000;
	margin-bottom: 20px;
}

h5.heading-title {
	font-size: 18px;
	font-weight: 400;
	padding-left: 40px;
	position: relative;
}

h5.heading-title:before {
	content: "";
	width: 30px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 50%;
}

.kategori-item h5.heading-title {
	color: var(--color-3);
	font-size: 14px;
}

.kategori-item h5.heading-title:before {
	background: var(--color-3);
}

.container-fluid.maxWidth {
	max-width: 1440px;
}

.container {
	max-width: 1140px;
}

.breadcrumbWrapper {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover !important;
	background-position: 50% !important;
	z-index: 0;
	height: 100%;
}

.breadcrumbInner h2,
.breadcrumbInner h1 {
	font-size: 30px;
	font-weight: 600;
	position: relative;
	color: #939393;
	margin: 0;
	padding: 15px 0;
	text-transform: uppercase;
	display: inline-block;
}

.breadcrumbInner h2 {
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: unset;
	color: #fff;
	font-size: 36px;
	margin-top: 0;
}

.projects-heading h1,
.projects-heading h2 {
	text-transform: uppercase;
}

.projects-heading h2 {
	color: #939393;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0;
	padding-bottom: 0;
}

.projects-heading h1 {
	color: #fff;
	font-weight: 700;
	font-size: 36px;
}

.breadcrumbInner {
	padding-top: 15em;
	padding-bottom: 12em;
	position: relative;
	background: var(--color-3);
}
.breadcrumbInner.uzmanlik-alanlari {
	padding-top: 8em;
	padding-bottom: 1em;
}
.breadcrumbInner p {
	font-size: 18px;
	color: #fff;
	position: relative;
}

.breadcrumbInner nav {
	display: inline-block;
}

.breadcrumb-section {
	background: var(--color-2);
}

.breadcrumb {
	background-color: transparent;
	padding: 15px 0;
	display: flex;
	border-radius: 0;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 0;
	justify-content: flex-start;
	z-index: 1;
	position: relative;
	align-items: center;
	line-height: 1;
	text-transform: uppercase;
}

.breadcrumb > li,
.breadcrumb > li a,
.breadcrumb > .active,
.breadcrumb > li + li:before {
	color: #fff;
}

.breadcrumb > li:first-child {
	font-weight: 700;
}

.breadcrumb > li:not(:last-child) {
	margin-right: 10px;
	padding-right: 10px;
}

.breadcrumb > li:last-child {
	border-right: 0 !important;
}

.breadcrumb > li + li:before {
	content: "/";
	position: relative;
	left: -8px;
}

.page-loader {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fefefe;
	z-index: 100000;
}

.loader {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	animation: spinner 700ms infinite linear;
	z-index: 100001;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.top-bar {
	background-color: var(--color-2);
	color: var(--color-1);
	line-height: 60px;
	font-size: 16px;
	transition: all 0.3s ease;
	padding: 0 60px;
	visibility: hidden;
	height: 0;
	overflow: hidden;
}

header.transparent .top-bar {
	visibility: visible;
	height: 100%;
	animation: 500ms ease-in-out 0s normal none 1 running slideInDown;
	transition: all .5s;
}

.top-bar li.list-inline-item:not(:last-child) {
	margin-right: 10px;
}

.top-bar .dropdown-item {
	color: var(--color-2) !important;
}

.top-bar a {
	color: var(--color-1);
}

.top-bar ul.list-inline > li:first-child a {
	color: var(--color-3);
}

.top-bar .social a {
	width: 24px;
	height: 24px;
	line-height: 24px;
	border: 0;
	color: var(--color-2) !important;
	font-size: 14px !important;
	background: #fff !important;
	border-radius: 24px;
}

.top-bar .social a:hover {
	background-color: var(--color-3) !important;
	color: #fff !important;
}

.langMenu button {
	background: rgba(153, 153, 153, 0.35);
	text-transform: uppercase;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	margin-left: 15px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	border-radius: 50%;
}

.langMenu .dropdown-toggle::after {
	display: none;
}

.header-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2000;
	transition: 0.7s;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.header {
	position: fixed;
	top: 0;
	width: 94%;
	z-index: 999;
	transition: 0.7s;
	background: transparent;
	left: 3%;
}

.layout_main .header {
	position: relative;
}

.header.hide {
	top: -100px;
	visibility: hidden;
	transition: 0.7s;
}

.header.transparent.scroll {
	padding: 0;
	transition: 0.7s;
	z-index: 9999;
}

.header.transparent.scroll .site-navbar-wrap.v1 {
	background-color: rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.header.transparent.scroll .site-navbar-wrap.v2 {
	background-color: #fff;
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}

.headerContact {
	margin-top: 15px;
	color: #8996a1;
	font-size: 14px;
	font-weight: 500;
}

.headerContact div:first-child {
	margin-right: 10px;
}

.headerContact div:last-child {
	color: #fff;
}

.headerContact a {
	color: #fff;
}

.headerContact span {
	display: block;
	color: #8996a1;
	font-weight: 500;
	font-size: 15px;
	text-transform: lowercase;
}

.headerContact li a {
	color: #8b8b8b;
	font-size: 13px;
}

header.stick-fixed .site-navbar {
	margin-top: 0;
	border-bottom: 0;
	padding: 0;
}

.header-top-section {
	background: #fff;
	display: block;
	transition: 1s;
	padding: 5px 0;
	text-align: right;
}

.header-top-section .btn {
	border: 0;
	color: #fff;
}

.header-top-left ul li {
	display: inline-block;
	padding-right: 30px;
}

.header-top-left ul li a {
	font-size: 13px;
	color: #222;
}

.header-top-left ul li i {
	color: #6449e7;
	margin-right: 7px;
	font-size: 15px;
	top: 1px;
	position: relative;
}

.menu-btn .social-buttons.style1 {
	display: inline-block;
	margin-left: 15px;
}

.menu-btn .social-buttons.style1 li {
	padding-left: 10px;
}

.menu-btn .social-buttons.style1 li a {
	border: none;
}

.menu-btn .social-buttons.style1 li a i {
	color: #888;
	font-size: 16px;
}

.header-top-section.header-top-none {
	display: none;
}

.site-navbar-wrap {
	z-index: 99;
	transition: 0.3s all ease;
}

.site-navbar-wrap .navbar-brand {
	padding: 0;
	max-width: 150px;
	margin-right: 0;
	line-height: 1.2;
	display: block;
	width: auto;
}

.transparent .site-navbar-wrap .navbar-brand {
	padding: 15px 0;
	max-width: unset;
}

.site-navbar-wrap.v1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-navbar-wrap.scrolled {
	padding: 0;
	box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
}

.site-navbar {
	margin-bottom: 0;
	border-bottom: none;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	transition: all 0.3s ease;
}

.site-navbar .site-logo {
	font-weight: 200;
}

.site-navbar .site-logo a {
	font-weight: 200;
	font-size: 26px;
	color: #000;
}

.site-navbar .site-navigation .site-menu {
	font-size: 0;
	margin-bottom: 0;
}

header.stick-fixed .site-navbar .site-navigation .site-menu {
	margin-top: 0;
	margin-bottom: 0;
}

header.stick-fixed .btn {
	margin-top: 15px;
}

.site-menu > li {
	position: relative;
	display: inline-block;
	padding: 0;
}

.site-navbar-wrap.v1 .site-navbar .site-navigation .site-menu > li > a {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none !important;
}

.menu-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	text-align: left;
}

.menu-btn a {
	font-size: 11px;
	color: #89898a;
	text-transform: uppercase;
}

.menu-btn a i {
	background-color: #2d297d;
	color: #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	border-radius: 50%;
	margin-right: 10px;
}

.menu-btn a span {
	font-weight: 700;
	display: block;
	font-size: 15px;
	color: #262425;
}

#dropdownMenuLink {
	padding: 5px;
	margin-right: 10px;
	font-weight: 700;
}

.menu-btn .btn {
	padding: 8px 13px;
	font-weight: 500 !important;
	text-transform: capitalize !important;
}

.add-list {
	text-align: right;
}

.site-navbar-wrap.v2 {
	padding: 0;
}

.site-navbar-wrap.v2 .site-navbar .site-navigation .site-menu > li > a {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	position: relative;
	display: block;
	padding: 25px 0;
	margin: 0 15px;
}

.site-navbar-wrap.v2 .site-navbar .site-navigation .site-menu > li > a.active,
.site-navbar-wrap.v2 .site-navbar .site-navigation .site-menu > li > a:hover {
	color: #fff;
}

.site-navbar .site-navigation .site-menu > li > a::before {
	background-color: var(--color-2);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	content: "";
	transition: 0.5s;
}

.site-navbar .site-navigation .site-menu > li > a.active::before,
.site-navbar .site-navigation .site-menu > li > a:hover::before {
	width: 0;
	height: 3px;
	transition: 0.5s;
}

.site-navbar .site-navigation .site-menu .has-children {
	position: relative;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu {
	min-width: 47rem;
	padding: 30px 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .site-menu-sub > li:not(:first-child) {
	display: none;
}

.has-children a {
	font-size: 15px;
}

.site-navbar .site-navigation .site-menu .has-children > a {
	position: relative;
	font-size: 15px;
	font-weight: 500;
	display: block;
}

.dropdown > .has-children > a::before {
	position: absolute !important;
	content: "\e876" !important;
	color: #222 !important;
	font-family: "Linearicons-Free";
	top: 11px !important;
	right: 3px !important;
	font-size: 10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
	visibility: hidden;
	opacity: 0;
	top: 100%;
	left: 0;
	position: absolute;
	text-align: left;
	margin-top: 0;
	margin-left: 0;
	transition: 0.4s 0s;
	z-index: 999;
	border-radius: 8px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu {
	left: -100%;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
	position: absolute;
	min-width: 17rem;
	z-index: 9999;
	padding: 9px;
	background-color: #fff;
	overflow: hidden;
	box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.dropdown.sub-menu {
	position: absolute;
	min-width: 15.5rem !important;
	z-index: 9999;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
	transition: 0s all;
	color: var(--color-3);
	border-bottom: 1px solid #fff;
	opacity: 1;
	transition: all 0.5s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu {
	position: relative;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu:after {
	content: "";
	position: absolute;
	right: -30px;
	height: 100%;
	width: 2px;
	background: #eee;
	top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li {
	margin-bottom: 10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a {
	font-size: 16px;
	font-weight: 500;
	padding: 10px 19px;
	display: flex;
	background: #f4f4f4;
	border-radius: 10px;
	align-items: center;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a:hover {
	background: var(--color-3);
	color: #fff;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a:hover img {
	filter: brightness(0) invert(1);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a span.icon {
	width: 46px;
	height: 50px;
	margin-right: 12px;
	justify-content: center;
	align-content: center;
	display: inline-flex;
	padding: 4px 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a span.title {
	flex: 1;
	line-height: 1.1;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.megamenu .mega-menu li a img {
	margin-right: 0;
	height: 100%;
	width: auto;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
	color: #28a745 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
	list-style: none;
	margin: 0;
	margin-bottom: 0;
	border-bottom: 1px solid #e5e5e5;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child a {
	border-bottom: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .site-menu-sub {
	padding-left: 30px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .site-menu-sub li {
	margin-bottom: 10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .site-menu-sub li > a {
	font-size: 16px;
	font-weight: 500;
	display: block;
	padding: 7px 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .site-menu-sub li > a:hover {
	font-weight: 700;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent > a,
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
	display: block;
	color: var(--color-1);
	transition: 0.3s;
	line-height: 20px;
	font-size: 16px;
	padding: 0 7px;
	position: relative;
	font-weight: 400;
	background: transparent;
	border-radius: 0;
	line-height: 41px;
	display: flex;
	justify-content: space-between;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a span img {
	opacity: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover span img {
	opacity: 1;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent a {
	margin-bottom: 8px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent ul li {
	padding-left: 15px;
	margin-bottom: 8px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent ul li a {
	font-size: 16px;
	display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent ul li a img {
	opacity: 0;
	margin-left: 10px;
	transition: 0.5s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent ul li a:hover {
	color: var(--color-2);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent ul li a:hover img {
	opacity: 1;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a h3 {
	font-size: 14px;
	margin: 0;
	font-weight: 500;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li.parent > a:hover,
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
	background: transparent;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
	transition-delay: 0s;
	visibility: visible;
	opacity: 1;
}

.site-mobile-menu {
	width: 320px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20000;
	padding-top: 20px;
	background: var(--color-3);
	height: calc(100vh);
	transform: translateX(110%);
	box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
	transform: translateX(0%);
}

.mobile-bar span {
	font-size: 24px;
	border-radius: 0;
}

.site-navbar-wrap.v1 .mobile-bar span {
	color: #fff;
}

.site-navbar-wrap.v2 .mobile-bar {
	margin: 15px 0;
	display: flex;
	padding: 6px 10px;
	border-radius: 10px;
}

.site-navbar-wrap.v2 .mobile-bar span {
	color: #fff;
}

.site-mobile-menu-close.js-menu-toggle span {
	color: #fff;
	margin-right: 15px;
	font-size: 25px !important;
}

.site-mobile-menu .site-mobile-menu-header {
	width: 100%;
	float: left;
	padding: 0 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
	float: right;
	margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
	font-size: 30px;
	display: inline-block;
	padding-left: 10px;
	line-height: 1;
	cursor: pointer;
	transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
	color: #25262a;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
	float: left;
	margin-top: 10px;
	margin-left: 0;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
	display: inline-block;
	text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
	max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-body {
	overflow-y: scroll !important;
	position: relative;
	padding: 20px 30px;
	height: calc(100vh - 52px);
	padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.site-mobile-menu .site-nav-wrap a {
	padding: 8px 0;
	display: block;
	position: relative;
	color: #fff;
	font-weight: 500;
}

.site-mobile-menu .site-nav-wrap li {
	position: relative;
	display: block;
}

.site-mobile-menu .site-nav-wrap li.active > a {
	color: #28a745;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
	position: absolute;
	right: 0;
	top: 10px;
	z-index: 20;
	width: 36px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	color: var(--color-3);
	background-color: #fff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
	z-index: 20;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f107";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-180deg);
	transition: .3s all ease;
	font-size: 20px;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
	transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.site-mobile-menu .site-nav-wrap > li > a {
	font-size: 16px;
	font-weight: 500;
}

.site-mobile-menu .site-nav-wrap > li > a i {
	display: none;
}

.site-mobile-menu .site-nav-wrap > li > ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
	display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
	font-size: 14px;
	color: #fff;
	padding: 7px 15px;
	padding-left: 30px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
	font-size: 16px;
	padding-left: 60px;
}

.slide, .slide-material, .hero, .slide-list {
	height: var(--slide-height);
}

.slide-list {
	position: relative;
	top: 0;
	left: 0;
}

.slide-list li {
	display: none;
}

.slide-material {
	overflow: hidden;
	position: relative;
}

.slide-material img, .slide-material video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-photo > div {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
	opacity: 1;
}

.slide-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.slide-wrapper::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 300px;
	background-image: linear-gradient(to top, transparent, #1E1E1E);
	z-index: -1;
}

.slide-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	position: relative;
	padding-top: var(--header-height);
}

.slide-content {
	width: 55%;
	position: relative;
	z-index: 2;
}

.js-slide-item[data-type="video"] .slide-content {
	display: none !important;
}

@media (max-width: 767px) {
	.slide-content {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.slide-content {
		text-align: center;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.slide-content {
		width: 70%;
		margin: 0 auto;
	}
}

.slide-content .heading {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.2;
	text-shadow: 0 0 15px rgba(30, 30, 30, 0.5);
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 479px) {
	.slide-content .heading {
		font-size: 28px;
	}
}

.slide-content .text {
	color: #fff;
	font-size: 21px;
	font-weight: 400;
	margin: 0 auto;
	width: 100%;
	text-shadow: 0 0 10px #1e1e1e;
}

@media (max-width: 767px) {
	.slide-content .text {
		display: none;
	}
}

.slide-dots {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	margin: 0 auto;
	max-width: var(--container);
	width: 100%;
	z-index: 2;
	text-align: center;
	display: none;
}

@media (max-width: 767px) {
	.slide-dots {
		display: block;
	}
}

.slide-dots li {
	display: inline-block;
}

.slide-dots li a {
	width: 12px;
	height: 12px;
	cursor: pointer;
	display: inline-block;
	font-size: 0;
	position: relative;
	margin: 0 5px;
	border-radius: 20px;
	background: none;
	border: 2px solid #fff;
	transition: 0.3s;
}

.slide-dots li.is-active a {
	background: #fff;
	width: 100px;
}

.slide-arrows {
	display: flex;
	gap: 15px;
}

@media (max-width: 767px) {
	.scroll-down {
		display: none;
	}

	.slide-content .heading {
		font-size: 32px;
	}
}

.slide-arrows button {
	z-index: 2;
	border-radius: 999px;
	font-size: 42px;
	color: #fff;
	transition: 0.3s;
}

.slide-arrows button svg path {
	stroke-width: 1px !important;
}

@media (max-width: 767px) {
	.slide-arrows button {
		position: relative;
		margin: 0 5px;
		left: inherit !important;
		right: inherit !important;
	}
}

@media (max-width: 479px) {
	.slide-arrows button {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}
}

.slide-arrows button.prev {
	padding-right: 2px;
}

.slide-arrows button.next {
	padding-left: 2px;
}

.slide-list li.is-effect .slide-content .heading,
.slide-list li.is-effect .slide-content .text,
.slide-list li.is-effect .slide-content .small-title,
.slide-list li.is-effect .slide-content .button {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.slide-content .heading, .slide-content .text, .slide-content .small-title, .slide-content .button {
	opacity: 1;
	visibility: visible;
}

.slide-content .small-title {
	transform: translateY(-40px);
	transition: 0.9s 0.1s;
}

.slide-content .heading {
	transform: translateY(-75px);
	transition: 0.9s 0.2s;
}

.slide-content .text {
	transform: translateY(-60px);
	transition: 0.9s 0.3s;
}

.slide-content .button {
	transform: translateY(-130px);
	transition: 0.9s 0.4s;
}

.swiper-buttons {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 110px;
	right: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
	justify-content: flex-end;
	gap: 30px;
	align-items: center;
}

.swiper-pagination {
	padding: 5px 15px;
	border-radius: 20px;
	position: relative;
	line-height: 1;
	color: #a8a8a8;
	font-size: 36px;
	font-weight: 400;
}

.swiper-pagination-current {
	font-size: 60px;
	color: #fff;
}

.swiper-pagination-total {
	opacity: 1;
	color: #a8a8a8;
	font-size: 36px;
}

.slide-arrows .next, .slide-arrows .prev {
	background-color: transparent;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 44px;
	height: 44px;
}

.slide-arrows .next {
	background-image: url('../images/arrow-right.png') !important;
}

.slide-arrows .prev {
	background-image: url('../images/arrow-left.png') !important;
}

.slide-arrows .next::after, .slide-arrows .prev::after {
	display: none;
}

@keyframes scrollBounce {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(15px);
	}
	100% {
		transform: translateY(0);
	}
}

.hero .scroll-down {
	position: absolute;
	bottom: 15px;
	left: 50%;
	z-index: 1;
	cursor: pointer;
	animation: scrollBounce 2s infinite;
}

.rev-btn, .rev-btn:visited {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.75);
}

.hermes .tp-bullet {
	box-shadow: inset 0 0 0 2px rgb(255, 255, 255) !important;
}

.hermes .tp-bullet:after {
	background-color: transparent !important;
}

.tp-bullet.selected, .tp-bullet:hover {
	background-color: #fff !important;
}

.nav-tabs {
	border-bottom: 0;
}

.nav-tabs > li {
	margin: 5px 15px;
}

.nav-tabs > li > a.nav-link {
	border-radius: 0;
	border: 0;
	color: #4e4e4e;
	font-size: 50px;
	line-height: 50px;
	font-weight: 300;
	background-color: #fff;
	padding: 0 0 0 30px;
	cursor: pointer;
	position: relative;
	opacity: .4;
	margin-bottom: 30px;
}

.nav-tabs > li > a span {
	display: block;
	font-weight: 700;
}

.nav-tabs > li > a:hover,
.nav-tabs > li > a.nav-link.active,
.nav-tabs > li > a.nav-link.active:focus,
.nav-tabs > li > a.nav-link.active:hover {
	color: #4e4e4e;
	position: relative;
	opacity: 1;
}

.nav-tabs > li > a.nav-link:after {
	content: "\f0da";
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 50px;
	color: #01caff;
}

.form-container {
	background-position: bottom center;
	background-repeat: no-repeat;
	margin: 0 40px;
	padding-top: 80px;
}

.form-container .white-bg {
	padding: 80px 40px;
	margin-bottom: 150px;
}

.form-container h3 {
	font-size: 50px;
	font-weight: 300;
	margin-bottom: 30px;
}

.form-container h3 strong {
	font-weight: 700;
}

.form-container .form-group {
	margin-bottom: 30px;
}

section.tur-kategorileri {
	padding: 40px 0 10px;
}

.kategori-item {
	border-radius: 0;
	margin-bottom: 30px;
	overflow: hidden;
	display: flex;
	font-size: 16px;
	position: relative;
}

.kategori-item .photo > div::before {
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	transition: 0.5s;
	z-index: 1;
	opacity: .5;
}

.kategori-item .photo {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-size: cover !important;
	background-position: 50% !important;
	background-repeat: no-repeat;
	border-radius: 40px;
	background: #000;
}

.proje-liste .kategori-item .photo:after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	background: rgba(0, 0, 0, .5);
	bottom: 0;
	left: 0;
	right: 0;
}

.kategori-item .photo img.main-img {
	opacity: 0;
}

.kategori-item .photo .title {
	position: absolute;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	font-weight: 500;
	margin: 0;
	width: 100%;
	padding: 30px;
	font-size: 16px;
	line-height: 1.4;
	top: 0;
	color: #fff;
}

.pruduct-listing .kategori-item .photo .title {
	width: 70%;
}

.kategori-item .photo .title h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff;
	text-transform: uppercase;
}

.kategori-item .photo .desc {
	font-size: 24px;
}

.pruduct-listing .kategori-item .photo .title h3 {
	min-height: unset;
	margin-bottom: 0;
}

.kategori-item .btn {
	margin-top: 15px;
	background: transparent;
}

.pruduct-listing .kategori-item .photo .title .btn {
	margin-top: 5px;
}

.kategori-item:hover .btn {
	background: var(--color-3);
	border-color: #fff !important;
	color: #fff;
}

.kategori-item:hover .btn img {
	filter: brightness(0) invert(1);
}

.media-container {
	width: 100%;
	position: relative;
}

.video-wrapper {
	width: 100%;
	position: relative;
	z-index: 1;
}

.video-wrapper .play-button {
	opacity: 0.9;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 9;
}

.video-wrapper a:hover .play-button {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
}

.slogan-overlay {
	border-radius: 0;
	overflow: hidden;
	transition: transform 0.3s ease;
	top: -70px;
	left: -144px;
	z-index: 10;
}

.slogan-overlay:hover {
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.slogan-overlay {
		top: -15px !important;
		left: -15px !important;
		position: relative !important;
	}

	.slogan-overlay img {
		max-width: 220px !important;
		border-width: 6px !important;
	}
}

@media (max-width: 768px) {
	.slogan-overlay {
		top: -10px !important;
		left: -10px !important;
	}

	.slogan-overlay img {
		max-width: 180px !important;
		border-width: 5px !important;
	}

	.video-wrapper .play-button img {
		width: 50px !important;
		height: 50px !important;
	}
}

@media (max-width: 991px) {
	.slogan-overlay {
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
		margin-bottom: 20px;
		text-align: center;
	}
}

@media (max-width: 1199px) {
	.slogan-overlay {
		top: -60px;
		left: -100px;
		text-align: center;
	}

	.slogan-overlay img {
		max-width: 200px !important;
		margin: 0 auto;
	}
}

section.is-ortaklari {
	font-size: 18px;
	font-weight: 500;
}

section.is-ortaklari .heading-title {
	color: #d3152b;
}

section.is-ortaklari .heading-title:after {
	display: none;
}

.client-image {
	background-color: transparent;
	border-radius: 0;
	transition: all 0.3s ease;
	display: flex;
	height: 160px;
	background: #fff;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0 10px 20px;
	margin: 20px 0 40px;
}

.client-image img {
	width: auto !important;
	max-width: 100%;
}

.client-image:hover {
	background-color: #fff;
}

.client-image:hover img {
	filter: unset;
}

section.kurumsal {
	overflow: hidden;
	background: #fff;
	background-image: url("../images/kurumsal-bg.jpg");
	background-position: left bottom;
	background-repeat: no-repeat;
	padding: 120px 0;
	color: #2d2d2d;
	font-size: 18px;
	line-height: 1.4;
}

.layout_mainx section.kurumsal {
	background-image: url(../images/kurumsal-2-bg.jpg);
	background-position: left top;
}

.layout_mainx section.kurumsal h3 {
	color: #072241;
	font-size: 24px;
}

section.kurumsal .hakkimizda {
	line-height: 26px;
	font-size: 18px;
}

section.kurumsal.kariyer h3 {
	font-size: 26px;
	color: #323232;
}

section.kurumsal.kariyer .table-responsive {
	box-shadow: rgba(100, 100, 111, 0.1) 0 7px 20px 0;
	padding: 30px;
	background: #fff;
	border-radius: 30px;
}

.custom-disc-list {
	list-style: none;
	padding-left: 0;
	box-shadow: rgba(100, 100, 111, 0.1) 0 7px 20px 0;
	padding: 30px;
	background: #fff;
	border-radius: 30px;
}

.custom-disc-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	line-height: 1.6;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

.custom-disc-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background-color: #6c6c6c;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(108, 108, 108, 0.2),
	0 1px 3px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform: scale(1);
}

.custom-disc-list li:hover::before {
	background-color: #4a4a4a;
	transform: scale(1.3);
	box-shadow: 0 0 0 4px rgba(108, 108, 108, 0.3),
	0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Alternatif renkli versiyon (isteğe bağlı) */
.custom-disc-list.accent li::before {
	background-color: #6c6c6c;
	background: linear-gradient(135deg, #6c6c6c, #888888);
}

.custom-disc-list.accent li:hover::before {
	background: linear-gradient(135deg, #4a4a4a, #666666);
}

/* Animasyonlu versiyon (isteğe bağlı) */
.custom-disc-list.animated li::before {
	animation: disc-pulse 2s infinite ease-in-out;
}

@keyframes disc-pulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 2px rgba(108, 108, 108, 0.2),
		0 1px 3px rgba(0, 0, 0, 0.1);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 0 0 3px rgba(108, 108, 108, 0.25),
		0 2px 5px rgba(0, 0, 0, 0.12);
	}
}

/* Soluk efektli versiyon */
.custom-disc-list.fade_effect li {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.custom-disc-list.fade_effect li:hover {
	opacity: 1;
}

.custom-disc-list.fade_effect li::before {
	background-color: #6c6c6c;
	opacity: 0.9;
}

.custom-disc-list.fade_effect li:hover::before {
	opacity: 1;
}

/* Kullanım örneği HTML:
<ul class="custom-disc-list">
    <li>Liste öğesi 1</li>
    <li>Liste öğesi 2</li>
    <li>Liste öğesi 3</li>
</ul>

<ul class="custom-disc-list animated">
    <li>Animasyonlu liste öğesi 1</li>
    <li>Animasyonlu liste öğesi 2</li>
</ul>
*/
section.kurumsal.kariyer {
	color: #323232;
}

section.widgets {
	padding: 50px 0;
	background: #f9f9f9;
}

section.widgets .widget-item {
	color: var(--color-1);
}

section.widgets .widget-item .number {
	color: #aeaeae;
	font-size: 48px;
	font-weight: 700;
	transition: all .3s;
}

section.widgets .widget-item:hover .number {
	color: var(--color-1);
}

section.widgets .widget-item h3 {
	color: var(--color-1);
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
	transition: all .3s;
}

section.widgets .widget-item:hover h3 {
	color: var(--color-2);
}

section.widgets .widget-item .content {
	font-size: 18px;
	font-weight: 300;
}

section.widgets .widget-item h3 span {
	color: var(--color-3);
	font-size: 22px;
	display: inline-block;
	margin-right: 5px;
}

section.widgets .widget-item .btn {
	margin-top: 15px;
}

section.widgets .widget-item .photo img {
	box-shadow: rgba(0, 0, 0, 0.1) 0 10px 50px;
}

section.frontpage-faaliyetler {
	background: #2f2f2f;
	background-image: url(../images/uzmanlik-bg.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
	padding: 100px 0;
	color: #fff;
	font-size: 16px;
}

section.frontpage-faaliyetler h3,
section.frontpage-faaliyetler .heading-title {
	color: #fff;
}

section.frontpage-faaliyetler .content {
	padding: 100px 0;
}

section.faaliyet-alanlari {
	background: #fff;
	padding: 60px 0;
}

section.faaliyet-alanlari.inverse {
	background: #f9f9f9;
}

section.faaliyet-alanlari .content .title {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-1);
	margin-bottom: 20px;
	display: block;
}

section.faaliyet-alanlari .content .description {
	margin-bottom: 20px;
}

section.content-page.faaliyet-detay h3 {
	color: var(--color-1);
	font-weight: 700;
}

ul.faaliyet-alanlari-list li > a {
	display: block;
	position: relative;
}

ul.faaliyet-alanlari-list li > a .list-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

ul.faaliyet-alanlari-list li > a .list-item::before {
	content: "";
	position: absolute;
	inset: 15px;
	border: 1px solid #fff;
	z-index: 11;
	pointer-events: none;
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	transition-delay: 0.25s;
	transform: translateY(50px);
}

@media (max-width: 767px) {
	ul.faaliyet-alanlari-list li > a .list-item::before {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

ul.faaliyet-alanlari-list li > a .list-item:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

ul.faaliyet-alanlari-list li > a .list-item:hover .text {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

@media (min-width: 768px) {
	ul.faaliyet-alanlari-list li > a .list-item.ui-large::before {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		inset: 25px;
	}

	ul.faaliyet-alanlari-list li > a .list-item.ui-large .item-photo {
		height: calc(350px * 2 + 20px);
	}

	ul.faaliyet-alanlari-list li > a .list-item.ui-large .item-body {
		padding-top: 50px;
		justify-content: flex-end;
	}

	ul.faaliyet-alanlari-list li > a .list-item.ui-large .item-body .title {
		font-size: 38px;
		font-weight: 900;
		margin-bottom: 10px;
	}

	ul.faaliyet-alanlari-list li > a .list-item.ui-large .item-body .text {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		padding: 30px 40px 50px;
		font-size: 16px;
		-webkit-line-clamp: 2;
		max-height: 125px;
	}
}

ul.faaliyet-alanlari-list li > a .list-item .item-photo {
	width: 100%;
	height: 260px;
}

ul.faaliyet-alanlari-list li > a .list-item .item-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

ul.faaliyet-alanlari-list li > a .list-item .item-body {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding-top: 30px;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
}

ul.faaliyet-alanlari-list li > a .list-item .item-body::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 80px;
	z-index: -1;
	opacity: 0.5;
}

ul.faaliyet-alanlari-list li > a .list-item .item-body::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	z-index: -1;
	opacity: 0.5;
}

ul.faaliyet-alanlari-list li > a .list-item .item-body .title {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 767px) {
	ul.faaliyet-alanlari-list li > a .list-item .item-body .title {
		font-size: 18px;
	}
}

ul.faaliyet-alanlari-list li > a .list-item .item-body .text {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	padding: 0 20px 30px;
	line-height: 1.4;
	opacity: 1;
	transition: 0.8s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 4;
	max-height: 128px;
}

@media (max-width: 767px) {
	ul.faaliyet-alanlari-list li > a .list-item .item-body .text {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

ul.faaliyet-alanlari-list li > a .list-item .item-footer {
	position: absolute;
	bottom: 30px;
	right: 30px;
}

section.projeler {
	position: relative;
	padding: 120px 0;
	max-width: 90%;
	margin: 0 auto;
}
section.frontpage-blog,
.proje-liste {
	background-image: url(../images/kurumsal-2-bg.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}

section.projeler h3.heading-title {
	color: var(--color-3);
}

section.projeler .btn.transparent {
	color: var(--color-2) !important;
	min-width: 180px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}

section.projeler .btn.transparent:hover {
	color: #fff !important;
}

.proje-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 30px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	position: relative;
}

.proje-item .icon-arrow {
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
}

.proje-item .image {
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
}

.proje-item .image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(155, 89, 182, 0.8));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	border-radius: 25px;
}

.proje-item:hover .image::before {
	opacity: 0.3;
}

.proje-item .image img {
	transition: transform 0.6s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.proje-item:hover .image img {
	transform: scale(1.08);
}

.proje-item .content {
	padding: 15px 40px 15px 30px;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	background: #fff;
	display: inline-block;
	margin-top: -40px;
	border-radius: 15px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 9;
	box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
}

.proje-item .content::before,
.proje-item .content::after {
	content: '›';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: bold;
	opacity: 0;
	transition: all 0.3s ease;
}

.proje-item .content::before {
	right: 25px;
}

.proje-item .content::after {
	content: '››';
	right: 10px;
	transition-delay: 0.1s;
}

.proje-item:hover .content {
	padding-right: 70px;
	background: var(--color-3);
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
}

.proje-item:hover .content::before {
	right: 35px;
	opacity: 0.7;
}

.proje-item:hover .content::after {
	right: 20px;
	opacity: 1;
}

.proje-item .content .description {
	max-width: 80%;
	font-size: 18px;
	line-height: 1.5;
	color: var(--color-1);
	font-weight: 300;
}

.proje-item .title {
	font-size: 30px;
	display: block;
	font-weight: 700;
	color: var(--color-3);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.proje-item .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.proje-item .bottom .logo {
	background: #fff;
	padding: 0 30px;
	flex: 1;
	max-width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
}

.proje-item .bottom img {
	width: auto;
	height: auto;
}

.proje-item .bottom a {
	flex: 1;
	max-width: 50%;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	color: var(--color-3);
	gap: 15px;
	font-weight: 300;
}

.proje-item:hover a,
.proje-item .bottom a:hover {
	color: var(--color-2);
}

.proje-description ul li {
	border-bottom: 2px solid #e1e1e1;
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.proje-description ul li strong {
	color: var(--color-1);
	font-weight: 700;
	min-width: 180px;
}

section.frontpage-urunler a {
	display: block;
	color: var(--color-1);
	flex-direction: column;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}

section.frontpage-urunler a .photo {
	width: 100%;
	border-radius: 10px;
	border-bottom-right-radius: 0;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}

section.frontpage-urunler a .photo img {
	border-radius: 10px;
	border-bottom-right-radius: 0;
}

section.frontpage-urunler a .title {
	position: absolute;
	right: 0;
	bottom: 0;
	background: #fff;
	padding: 10px 30px;
	border-top-left-radius: 10px;
	text-transform: uppercase;
	z-index: 9;
}

section.frontpage-urunler.referans-items {
	background: #f5f5f5;
}

section.frontpage-urunler.referans-items .adres-item,
section.frontpage-urunler.referans-items a .icon {
	background: #fff;
	font-size: 15px;
	border-radius: 15px;
	padding: 15px;
	color: var(--color-1);
}

section.frontpage-urunler a {
	border-radius: 15px;
	color: var(--color-1);
}

section.frontpage-urunler a:hover {
	color: var(--color-3);
}

section.frontpage-urunler.referans-items .adres-item {
	padding: 30px;
	color: var(--color-1);
	font-weight: 500;
}

section.frontpage-urunler.referans-items .adres-item tr td:first-child {
	width: 40px;
}

section.frontpage-urunler.referans-items .adres-item tr td {
	padding: 10px 0;
}

section.frontpage-urunler.referans-items .adres-item .title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--color-3);
	display: block;
}

section.frontpage-urunler.referans-items .adres-item,
section.frontpage-urunler.referans-items a {
	box-shadow: rgba(0, 0, 0, 0.1) 0 2px 20px;
}

section.frontpage-urunler.referans-items a:hover .icon {
	background: transparent;
}

section.frontpage-urunler.referans-items a.active,
section.frontpage-urunler.referans-items a:hover {
	background: var(--color-3);
	color: #fff;
}

section.frontpage-urunler.referans-items a .icon img {
	filter: unset;
	max-width: 50px;
}

section.frontpage-urunler.referans-items a.active .icon img,
section.frontpage-urunler.referans-items a:hover .icon img {
	filter: brightness(0) invert(1);
}

section.frontpage-urunler.referans-items a .icon {
	background: transparent;
	height: unset;
	margin-bottom: 0;
	height: 85px;
}

section.frontpage-urunler.referans-items .adres-item .title,
section.frontpage-urunler.referans-items a .title {
	min-height: 48px;
}

section.frontpage-urunler .heading-title {
	color: #fff;
}

section.urun-kategorileri {
	background: #f5f5f5;
	padding: 60px 0;
}

section.urun-kategorileri .content {
	padding: 60px;
	background: #fff;
	border-right: 3px solid var(--color-3);
	position: relative;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.15) 0 25px 20px -20px;
	min-height: 450px;
}

section.urun-kategorileri .kategori-item:hover .content {
	padding: 60px;
	background: var(--color-3);
	color: #fff;
}

section.urun-kategorileri .image {
	position: relative;
}

section.urun-kategorileri .image:after {
	content: "";
	width: 80%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.15) 0 25px 20px -20px;
}

section.urun-kategorileri .style-2 .image:after {
	left: 0;
	right: auto;
	border-radius: 0 20px 20px 0;
}

section.urun-kategorileri .style-2 .content {
	border-right: 0;
	border-left: 3px solid var(--color-3);
}

section.urun-kategorileri .style-2 .image a {
	margin-left: 30px;
	margin-right: 0;
}

section.urun-kategorileri .image a {
	display: block;
	margin-right: 30px;
	position: relative;
	z-index: 1;
}

section.urun-kategorileri .content h3 {
	color: var(--color-3);
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 30px;
	line-height: 1.5;
}

section.urun-kategorileri .content h3 span {
	display: block;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--color-2);
}

section.urun-kategorileri .kategori-item:hover .content h3,
section.urun-kategorileri .kategori-item:hover .content h3 span {
	color: #fff;
}

section.frontpage-blog {
	padding: 30px 0;
	overflow: hidden;
	position: relative;
}

section.frontpage-blog {

}

section.frontpage-blog.detail-page:before {
	height: 300px;
}

section.frontpage-blog .heading-title {
	color: #fff;
}

.widgetItem {
	border: 1px solid #cfcfcf;
	background-color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
	display: flex;
	font-size: 16px;
	font-weight: 300;
}

.widgetItem .photo {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-size: cover !important;
	background-position: 50% !important;
	background-repeat: no-repeat;
}

.widgetItem .photo .title {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	margin: 0;
	padding: 15px 10px;
	text-transform: uppercase;
}

.owl-theme .owl-dots .owl-dot span {
	width: 30px;
	height: 7px;
	margin: 5px 7px;
	background: var(--color-2);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
	opacity: .4;
	border: #fff;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--color-2);
	opacity: 1;
}

.bg-cover .photo {
	background-size: cover !important;
	background-position: 50% !important;
	background-repeat: no-repeat;
}

.bg-cover .photo img {
	opacity: 0;
}

section.content-page {
	position: relative;
}

.iletisim-page {
	padding: 60px 0;
}

.iletisim-page iframe {
	border-radius: 30px;
}

.content-page .style-2 {
	background: #fff;
	color: var(--color-2);
}

section.content-page .heading-title {
	font-size: 30px;
	font-weight: 700;
}

section.content-page h1,
section.content-page h2 {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.6;
	color: var(--color-1);
	position: relative;
	padding-bottom: 5px;
	text-transform: uppercase;
}

section.content-page .style-2 h1,
section.content-page .style-2 h2 {
	color: var(--color-2);
}

.text-center h1:after,
.text-center h2:after {
	left: calc(50% - 50px) !important;
}

section.content-page h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-3);
}

section.content-page h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-3);
}

section.content-page.iletisim-page h3 {
	margin: 0;
	display: inline-block;
	font-weight: 400;
	font-size: 14px;
	cursor: pointer;
}

section.content-page.hizmetler-page h2 {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.6;
}

.content-page .kurumsal p {
	font-size: 17px;
	font-weight: 300;
	line-height: 26px;
}

footer {
	font-size: 19px;
	line-height: 22px;
	font-weight: 300;
	position: relative;
	border-radius: 0;
	padding: 40px 0 40px;
	color: var(--color-3);
}

.footer-address {
	display: flex;
}

.footer-address li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.footer-address > li > .social,
.footer-address > li > a {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-direction: column;
	font-weight: 600;
	color: var(--color-3);
	border: 1px solid #b9b9b9;
	width: 100%;
	min-height: 150px;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	padding: 0 16px;
	border-radius: 20px;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.footer-address > li > .social span.title,
.footer-address > li > a span.title {
	font-size: 16px;
	font-weight: 500;
}

footer h6 {
	font-size: 21px;
	font-weight: 600;
	color: var(--color-2);
	text-transform: uppercase;
	position: relative;
	display: block;
	margin-bottom: 20px;
}

footer li a i {
	text-align: center;
	color: #df1e25;
}

footer li {
	margin-bottom: 15px;
}

footer li .media-body {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

footer li .media-body img {
	margin-right: 10px;
}

footer li h1 {
	font-size: 18px;
	font-weight: 400;
}

footer a {
	color: var(--color-3);
}

footer .footerMenu li a {
	text-transform: uppercase;
}

footer a:focus,
footer a:hover,
.footerContact .desc label a:hover,
.footerContact a:hover {
	color: var(--color-2);
}

footer ul li a {
	color: var(--color-3);
}

footer ul li .fa-inverse {
	color: #e0006f;
}

.footerContact .desc label a,
.footerContact .desc label {
	display: block;
	color: #b7b7b7;
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 300;
	margin-top: 5px;
}

.footerContact .icon {
	text-align: center;
	margin-bottom: 15px;
}

.footerContact .icon i {
	width: 26px;
	height: 26px;
	line-height: 26px;
	background-color: #e6e6e6;
	color: #27334c;
	font-size: 14px;
	border-radius: 50%;
}

.footerLogo {
	position: relative;
}

.footerLogo a {
	position: relative;
	z-index: 9;
	overflow: hidden;
	display: block;
	background-color: #fff;
	padding: 0 25px;
}

.footerLogo:before,
.footerLogo:after {
	content: "";
	background-color: #e2e2e2;
	width: 1000000%;
	height: 3px;
	position: absolute;
	top: calc(50% - 3px);
}

.footerLogo:before {
	left: 0;
}

.footerLogo:after {
	right: 0;
}

.copyright {
	line-height: 24px;
	font-size: 15px;
	font-weight: 300;
	background: var(--color-1);
	color: #fff;
	padding: 20px 30px;
	border-radius: 20px;
}

.copyright ul li {
	position: relative;
	padding-right: 15px;
}

.copyright ul li a {
	color: #fff;
}

.copyright ul li:not(:last-child):after {
	content: "";
	width: 4px;
	height: 4px;
	background: #fff;
	position: absolute;
	right: 0;
	top: calc(50% - 2px);
	border-radius: 4px;
}

.copyright p {
	margin-bottom: 0;
}

.contact-span {
	font-size: 18px;
	vertical-align: middle;
}

.contact-span p {
	line-height: 28px;
}

.contact-span label {
	color: #2d297d;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
}

.contact-span h5 {
	font-size: 18px;
	text-transform: none;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 0;
	line-height: 24px;
	display: block;
}

.phone-no {
	display: flex;
	flex-direction: column;
}

.contact-i {
	border-radius: 0;
	margin-right: 15px;
	font-size: 30px;
	line-height: 36px;
	display: block;
	color: #ff0039;
}

.form-group {
	margin-bottom: 15px;
	position: relative;
}

.form-control {
	border: 0;
	height: 56px;
	font-size: 14px;
	line-height: 36px;
	padding: 10px 15px;
	background-color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: 1px solid var(--color-3);
	color: var(--color-3) !important;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: var(--color-2);
	outline: 0;
	box-shadow: none;
}

.fileselection {
	display: flex;
	border: 1px solid var(--color-3);
	background-color: transparent;
	align-items: center;
}

.fileselection .input-group {
	align-items: center;
}

.bootstrap-filestyle.input-group .btn {
	border: 1px solid var(--color-3);
	padding: 0px 5px;
	margin-right: 7px;
	background: var(--color-3);
	color: #fff;
	border-radius: 0;
}

.bootstrap-filestyle.input-group > .form-control {
	background: transparent;
	background-color: transparent;
	-webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
	border-radius: 15px !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border: 0;
}

.social {
	overflow: hidden;
}

.social a {
	color: #000;
	width: 40px;
	height: 40px;
	line-height: 36px;
	border-radius: 20px;
	background-color: #ececec !important;
	border: 2px solid #fff;
	font-size: 20px !important;
}

.social a:hover {
	color: #fff;
	background-color: var(--color-2) !important;
	border-color: #fff;
}


.social .wa a:before {
	content: "\f232";
	font-family: FontAwesome;
}

.social .wa a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #3C5B9B;
}

.social .fb a:before {
	content: "\f09a";
	font-family: FontAwesome;
}

.social .fb a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #3C5B9B;
}

.social .tw a:before {
	content: "\f099";
	font-family: FontAwesome;
}

.social .tw a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #359BED;
}

.social .googleplus a:before {
	content: "\f0d5";
	font-family: FontAwesome;
}

.social .googleplus a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #E33729;
}

.social .rss a:before {
	content: "\f09e";
	font-family: FontAwesome;
}

.social .rss a {
	content: "\f09e";
	font-family: FontAwesome;
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #FD9F13;
}

.social .pintrest a:before {
	content: "\f0d3";
	font-family: FontAwesome;
}

.social .pintrest a {
	content: "\f0d3";
	font-family: FontAwesome;
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #cb2027;
}

.social .instagram a:before {
	content: "\f16d";
	font-family: FontAwesome;
}

.social .instagram a {
	content: "\f16d";
	font-family: FontAwesome;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #027ba5;
}

.social .linkedin a:before {
	content: "\f0e1";
	font-family: FontAwesome;
}

.social .linkedin a {
	content: "\f0e1";
	font-family: FontAwesome;
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #027ba5;
}

.social .youtube a:before {
	content: "\f167";
	font-family: FontAwesome;
}

.social .youtube a {
	font-size: 16px;
	display: inline-block !important;
	text-align: center;
	padding: 0;
	background: #F03434;
}

.social h4 {
	margin: 25px 0 0px 0px;
}

.social ul {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
}

.social ul li {
	margin-right: 0;
	border-bottom: none;
}

.social a {
	transition: background 400ms ease-in-out;
}

.alert {
	letter-spacing: .05em;
	border-color: transparent !important;
	border-radius: 0 !important;
}

.alert .icon {
	display: inline-block;
	margin-right: 18px;
	font-size: 16px;
	vertical-align: middle;
}

.alert__inner {
	padding-left: 70px;
}

.alert .close {
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -9px;
	font-size: 18px;
	transition: all .3s;
	opacity: .3;
	color: #222;
}

.alert .close:hover {
	opacity: 1;
}

.alert-default {
	color: #666;
	background-color: #f1f1f1;
}

.alert-default .alert-icon .icon {
	color: #444;
}

.alert-1 {
	background-color: #fef2df;
	border-color: #fddfc6;
	color: #8a6d3b;
}

.alert-2 {
	color: #fff;
	background-color: #9160ff;
}

.alert-3 {
	background-color: #fff5e1;
}

.alert-3 .alert-icon .icon {
	color: #ffbc3a;
}

.alert-danger {
	background-color: #ffe7e4 !important;
	background-image: none !important;
}

.alert-danger .alert-icon .icon {
	color: #ff523a;
}

.alert-success {
	background-color: #d5ffe3 !important;
	background-image: none !important;
}

.alert-success .alert-icon .icon {
	color: #00d547;
}

.alert-block {
	margin-bottom: 21px;
	padding: 22px 50px 30px;
	text-shadow: none;
	position: relative;
}

.alert-title {
	margin-bottom: 9px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #333;
	margin-top: 15px;
}

.alert-text {
	letter-spacing: .025em;
	color: #333;
	font-size: 15px;
}

.alert-icon {
	float: left;
	margin-top: 20px;
}

.alert-icon .icon {
	font-size: 30px;
}

@media only screen and (min-width: 767px) {
	.mainmenu .collapse ul li {
		position: relative;
	}

	.mainmenu .collapse ul li:hover > ul {
		display: block;
		border-top: 3px solid transparent;
	}

	.mainmenu .collapse ul ul {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 190px;
		display: none;
		background-color: transparent;
		box-shadow: unset;
	}

	.mainmenu .collapse ul ul li {
		position: relative;
	}

	.mainmenu .collapse ul ul li:hover > ul {
		display: block;
		margin: 0 0 0 2px;
		border-top: 0;
	}

	.mainmenu .collapse ul ul ul {
		position: absolute;
		top: 0;
		left: 100%;
		min-width: 250px;
		display: none;
	}

	.mainmenu .collapse ul ul ul ul {
		position: absolute;
		top: 0;
		left: -100%;
		min-width: 250px;
		display: none;
		z-index: 1;
	}
}

#go_up {
	width: 40px;
	height: 40px;
	line-height: 38px;
	position: fixed;
	bottom: 105%;
	right: 30px;
	font-size: 28px;
	border-radius: 50%;
	z-index: 999;
	color: #fff;
	text-align: center;
	cursor: pointer;
	background: var(--color-2);
	transition: 1s ease;
	border: none;
	opacity: 1;
}

#go_up.open {
	bottom: 10%;
}

.popin {
	display: none;
	background-color: var(--color-2);
	width: 450px;
	box-sizing: border-box;
	padding: 20px;
	color: #fff;
	font-size: 12px;
	line-height: 17px;
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 999999;
	border-radius: 5px;
}

.popin .closeBtn {
	width: 11px;
	height: 11px;
	cursor: pointer;
	display: block;
	position: absolute;
	right: 8px;
	top: 10px;
	z-index: 1;
	color: #fff;
}

.popin .title {
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	margin-bottom: 5px;
	color: #fff;
}

.popin a {
	color: #fff;
}

.popin .acceptAndClose {
	color: #fff;
	display: block;
	text-align: center;
	margin-top: 5px;
	cursor: pointer;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: #f3f3f3;
}

.table td, .table th {
	vertical-align: middle;
	border-top: 0;
}

.table thead tr {
	font-size: 16px;
	font-weight: 600;
}

.table thead th {
	border-bottom: 1px solid #fff;
}

.nav-pills .nav-link {
	background-color: transparent;
	color: #272727;
	font-weight: 700;
	padding: .7rem 1rem;
	cursor: pointer;
	border: 2px solid #d3152b;
	border-radius: 20px;
	font-size: 16px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: #fff;
	background-color: #272727;
	border-color: #272727;
}

.owlMobileSlider .owl-prev,
.owlMobileSlider .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.owlMobileSlider .owl-prev {
	left: 0;
}

.owlMobileSlider .owl-next {
	right: 0;
}

.owlMobileSlider .owl-carousel .owl-nav button.owl-prev,
.owlMobileSlider .owl-carousel .owl-nav button.owl-next,
.owlMobileSlider .owl-carousel button.owl-dot {
	cursor: pointer;
	background: #fff;
	border: none;
	font: inherit;
	font-size: 36px;
	padding: 0;
	margin: 0;
	line-height: 40px;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 0;
	color: #000;
}

.owlSingleItem .owl-prev,
.owlSingleItem .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.owlSingleItem .owl-prev {
	left: 0;
}

.owlSingleItem .owl-next {
	right: 0;
}

.owlSingleItem.owl-carousel .owl-nav button.owl-prev,
.owlSingleItem.owl-carousel .owl-nav button.owl-next,
.owlSingleItem.owl-carousel button.owl-dot {
	cursor: pointer;
	background: #fff;
	border: none;
	font: inherit;
	font-size: 36px;
	padding: 0;
	margin: 0;
	line-height: 40px;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 0;
	color: #000;
}

.form-group > label {
	top: -10px;
	left: 30px;
	position: absolute;
	background-color: white;
	padding: 0 15px;
	font-size: 12px;
	color: var(--color-2);
	font-weight: 500;
	z-index: 1;
}

.img-fluid.m-auto {
	display: block;
}

.wow {
	animation-fill-mode: backwards;
}

.phone-no.v-align {
	display: flex;
	align-items: flex-start;
}

section.main-slider {
	overflow: hidden;
}

#owl-main {
	padding: 140px 0;
	color: #1f173d;
	font-size: 18px;
}

#owl-main h1 {
	font-size: 30px;
	font-weight: 700;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-wrapper {
	position: relative;
	flex-direction: column;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
	width: 65%;
	float: right;
}

.swiper-slide {
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	object-fit: cover;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
	left: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
	width: 35%;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	display: block;
	width: 100%;
	background: transparent;
	text-align: left;
	font-weight: 500;
	height: unset;
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet:last-child:after {
	display: none;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet h2 {
	font-size: 21px;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
	opacity: 1;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet-active h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
	padding-left: 30px;
	padding-bottom: 30px;
	position: relative;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 18px;
	border: 2px solid currentColor;
	position: absolute;
	left: 0;
	top: 3px;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet-active:before {
	top: 9px;
	border-color: #fff;
	background-color: #fff;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:after {
	content: "";
	width: 2px;
	height: 25px;
	position: absolute;
	bottom: 0;
	left: 9px;
	border-left: 2px dashed currentColor;
}

section.referanslar {
	background-color: #def5ff;
	padding: 60px 0;
	overflow: hidden;
}

.referans-item {
	background-color: #fff;
	padding: 30px;
	border-radius: 30px;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.referans-item .title {
	font-weight: 400;
	font-size: 18px;
}

.referans-item .name {
	font-weight: 500;
	font-size: 21px;
}

#sync1.owl-carousel .owl-stage-outer {
	border-radius: 10px;
	overflow: hidden;
}

#sync2.owl-carousel .item {
	border: 2px solid #d6d6d6;
	border-radius: 10px;
	overflow: hidden;
}

.referans-logolar .owl-carousel .owl-stage-outer {
	overflow: hidden;
}

.owl-center .owl-carousel .owl-item.active a img {
	opacity: 1;
}

.owl-carousel .owl-item.active {
	opacity: 1;
}

.owl-carousel .owl-item.active + .owl-item {
	opacity: 1;
}

.owl-visible-left .owl-carousel .owl-item.active ~ .owl-item {
	opacity: 0 !important;
}

section.blog {
	padding: 60px 0;
}

.blog-item {
	background-color: #fff;
	overflow: hidden;
	display: block;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
	border-radius: 32px;
}

.blog-item.active .content .btn.transparent,
.blog-item.active .content,
.blog-item:hover .content .btn.transparent,
.blog-item:hover .content {
	color: #fff;
	background: var(--color-1);
}

.blog-item.active .content .btn.transparent {
	border-color: #15d389 !important;
	cursor: default;
}

.blog-item .content {
	padding: 30px;
	font-size: 15px;
	font-weight: 500;
}
.blog-item .btn{
	display:none;
}
.blog-item .content .description {
	min-height: 69px;
}

.blog-item .content .title {
	line-height: 1.1;
}

.blog-item .content .title,
.blog-item .content h2 {
	display: block;
	text-transform: capitalize;
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 50px;
	min-height: 50px;
	width: 100%;
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 800 !important;
}
.proje-detay .logo,
.stats-wrapper {
	box-shadow: 0 0 21px 0 rgba(47, 47, 47, 0.11);
	background: rgba(255, 255, 255, 0.59);
	padding: 0;
	border-radius: 20px;
	padding-bottom: 0;
	padding-top: 20px;
}

.stats-wrapper .row {
	display: flex;
	flex-wrap: wrap;
}

.statsItem {
	height: 100%;
	padding: 10px 20px;
	position: relative;
}

.statsItem::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	height: 100%;
	width: 1px;
	background-color: #b5bac0;
}

.stats-wrapper .col-lg-4:last-child .statsItem::before,
.stats-wrapper .col-md-4:last-child .statsItem::before {
	display: none;
}

@media (max-width: 991px) {
	.statsItem::before {
		right: -12px;
	}

	.stats-wrapper .col-md-4:nth-child(3) .statsItem::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.statsItem::before {
		display: none !important;
	}
	.stats-wrapper{
		margin-bottom:30px;
	}
	.stats-wrapper .col-sm-12:not(:last-child) .statsItem {
		border-bottom: 1px solid #ededed;
		padding-bottom: 30px;
		margin-bottom: 0;
		align-items: center;
	}
}

.statsItem {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.layout_mainx .statsItem {
	flex-direction: row;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.statsItem .count-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1;
	font-size: 36px;
	font-weight: 800;
	color: var(--color-4);
}

.statsItem .count {
	font-size: 36px;
	color: var(--color-4);
}

.statsItem .content {
	font-size: 18px;
	color: var(--color-4);
	font-weight: 500;
}

.statsItem .title {
	color: var(--color-4);
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
}

.list-group-item {
	color: var(--color-1);
	background-color: transparent;
	font-size: 16px;
	font-weight: 500;
	margin: 0 10px;
	border-radius: 0 !important;
	border: 2px solid var(--color-3) !important;
	padding: 10px 20px;
}

.list-group-item:first-child {
	margin-left: 0;
}

.list-group-item a {
	color: #fff;
}

.list-group-item:hover,
.list-group-item.active {
	background-color: var(--color-3);
}

.list-group-item:hover a h2,
.list-group-item.active a h2 {
	color: #fff;
}

section.content-page.isler-page .content h4 {
	font-size: 18px;
	font-weight: 400;
}

section.content-page.blog-page h2 {
	font-size: 24px;
	font-weight: 500;
}

section.content-page.iletisim-page h2 {
	font-size: 30px;
	font-weight: 700;
}

textarea.form-control {
	height: auto;
}

.custom-control {
	background-color: #fff;
	padding: 7px 11px;
	display: inline-block;
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 15px;
	border: 2px solid #1f173d;
	border-radius: 30px;
	margin-right: 5px;
	position: relative;
	padding-left: 20px;
	cursor: pointer;
}

.custom-control-input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.custom-control-label {
	position: relative;
	cursor: pointer;
}

.custom-control-label::before {
	position: absolute;
	top: 0.25rem;
	left: -15px;
	display: block;
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	content: "";
	user-select: none;
	background-color: transparent;
}

.custom-control-label::after {
	position: absolute;
	top: 0.25rem;
	left: -15px;
	display: block;
	width: 1rem;
	height: 1rem;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50% 50%;
}

.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
	background-color: transparent;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
	background-image: url("../images/check-icon.png");
}

.custom-checkbox.checked {
	background-color: #1f173d;
	color: #fff;
}

.custom-checkbox.checked h3 {
	color: #fff;
}

section.content-page.iletisim-page h1 {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	display: inline-block;
}

.tab-pane.fade {
	transition: all 0.2s;
	transform: translateY(1rem);
}

.tab-pane.fade.show {
	transform: translateY(0rem);
}

.modal h4 {
	color: var(--color-3);
	font-weight: 500;
	font-size: 18px;
}

.modal-backdrop.show {
	opacity: .8;
}

.modal-body::-webkit-scrollbar {
	width: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #D62929;
}

.modal-body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.date-section .date {
	color: var(--color-3);
}

section.projeler .owl-theme .owl-nav {
	margin: 0;
	position: absolute;
	top: calc(50% - 40px);
	width: 100%;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background: transparent;
	color: #FFF;
	text-decoration: none;
}

.owl-theme .owl-nav [class*='owl-'] {
	background: transparent;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.4;
	cursor: default;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	width: 40px;
	height: 40px;
	background: transparent;
	color: #fff;
	position: absolute;
	border-radius: 50px;
	font-size: 40px;
	line-height: 40px;
	margin: 0;
}

section.projeler .owl-carousel .owl-nav button.owl-prev {
	left: -60px;
}

section.projeler .owl-carousel .owl-nav button.owl-next {
	right: -60px;
}

.project-images {
	background: var(--color-2);
}

.project-images .owl-item {
	opacity: .4 !important;
}

.project-images .owl-item.active.center {
	opacity: 1 !important;
}
section.proje-detay {
	overflow: hidden;
	background: #fff;
	background-image: url("../images/projeler-detay-bg.jpg");
	background-position: left top;
	background-repeat: no-repeat;
}
.proje-detay table {
	width: 100%;
}

.proje-detay table tr td {
	padding-top: 10px;
	padding-bottom: 10px;
}

.proje-detay table tr td:last-child {
	color: var(--color-3);
}

.proje-detay table tr td:first-child {
	font-weight: 700;
	width: 200px;
}

.proje-detay table tr td {
	border-bottom: 1px solid #fff;
}

.tp-shape {
	position: relative;
}

.rev_slider > ul,
.rev_slider > ul > li {
	overflow: visible !important;
}

.tp-shape:after {
	content: "";
	width: 100%;
	height: 100px;
	background: #fff;
	left: 0;
	bottom: -100px;
	z-index: 999;
	position: absolute;
}

.slider-counter {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.photo.cover {
	background-size: cover !important;
	background-position: 50% !important;
	background-repeat: no-repeat;
}

.photo.cover img {
	opacity: 0;
}

.photo.cover .content img {
	opacity: 1;
}

.video .photo {
	position: relative;
	display: block;
}

.video .photo .content {
	position: absolute;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 30px;
	font-weight: 500;
}

.video .photo:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.video .photo .title {
	position: absolute;
	left: 50px;
	right: 50px;
	top: 50px;
	color: #fff;
	font-size: 22px;
	line-height: 28px;
}

.photo-hover {
	display: block;
	position: relative;
	overflow: hidden;
}

.photo-hover .photo,
.haberItem .photo {
	position: relative;
	overflow: hidden;
	display: block;
}

.photo-hover .photo img,
.haberItem .photo img {
	transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

.photo-hover:hover .photo img,
.haberItem:hover .photo img {
	transform: scale(1.05);
}

.kategori-header {
	background: var(--color-3);
	color: #fff;
}

.kategori-header .content {
	padding: 100px 0;
	max-width: 585px;
	box-sizing: border-box;
	padding: 0 30px;
	width: 100%;
	float: right;
}

.kategori-header .content h1 {
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
}

.photo-cover .photo {
	background-size: cover !important;
	background-position: 50% !important;
	background-repeat: no-repeat;
}

.photo-cover .photo img {
	opacity: 0;
}

.category-description h3 {
	color: var(--color-3);
	margin-bottom: 30px;
}

.bize-ulasin {
	padding: 40px 30px;
	text-align: center;
	background: #efefef;
	border-radius: 15px;
}

.bize-ulasin .btn.main:hover {
	background: var(--color-3);
	border-color: var(--color-3);
}

.side-menu {
	background: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
	margin-top: -65px;
	position: relative;
}

.side-menu .menuTitle {
	color: var(--color-3);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 21px;
	padding: 20px 15px;
}

.sideMenu li {
	border-bottom: 2px solid #efefef;
}

.sideMenu li a {
	display: flex;
	padding: 10px 0;
	font-size: 18px;
	border-left: 6px solid var(--color-3);
	align-items: center;
	padding-right: 15px;
	justify-content: space-between;
	padding-left: 10px;
}

.sideMenu li a .icon {
	width: 24px;
	margin-left: 15px;
}

.sideMenu li a.active,
.sideMenu li a:hover {
	background: var(--color-3);
	color: #fff;
	font-weight: 700;
}

.contactInformation {
	padding: 0;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
.contactInformation li a{
	color:#fff;
	font-size: 18px;
	font-weight: 700;
}
.iso-policy-hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}

.iso-policy-hero .container-fluid {
	position: relative;
	z-index: 3;
	height: 100%;
}

.hero-content {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	height: 100%;
	min-height: 100%;
	position: relative;
	display: flex;
	align-items: center;
}

.hero-content .inner {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 18px;
}

.hero-content h3,
.hero-content h2 {
	color: #fff;
}

.hero-content h3 {
	font-size: 30px;
	font-weight: 300;
}

.hero-content h2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 25px;
}

.hero-subtitle {
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.9;
	margin-bottom: 1rem !important;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 2rem !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
}

.btn-detay {
	border-radius: 30px;
	font-size: 16px;
	border: 1px solid #fff;
	padding: 0 40px;
	color: #fff;
	font-weight: 500;
	background: transparent;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
	min-width: 200px;
	line-height: 40px;
	margin-top: 15px;
}

.btn-detay::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.7s ease;
	z-index: -1;
}

.btn-detay:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-detay:hover::before {
	left: 100%;
}

.btn-detay:active {
	transform: translateY(-1px) scale(1.02);
}

.btn-detay span {
	position: relative;
	z-index: 2;
}

@media (max-width: 1200px) {
	.hero-content h3 {
		font-size: 24px;
	}

	.hero-content h2 {
		font-size: 28px;
	}

	.hero-content .inner {
		font-size: 16px;
	}
}

@media (max-width: 992px) {
	.hero-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.iso-policy-hero {
		min-height: 600px;
		height: auto;
		padding: 80px 0;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-text p {
		font-size: 1rem;
	}

	.hero-content {
		padding: 30px !important;
	}

	.btn-detay {
		font-size: 15px;
		line-height: 45px;
		padding: 0 30px;
		min-width: 180px;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 0.9rem;
		letter-spacing: 1px;
	}

	.btn-detay {
		font-size: 14px;
		line-height: 40px;
		padding: 0 25px;
		min-width: 160px;
	}

	.hero-content {
		padding: 25px 20px !important;
	}

	.hero-content h2 {
		font-size: 22px;
	}

	.hero-content .inner {
		width: 90%;
	}

	.iso-policy-hero {
		padding: 0;
	}
}

.no-bg-image .hero-bg {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


#cookieUsagePopIn.versiyon_1 {
	position: fixed;
	bottom: 30px;
	right: 30px;
	left:unset;
	width: 380px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	overflow: hidden;
	transform: translateY(20px);
	opacity: 0;
	animation: slideUp 0.5s forwards 0.5s;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: block;
	padding: 0;
}

@keyframes slideUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

#cookieUsagePopIn.versiyon_1 .title {
	background: linear-gradient(135deg, #222 0%, #444 100%);
	color: white;
	padding: 22px 25px;
	font-size: 1.3rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	position: relative;
	letter-spacing: 0.3px;
	border-bottom: 3px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieUsagePopIn.versiyon_1 .title::before {
	content: "\f0f4";
	font-family: "FontAwesome";
	font-weight: normal;
	font-size: 1.6rem;
	margin-right: 15px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#cookieUsagePopIn.versiyon_1 .closeBtn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	font-size: 1.3rem;
	cursor: pointer;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
	z-index: 10;
	font-family: Arial, sans-serif;
	font-weight: 300;
	line-height: 1;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
}

#cookieUsagePopIn.versiyon_1 .closeBtn:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
	transform: scale(1.1) rotate(90deg);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#cookieUsagePopIn.versiyon_1 .closeBtn:active {
	transform: scale(0.95) rotate(90deg);
}
#cookieUsagePopIn.versiyon_1 p {
	padding: 25px;
	color: #444;
	font-size: 0.95rem;
	line-height: 1.7;
	max-height: 300px;
	overflow-y: auto;
}

#cookieUsagePopIn.versiyon_1 strong {
	color: #2c3e50;
}

#cookieUsagePopIn.versiyon_1 a {
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
	border-bottom: 1px dashed rgba(52, 152, 219, 0.3);
}

#cookieUsagePopIn.versiyon_1 a:hover {
	color: #2980b9;
	border-bottom: 1px dashed #2980b9;
}

.versiyon_1 .acceptAndClose {
	display: block;
	background: linear-gradient(135deg, #222 0%, #333 50%, #222 100%);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 0 auto 20px;
	text-align: center;
	width: 85%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 0.95rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.versiyon_1 .acceptAndClose::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
	transparent,
	rgba(255, 255, 255, 0.2),
	transparent);
	transition: left 0.7s ease;
}
.versiyon_1 .acceptAndClose:hover {
	background: linear-gradient(135deg, #333 0%, #444 50%, #333 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.versiyon_1 .acceptAndClose:hover::after {
	transform: scale(1.2);
}
.versiyon_1 .acceptAndClose:active {
	content: "\f00c"; /* check ikonu - FA 4.7 */
	font-family: "FontAwesome";
	margin-right: 12px;
	font-size: 1.1rem;
	display: inline-block;
	transition: transform 0.3s ease;
}


.versiyon_1 .acceptAndClose:hover::before {
	left: 100%;
}

#cookieUsagePopIn.versiyon_1 > p:last-of-type {
	padding-bottom: 10px;
}

#cookieUsagePopIn.versiyon_1 > .acceptAndClose {
	margin-top: 10px;
}


@media (max-width: 768px) {
	#cookieUsagePopIn.versiyon_1 {
		width: 90%;
		right: 5%;
		bottom: 20px;
		left: 5%;
	}

	.versiyon_1 .acceptAndClose {
		width: 90%;
		padding: 12px 24px;
	}

	#cookieUsagePopIn.versiyon_1 .title {
		padding: 18px 20px;
		font-size: 1.2rem;
	}

	#cookieUsagePopIn.versiyon_1 p {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	#cookieUsagePopIn.versiyon_1 {
		width: 95%;
		right: 2.5%;
		left: 2.5%;
		bottom: 15px;
	}

	.versiyon_1 .acceptAndClose {
		width: 95%;
		padding: 10px 20px;
		font-size: 0.95rem;
	}
}

#cookieUsagePopIn.versiyon_2 {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 360px;
	background: #f9f9f9;
	border-radius: 10px;
	border: 1px solid #ddd;
	z-index: 1000;
	display: block;
	font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

#cookieUsagePopIn.versiyon_2 .title {
	background: #fff;
	color: #222;
	padding: 16px 20px;
	font-size: 1.1rem;
	font-weight: 700;
	border-bottom: 1px solid #e5e5e5;
}

#cookieUsagePopIn.versiyon_2 .closeBtn {
	position: absolute;
	top: 12px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 1.2rem;
	color: #999;
	cursor: pointer;
}

#cookieUsagePopIn.versiyon_2 p {
	padding: 18px 20px;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.6;
}
#cookieUsagePopIn.versiyon_2 a{
	color:#000;
}
.versiyon_2 .acceptAndClose {
	background: #222;
	color: #fff;
	padding: 12px;
	margin: 0 20px 20px;
	text-align: center;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

#cookieUsagePopIn.versiyon_3 {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 400px;
	background: #111;
	color: #eee;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
	transform: translateX(-40px);
	opacity: 0;
	animation: slideLeft 0.6s forwards;
}

@keyframes slideLeft {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

#cookieUsagePopIn.versiyon_3 .title {
	padding: 20px;
	font-size: 1.2rem;
	font-weight: 600;
	border-bottom: 1px solid rgba(255,255,255,.1);
}

#cookieUsagePopIn.versiyon_3 p {
	padding: 20px;
	font-size: 0.95rem;
	color: #ccc;
}

#cookieUsagePopIn.versiyon_3 .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #aaa;
	background: none;
	border: none;
	font-size: 1.3rem;
	cursor: pointer;
}

.versiyon_3 .acceptAndClose {
	background: linear-gradient(135deg,#00c6ff,#0072ff);
	color: #fff;
	margin: 0 20px 20px;
	padding: 14px;
	text-align: center;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
}


#cookieUsagePopIn.versiyon_4 {
	position: fixed;
	bottom: 40px;
	left: 10%;
	background: rgb(34 34 34 / 90%);
	color: #fff;
	z-index: 999;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	right: 10%;
	width: 80%;
}

#cookieUsagePopIn.versiyon_4 .title {
	font-weight: 600;
	font-size: 1rem;
}

#cookieUsagePopIn.versiyon_4 p {
	flex: 1;
	font-size: 0.9rem;
	margin: 0;
	color: #ccc;
}

#cookieUsagePopIn.versiyon_4 .acceptAndClose {
	background: #fff;
	color: #222;
	padding: 10px 20px;
	border-radius: 20px;
	font-weight: 600;
	cursor: pointer;
}

#cookieUsagePopIn.versiyon_4 .closeBtn {
	display: none;
}
#cookieUsagePopIn.versiyon_5 {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 390px;
	background: rgba(20, 20, 20, 0.55);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-radius: 22px;
	box-shadow:
			0 25px 60px rgba(0, 0, 0, 0.45),
			inset 0 0 0 1px rgba(255,255,255,.08);
	z-index: 1000;
	overflow: hidden;
	transform: translateY(40px) scale(.96);
	opacity: 0;
	animation: floatIn 0.9s cubic-bezier(.16,1,.3,1) forwards;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont;
	left: auto;
}

@keyframes floatIn {
	to {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

/* üst neon çizgi */
#cookieUsagePopIn.versiyon_5::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,#00eaff,#8a5cff,#00eaff);
	animation: neonFlow 4s linear infinite;
}

@keyframes neonFlow {
	from { background-position: 0% }
	to { background-position: 200% }
}

/* title */
#cookieUsagePopIn.versiyon_5 .title {
	padding: 24px 26px 16px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: .3px;
}

/* açıklama */
#cookieUsagePopIn.versiyon_5 p {
	padding: 0 26px 22px;
	color: rgba(255,255,255,.78);
	font-size: .95rem;
	line-height: 1.7;
}

/* kapatma */
#cookieUsagePopIn.versiyon_5 .closeBtn {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	backdrop-filter: blur(5px);
	transition: all .35s ease;
	text-align: center;
	line-height: 33px;
}

#cookieUsagePopIn.versiyon_5 .closeBtn:hover {
	background: rgba(255,255,255,.18);
	transform: rotate(90deg) scale(1.1);
}

/* kabul butonu */
.versiyon_5 .acceptAndClose {
	margin: 0 26px 26px;
	padding: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg,#00eaff,#8a5cff);
	color: #fff;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow:
			0 10px 30px rgba(138,92,255,.45);
	transition: transform .3s ease, box-shadow .3s ease;
}

/* wave efekt */
.versiyon_5 .acceptAndClose::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg,
	transparent 20%,
	rgba(255,255,255,.35),
	transparent 80%);
	transform: translateX(-100%);
	transition: transform .7s ease;
}

.versiyon_5 .acceptAndClose:hover::before {
	transform: translateX(100%);
}

.versiyon_5 .acceptAndClose:hover {
	transform: translateY(-2px);
	box-shadow:
			0 14px 45px rgba(138,92,255,.7);
}

/* active */
.versiyon_5 .acceptAndClose:active {
	transform: scale(.97);
}
@media (max-width: 600px) {
	#cookieUsagePopIn.versiyon_5 {
		width: calc(100% - 24px);
		right: 12px;
		bottom: 12px;
		border-radius: 18px;
	}
}

#cookieUsagePopIn.versiyon_8 {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 380px;
	background: rgba(255,255,255,.85);
	backdrop-filter: blur(25px);
	border-radius: 28px;
	box-shadow:
			0 40px 80px rgba(0,0,0,.25);
	transform: translateY(80px);
	opacity: 0;
	animation: springUp .8s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes springUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

#cookieUsagePopIn.versiyon_8 .title {
	padding: 26px 26px 14px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #111;
}

#cookieUsagePopIn.versiyon_8 p {
	padding: 0 26px 22px;
	color: #333;
}

.versiyon_8 .acceptAndClose {
	margin: 0 26px 26px;
	padding: 16px;
	border-radius: 20px;
	background: #007aff;
	color: #fff;
	text-align: center;
	font-weight: 600;
	transition: transform .25s ease;
}
.versiyon_8.popin a {
	color: #222;
}
.versiyon_8 .acceptAndClose:active {
	transform: scale(.96);
}
