/*-----------------------------------------------------------------------------------
Copyright (c) 2024
Theme Name:  -
Theme URI:   -
Description: -
Author:      - Adem Duran -
Author URI:  - https://bionluk.com/adeemdrn - https://ademduran.com - @frontend.adem -
Version:     - 1.01 -

-----------------------------------------------------------------------------------*/

/*==================================================
===| Global Css
===================================================*/

@import url("https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	font-size: 100%;
	box-sizing: border-box;
	box-sizing: inherit;
}

input,
button,
select,
textarea {
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none !important;
}

section {
	margin: 100px 0;
}

body {
	overflow-x: hidden;
	flex-direction: column;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif !important;
	font-weight: var(--fw-4) !important;
	font-size: var(--fs-15) !important;
	letter-spacing: -0.8px;
	color: var(--blackColor) !important;
}

/*==================================================
===| Roote Settings
===================================================*/

:root {
	/* Theme Color */
	--blackColor: #000;
	--warningColor: #a97300;
	--textColor: #444444;
	--whiteColor: #fff;

	--transition: all 0.5s ease-in-out;
	--br-5: 5px;
	--br-10: 10px;
	--br-15: 15px;

	/* Font Size */
	--fs-14: 14px;
	--fs-15: 15px;
	--fs-16: 16px;
	--fs-17: 17px;
	--fs-18: 18px;
	--fs-19: 19px;
	--fs-20: 20px;
	--fs-21: 21px;
	--fs-22: 22px;
	--fs-23: 23px;
	--fs-24: 24px;
	--fs-25: 25px;
	--fs-26: 26px;
	--fs-27: 27px;
	--fs-28: 28px;
	--fs-29: 29px;
	--fs-30: 30px;
	--fs-31: 31px;
	--fs-32: 32px;
	--fs-33: 33px;
	--fs-34: 34px;
	--fs-35: 35px;
	--fs-40: 40px;
	--fs-45: 45px;
	--fs-50: 50px;
	--fs-55: 55px;
	--fs-60: 60px;
	--fs-65: 65px;
	--fs-70: 70px;
	--fs-75: 75px;

	/* Font Weight */
	--fw-1: 100;
	--fw-2: 200;
	--fw-3: 300;
	--fw-4: 400;
	--fw-5: 500;
	--fw-6: 600;
	--fw-7: 700;
	--fw-8: 800;
	--fw-9: 900;
}

/*==================================================
===| Theme Settings
===================================================*/

html ::-webkit-scrollbar {
	width: 2px;
}

html ::-webkit-scrollbar-button {
	display: none;
}

html ::-webkit-scrollbar-track-piece {
	background-color: transparent;
}

html ::-webkit-scrollbar-thumb {
	background-color: var(--blackColor);
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-o-border-radius: 1px;
}

html ::-webkit-scrollbar-thumb:hover {
	background-color: var(--textColor);
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-o-border-radius: 1px;
}

html ::-webkit-scrollbar-corner {
	background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
.link-effect {
	position: relative;
	overflow: hidden;
	display: block;
	height: 23px;
}
.link-effect .effect-1 {
	display: block;
	height: 100%;
	position: relative;
	top: 0%;
	transition: 0.5s;
}
.link-effect:hover .effect-1 {
	top: -100%;
}
.btn__link {
	position: relative;
	font-weight: var(--fw-6);
	overflow: hidden;
	text-align: center;
	border-radius: var(--br-5);
	padding: 15px 30px 15px 40px;
	font-size: var(--fs-16);
	display: inline-block;
	color: var(--whiteColor);
	text-transform: uppercase;
	border: 1px solid var(--whiteColor);
}
.btn__link:before {
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	content: "";
	top: 0%;
	left: 0%;
	width: 10px;
	bottom: 0px;
	z-index: 1;
	background-color: var(--whiteColor);
}
.btn__link:hover:before {
	width: 100%;
}
.btn__link .btn-wrap {
	position: relative;
	z-index: 1;
	float: left;
	overflow: hidden;
	display: inline-block;
}
.btn__link .btn-wrap .text-one {
	position: relative;
	display: block;
	font-family: "Anybody", sans-serif;
	letter-spacing: 0.6px;
	color: var(--whiteColor);
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.btn__link:hover .btn-wrap .text-one:first-child {
	-webkit-transform: translateY(-150%);
	-ms-transform: translateY(-150%);
	transform: translateY(-150%);
}
.btn__link .btn-wrap .text-two {
	position: absolute;
	top: 100%;
	display: block;
	font-family: "Anybody", sans-serif;
	letter-spacing: 0.6px;
	color: var(--warningColor);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.btn__link:hover .btn-wrap .text-two {
	top: 50%;
	color: var(--warningColor);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn__link:hover .btn-wrap .text-two {
	color: var(--blackColor);
}
.btn__link:hover:before {
	top: -40%;
}
.sub__title span {
	position: relative;
	color: var(--warningColor);
	padding-left: 25px;
	font-size: var(--fs-18);
	font-weight: var(--fw-5);
}
.sub__title span::before {
	position: absolute;
	content: "";
	transform: translateY(-50%);
	left: 0;
	top: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50px;
	border: 2px solid var(--warningColor);
}

/*==================================================
===| Spinner Img
===================================================*/
.spinner {
	border: 4px solid #e6e9f9;
	border-top-color: var(--redColor);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999 !important;
	display: none;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
.lazyload {
	opacity: 0;
	position: relative;
}
.lazyload.loading + .spinner {
	display: block;
}
.lazyload.lazyloaded {
	opacity: 1;
	transition: opacity 1500ms;
}
.sticky-top {
	top: 110px !important;
}
/*==================================================
===| Sticky Menu Css
===================================================*/
.header .header__up.menu_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 15px 0;
	background: var(--blackColor);
	z-index: 1030;
	-webkit-box-shadow: 0px 15px 35px rgba(33, 34, 38, 0.041);
	box-shadow: 0px 15px 35px rgb(33, 34, 38, 0.041);
}
@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

/*==================================================
===| Header Css
===================================================*/
.header {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 9999;
	width: 100%;
}
.header .header__top {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .header__top .inner__container {
	position: relative;
	padding-left: 245px;
}
.header .header__top .inner__container .header__texts {
	position: relative;
	font-size: var(--fs-14);
	padding-left: 25px;
	color: var(--whiteColor);
}
.header .header__top .inner__container .header__texts:before {
	position: absolute;
	content: "";
	transform: translateY(-50%);
	left: 0;
	top: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50px;
	border: 2px solid var(--warningColor);
}
.header .header__top .inner__container .nav .nav-link {
	font-size: var(--fs-14);
	width: 36px;
	height: 36px;
	border-radius: 50px;
	border: 1px solid var(--whiteColor);
	transition: var(--transition);
}
.header .dropdown-menu .dropdown-item {
	padding: 10px 15px !important;
}
.header .dropdown-menu .dropdown-item.active {
	background-color: var(--warningColor) !important;
}
.header .dropdown-menu .dropdown-item:focus,
.header .dropdown-menu .dropdown-item:hover {
	background-color: var(--warningColor) !important;
	color: var(--whiteColor);
}
.dropdown-menu {
	border: 0 !important;
	margin-top: 15px !important;
}
.header .header__top .inner__container .nav .nav-link svg,
.header .header__top .phone__number svg {
	fill: var(--whiteColor);
}
.header .header__top .phone__number a {
	color: var(--whiteColor);
}
.header .header__top .inner__container .nav .nav-link:hover {
	border-color: var(--warningColor);
	background-color: var(--warningColor);
}
.header .header__top .inner__container .nav .nav-link:hover svg {
	fill: var(--whiteColor);
}
.header .header__up.menu_sticky .header__logo .logo__one {
	display: none;
}
.header .header__up.menu_sticky .header__logo .logo__two.d-none {
	display: block !important;
}
.header .header__up.menu_sticky .header__logo {
	transform: translateY(0) !important;
}
.header .header__up .header__logo {
	position: relative;
	transform: translateY(-69px);
}
.header .header__up .header__logo .logo__one img {
	width: 135px;
	height: 143px;
}
.header .header__up .header__logo .logo__two img {
	width: 130px;
	height: 60px;
}
.header .header__up .head__menu .nav-item .nav-link span {
	color: var(--whiteColor);
	font-size: var(--fs-16);
	font-weight: var(--fw-5);
}

/*==================================================
===| Container Css
===================================================*/
.slider__banner .swiper {
	height: 900px;
	width: 100%;
}
.slider__banner .swiper .swiper-slide {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.slider__banner .swiper .swiper-slide:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.6;
	background-color: #000;
}
.slider__banner .slider__arrow {
	position: absolute;
	left: 80px;
	bottom: 70px;
	right: 15px;
	max-width: 1230px;
	margin: 0 auto;
	z-index: 1;
	text-align: right;
}
.slider__banner .slider__prev {
	position: relative;
	z-index: 1;
	cursor: pointer;
	margin-right: 15px;
	display: inline-block;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.slider__banner .slider__next {
	position: relative;
	z-index: 1;
	cursor: pointer;
	display: inline-block;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}
.swiper-button-disabled {
	opacity: 0.4;
}
.slider__banner .slider__pagination {
	position: absolute;
	left: 20px !important;
	top: 50% !important;
	bottom: auto !important;
	z-index: 10;
	text-align: right !important;
}
.slider__banner .swiper-pagination-bullet {
	position: relative;
	width: 30px !important;
	height: 2px !important;
	opacity: 0.5;
	border-radius: 0 !important;
	display: block;
	margin: 15px 0px !important;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	background-color: var(--whiteColor);
}
.slider__banner .slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 60px !important;
	background-color: var(--warningColor);
	opacity: 1;
}
.slider__banner .slider__content {
	position: relative;
	z-index: 1;
	padding: 320px 0px 270px;
}
.slider__banner .slider__content .slider__heading h1 {
	color: var(--whiteColor);
	font-family: "Anybody", sans-serif;
	font-weight: var(--fw-4);
	margin-bottom: 0;
}
.slider__banner .slider__content .slider__contents p {
	color: var(--whiteColor);
	font-size: var(--fs-17);
}
/*==================================================
===| About Box Css
===================================================*/
.about__box .head__title {
	width: 750px;
}
.about__box .head__title h2 {
	font-family: "Anybody", sans-serif;
	font-weight: var(--fw-4);
	color: var(--blackColor);
}
.about__box .right__img img {
	width: 200px;
	height: 200px;
}
.circle__animation {
	animation-name: rotateme;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;

	-webkit-animation-name: rotateme;
	-webkit-animation-duration: 15s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;

	-moz-animation-name: rotateme;
	-moz-animation-duration: 15s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;

	-ms-animation-name: rotateme;
	-ms-animation-duration: 15s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;

	-o-animation-name: rotateme;
	-o-animation-duration: 15s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}
@keyframes rotateme {
	0% {
		transform: rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
		opacity: 1;
	}
}
.about__box .about__img img {
	width: 816px;
	height: 465px;
	object-fit: cover;
	border-radius: var(--br-5);
}
.about__box .list-group .list-group-item:before {
	position: absolute;
	content: "";
	transform: translateY(-50%);
	left: 0;
	top: 48%;
	width: 10px;
	height: 10px;
	border-radius: 50px;
	border: 2px solid var(--warningColor);
}
.about__box .list-group .list-group-item span {
	margin-left: 3px;
	font-family: "Anybody", sans-serif;
}
.about__box .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.about__box .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.about__box .btn__link:before {
	background-color: var(--warningColor);
}
.about__box .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}
.about__box .about__contents {
	margin-top: 80px;
}
.about__box .about__contents .about__desc p {
	color: var(--textColor);
}
/*==================================================
===| Product Box Css
===================================================*/
.product__box {
	background-color: #000000;
	padding: 150px 0 150px 0;
}
.product__box .product__item {
	position: relative;
}
.product__box .product__item .product__img {
	position: relative;
	overflow: hidden;
	padding-right: 20px;
	padding-bottom: 20px;
}
.product__box .product__item .sub__title span {
	font-size: var(--fs-14);
	padding-left: 16px;
}
.product__box .product__item .sub__title span:before {
	width: 10px;
	height: 10px;
}
.product__box .product__item .product__img:before {
	position: absolute;
	content: "";
	right: 0px;
	top: 20px;
	bottom: 0px;
	left: 20px;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	border: 1px solid #a9740081;
	border-radius: var(--br-5);
}
.product__box .product__item .product__img:after {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 99;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.product__box .product__item:hover .product__img:after {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
.product__box .product__item:hover .product__img:before {
	border-color: var(--warningColor);
	background-color: var(--warningColor);
}
.product__box .product__item .product__img img {
	position: relative;
	width: 438px;
	height: 413px;
	display: block;
	object-fit: cover;
	border-radius: var(--br-5);
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.product__box .product__item .product__content .product__title h3 {
	color: var(--whiteColor);
	font-size: var(--fs-22) !important;
	font-weight: var(--fw-4) !important;
	font-family: "Anybody", sans-serif;
}
.product__box .title__box .head__title h3 {
	color: var(--whiteColor);
	font-weight: var(--fw-4) !important;
	font-family: "Anybody", sans-serif;
}
.product__box .btn__box .btn__link {
	padding: 15px 30px 15px 30px;
}
/*==================================================
===| Product Feature Css
===================================================*/
.product__feature .feature__list {
	margin-top: 80px;
}
.product__feature .title__box .head__title h4 {
	font-family: "Anybody", sans-serif;
	font-weight: var(--fw-4);
}
.product__feature .feature__item {
	padding: 40px;
	-webkit-box-shadow: 0px 15px 35px rgba(169, 116, 0, 0.082);
	box-shadow: 0px 15px 35px rgba(169, 116, 0, 0.082);
	border-radius: var(--br-5);
	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	border: 1px solid #a974002c !important;
	height: 330px;
}
.product__feature .feature__item:hover {
	background-color: var(--warningColor);
	-webkit-box-shadow: 0px 15px 35px rgba(169, 116, 0, 0.349);
	box-shadow: 0px 15px 35px rgba(169, 116, 0, 0.349);
}
.product__feature .feature__item:before {
	content: "";
	position: absolute;
	left: 75px;
	top: 70px;
	width: 66px;
	height: 66px;
	background-color: var(--warningColor);
	z-index: -1;
	border-radius: 1000px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	opacity: 0;
}
.product__feature .feature__item:hover:before {
	width: 800px;
	height: 800px;
	opacity: 1;
}
.product__feature .feature__item .icon {
	width: 66px;
	height: 66px;
	font-size: 32px;
	line-height: 66px;
	text-align: center;
	background-color: var(--warningColor);
	border-radius: 100px;
	color: var(--whiteColor);
	margin-bottom: 24px;
	-webkit-box-shadow: 0px 15px 35px rgba(36, 29, 27, 0.1);
	box-shadow: 0px 15px 35px rgba(36, 29, 27, 0.1);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}
.product__feature .feature__item .icon {
	fill: var(--whiteColor);
}

.product__feature .feature__item:hover .icon {
	fill: var(--warningColor);
	background-color: var(--whiteColor);
}
.product__feature .feature__item .title strong {
	font-size: var(--fs-20);
	font-weight: var(--fw-6);
	transition: var(--transition);
	color: var(--warningColor);
	font-family: "Anybody", sans-serif;
	transition: var(--transition);
}
.product__feature .feature__item:hover .title strong,
.product__feature .feature__item:hover .desc p {
	color: var(--whiteColor);
}
.product__feature .feature__item .desc p {
	color: var(--textColor);
}
/*==================================================
===| Brand Box  Css
===================================================*/
.brand__box .swiper .swiper-slide img {
	width: 120px;
	height: 80px;
}
/*==================================================
===| Company Gallery Css
===================================================*/
.company__gallery {
	background-color: #000000;
	padding: 150px 0 150px 0;
}
.company__gallery .title__box {
	width: 100%;
	max-width: 750px;
}
.company__gallery .head__title h5 {
	color: var(--whiteColor);
	font-weight: var(--fw-4) !important;
	font-family: "Anybody", sans-serif;
}
.company__gallery .gallery__box {
	margin-top: 80px;
}
.company__gallery .gallery__box .gallery__item .gallery__img {
	position: relative;
	overflow: hidden;
	padding-right: 20px;
	padding-bottom: 20px;
}
.company__gallery .gallery__box .gallery__item .gallery__img:before {
	position: absolute;
	content: "";
	right: 0px;
	top: 20px;
	bottom: 0px;
	left: 20px;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	border: 1px solid #a9740081;
	border-radius: var(--br-5);
}
.company__gallery .gallery__box .gallery__item .gallery__img:after {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 99;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.company__gallery .gallery__box .gallery__item:hover .gallery__img::after {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
.company__gallery .gallery__box .gallery__item:hover .gallery__img::before {
	border-color: var(--warningColor);
	background-color: var(--warningColor);
}
.company__gallery .gallery__box .gallery__item .gallery__img img {
	position: relative;
	width: 438px;
	height: 413px;
	display: block;
	object-fit: cover;
	border-radius: var(--br-5);
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/*==================================================
===| Blog Box Css
===================================================*/
.blog__box .head__title h5 {
	font-weight: var(--fw-4) !important;
	font-family: "Anybody", sans-serif;
}
.blog__box .blog__list {
	margin-top: 80px;
}
.blog__box .blog__item .blog__title h5 {
	font-size: var(--fs-20);
}
.blog__box .blog__item .blog__img img {
	width: 456px;
	height: 297px;
	object-fit: cover;
	border-radius: var(--br-5);
}
.blog__box .blog__item .blog__img {
	position: relative;
	z-index: 1;
	transition: var(--transition);
}
.blog__box .blog__item .blog__img:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 8;
	height: 100%;
	width: 100%;
	background: var(--warningColor);
	opacity: 0.6;
	transition: var(--transition);
	transform: scale(0);
	border-radius: var(--br-5);
}
.blog__box .blog__item:hover .blog__img:before {
	transform: scale(1);
}
.blog__box .blog__item .blog__company .sub__title span {
	font-size: var(--fs-14);
	padding-left: 16px;
}
.blog__box .blog__item .blog__company .sub__title span:before {
	width: 10px;
	height: 10px;
}
.blog__box .blog__item .blog__footer {
	position: relative;
	margin-top: 20px;
	padding: 15px 0px;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.blog__box .blog__item .blog__footer .blog__date svg,
.blog__box .blog__item .blog__footer .blog__eye svg {
	fill: var(--blackColor);
}
.blog__box .blog__item .blog__footer .blog__date span,
.blog__box .blog__item .blog__footer .blog__eye span {
	margin-top: 4.1px;
	color: var(--textColor);
	font-size: var(--fs-14);
}
.blog__box .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.blog__box .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.blog__box .btn__link:before {
	background-color: var(--warningColor);
}
.blog__box .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}

/*==================================================
===| Footer Css
===================================================*/
.footer .footer__top {
	background-color: #070707;
	padding: 12px 0;
}
.footer .footer__top .foot__logo img {
	width: 160px;
	height: 78px;
}
.footer .footer__top .foot__social .nav .nav-link {
	font-size: var(--fs-14);
	width: 36px;
	height: 36px;
	border-radius: 50px;
	border: 1px solid var(--whiteColor);
	transition: var(--transition);
}
.footer .footer__top .foot__social .nav .nav-link svg {
	fill: var(--whiteColor);
}
.header .header__top .phone__number a {
	color: var(--whiteColor);
}
.footer .footer__top .foot__social .nav .nav-link:hover {
	border-color: var(--warningColor);
	background-color: var(--warningColor);
}
.footer .footer__top .foot__social .nav .nav-link:hover svg {
	fill: var(--whiteColor);
}
.footer .footer__content {
	background-color: var(--blackColor);
	padding: 65px 0;
}
.footer .footer__content .foot__title {
	margin-bottom: 30px;
}
.footer .footer__content .foot__title strong {
	color: var(--whiteColor);
	font-size: var(--fs-30);
	font-weight: var(--fw-4);
	font-family: "Anybody", sans-serif;
}
.footer .footer__content .foot__text p {
	color: var(--whiteColor);
	opacity: 0.7;
	margin-bottom: 0;
}
.footer .footer__content .email__sub {
	margin-top: 30px;
	display: block;
}
.footer .footer__content .email__sub button {
	background-color: #070707;
	margin-right: -2px;
}
.footer .footer__content .email__sub svg {
	fill: var(--whiteColor);
}
.footer .footer__content .foot__contact p {
	color: var(--whiteColor);
	opacity: 0.7;
	margin-bottom: 0;
}
.footer .footer__content .foot__contact .nav-item svg {
	fill: var(--whiteColor);
}
.footer .footer__content .nav-item .nav-link {
	color: var(--whiteColor);
	opacity: 0.7;
	transition: var(--transition);
}
.footer .footer__content .nav-item .nav-link:hover {
	opacity: 1;
}
.footer .footer__coph {
	background-color: #070707;
	padding: 18px 0;
}
.footer .footer__coph p,
.footer .footer__coph small {
	color: var(--whiteColor) !important;
	opacity: 0.7;
}
.footer .footer__coph a {
	color: var(--whiteColor) !important;
}
.footer .footer__coph p {
	margin-bottom: 0;
}

/*==================================================
===| Page Banner Css
===================================================*/
.page__banner {
	position: relative;
	background-size: cover;
	padding: 300px 0px 100px;
	background-attachment: fixed;
	background-position: center center;
}
.page__banner:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.7;
	background-color: var(--blackColor);
}
.page__banner .head__titles h1 {
	font-family: "Anybody", sans-serif;
	color: var(--whiteColor);
	font-weight: var(--fw-4);
}
.page__banner .head__titles .breadcrumb .breadcrumb-item a {
	color: var(--warningColor);
}
.page__banner .head__titles .breadcrumb .breadcrumb-item.active {
	color: var(--whiteColor);
	opacity: 0.7;
}
.page__banner .breadcrumb-item + .breadcrumb-item::before {
	color: var(--warningColor) !important;
}
/*==================================================
===| 404 Content Css
===================================================*/
.not__found .not__foundImg img {
	width: 535px;
	height: 535px;
	object-fit: cover;
}
.not__found .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.not__found .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.not__found .btn__link:before {
	background-color: var(--warningColor);
}
.not__found .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}
/*==================================================
===| Page Detail Css
===================================================*/
.page__detail .page__content .page__img img {
	width: 1080px;
	height: 512px;
	object-fit: cover;
	border-radius: var(--br-5);
}
.page__detail .page__content .page__title h2 {
	font-family: "Anybody", sans-serif;
	color: var(--blackColor);
	font-weight: var(--fw-4);
}
.page__detail .page__content .page__details p {
	color: var(--textColor);
}
.page__detail .left__sidebar .sidebar__item {
	padding: 30px;
	background-color: #0000000c;
	border-radius: var(--br-5);
}
.page__detail .left__sidebar .sidebar__item .sidebar__title strong {
	color: var(--warningColor);
	font-weight: var(--fw-4);
	font-size: var(--fs-20);
}
.page__detail .left__sidebar .sidebar__item .form-floating > .form-control:focus ~ label::after,
.page__detail .left__sidebar .sidebar__item .form-floating > .form-control:not(:placeholder-shown) ~ label::after {
	background-color: transparent !important;
}
.page__detail .left__sidebar .sidebar__item .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.page__detail .left__sidebar .sidebar__item .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.page__detail .left__sidebar .sidebar__item .btn__link:before {
	background-color: var(--warningColor);
}
.page__detail .left__sidebar .sidebar__item .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}
.page__detail .left__sidebar .nav .nav-item svg {
	fill: var(--warningColor);
}
.page__detail .left__sidebar .nav .nav-item .nav-link {
	color: var(--textColor);
}

/*==================================================
===| Contact Css
===================================================*/
.contact__wrapper .contact__item {
	-webkit-box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.03);
	box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.03);
	padding: 40px 0;
	border-radius: var(--br-5);
	transition: var(--transition);
	height: 245px;
	width: 100%;
}
.contact__wrapper .contact__item:hover {
	-webkit-box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.05);
	box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.05);
	transform: translateY(-5px);
}
.contact__wrapper .contact__item .icons {
	width: 50px;
	height: 50px;
	background-color: var(--warningColor);
	margin: 0 auto;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	display: flex;
	margin-bottom: 30px;
}
.contact__wrapper .contact__item .contact__content strong {
	font-size: var(--fs-20);
	color: var(--blackColor);
	font-weight: var(--fw-6);
	margin-bottom: 10px;
	display: inline;
}
.contact__wrapper .contact__item .contact__content a {
	color: var(--textColor);
}
.contact__form .card {
	-webkit-box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.03);
	box-shadow: 0px 15px 35px rgba(44, 44, 44, 0.03);
	border: 1px solid #a974000c;
}
.contact__form .form__head h2 {
	font-family: "Anybody", sans-serif;
	color: var(--blackColor);
	font-weight: var(--fw-4);
}
.contact__form .form__head span {
	color: var(--textColor);
	font-size: var(--fs-16);
	font-weight: var(--fw-4);
}
.contact__form label {
	color: var(--textColor);
}
.contact__form .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.contact__form .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.contact__form .btn__link:before {
	background-color: var(--warningColor);
}
.contact__form .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}
/*==================================================
===| Product Detail Css
===================================================*/
.product__detail .left__sidebar .sidebar__item {
	padding: 30px;
	background-color: #0000000c;
	border-radius: var(--br-5);
}
.product__detail .left__sidebar .sidebar__item .sidebar__title strong {
	color: var(--warningColor);
	font-weight: var(--fw-4);
	font-size: var(--fs-20);
}
.product__detail .left__sidebar .sidebar__item .btn__link {
	border-color: var(--warningColor) !important;
	color: var(--blackColor) !important;
}
.product__detail .left__sidebar .sidebar__item .btn__link .btn-wrap .text-one {
	color: var(--blackColor) !important;
}
.product__detail .left__sidebar .sidebar__item .btn__link:before {
	background-color: var(--warningColor);
}
.product__detail .left__sidebar .sidebar__item .btn__link:hover .btn-wrap .text-two {
	color: var(--whiteColor);
}
.product__detail .left__sidebar .nav .nav-item svg {
	fill: var(--warningColor);
}
.product__detail .left__sidebar .nav .nav-item .nav-link {
	color: var(--textColor);
}
.product__detail .product__slider .product__img img {
	width: 339px;
	height: 339px;
	object-fit: cover;
	border-radius: var(--br-5);
}
.product__detail .product__details h2 {
	font-family: "Anybody", sans-serif;
	color: var(--warningColor);
	font-weight: var(--fw-4);
}
.product__detail .product__details .product__desc p {
	color: var(--textColor);
	font-weight: var(--fw-4);
}
/*==================================================
===| Container Css
===================================================*/
.offcanvas .offcanvas-body {
	display: flex!important;
	flex-direction: column!important;
	justify-content: center!important;
	align-items: center!important;
	height: 100%!important;
	width: 100%!important;
}
.offcanvas .offcanvas-body .nav .nav-item {
	border-bottom: 1px solid #6c6c6c33!important;
	padding: 10px 0!important;
}
.offcanvas .offcanvas-body .nav .nav-item:hover .nav-link {
	color: var(--warningColor) !important;
}
.offcanvas .offcanvas-body .nav .nav-item .nav-link.active {
	color: var(--warningColor) !important;
}
.offcanvas .offcanvas-body .nav .nav-link {
	font-size: var(--fs-17)!important;
	font-weight: var(--fw-6)!important;
	color: var(--blackColor) !important;
	font-family: "Syne", sans-serif !important;
	transition: var(--transition)!important;
}
.offcanvas .offcanvas-header img {
    width: 100px!important;
} 

/*==================================================
===| Container Css
===================================================*/

/*==================================================
===| Container Css
===================================================*/
/* Mobil ekranlar (max-width değeri, mobil ekranın genişliğini belirler) */
@media only screen and (max-width: 767px) {
	/* Buraya mobil ekranlara özel stil tanımlamalarınızı ekleyebilirsiniz */
	.header .header__top .hstack {
		display: none !important;
	}
	.header .header__up .header__logo .logo__one {
		display: none;
	}
	.header .header__up .header__logo .logo__two.d-none {
		display: block !important;
	}
	.header .header__up .header__logo {
		transform: translateY(0) !important;
	}
	.header .header__top .inner__container {
		padding-left: 0;
		text-align: center;
		justify-content: center;
		align-items: center;
		display: flex;
	}
	.header .header__up {
		padding-top: 20px;
	}
	.slider__pagination {
		display: none;
	}
	.slider__banner .slider__arrow {
		text-align: center;
		max-width: 100%;
		left: 0;
		right: 0;
	}
	.product__feature .feature__item {
		height: 100%;
	}
	.about__box .head__title {
		width: 100%;
	}
	.slider__banner .swiper .swiper-slide {
		width: 100% !important;
	}
	.company__gallery .title__box {
		max-width: 100%;
	}
}

/* Tablet ekranlar (768px - 1023px) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	/* Buraya tablet ekranlara özel stil tanımlamalarınızı ekleyebilirsiniz */
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 820px !important;
	}
	.header .header__up .header__logo .logo__one {
		display: none;
	}
	.header .header__up .header__logo .logo__two.d-none {
		display: block !important;
	}
	.header .header__up .header__logo {
		transform: translateY(0) !important;
	}
	.header .header__top .inner__container {
		padding-left: 0;
	}
	.header .header__up {
		padding-top: 20px;
	}
	.slider__pagination {
		display: none;
	}
	.slider__banner .slider__arrow {
		text-align: center;
		max-width: 100%;
		left: 0;
		right: 0;
	}
	.product__feature .feature__item {
		height: 100%;
	}
	.about__box .head__title {
		width: 100%;
	}
	.slider__banner .swiper .swiper-slide {
		width: 100% !important;
	}
	.company__gallery .title__box {
		max-width: 100%;
	}
}

/* 12" - 15" ekranlar (1024px - 1365px) */
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
	/* Buraya 12" - 15" ekranlara özel stil tanımlamalarınızı ekleyebilirsiniz */
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1140px !important;
	}
	.header .header__up .header__logo .logo__one {
		display: none;
	}
	.header .header__up .header__logo .logo__two.d-none {
		display: block !important;
	}
	.header .header__up .header__logo {
		transform: translateY(0) !important;
	}
	.header .header__top .inner__container {
		padding-left: 0;
	}
	.header .header__up {
		padding-top: 20px;
	}
	.slider__pagination {
		display: none;
	}
	.slider__banner .slider__arrow {
		text-align: center;
		max-width: 100%;
		left: 0;
		right: 0;
	}
	.product__feature .feature__item {
		height: 100%;
	}
	.about__box .head__title {
		width: 100%;
	}
	.slider__banner .swiper .swiper-slide {
		width: 100% !important;
	}
	.company__gallery .title__box {
		max-width: 100%;
	}
}

/* 15" - 19" ekranlar (1366px - 1599px) */
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
	/* Buraya 15" - 19" ekranlara özel stil tanımlamalarınızı ekleyebilirsiniz */
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1200px !important;
	}
}

/* 19" ve üzeri ekranlar (1600px ve üzeri) */
@media only screen and (min-width: 1600px) {
	/* Buraya 19" ve üzeri ekranlara özel stil tanımlamalarınızı ekleyebilirsiniz */
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1440px !important;
	}
}
