/*-----------------------------------------------------------------------------------
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
===================================================*/
*,
*::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;
}

/*==================================================
===| Roote Settings
===================================================*/

:root {
	/* Theme Color */
	--blackColor: #0f172a;
	--textColor: #8d93a1;
	--whiteColor: #fff;
	--blueColor: #312783;

	--transition: all 0.7s 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;
}

/*==================================================
===| Header Top
===================================================*/
.spinner {
	border: 4px solid #e6e9f9;
	border-top-color: var(--blueColor);
	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__nav.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
===================================================*/
/*==================================================
===| Page Btn
===================================================*/
.page__btn {
	padding: 0 40px;
	font-size: var(--fs-16);
	font-weight: var(--fw-6);
	height: 60px;
	line-height: 60px;
	display: inline-block;
	text-transform: uppercase;
	color: var(--whiteColor);
	background-color: var(--blueColor);
	transition: var(--transition);
	border-radius: var(--br-5);
	position: relative;
}
.page__btn span {
	position: relative;
	z-index: 2;
	transition: var(--transition);
}
.page__btn:after {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 0%;
	border-radius: var(--br-5);
	height: 100%;
	content: '';
	background: var(--blackColor);
	transition: var(--transition);
}
.page__btn:hover:after {
	left: 0%;
	right: auto;
	width: 100%;
}
.page__btn:hover span {
	color: var(--whiteColor);
}
/*==================================================
===| Header Css
===================================================*/
.header .head__logo img {
	width: 150px !important;
}
.header .phone .phone__icons {
	height: 50px;
	width: 50px;
	align-items: center;
	display: inline-flex;
	justify-content: center;
	border: 1.9px solid var(--blueColor);
	border-radius: 50%;
	margin-right: 18px;
}
.header .phone__content span {
	color: var(--blueColor);
}
.header .phone__content a {
	color: var(--blueColor);
	font-weight: var(--fw-7);
	font-size: var(--fs-20);
}
.header .phone .phone__icons svg {
	transition: all linear 0.3s;
	fill: var(--blueColor) !important;
}
.header .phone:hover .phone__icons svg {
	-webkit-animation: vibrate 0.4s infinite;
	animation: vibrate 0.4s infinite;
}

@keyframes vibrate {
	0% {
		transform: translateX(-2px) rotate(0);
	}
	25% {
		transform: translateX(2px) rotate(-2deg);
	}
	50% {
		transform: translateX(-2px) rotate(2deg);
	}
	75% {
		transform: translateX(2px) rotate(-2deg);
	}
	100% {
		transform: translateX(-2px) rotate(0);
	}
}
@-webkit-keyframes vibrate {
	0% {
		transform: translateX(-2px) rotate(0);
	}
	25% {
		transform: translateX(2px) rotate(-2deg);
	}
	50% {
		transform: translateX(-2px) rotate(2deg);
	}
	75% {
		transform: translateX(2px) rotate(-2deg);
	}
	100% {
		transform: translateX(-2px) rotate(0);
	}
}
.header .head__menu .nav-link,
.offcanvas .offcanvas-body .nav-link {
	color: var(--blackColor);
	font-size: var(--fs-16);
	font-weight: var(--fw-5);
}
.header .head__menu .nav-link.active,
.offcanvas .offcanvas-body .nav-link.active {
	color: var(--blueColor);
}
.header .head__menu .nav-link:hover,
.offcanvas .offcanvas-body .nav-link:hover {
	color: var(--blueColor);
}
/*==================================================
===| Container Css
===================================================*/
.banner__video {
	background: url('../img/depolama.gif') no-repeat center center fixed;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: relative;
}
.banner__video:before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	content: '';
	background: linear-gradient(180deg, #f1efff 0%, rgba(0, 0, 0, 0.08) 200%);
}
.banner__video .content .head__content h1 {
	color: var(--blueColor);
}
.banner__video .content .head__content span {
	color: var(--blackColor);
}
/*==================================================
===| Head Pages Css
===================================================*/
.head__pages {
	background-color: #f1efff;
	width: 100%;
	padding-top: 180px;
	padding-bottom: 70px;
	position: relative;
}
.head__pages .head__title strong {
	font-size: var(--fs-35);
	color: var(--blueColor);
}
/*==================================================
===| About Wrapper Css
===================================================*/

.about__wrapper .about__img img {
	border-radius: var(--br-10);
}
.about__mission {
	padding: 110px 0;
	background-color: #f1efff;
}
.about__mission .about__items {
	background-color: var(--whiteColor);
	border-radius: var(--br-5);
	padding: 25px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.gallery__list .gallery__item img {
	width: 250px;
	height: 300px;
	border-radius: var(--br-10);
}
/*==================================================
===| Why Company Css
===================================================*/
.why__company .why__list {
	margin-top: 80px;
}

.why__company .item__box {
	padding: 40px;
	-webkit-box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.596);
	box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.596);
	border-radius: 6px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	border: 1px solid #f5e0dd1b !important;
}

.why__company .item__box:hover {
	background-color: var(--blueColor);
	-webkit-box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.795);
	box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.795);
}

.why__company .item__box:before {
	content: '';
	position: absolute;
	left: 75px;
	top: 70px;
	width: 66px;
	height: 66px;
	background-color: var(--blueColor);
	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;
}

.why__company .item__box:hover:before {
	width: 800px;
	height: 800px;
	opacity: 1;
}

.why__company .item__box .icon {
	width: 66px;
	height: 66px;
	font-size: 32px;
	line-height: 66px;
	text-align: center;
	background-color: var(--blueColor);
	border-radius: 100px;
	color: var(--whiteColor);
	margin-bottom: 24px;
	-webkit-box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.199);
	box-shadow: 0px 15px 35px rgba(241, 239, 255, 0.199);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	fill: var(--whiteColor);
}

.why__company .item__box:hover .icon {
	fill: var(--whiteColor);
	background-color: var(--blueColor);
}

.why__company .item__box .title strong {
	font-size: var(--fs-20);
	font-weight: var(--fw-6);
	transition: var(--transition);
	color: var(--blueColor);
}

.why__company .item__box:hover .title strong,
.why__company .item__box:hover .desc p {
	color: var(--whiteColor);
}

/*==================================================
===| Contact Wrapper Css
===================================================*/
.contact__wrapper .contact__info .contact__layer {
	z-index: 1;
	padding: 50px 30px;
	background-color: var(--blueColor);
	border-radius: var(--br-5);
}
.contact__wrapper .contact__info .contact__layer strong {
	font-size: var(--fs-18);
	color: var(--whiteColor);
}
.contact__wrapper .contact__info .contact__layer p {
	font-size: var(--fs-16);
	color: var(--whiteColor);
}
.contact__wrapper .contact__info .featured__box .contact__phone i,
.contact__wrapper .contact__info .featured__box .contact__mail i,
.contact__wrapper .contact__info .featured__box .contact__map i {
	color: var(--whiteColor);
	font-size: var(--fs-20);
}
.contact__wrapper .contact__info .featured__box .contact__phone a,
.contact__wrapper .contact__info .featured__box .contact__mail a,
.contact__wrapper .contact__info .featured__box .contact__map p {
	color: var(--whiteColor);
	font-size: var(--fs-17);
	margin: 0;
}
/*==================================================
===| Container Css
===================================================*/
.footer {
	background-color: var(--blueColor);
}

/*==================================================
===| 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 .phone {
		display: none !important;
	}
}

/* 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 .phone {
		display: none !important;
	}
}

/* 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;
	}
}

/* 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;
	}
}
