

@media only screen and (min-width: 320px) and (max-width: 768px) {
	body {
		/**
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        **/
		overflow-x: hidden !important;
		text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
		font-weight: normal;
		overflow: overlay;
		background-color: #fff !important;
		font-family: 'galano_grotesque_altregular' !important;
		outline: none !important;
		color: #000 !important;
		-webkit-transition: all 0.2s ease-in-out;
		text-decoration: none;
		margin: 0px !important;
		direction: ltr;
		position: relative;
		text-rendering: optimizeLegibility;
		/* veya optimizeSpeed */
		font-feature-settings: "liga" 0;
		-webkit-font-smoothing: antialiased;
		/* veya subpixel-antialiased */
	}

	.home{
		width: 100%;
		height: 80vh;
		position: relative;
		overflow: hidden;
	}

	h1{
		color: #fff !important;
		font-family: 'galano_grotesque_altmedium' !important;
		mix-blend-mode: difference !important;
		font-size: 40px !important;
		line-height: 30px !important;
		display: block !important;
		position: relative !important;
		z-index:3 !important;
	}

	.h1-bold{
		font-family: 'galano_grotesque_altmedium' !important;
	}

	h2{
		font-weight: 100 !important;
		color: #fff !important;
		mix-blend-mode: difference !important;
		font-size: 16px !important;
		line-height: 24px !important;
		display: block !important;
		position: relative !important;
		z-index:3 !important;
	}

	h3{
		color: #000 !important;
		font-family: 'galano_grotesque_altregular' !important;
		font-size: 30px !important;
		line-height: 40px !important;
		display: block !important;
		position: relative !important;
		z-index:3 !important;
	}

	h4{
		color: #fff !important;
		font-family: 'galano_grotesque_altregular' !important;
		font-size: 55px !important;
		line-height: 35px !important;
		display: block !important;
		position: relative !important;
		z-index:3 !important;
	}


	p{
		font-family: 'galano_grotesque_altregular' !important;
		font-size: 15px !important;
		color: #000 !important;
		display: block !important;
	}

	.white-p{
		color: #fff !important;
	}


	.home-content{
		width: 85%;
		height: auto;
		display: inline-table;
		position: absolute;
		left: 0px;
		right: 0px;
		top: 0px;
		bottom: 0px;
		margin: auto;
		z-index:10;
	}

	video{
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
	}

	.liquid{
		width: 350px;
		height: 350px;
		position: absolute;
		mix-blend-mode: screen;
		right: -200px;
		bottom: 50px;
		margin: auto;
		z-index:2;
		filter: blur(0px);
		opacity:1;
	}

	.liquid3{
		width: 550px;
		height: 550px;
		position: absolute;
		mix-blend-mode: screen;
		right:250px;
		top: 150px;
		margin: auto;
		z-index:2;
		filter: blur(10px);
		opacity:0.8;
	}

	.liquid2{
		width: 350px;
		height: 350px;
		position: absolute;
		mix-blend-mode: screen;
		left: -200px;
		top: -150px;
		margin: auto;
		z-index:2;
		filter: blur(0px);
		opacity:1;
	}

	.home2{
		width: 100%;
		height: auto;
		padding-top: 0px;
		/*
		background-color: hsla(0,0%,1%,1);
		*/
		background-color: #fff;
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 100%;
	}


	.header{
		width: auto;
		max-width: 1400px;
		padding: 20px 40px;
		border-radius: 0px;
		position: fixed;
		left: 0px;
		right: 0px;
		top: 30px;
		margin: auto;
		transition: 0.2s ease-in-out;
		z-index:90;
	}

	.header.active{
		padding: 10px 40px;
		width: 100%;
		max-width: 100%;
		transition: 0.2s ease-in-out;
		top: 0px;
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		background-color: rgba(255,255,255,0.8);
	}

/* Dropdown container */
.dropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Button */
  .dropdown-btn {
	font-family: 'galano_grotesque_altregular';
	background-color: transparent;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	background-image: url(../images/menu-dot.svg);
	background-repeat: no-repeat;
	background-position: center bottom -20px;
	background-size: auto 5px;
	transition: 0.2s ease-in-out;
  }

  .dropdown-btn.active{
	background-image: url(../images/menu-dot2.svg);
	color: #000;
	transition: 0.2s ease-in-out;
  }

  .dropdown-btn:hover{
	opacity: 0.6;
	transition: 0.2s ease-in-out;
	background-position: center bottom 0px;
  }
  
  /* Dropdown content */
  .dropdown-content {
	padding: 20px;
	display: none;
	right:0px;
	border-radius: 10px;
	position: absolute;
	background-color: #fff;
	min-width: 650px;
	width: auto;
	white-space: normal; /* İçerik gerektiğinde satır kaydırabilir */
	overflow-wrap: break-word; /* Uzun kelimeleri bölerek sığdır */
	box-shadow: rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
	z-index: 1;
	opacity: 0;
	transition: 0.3s ease-in-out;
	transform: translateY(-10px);
  }
  
  /* Dropdown links */
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  /* Hover effects */
  .dropdown-content a:hover {
	background-color: #f1f1f1;
	border-radius: 7px;
  }
  
  /* Show dropdown content */
  .dropdown.show .dropdown-content {
	display: block;
	opacity: 1;
	transition: 0.3s ease-in-out !important;
	transform: translateY(0);
  }


  .logo{
	transition: 0.2s ease-in-out;
	width: 150px;
	margin: auto;
	height: 60px;
	background-image: url(../images/logo.png);
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	transition: 0.0s ease-in-out;
  }

  .logo.active{
	width: 75px;
	height: 30px;
	transition: 0.2s ease-in-out;
	background-image: url(../images/logo2.png);
  }

  .logo:active{
	transform: scale(0.95);
	transition: 0.0s ease-in-out;
  }

  .drop-menu{
	transition: 0.1s ease-in-out;
	margin-bottom: 12px;
	width: 100%;
	height: auto;
	cursor: pointer;
	padding: 6px;
	border-radius: 10px;
	display: flex;
	align-items: center;
  }

  .drop-menu:hover{
	background-color: rgba(0,0,0,.03);
	
  }

  .drop-menu:hover .drop-icos{
	transition: 0.1s ease-in-out;
	background-color: #8340f3;
  }

  .drop-menu:hover .drop-icos img{
	transition: 0.1s ease-in-out;
	filter: invert(1);
	filter: brightness(1000);
  }

  .drop-icos{
	transition: 0.1s ease-in-out;
	width: 50px;
	height: 50px;
	background-color: transparent;
	/**
	box-shadow: 0px 10px 10px rgba(0,0,0,.15);
	**/
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 7px;
	align-items: center;
	justify-content: center;
	display: flex;
  }

  .drop-link{
	transition: 0.1s ease-in-out;
	display: inline-block;
	width: auto;
	padding-left: 20px;
	height: auto;
  }

  .clearfix{
	clear: both;
  }

  .drop-link1{
	transition: 0.1s ease-in-out;
	font-size: 15px;
	line-height: 20px;
	font-family: 'galano_grotesque_altmedium';
	color: #000;
  }

  .drop-link2{
	transition: 0.1s ease-in-out;
	font-size: 11px;
	line-height: 16px;
	font-family: 'galano_grotesque_altregular';
	color: rgba(0,0,0,.5);
  }

  .menu-title{
	font-family: 'galano_grotesque_altbold';
	font-size:11px;
	color:#8340f3;
	display: block;
	line-height: 25px;
	letter-spacing: 2px;
  }

  .menu-title-black{
	color: #000;
	display: inline-block;
  }


  .cta1{
	border-radius: 20px;
	padding: 15px 30px;
	cursor: pointer;
	font-size: 15px;
	font-family: 'galano_grotesque_altregular';
	background-color: #8340f3;
	color: #fff;
	border: 3px solid #8340f3;
	outline: 2px solid #8340f3;
	display: inline-block;
	transition: 0.1s ease-in-out;
  }

  .cta1:hover{
	border: 3px solid #000;
	transition: 0.1s ease-in-out;
  }

  .cta1:active{
	background-color: transparent;
	color: #fff;
	transition: 0s ease-in-out;
  }

  .dewcontainer{
	width: auto;
	max-width: 90%;
	margin: auto;
	height: auto;
  }

  .features-box{
	padding: 20px;
	border-radius: 10px;
	background-color: rgba(0,0,0,.04);
	transition: 0.2s ease-in-out;
  }


  .features-title{
	font-family: 'galano_grotesque_altmedium';
	font-size: 17px;
	line-height: 25px;
	color: #000;
	display: block;
  }

  .features-text{
	font-family: 'galano_grotesque_altregular';
	font-size: 14px;
	line-height: 20px;
	color: #000;
	display: block;
  }

  .features-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background-color: #8340f3;
	color: #fff;
  }


  .dewspace{
	width: 100%;
	height: 100px;
  }


  .features-area{
	width: 100%;
	height: auto;
	padding-top: 200px;
	padding-bottom: 200px;
	background-color: hsla(0,0%,1%,1);
  }

  .banner{
	width: 100%;
	height: 100%;
	background-color: hsla(0,0%,1%,1);
  }

  .step-full{
	background-color: hsla(0,0%,1%,1);
	padding-top: 60px !important;
	padding-bottom: 60px;
	margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
  }

  .step-container {
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
  }

  .steps {
	width: 100% !important;
	padding: 0px !important;
	transition: 0.1s ease-in-out;
  }
  
  .step {
	font-family: 'galano_grotesque_altregular';
	font-size: 30px;
	color: #fff;
	background-color: transparent;
	border-radius: 100%;
	border: 1px solid transparent;
	box-shadow: 0px 15px 40px rgb(125, 44, 236,0.3);
	width: 70px;
	height: 70px;
	margin: auto;
	cursor: pointer;
	text-align: center;
	transition: 0.1s ease-in-out;
  }

  .step:hover{
	border: 1px solid #7d2cec;
	transition: 0.1s ease-in-out;
  }
  
  .step.active {
	box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.3);
	color: #fff;
	background-color: #7d2cec;
	transition: 0.1s ease-in-out;
  }
  
  .content {
	width: 100% !important;
	padding-left: 3%;
	padding-right:3%;
  }
  
  .step-content {
	display: none;
  }
  
  .step-content.active {
	display: block;
  }

  .step-border{
	width: 1px;
	height: 60px;
	background: rgb(11,0,26);
	background: linear-gradient(180deg, rgba(11,0,26,0) 0%, rgba(125,44,236,1) 46%, rgba(0,0,0,1) 100%);
	margin: auto;
  }

  .step-sub{
	font-size: 9px;
	color: #fff;
	font-weight: normal;
	font-family: 'galano_grotesque_altbold';
  }

  .step-title{
	color: #fff;
	font-family: 'galano_grotesque_altregular';
	font-size: 35px;
	line-height: 35px;
	display: block;
	position: relative;
	z-index:3;
  }

  .home-liquid{
	filter: saturate(0);
	width: 100%;
	height: 440px;
	mix-blend-mode: exclusion;
	margin: auto;
	z-index:2;
}

.cta2{
	border-radius: 20px;
	padding: 15px 30px;
	cursor: pointer;
	font-size: 15px;
	font-family: 'galano_grotesque_altregular';
	background-color: #8340f3;
	color: #fff;
	border: 2px solid #8340f3;
	outline: 2px solid #8340f3;
	display: inline-block;
	transition: 0.1s ease-in-out;
  }

  .cta2:hover{
	border: 2px solid #fff;
	transition: 0.1s ease-in-out;
  }

  .cta2:active{
	background-color: transparent;
	color: #000;
	transition: 0s ease-in-out;
  }


  .footer-top-container{
	width: 100%;
	height: auto;
	padding-top: 100px;
	padding-bottom: 0px;
	position: relative;
	overflow: auto;
  }

  .scroll-div {
	z-index:99998;
    position: fixed; /* Sabit pozisyon */
    bottom: -100vh; /* Başlangıçta gizli */
    left: 0;
	padding: 5%;
    width: 100%;
	height: 95vh !important;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	background-color: rgba(255,255,255,0.9);
    color: #000;
    text-align: center;
    transition: bottom 0.1s, height 0.1s; /* Düzgün geçiş */
    height: 0; /* Başlangıçta görünmez */
	box-shadow: 0px -150px 300px rgba(0,0,0,.3);
}

#showButton {
	width: 100%;
	margin: auto;
	background-color: transparent;
	background-image: url(../images/footer-opener.svg);
	background-repeat: no-repeat;
	background-size: auto 100%;
	border: none;
	position: absolute;
	left: 0px;
	right: 0px;
	z-index:998;
	animation: footer 2s ease-in-out infinite;
	transition: 0.1s ease-in-out;
	bottom: 0px;
	display: flex;
	align-items: end;
	padding-bottom: 40px;
	font-size: 20px;
	color: #fff;
	justify-content: center;
}

@keyframes footer {
	0% {
		height: 150px;
		background-position: center bottom;
	}

	50%{
		height: 155px;
		background-position: center bottom;
	}

	100% {
		height: 150px;
		background-position: center bottom;
	}
}

#closeButton {
    position: absolute;
    top: 20px;
	z-index:998;
    right: 20px;
	background-image: url(../images/close.svg);
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	background-color: transparent;
	border: none;
}

#closeButton:hover{
	opacity: 0.8;
}




.contact-input{
	width: 100%;
	height: auto;
	padding: 15px 30px;
	font-size: 16px;
	font-family: 'galano_grotesque_altmedium';
	border: 1px solid #8340f3;
	outline: none;
	background-color: transparent;
	border-radius: 20px;
	position: relative;
}

.contact-input:focus{
	outline: 1px solid #8340f3;
}

.contact-input-submit{
	width: 100%;
	font-family: 'galano_grotesque_altbold';
	border-radius: 15px;
	padding: 15px 20px;
	z-index:10;
	cursor: pointer;
	margin: auto;
	display: inline-table;
	font-size: 15px;
	letter-spacing: 2px;
	color: #fff;
	background-color: #8340f3;
	transition: 0.1s ease-in-out;
}

.contact-input-submit:hover{
	background-color: #000;
	transition: 0.1s ease-in-out;
}



/**content**/

.home-feat{
	width: 100%;
	height: auto;
	padding-top: 150px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
	background-color: hsla(0,0%,1%,1);
}

.content-banner{
	width: 100%;
	height: 100%;
	background-color: hsla(0,0%,1%,1);
  }

  .section-button{
	border-radius:10px;
	cursor: pointer;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 14px;
	font-family: 'galano_grotesque_altmedium';
	background-color: rgba(0,0,0,0.01);
	border: 1px solid rgba(0,0,0,.05);
	padding: 20px 0px;
	transition: 0.1s ease-in-out;
  }

  .section-button-active{
	border-radius: 10px;
	cursor: pointer;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 14px;
	font-family: 'galano_grotesque_altmedium';
	background-color: rgba(0,0,0,0.01);
	border: 1px solid rgba(0,0,0,.0);
	padding: 20px 0px;
	outline: 2px solid #8340f3;
	transition: 0.1s ease-in-out;
  }

  .section-button:hover{
	background-color: #8340f3;
	border: 1px solid #8340f3;
	color: #fff;
	transition: 0.1s ease-in-out;
  }

  .section-button:hover .section-ico{
	color: #fff;
	transition: 0.1s ease-in-out;
  }


  .section-ico{
	color: #8340f3;
	font-size: 13px;
	margin-right: 10px;
  }

  .content-slogan{
	font-size: 40px;
	line-height: 40px;
	color: #000;
	font-family: 'galano_grotesque_altlight';
  }

  .content-sticky{
	position: sticky;
	top: 100px;
  }



  /**contetn2**/

  .list-sticky{
	position: sticky !important;
	top: 48px !important;
  }

  .content-title{
	font-size: 23px;
	font-family: 'galano_grotesque_altmedium';
	color: #000;
	line-height: 25px;
	display: block;
	border-left: 3px solid #8340f3;
	border-radius: 0px;
	padding-left: 10px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background-color: rgba(255,255,255,0.8);
	padding-bottom: 10px;
	padding-top: 10px;
  }


  .contenttext{
	margin-left: 30px;
	padding-left: 20px;
	background-image: url(../images/icon/cont-dot.svg);
	background-repeat: no-repeat;
	background-position: left top 7px;
	background-size: auto 8px;
	margin-top: 20px !important;
 }

 .dewspace-cont{
	width: 100%;
	height: 20px;
 }



 .dew-nav{
	box-shadow: 0px -15px 30px rgba(0,0,0,.09);
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	height: 70px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: fixed;
	left: 0px;
	right: 0px;
	z-index:99990;
	bottom: 0px;
 }

 .dew-nav-btn{
	position: relative;
	width: 100%;
	height: 70px;
	padding-top: 10px;
 }

 .dew-nav-act{
	width: 90%;
	height: 4px;
	background-color: #8340f3;
	border-radius: 5px;
	position: absolute;
	left: 0px;
	right: 0px;
	margin: auto;
	top: -2px;
	outline: 1px solid #fff;
 }

 .dew-nav-btn:active{
	transform: scale(0.9);
	transition: 0s ease-in-out;
	border-radius: 15px;
	background-color: rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,.05);
 }

 .dew-nav-btn-text{
	font-size: 13px;
	color: #000;
	font-family: 'galano_grotesque_altmedium';
	text-align: center;
	display: block;
 }



 .modal-close{
	opacity: 1 !important;
	background-color: transparent;
	overflow: hidden;
	width: 50px;
	height: 50px;
	position: fixed !important;
	right:10px;
	top: 10px;
	margin: auto;
	transition: 0s;
	z-index: 9898989;
	cursor: pointer;
	transform: scale(1);
	border-radius: 15px;
	background-image: url(../images/close-01.svg);
	background-size: auto 85%;
	background-repeat: no-repeat;
	background-position: center center;
	transition: 0.1s ease-in-out;
}

.modal-close:hover{
	transform: scale(1.4);
	transition: 0.1s ease-in-out;
}

.modal-close:active{
	transform: scale(1);
	transition: 0.1s ease-in-out;
}


  .modal-dewbig{
	max-width: 100% !important;
  }


  .modal-dialog{
	margin: 0px !important;
	
  }


.modal-content{
  position: relative;
  margin: 0px !important;
  padding: 30px 20px !important;
  height: auto !important;
 background-color: #fff !important;
  width: 100% !important;
  pointer-events: auto;
  background-image: url(../images/modal-bg.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  border:none !important;
  border-radius:0px !important;
  outline: 0;
  z-index:9898989 !important;
  }


	.show{
	height: auto !important;
	margin: 0px !important;
	background-color: #fff;
	z-index:999888 !important;
	}

	.modal-backdrop{
	display: none !important;
	}

	body.modal-open {
	overflow: hidden;
	z-index:9998 !important;
	}

	.modal-backdrop.show{
	z-index:998 !important;
	opacity: 0 !important;
	}
	


	.modal-cryp-btn{
		width: 100%;
		height: auto;
		background-color: #8340f3;
		padding: 15px !important;
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 17px;
		color: #fff;
		font-family: 'galano_grotesque_altmedium';
		border-radius: 10px;
		position: relative;
		border: 2px solid transparent;
	}

	.modal-cryp-btn:active{
		background-color: #fff;
		border: 2px solid #8340f3;
		color: #7d2cec;
	}

	.modal-cryp-btn:active .modal-cryp-ico{
		color: #8340f3;
	}


	.modal-cryp-ico{
		font-size: 16px;
		color: #fff;
		display: block !important;
		margin-bottom: 10px;
	}



	.step-content-title{
		font-size: 24px;
		color: #fff;
		line-height: 30px;
		display: block;
		font-family: 'galano_grotesque_altmedium';
	  }

	  .step-content-subtitle{
		font-size: 18px;
		color: #fff;
		line-height: 30px;
		display: block;
		font-family: 'galano_grotesque_altmedium';
	  }


	  .mob-step-border{
		width: 1px;
		height: 60px;
		background-color: rgba(255,255,255,0.3);
		margin: auto;
	  }

	

	  .cta3{
		border-radius: 10px;
		padding: 10px 20px;
		cursor: pointer;
		font-size: 13px;
		font-family: 'galano_grotesque_altmedium';
		background-color: #030303;
		color: #fff;
		border: 2px solid #8340f3;
		outline: 2px solid #030303;
		display: inline-block;
		transition: 0.1s ease-in-out;
	  }

	
	  .cta3:active{
		background-color: #8340f3;
		color: #fff;
		transition: 0s ease-in-out;
	  }


	  h6{
		font-family: 'galano_grotesque_altmedium' !important;
		font-size: 25px !important;
		display: inline-block !important;
		line-height: 25px !important;
		text-align: center !important;
		color: #8340f3 !important;
		animation: title1 1s ease-in-out infinite;
	  }


	@keyframes title1 {
		0% {
			filter: drop-shadow(0px 10px 10px #4a17a1);
		}

		50%{
			filter: drop-shadow(0px 10px 10px #8340f3);
		}

		100% {
			filter: drop-shadow(0px 10px 10px #4a17a1);
		}
	}

	  .h6-span{
		font-family: 'galano_grotesque_altlight' !important;
		font-size: 20px !important;
		color: #fff !important;
		display: inline-block !important;
		line-height: 30px !important;
		text-align: center !important;
	  }

	  .h5-span{
		display: none !important;
	  }

	  h5{
		display: none !important;
	  }





	  .team-frame{
		padding: 20px;
		height: auto;
		overflow: hidden;
		border-radius: 10px;
		background-color: #fff;
		box-shadow: 0px 0px 100px 35px rgba(0,0,0,0.09);
	  }

	  .team-img{
		border-radius: 10px;
		width: 100%;
		height: 200px;
		background-repeat: no-repeat;
		background-position: left center;
		background-size: cover;
	  }

	  .team-title{
		font-family: 'galano_grotesque_altmedium';
		color: #000;
		letter-spacing: -0.5px;
		display: block;
		font-size: 19px;
		line-height: 27px;
	  }

	  .team-subtitle{
		font-family: 'galano_grotesque_altmedium';
		color: #8340f3;
		letter-spacing: -0.5px;
		display: block;
		font-size: 15px;
		line-height: 22px;
	  }

	  .team-text{
		font-size: 13px;
		color: rgba(0,0,0,.7);
		font-family: 'galano_grotesque_altmedium';
		line-height: 23px;
		display: block;
	  }

	  .team-title-page{
		font-size: 30px;
		font-family: 'galano_grotesque_altmedium';
		letter-spacing: 5px;
		color: #8340f3;
		display: block;
	  }

	  .footer-line{
		width:100%;
		height: 250px;
		background-image: url(../images/footer-border.svg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto 100%;
		display: none;
		position: relative;
	}	


}













