:root {
	--color-1: #222222;
	--color-2: #302c83;
	--color-3: #494949;
	--color-4: #005fca;
	--color-5: #00212a;
}

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

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

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

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

::selection {
	color: #fff;
	background: #000;
}

iframe {
	border: none;
}

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

a:focus:not(.focus-visible),
a:active {
	-moz-outline: none;
	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 {
	-moz-outline: 2px dotted #36a367 !important;
	outline: 2px dotted #36a367 !important;
	outline-offset: 0 !important;
}

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

body {
	color: var(--color-1);
	font-size: 21px;
	font-family: "Archivo", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	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);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none !important;
}

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

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

.page {
	overflow: hidden;
}

.rotate {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;

}

.btn {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	font-size: 16px;
	border: 1px solid transparent;
	padding: 0px 40px;
	color: #fff;
	font-weight: 500;
	background: var(--color-3);
	line-height: 46px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: var(--color-4);
	color: #fff;
}

.btn.white {
	color: #2d297d;
	box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
	padding-left: 40px;
	padding-right: 40px;
}

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

.btn.transparent {
	border-color: var(--color-3);
	color: var(--color-3);
}

.btn.transparent:hover {
	color: #fff;
	background-color: var(--color-3);
}

.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: 18px;
	color: var(--color-2);
	padding: 2px 2px 2px 20px;
	line-height: 46px;
	border-color: var(
			--color-2);
	background-color: #fff;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
	box-shadow: rgb(48 44 131 / 30%) 0px 7px 29px 0px;
}

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

.btn.main:hover {
	background-color: #302c83;
	border-color: #302c83;
	color: #fff;
}

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

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

.btn.grey:hover img {
	-webkit-filter: brightness(0) invert(1);
	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 {
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
}

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

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

.content-page {
}

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

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

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

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


h2 {
	font-size: 36px;
}


.heading-title {
	font-weight: 700;
	font-size: 36px;
	color: var(--color-1);
	position: relative;
	padding-bottom: 0;
	margin-bottom: 30px;
}

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

.container {
	max-width: 1170px;
}

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

.breadcrumbInner h2,
.breadcrumbInner h1 {
	font-size: 24px;
	font-weight: 900;
	position: relative;
	color: #fff;
	margin: 0;
	padding: 15px 0;
	text-transform: uppercase;
	display: inline-block;
	background: var(--color-3);
	padding-right: 100px;
}

.breadcrumbInner h2 {
	font-weight: 900;
	margin-bottom: 10px;
	text-transform: unset;
}

.breadcrumbInner h1:after {
	content: "";
	width: 300%;
	height: 100%;
	background-color: var(--color-3);
	bottom: 0px;
	right: 100%;
	position: absolute;
}

.breadcrumbInner {
	padding-top: 292px;
	padding-bottom: 0;
	position: relative;
	min-height: 350px;
	background: var(--color-3);
}

.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 {
	margin-right: 10px;
}

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

/* ==============================
   Page loader
   ============================== */
.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);

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	-webkit-animation: spinner 700ms infinite linear;
	-moz-animation: spinner 700ms infinite linear;
	-ms-animation: spinner 700ms infinite linear;
	-o-animation: spinner 700ms infinite linear;
	animation: spinner 700ms infinite linear;

	z-index: 100001;
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

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

header.transparent .top-bar {
	visibility: visible;
	height: 100%;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running slideInDown;
	animation: 500ms ease-in-out 0s normal none 1 running slideInDown;
	-webkit-transition: all .5s;
	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;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
}

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

.langMenu button {
	background: transparent;
	text-transform: uppercase;
	color: var(--color-3);
	font-weight: 700;
	font-size: 16px;
	margin-left: 15px;
}

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

header .btn {
}

.header {
	position: relative;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: 0.7s;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.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-hide.scroll .site-navbar-wrap.v1 .mobile-bar span {
	color: #fff;
}

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

.header.transparent.scroll .site-navbar-wrap.v1 .user-btn span {
	background: #fff;
	color: #6449e7;
}

.header.transparent.scroll .site-navbar-wrap.v1 .btn.v6 {
	background: #fff;
}

.header.transparent.scroll .site-navbar-wrap.v1 .btn.v6:hover {
	color: #888 !important;
	background: #fff;
}

.header.transparent.scroll .site-navbar-wrap.v1 .add-list .btn.v8 {
	background: #fff;
	color: #000 !important;
}

.header.transparent.scroll .site-navbar-wrap.v1 .site-navbar .site-navigation .site-menu > li > a {
	color: #fff;

}

.header.transparent.scroll .header.transparent.scroll .site-navbar-wrap.v1 .site-menu > li::before {
	background: #222222;
}

.header.transparent.scroll .site-navbar-wrap .site-navbar .site-navigation .site-menu .has-children > a::before {
	color: #222222;
}

.header.transparent.scroll .site-navbar-wrap.v1 .user-btn.v2 li a i {
	color: #fff
}

.header.transparent.scroll .btn.v6 {
	border-color: transparent;
	color: #888 !important;
}

.header.transparent.scroll .btn.v6:hover {
	background-color: #6449e7;
	color: #fff !important;
}

.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
-------------------------------------------------------------*/
.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-right: 0;
	padding-left: 10px;
}

.menu-btn .social-buttons.style1 li a {
	border: none;
	width: auto;
	height: auto;

}

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

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


/*-----------------------------------------------------------
                    Menu
-------------------------------------------------------------*/
.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: 0px 0;
	box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
}

.site-navbar-top {
	display: none;
	font-size: 0.8rem;
	background: #1e7e34;
}

.site-navbar-top a {
	color: #fff;
}

.site-navbar-top .text-with-icon {
	color: rgba(255, 255, 255, 0.5);
}

.site-navbar-top,
.site-navbar {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-navbar {
	margin-bottom: 0px;
	border-bottom: none;
	background-color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	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;
}

.site-menu > li > a::before {
	/*    background-color: #00a956;
		position: absolute;
		top: -44px;
		left: 0;
		width: 0%;
		height: 6px;
		content: "";
		transition: 0.5s;*/
}

.site-menu > li > a.active::before {
	/*    background-color: #00a956;
		position: absolute;
		top: -44px;
		left: 0;
		width: 100%;
		height: 6px;
		content: "";
		transition: 0.5s; */
}

.site-menu > li > a:hover:before {
	width: 100%;
}

.site-navbar-wrap.v1 .site-menu > li::before {
	background: #fff;
}

.site-navbar-wrap.v2 .site-menu > li::before {
	background: #6449e7;
}

.site-navbar .site-navigation .site-menu .active > a {
	color: #000;
}

.site-navbar .site-navigation .site-menu > li {
	display: inline-block;
	padding: 0;
	position: relative;
	/* margin-right: -5px; */
}

.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;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	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: var(--color-3);
	font-size: 18px;
	font-weight: 700;
	position: relative;
	display: block;
	padding: 25px 0px;
	margin: 0 27px;
	text-transform: uppercase;
}

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

.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 {
	background-color: var(--color-3);
	width: 0;
	height: 3px;
	transition: 0.5s;
}

.site-navbar .site-navigation .site-menu > li:last-child {
	padding-right: 0;
}

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

.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;
	/* font-weight: 500; */
}

.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: #222222 !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: 0px;
	transition: 0.4s 0s;
	z-index: 999;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	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: 20rem;
	z-index: 9999;
	padding: 30px;
	background-color: #fff;
	overflow: hidden;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li {
	position: relative;
	padding: 0px;
}

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

.dropdown li a:hover {
	opacity: 1 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown:before {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #000;
	border-width: 7px;
	margin-left: -7px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
	/* text-transform: uppercase; */
	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: #eeeeee;
	top: 0;
}

.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:hover:after {
	content: "";
	width: 7px;
	height: 13px;
	position: absolute;
	right: 11px;
	top: calc(50% - 6px);
	background: url("../images/menu-arrow-right.png");
}

.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;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	align-items: center;
}

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

.site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child {
	margin-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 20px;
	position: relative;
	font-weight: 600;
	background: #f4f4f4;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	line-height: 41px;
}

.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 > a::before {
	background-color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	transition: 0.5s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover::before {
	background-color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	content: "";
	transition: 0.5s;
}

.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: var(--color-2);
	color: #fff;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
	content: "\f10a";
	right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
	left: 100%;
	top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown.sub-menu {
	top: 2% !important;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
	cursor: pointer;
}

.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: 385px;
	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: var(--color-3);
}

.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-left: 20px;
	padding-right: 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;
	padding-right: 0px;
	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: 0px;
}

.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-header .site-mobile-menu-logo a:hover {
	text-decoration: none;
}

.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: 0px;
	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:hover {
	background: #e8e9ea;
}

.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: #ffffff;
	padding: 7px 15px;
	padding-left: 30px;
}

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

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

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


.rev-btn, .rev-btn:visited {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 5px 0px 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;
}

/* ==============================
   Welcome Page
   ============================== */
.nav-tabs {

	border-bottom: 0;


}

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

.nav-tabs > li > a {
	border: 0;
	font-size: 18px;
	color: #686868;
	border: 0 !important;
}

.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: "";
	content: "\f0da";
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 50px;
	color: #01caff;

}


.form-container {
	background-image: url("../images/form-bg.jpg");
	background-position: bottom center;
	background-repeat: no-repeat;
	margin: 0px 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 0;
}

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

.kategori-item::before {
	background-color: var(--color-3);
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 10px;
	content: "";
	transition: 0.5s;
	z-index: 1;
}

.kategori-item:hover::before {
	background-color: var(--color-3);
	position: absolute;
	left: 0;
	width: 0;
	height: 10px;
	content: "";
	transition: 0.5s;
}

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

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

.tur-liste .kategori-item:hover .photo:after {
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.700717787114846) 0%, rgba(0, 0, 0, 0.5018382352941176) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.700717787114846) 0%, rgba(0, 0, 0, 0.5018382352941176) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.700717787114846) 0%, rgba(0, 0, 0, 0.5018382352941176) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

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

.kategori-item .content {
	/*	position: relative;
		width: 50%;
		padding: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center; */
}

.kategori-item .photo .title {
	position: absolute;
	z-index: 1;
	background-color: rgb(0 0 0 / 50%);
	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);
}

.tur-liste .kategori-item .photo .title {
	display: flex;
	justify-content: flex-end;
	text-align: left;
	flex-direction: column;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	padding: 30px;
	align-items: flex-start;
}

.tur-liste .kategori-item .photo .title .inner > * {
	margin-bottom: 4px;
}

.tur-liste .kategori-item .photo .title .category {
	font-size: 14px;
}

.tur-liste .kategori-item .photo .title h4 {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #fff;
}

.tur-liste .kategori-item .photo .title .date {
	font-size: 14px;
	font-weight: 700;
}

.tur-liste .kategori-item .photo .title .date span {
	font-weight: 400
}

.kategori-item .photo .title .icon {
	margin-bottom: 10px;
}

.tur-liste .kategori-item .read-more {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	transition: visibility 0s, opacity 0.5s linear;
	border: 1px solid #fff;
	padding: 8px 30px;
	font-size: 14px;
	font-weight: 500;
	-webkit-border-radius: 04px;
	-webkit-border-top-left-radius: 6px;
	-moz-border-radius: 04px;
	-moz-border-radius-topleft: 6px;
	border-radius: 04px;
	border-top-left-radius: 6px;
}

.tur-liste .kategori-item:hover .read-more {
	visibility: visible;
	position: relative;
	opacity: 1;
}

.tur-liste .kategori-item:hover .photo .title {
	justify-content: space-between;
}

.tur-liste .kategori-item .photo .title .inner {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	transition: all 1s;
	justify-content: flex-end;
	display: flex;
	flex-direction: column;
}

.tur-liste .kategori-item:hover .photo .title .inner {
	flex-grow: 0.001;
}

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;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: flex;
	height: 160px;
	background: #fff;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
	margin: 20px 0 40px 0;
}

.client-image img {
	/* filter: brightness(0) invert(1); */
	width: auto !important;
	max-width: 100%;
}

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

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

section.kalite {
	background-image: url("../images/kalite-bg.jpg");
	background-position: right center;
	background-repeat: no-repeat;
	padding: 80px 0;
}

section.kalite ul li {
	float: left;
	width: 50%;
	position: relative;
	padding-left: 26px;
	font-weight: 500;
	margin-bottom: 10px;
}

section.kalite ul li:before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 15px;
	position: absolute;
	left: 0;
	font-size: 6px;
	top: 4px;
	background-image: url("../images/icon-check.png");
	background-position: center center;
	background-repeat: no-repeat;
}

section.neden-biz {
	background-image: url("../images/neden-biz-bg.jpg");
	background-position: left center;
	background-repeat: no-repeat;
	padding: 80px 0;
}

section.neden-biz table h2 {
	font-size: 22px;
	color: var(--color-3);
	font-weight: 700;
}

section.neden-biz table tr {
	border-top: 2px solid #ddd;

}

section.neden-biz table tr td {
	padding: 15px 0;
}

section.neden-biz table tr td p {
	margin-bottom: 0;
}

section.neden-biz table tr:last-child {
	border-bottom: 2px solid #ddd;
}

section.kurumsal {
	overflow: hidden;
	background: #f9f9f9;
	padding: 60px 0;
	color: var(--color-1);
	font-size: 21px;
	line-height: 1.4;
	font-weight: 300;
}

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

section.kurumsal .hakkimizda h2 {
}

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;
	-webkit-transition: all .3s;
	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;
	-webkit-transition: all .3s;
	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) 0px 10px 50px;
}

section.frontpage-faaliyetler {
	overflow: hidden;
	position: relative;
}

section.frontpage-faaliyetler:before {
	content: "";
	background: #f9f9f9;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

section.frontpage-faaliyetler .content {
	padding-top: 120px;
	padding-left: 40px;
}

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

.faaliyetAlanlariList li a {
	display: flex;
	font-size: 24px;
	color: var(--color-1);
	align-items: center;
	gap: 15px;
	border-bottom: 2px solid #c5c5c5;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.faaliyetAlanlariList li a:hover {
	color: var(--color-2);
}

.faaliyetAlanlariList li .icon {
	margin-left: auto;

}

.faaliyetAlanlariList li a .icon img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: filter 0.3s ease;
	opacity: .4;
}

.faaliyetAlanlariList li a:hover .icon img {
	opacity: 1;
	-webkit-filter: grayscale(0%); /* Eski WebKit tarayÄ±cÄ±larÄ± iÃ§in */
	filter: grayscale(0%);
}

.faaliyetAlanlariList li .number {
	font-size: 30px;
	color: #c5c5c5;
}

section.projeler {
	background: #f9f9f9;
	overflow: hidden;
	position: relative;
	padding: 30px 0;

}

section.projeler .owl-carousel .owl-stage-outer {
	overflow: visible;
}

.proje-item .content {
	padding-bottom: 30px;
	padding-right: 40px;
}

.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: 0px 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: 300px;
}

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%;
	-webkit-border-radius: 10px;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 10px;
	-moz-border-radius-bottomright: 0;
	border-radius: 10px;
	border-bottom-right-radius: 0;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}

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

section.frontpage-urunler a .title {
	position: absolute;
	right: 0px;
	bottom: 0px;
	background: #fff;
	padding: 10px 30px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	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;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding: 15px;
	color: var(--color-1);
}

section.frontpage-urunler a {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	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) 0px 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);
	/* box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px; */
	position: relative;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 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;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-bottomleft: 20px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 25px 20px -20px;
}

section.urun-kategorileri .style-2 .image:after {
	left: 0;
	right: auto;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomright: 20px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

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 .image img {

}

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:before {
	content: "";
	width: 100%;
	height: 200px;
	background: var(--color-3);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
}

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: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	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% 50% !important;
	background-repeat: no-repeat;
}

.widgetItem .photo .title {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0px;
	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,
.owl-theme.clients-logos .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	border-color: #fff;
	background-color: var(--color-2);
	opacity: 1;
}

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

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

/*** Kurumsal ***/
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;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 60px 0 30px 0;
	color: var(--color-3);
}

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

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

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: 18px;
	font-weight: 300;
	color: var(--color-1);
}

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

.copyright ul li a {
	color: var(--color-1);
}

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

/* ==============================
   Iletisim Page
   ============================== */
.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 {
	/* border-bottom: 1px solid #f3f3f3; */
	display: flex;
	flex-direction: column;
}

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

.contact-i {
	color: #ff0039;
}

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

.form-control {
	border: 0;
	height: 56px;
	font-size: 16px;
	line-height: 36px;
	padding: 10px 15px;
	background-color: transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: 0px solid #ddd;
	color: var(--color-1);
	box-shadow: unset;
	background: #fff;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #01caff;
	outline: 0;
}

.fileselection {
	display: flex;
}

.bootstrap-filestyle.input-group {
	display: flex;
	width: 100%;
	order: 1;
	flex-direction: column;
}

.bootstrap-filestyle.input-group > .form-control {
	display: block;
	width: 100%;
	background: transparent;
	border: 0;
	color: #000;
	order: 3;
}

/* ==============================
   Social Media
   ============================== */
.social {
	overflow: hidden
}

.social a {
	color: #848484;
	width: 40px;
	height: 40px;
	line-height: 36px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	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;
!important;
!important;
!important;
!important;
!important;
!important;
!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;
}

.social ul li {
	margin-right: 0px;
}

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

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

/* ==============================
   Alerts
   ============================== */
.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;
	-webkit-transition: all .3s;
	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;
}


/******************************Drop-down menu work on hover**********************************/

@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 li {
		position: relative
	}

	.mainmenu .collapse ul ul ul li:hover ul {
		display: block
	}

	.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: 40px;
	position: fixed;
	bottom: 105%;
	right: 30px;
	font-size: 28px;
	border-radius: 50%;
	z-index: 999;
	color: #ffffff;
	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;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 20px;
	color: #fff;
	font-size: 12px;
	line-height: 17px;
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 6;
	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 {
	background-color: #00a956;
	color: #fff;
	text-transform: uppercase;
}

.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;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	font-size: 16px;
}

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

.nav-justified {
	width: 100%;
	border-bottom: 0;
}

.nav-justified .nav-item {
	float: none;
	width: 100%;
	flex: auto;
}

.nav-justified .nav-link {
	text-align: center;
	margin-bottom: 5px;
}

.nav-justified > .dropdown .dropdown-menu {
	top: auto;
	left: auto;
}

@media (min-width: 544px) {
	.nav-justified .nav-item {
		display: table-cell;
		width: 1%;
	}

	.nav-justified .nav-link {
		margin-bottom: 0;
	}
}

.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;
	/* padding: 0 !important; */
	font: inherit;
	font-size: 36px;
	padding: 0;
	margin: 0;
	line-height: 40px;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 0;
	color: #000000;
}

.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;
	/* padding: 0 !important; */
	font: inherit;
	font-size: 36px;
	padding: 0;
	margin: 0;
	line-height: 40px;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 0;
	color: #000000;
}

.form-group > label {
	top: -10px;
	left: 30px;
	position: absolute;
	background-color: white;
	padding: 0px 15px 0px 15px;
	font-size: 12px;
	color: #009fe3;
	font-weight: 500;
}

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

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: 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.hizmetlerimiz .photo {
	padding-top: 30px;
	position: relative;
}

section.hizmetlerimiz .photo > img {
	position: relative;
}

section.hizmetlerimiz .swiper-slide {
	padding-top: 7.11111rem;
}

section.hizmetlerimiz a.explore {
	width: 270px;
	background-color: #614eff;
	height: 270px;
	position: absolute;
	top: -160px;
	right: 15px;
	z-index: 0;
	border-radius: 9999px;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	color: #fff;
	font-weight: 500;
}

section.hizmetlerimiz .swiper-slide .slideImg {
	display: block;
	margin-top: -70px;
}

section.isler {
	padding: 60px 0 30px 0;
}

.isler-item {
	display: block;
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	border: 3px solid #bcbcbc;
}

.isler-item img {
	filter: grayscale(100%);
	opacity: .5;

}

.isler-item:hover {
	border-color: transparent;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.isler-item:hover img {
	opacity: 1;
	filter: unset;
}

.isler-item .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	opacity: 0;
	transition: all 0.8s ease;
	width: 100%;
	text-align: center;
	padding: 0 30px;
}

.isler-item .text .title {
	color: #fff;
	font-size: 30px;
	margin: 0;
}

section.musteri-yorumlari {
	background-image: url("../images/yorumlar-bg.jpg");
	background-size: cover !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat;
	min-height: 300px;
	overflow: hidden;
	text-align: center;
	padding: 70px 0;
}


section.musteri-yorumlari h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

section.musteri-yorumlari .item {
	background: #fff;
	min-height: 180px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
	font-size: 14px;
	color: var(--color-4);
}

section.musteri-yorumlari .item p {
	margin-bottom: 10px;
	line-height: 1.4;
}

section.musteri-yorumlari a {
	color: #fff;
}

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

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

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

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

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

#sync2.owl-carousel .item {
	border: 2px solid #d6d6d6;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	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-center .owl-carousel .owl-item .btn.transparent {
	border-color: #fff;
	color: #fff;
}

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

.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 .content .description {
	min-height: 120px;
}

.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: 21px;
	margin-bottom: 15px;
	font-weight: 800 !important;
}

.statsItem {
	display: flex;
	flex-direction: row;
}

.statsItem .count-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 96px;
	width: 96px;
	text-align: center;
	height: 96px;
}

.statsItem .count {
	width: 96px;
	font-size: 40px;
	font-weight: 800;
	position: absolute;
	color: var(--color-3);
}

.statsItem .content {
	margin-left: 15px;
	font-size: 18px;
	color: var(--color-3);

	.title {
		color: #d80000;
		font-weight: 500;
		font-size: 30px;
		text-transform: uppercase;
	}
;
	padding-top: 20px;
}


.sirket-bilgileri {
	background-color: #f3f3f3;
	padding: 30px 30px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin: 15px 0;
}

.sirket-bilgileri table {
	width: 100%;
	text-align: left;
	font-weight: 400;
}

.sirket-bilgileri table tr td:first-child {
	font-weight: 500;
}

.banka-item {


}

.banka-item table {
	background-color: #f3f3f3;
	width: 100%;
	text-align: left;
	font-weight: 400;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	overflow: hidden;
}

.banka-item table {
	margin-bottom: 15px;
}

.banka-item table tr:first-child td {
	padding: 15px;
	padding-left: 30px;
}

.banka-item table tr td:first-child {
	padding-left: 30px;
}

.banka-item table strong,
.banka-item table tr td:first-child {
	font-weight: 500;
	width: 90px;
}

.banka-item table tr:first-child td:last-child {
	background-color: #e7e7e7;
	width: 165px;
	padding-left: 15px;
}

.hizmet-alt-icerikler {
	background-color: #def5ff;
	padding: 80px 0;
}

.hizmet-alt-icerik {
	background-color: #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding: 30px 15px;
	margin-bottom: 30px;
}

.hizmet-alt-icerik .photo {
	position: relative;
	left: -50%;
}

.hizmet-alt-icerik h4 {
	font-size: 21px;
	font-weight: 700;
}

.hizmet-alt-icerik h5 {
	font-size: 18px;
	font-weight: 400;
}

.hizmet-alt-icerik:hover {
	background-color: #1f173d;
	color: #fff;
}

.list-group-item {
	color: var(--color-1);
	background-color: transparent;
	font-size: 16px;
	font-weight: 500;
	margin: 0 10px;
	-webkit-border-radius: 0px !important;
	-moz-border-radius: 0px;
	border-radius: 0px !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;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	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: "";
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	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 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 {
	/* overflow-y: scroll; */
	color: var(--color-3);
}

.modal-body::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
	background-color: #D62929;
}

.modal-body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
	border-radius: 10px;
	background-color: #F5F5F5;
}

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

.owl-theme .owl-nav {
	margin: 0;
}

.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;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

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

.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}

.owl-carousel .owl-nav button.owl-next {
	right: 0px;
}

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

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

.project-images .owl-item.active.center {
	opacity: 1 !important;
}

.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% 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 {
	-webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	-ms-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

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

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

.kategori-header .content {
	padding: 100px 0;
	max-width: 585px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 30px;
	padding-right: 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% 50% !important;
	background-repeat: no-repeat;
}

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

.sub-categories {
	background: #f5f5f5;
	padding: 0 0 40px 0;
}

.sub-categories h2 {
	background: var(--color-3);
	color: #fff;
	padding: 25px 0;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.sub-categories .kategori-item {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	font-size: 16px;
	position: relative;
	padding: 60px 30px;
	background: #fff;
	flex-direction: column;
	font-weight: 500;
	justify-content: center;
}

.sub-categories .kategori-item:hover {
	background: #007ed6;
	color: #fff;
}

.sub-categories .kategori-item .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}

.sub-categories .kategori-item .content .title h3 {
	font-weight: 800;
	margin: 0;
	width: 100%;
	padding: 30px;
	font-size: 24px;
	line-height: 1.4;
	color: var(--color-3);
	text-transform: uppercase;
	text-align: center;
	min-height: 130px;
}

.sub-categories .kategori-item .content .desc {
	min-height: 120px;
}

.sub-categories .kategori-item .content .icon {
	min-height: 90px;
	display: flex;
	align-items: center;
}

.sub-categories .kategori-item:hover .content .title h3 {
	color: #fff;
}

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

.sub-categories .kategori-item .photo {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-size: cover !important;
	background-position: 50% 50% !important;
	background-repeat: no-repeat;
	position: absolute;
	opacity: .1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.sub-categories .kategori-item:hover .photo {
	display: block;
}

.sub-categories .kategori-item .btn {
	background: var(--color-4);
}

.sub-categories .kategori-item:hover .btn {
	background: transparent;
	border-color: #fff !important;
	color: #fff;
}

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

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

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

.sub-categories.referanslar-list .kategori-item {
	min-height: 450px;
}

.sub-categories.referanslar-list .kategori-item .photo {
	display: block;
	opacity: 1;
}

.sub-categories.referanslar-list .kategori-item:hover .photo {
	opacity: .2;
}

.sub-categories.referanslar-list .kategori-item .content {
	opacity: 0;
}

.sub-categories.referanslar-list .kategori-item:hover .content {
	opacity: 1;
}

.sub-categories.referanslar-list .kategori-item:hover {
	background: var(--color-3);
	color: #fff;
}

.sub-categories.referanslar-list .kategori-item .content .title h3 span {
	display: block;
	font-size: 18px;
	text-transform: none;
	font-weight: 400;
}

.side-menu {
	background: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	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
}

.product-details .content {
	overflow: hidden;
}

.product-details h1 {
	padding-bottom: 15px;
}

.product-details h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--color-3);
	width: 32px;
	height: 5px;
	transition: 0.5s;
}

.contactInformation {
	padding: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: var(--color-3);
}

.contactInformation a {
	color: -webkit-transition;
}

.mkc_circle {
	animation: mck_progress 1000ms ease-in-out;
	stroke-width: 2;
}

@keyframes mck_progress {
	0% {
		stroke-dasharray: 0, 100;
	}
}

/* Layout styles only, not needed for functionality */
.grid {
	display: grid;
	grid-column-gap: 1em;
	grid-row-gap: 1em;
	grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 31em) {
	.grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.mkc_info {
	display: none !important;
}

.mkc_circle-bg {
	stroke: var(--color-2) !important;
}

.urun-item .title {
	display: block;
	background: #fff;
	padding: 10px 15px;
	font-size: 16px;
}

.menuNavigation {
	background: #fff;
	padding: 30px;
	border: 1px solid #e0e0e0;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.menuNavigation > ul {
	border-bottom: 2px solid #ddd;
	padding-bottom: 2px;
	margin-bottom: 5px;
}

.menuNavigation li {
	padding: 0;
}

.menuNavigation li a {
	border-radius: 34px;
	font-size: 18px;
	font-weight: 600;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}

.menuNavigation li a:hover,
.menuNavigation li a.active,
.menuNavigation li a:focus {
	color: #000;
}

.menuNavigation li a.cat {
	color: #d50000 !important;
}

.urunTitle span {
	display: inline-block;
	padding: 0;
	font-weight: 600 !important;
	color: #272727;
}

.urunTitle span:before {
	display: none;
}