@import url('../css2');

:root{
    --bg-main: #0074C7;
    --bg-second: #FFD700;
	--text-main: #1E1E1E;
	--text-second: #FFFFFF;
	--bg-green: #08E030;
}

*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html,
body{
    margin: 0px;
    padding: 0px;
}
body{
    background: var(--bg-main);
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 150%;
	font-weight: 500;
}
.container{
    position: relative;
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
}
.d-flex{
	display: flex;
}
a{
	color: var(--text-main);
	text-decoration: none;
	transition: all 0.3s ease-in-out 0s;
}
a:hover{
	color: var(--text-second);
}
.btn_googleplay{
	display: inline-block;
	width: 262px;
	height: 77px;
	background: url(../media/icon_googleplay.png) no-repeat;
	background-size: 100% 100%;
}
.btn_googleplay:hover{
	transform: scale(1.02);
}
img{
	display: block;
	max-width: 100%;
}
h2{
	font-family: "Comfortaa", sans-serif;
	color: var(--text-second);
	font-size: 64px;
	text-align: center;
	font-weight: 600;
	line-height: 150%;
	margin: 0px 0px 50px;
}
h3{
	font-family: "Comfortaa", sans-serif;
	color: var(--text-main);
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	line-height: 150%;
	margin: 0px 0px 15px;
}
.desktop{
	display: block;
}
.mobile{
	display: none;
}

/*header*/
header{
	position: relative;
	z-index: 100;
}
.header__fix{
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translate(-50%, 0%);
    max-width: 1296px;
    width: calc(100% - 38px);
    margin: 0 auto;
	background: var(--bg-second);
	border-radius: 15px;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	box-shadow: 0px 4px 8px rgba(16, 0, 78, 0.25);
}
header .logo{
	width: 48px;
}
header nav{
	display: flex;
	width: calc(100% - 58px);
	justify-content: space-evenly;
	align-items: center;
	font-size: 16px;
}
header .menu_btn{
	display: none;
}

/*main*/
section{
	margin-bottom: 90px;
}

#fs{
	background: #01A2FD;
}
#fs .fs__bg{
	position: relative;
	padding-top: 100px;
}
#fs .fs__bg img{
	width: 100%;
}
#fs .fs__bg .fs__btn_wrap{
	position: absolute;
	bottom: 30%;
	left: 50%;
	transform: translate(-50%, 0);
}

#about{
	color: var(--text-second);
}
#about .about__wrapp{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#about .about__text{
	width: 62%;
	font-size: 18px;
	line-height: 150%;
}
#about .about__img{
	width: 36%;
}
#about .btn_googleplay{
	width: 221px;
	height: 65px;
}

#play .play__item {
	max-width: 900px;
}

#features{
	position: relative;
}
#features:before{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../media/bg_features.png);
	background-repeat: no-repeat;
	background-position: 70% 100%;
	content: "";
	opacity: 0.9;
}
#features .desktop .features__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#features .features__list .features__item{
	display: flex;
	width: 32%;
	border-radius: 10px;
	padding: 24px;
	background: var(--bg-green);
	margin: 0px 2% 40px 0px;
}
#features .features__list .features__item:nth-child(3n),
#features .features__list .features__item:last-child{
	margin-right: 0px;
}
#features .features__list .features__item .icon{
	min-width: 48px;
	margin-right: 20px;
}
#features .features__list .features__item .title{
	margin-bottom: 10px;
}

#reviews .reviews__list .reviews__item{
	position: relative;
	max-width: 412px;
	width: 100%;
	margin-top: 50px;
	padding: 64px 16px 24px;
	border-radius: 10px;
	background: #F3F3F3;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
#reviews .reviews__list .reviews__item .avatar{
	position: absolute;
	left: 50%;
	top: -50px;
	transform: translate(-50%, 0%);
	width: 100px;
	height: 100px;
}

/*footer*/
footer{
	position: relative;
	background: var(--bg-second);
	padding: 48px 0px;
	font-size: 16px;
	font-weight: 500;
}
footer .container{
	flex-direction: column;
	align-items: center;
}
footer .menu_policy{
	width: 100%;
	justify-content: flex-end;
	margin-bottom: 28px;
}
footer .menu_policy span{
	position: relative;
	margin-right: 30px;
}
footer .menu_policy span:last-child{
	margin: 0px;
}
footer .menu_policy span:before{
	position: absolute;
	right: -17px;
	top: 0px;
	content: "/";
}
footer .menu_policy span:last-child:before{
	content: "";
}
footer .copyright{
	text-align: center;
}

/*swiper*/
.swiper-wrapper,
.swiper-free-mode > .swiper-wrapper{
	margin-bottom: 48px !important;
}
.swiper-slide{
	height: auto !important;
}
.swiper-btns{
	display: flex;
	width: 100%;
	justify-content: center;
}
.swiper-btns .swiper-btn{
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin: 0px 10px;
	background: var(--bg-second);
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.swiper-btns .swiper-btn:hover{
	background: var(--bg-green);
}
.swiper-btns .swiper-btn.prev:before{
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../media/icon_arrow.png);
	background-position: 46% 50%;
	background-repeat: no-repeat;
	background-size: 8px 13px;
	content: "";
}
.swiper-btns .swiper-btn.next:before{
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../media/icon_arrow.png);
	background-position: 46% 50%;
	background-repeat: no-repeat;
	background-size: 8px 13px;
	content: "";
	transform: rotate(180deg);
}

/*page*/
.page{
	color: var(--text-second);
	font-size: 18px;
	line-height: 150%;
	font-weight: 400;
	padding: 90px 0px;
}
h1{
	font-family: "Comfortaa", sans-serif;
	font-size: 64px;
	color: var(--text-second);
	font-weight: 600;
	line-height: 150%;
	margin: 0px 0px 30px;
}
.page h2{
	font-size: 36px;
	text-align: left;
	margin: 0px 0px 25px;
}
.page h3{
	font-size: 24px;
	color: var(--text-second);
	text-align: left;
	margin: 0px 0px 25px;
}
.page h4{
	font-size: 18px;
	color: var(--text-second);
	text-align: left;
	margin: 0px 0px 25px;
	line-height: 150%;
}
p{
	margin: 0px 0px 30px;
}
.page a{
	color: var(--text-second);
	text-decoration: underline;
}
.page a:hover{
	text-decoration: none;
}
.page .btn_back{
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	border: 1px solid #fff;
	border-radius: 4px;
	margin-bottom: 60px;
	padding: 6px 30px 6px 55px;
	background: url(../media/icon_arrow_back.png) no-repeat;
	background-size: 24px;
    background-position: 10% 50%;
	transition: all 0.3s ease-in-out 0s;
}
.page .btn_back:hover{
	background-position: 5% 50%;
}

/*cookies*/
#cookie-banner{
	position: fixed;
	max-width: 900px;
	width: calc(100% - 20px);
	bottom: 10px;
	right: 10px;
	background: var(--bg-main);
	font-family: "Comfortaa", sans-serif;
	color: var(--text-second);
	font-size: 24px;
	line-height: 150%;
	padding: 80px 65px;
	box-shadow: 0px 4px 8px rgba(16, 0, 78, 0.25);
	z-index: 10000;
}
#close-cookies{
	position: absolute;
	top: 60px;
	right: 65px;
	display: block;
	width: 36px;
	height: 36px;
	background: url(../media/icon_close.png) no-repeat;
	background-size: 100%;
	cursor: pointer;
}
#cookie-banner .cookie-container{
	margin-top: 80px;
}
#cookie-banner .btns-wrapp{
	display: flex;
	justify-content: flex-end;
}
#cookie-banner .cookies_btn{
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 16px 25px;
	cursor: pointer;
}
#cookie-banner .cookies_btn.decline{
	border: 3px solid var(--text-second);
	background: transparent;
	color: var(--text-second);
}
#cookie-banner .cookies_btn.accept{
	background: var(--text-second);
	color: var(--bg-main);
	border: 3px solid var(--text-second);
	margin-left: 30px;
}

@media (max-width:1316px){
	.container{
		padding: 0px 19px !important;
	}
	section{
		margin-bottom: 60px;
	}
	#play{
		width: calc(100% - 38px);
		margin: 0px 19px 60px;
	}
	#play .container{
		padding: 0px !important;
	}
	#features .features__list{
		display: inline-flex;
	}
	#reviews{
		width: calc(100% - 38px);
		margin: 0px 19px 60px;
	}
	#reviews .container{
		padding: 0px !important;
	}
}
@media (max-width:992px){
	h2{
		font-size: 36px;
		margin: 0px 0px 45px;
	}
	.desktop{
		display: none;
	}
	.mobile{
		display: block;
	}
	.header__fix{
		padding: 10px 16px;
	}
	header .logo{
		width: 36px;
	}
	header nav{
		display: none;
	}
	header nav.open{
		display: flex;
		position: fixed;
		right: -19px;
		top: -20px;
		flex-direction: column;
		align-items: flex-start;
		min-width: 250px;
		width: 40%;
		padding: 100px 19px 60px 35px;
		background: var(--bg-second);
		border-radius: 30px 0px 0px 30px;
		box-shadow: -6px 8px 4px rgba(16, 0, 78, 0.25);
		z-index: 1;
	}
	header nav a{
		margin: 0px 0px 20px;
	}
	header .menu_btn{
		display: flex;
		align-items: center;
		width: 24px;
		height: 16px;
		position: relative;
		cursor: pointer;
		z-index: 2;
		background: none;
		border: none;
		padding: 0px;
	}
	header .menu_btn .line{
		position: relative;
		display: block;
		width: 100%;
		height: 3px;
		background: var(--text-main);

	}
	header .menu_btn .line:before,
	header .menu_btn .line:after{
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--text-main);
		content: "";
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0;
	}
	header .menu_btn .line:before{
		top: -6px;
	}
	header .menu_btn .line:after{
		bottom: -6px;
	}
	header .menu_btn.active .line{
		background-color: rgba(0, 0, 0, 0);
	}
	header .menu_btn.active .line:before{
		transform: translateY(6px) rotate(45deg);
	}
	header .menu_btn.active .line:after{
		transform: translateY(-6px) rotate(-45deg);
	}
	#fs .fs__bg .fs__btn_wrap{
		bottom: 15%;
	}
	#about .about__text{
		font-size: 16px;
	}
	#features{
		width: calc(100% - 38px);
		margin: 0px 19px 60px;
	}
	#features .container{
		padding: 0px !important;
	}
	#features:before{
		display: none;
	}
	#features .features__list .features__item{
		width: 335px;
		margin-bottom: 0px;
	}
	footer .menu_policy{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 15px;
	}
	footer .menu_policy span{
		margin: 0px 0px 5px;
	}
	footer .menu_policy span:before{
		display: none;
	}
	footer .copyright{
		line-height: 120%;
	}

	/*cookies*/
	#cookie-banner{
		font-size: 20px;
		line-height: 150%;
		padding: 60px 19px 35px;
	}
	#close-cookies{
		position: absolute;
		top: 30px;
		right: 19px;
	}
	#cookie-banner .cookie-container{
		margin-top: 30px;
	}
	#cookie-banner .cookies_btn{
		font-size: 12px;
		padding: 10px 15px;
	}
}
@media (max-width:768px){
	html{
		min-width: 350px;
	}
	.btn_googleplay,
	#about .btn_googleplay{
		width: 157px;
		height: 46px;
	}
	#fs{
		position: relative;
	}
	#fs:before{
		position: absolute;
		bottom: 0px;
		content: "";
		background: linear-gradient(to top, #0074C7, transparent);
		display: block;
		width: 100%;
		height: 30px;
		z-index: 1;
	}
	#fs .fs__bg .fs__btn_wrap{
		bottom: 10%;
	}
	#about .about__wrapp{
		flex-direction: column;
	}
	#about .about__text{
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	#about .about__img{
		width: 100%;
	}
}

<style>
  #خبرنامه {
    display: flex;
    max-width: 500px;
    margin: 20px 0;
  }

  #emailsign {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 16px;
    border-radius: 6px 0 0 6px;
    outline: none;
  }

  #form-signup {
    background-color: white;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 16px;
    direction: rtl; /* Farsça sağdan sola */
  }

  #form-signup:hover {
    background-color: #e0e0e0;
  }

  #msgSignup {
    margin-top: 10px;
  }
</style>