 *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Montserrat, "sans-serif";
	background-color: white;
	
}
	
a {
	color: inherit;
	text-decoration: none; 
	display: inline-block;
}


/*		PANTONE

	PEMBE: #af1073   	 
	YEŞİL: #038e03		
	  				*/




/* HEADER */
	
header {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	align-items: center;
	background-color: white;
	color: black;
	position: fixed;
	z-index: 9999;
	border-bottom: 1px solid rgba(26,26,26,0.20);
	box-shadow: rgba(100, 100, 111, 0.5) 0px 8px 20px 0px;
}

header div {
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	text-align: center;
	width: 100%;
	padding: 10px 10% 0px 10%;
	
}

header nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0px 10%;
}

header nav a {
	font-size: 18px;
	padding: 10px 10px 10px 10px;	
	transition-duration: .5s;
	display: block;
	font-weight: 500;
}

header nav a:hover {
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;	
	color: #038e03;
	transition-duration: .5s;
}




/* DROPDOWN */

header nav a.dropdown {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;	
	transition-duration: .5s;
	left: 0px;
	top: 100%;
}

header nav a.dropdown img {
	width: 30px;
	height: 30px;
}

header nav a.dropdown:hover {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;	
	color: #038e03;
	transition-duration: .5s;	
}


/* Açılır Menü */

header nav a:hover + div {
	display: flex;	
}

header nav div.sub_menu {
	width: max-content;
	position: absolute;
	display: none;				/*none buraya*/      
	flex-direction: column;
	padding: 0px;
	text-align: left;
	z-index: 99999;
	border: 1px solid rgba(26,26,26,0.20);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 8px 20px 0px;
}

header nav a.dropdown:hover + div.sub_menu {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 5px;
	position: absolute;
}

header nav div.sub_menu:hover {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 5px;	
}

header nav div.sub_menu a {
	color: black;
	font-size: 16px;
	font-weight: 500;
	padding: 20px;
	position: relative;
	border-radius: 5px;
	transition-duration: .5s;
	border: 2px solid white;
	
}

header nav div.sub_menu a:hover {
	color: #038e03;
	font-size: 16px;
	padding: 20px;
	font-weight: 500;
	background-color: white;
	transition-duration: .5s;
	border: 2px solid #038e03;
}

header nav span.menu a.dropdown {
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 10px;	
	transition-duration: .5s;
	right: 0px;
	top: 100%;
}

header nav span.menu {
	display: flex;
	flex-direction: column;
}

header nav span.menu a.dropdown img {
	width: 30px;
}

header nav span.menu div.sub_menu {
	width: max-content;
	position: absolute;
	display: none;			 			/*none buraya*/
	flex-direction: column;
	border: 2px solid #af1073;
	z-index: 99999;
	top: 0px;
	right: 0px;
}

header nav span.menu div.sub_menu:hover {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 5px;
	border: 2px solid #F3229B;
}



/* ONLİNE MAĞAZA BUTONU */

header a.btn {
	background-color: white;
	padding: 12px 20px 10px 20px;
	color: #038e03;
	border-radius: 5px;
	margin: 3px 0px;
	text-transform: uppercase;
	word-spacing: 1px;
	letter-spacing: 1px;
	font-weight: 500;
	border: 2px solid #038e03;
	transition-duration: .5s;
}

header a.btn:hover {
	background-color: #038e03;
	padding: 12px 20px 10px 20px;
	color: white;
	border-radius: 5px;
	margin: 3px 0px;
	text-transform: uppercase;
	word-spacing: 1px;



	font-weight: 500;
	letter-spacing: 1px;
	border: 2px solid #038e03;
	transition-duration: .5s;
}


/* MOBİL MENÜ */

header span.mobilmenu a {
	display: none;
}




/* MAIN */

main {
	
}





/*		PANTONE

	PEMBE: #F3229B   	 rgba(243,34,155,0.90)
	YEŞİL: #61C92B		 rgba(97,201,43,0.90)
	GRİ: #1A1A1A
	BEYAZ: #FFFFFF
	MAVİ: #27AAE1   				*/

	
	/* FİLLER */


main section.filler {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 200px 10% 50px 10%;
	background-color: white;
	gap: 30px;
}

main section.filler div {
	padding: 50px 0px 50px 0px;;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	
}

main section.filler div a {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	font-size: 18px;
	font-weight: 300;
	
}

main section.filler h1 {
	text-align: center;
	font-weight: 400;
	font-size: 50px;	
	color: #038e03;
	padding-bottom: 25px;
}

main section.filler p {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8em;	
	color: black;
	width: 100%;
}



/* CONTACT FORM */


main section.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 10% 100px 10%;	
}



main section.contact h2 {
	color: #038e03;
	font-size: 40px;
	font-weight: 500;
	text-align: center;	
	margin-bottom: 70px;
}

main section.contact form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2%;
	width: 100%;
	height: auto;	
}

main section.contact form div.input {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: center;
	gap: 25px;
	font-size: 18px;
	
}

main section.contact form div.input span.area {
	width: 34%;
	font-size: 18px;
	
}

main section.contact form div.input span.area input {
	width: 100%;
	height: 40px;
	margin-top: 15px;
	border-radius: 5px;
	background-color: white;
	border: 1.5px solid black;
	transition-duration: .5s;
	color: white;
	padding: 10px 10px;
	outline: #038e03;
	font-size: 16px;
}

main section.contact form div.input span.area input:hover {
	width: 100%;
	height: 40px;
	margin-top: 15px;
	margin-left: 0px;
	border-radius: 5px;
	background-color: transparent;
	border: 2px solid #038e03;
	transition-duration: .5s;
	padding: 0px 10px;
}

main section.contact form div.input span.area input:focus {
	border-color: #038e03;
	transition-duration: .5s;
}

main section.contact form span.textarea {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
	width: 70%;
	box-sizing: content-box;
	gap: 15px;
	border-radius: 5px;
	font-size: 18px;
}

main section.contact form span.textarea textarea {
	border: 1.5px solid  black;
	transition-duration: .5s;
	border-radius: 5px;
	height: 200px;
	background-color: white;
	color: black;
	padding: 10px 10px;
	outline: #038e03;
	font-size: 16px;
}

main section.contact form span.textarea textarea:hover {
	border-radius: 5px;
	background-color: white;
	border: 2px solid #038e03;
	padding: 10px 10px;
	transition-duration: .5s;
	font-size: 16px;
	color: black;
	
}

main section.contact form a {
	display: inline-block;
	justify-content: flex-end;
	margin-top: 25px;
}


main section.contact form div.button {
	
}

main section.contact form a button.submit {
	background-color: #038e03;
	padding: 13px 26px;
	color: white;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: 2px;
	word-spacing: 3px;
	font-weight: 500;
	border: 2px solid #038e03;
	transition-duration: .5s;
	margin-top: 25px;
	
}

main section.contact form a button.submit:hover {
	background-color: white;
	padding: 13px 26px;
	color: #038e03;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: 2px;
	word-spacing: 3px;
	font-weight: 600;
	border: 2px solid #038e03;
	transition-duration: .5s;
	margin-top: 25px;
	
}



/* ONLİNE MAĞAZA BUTONU */

main section.contact form a.send {
	background-color: white;
	padding: 12px 20px 10px 20px;
	color: #038e03;
	border-radius: 5px;
	margin: 3px 0px;
	text-transform: uppercase;
	word-spacing: 1px;
	letter-spacing: 1px;
	font-weight: 500;
	border: 2px solid #038e03;
	transition-duration: .5s;
	margin-top: 25px;
}

main section.contact form a.send:hover {
	background-color: #038e03;
	padding: 12px 20px 10px 20px;
	color: white;
	border-radius: 5px;
	margin: 3px 0px;
	text-transform: uppercase;
	word-spacing: 1px;
	margin-top: 25px;

	font-weight: 500;
	letter-spacing: 1px;
	border: 2px solid #038e03;
	transition-duration: .5s;
}

	
/* EKLENTİ */

main section.eklenti {
	right: 50px;	
	display: flex;
	flex-direction: column;
}

a.whatsapp img {
	content: "";
	position: fixed;
	z-index: 999;
	bottom: 50px;
	right: 50px;	
}



a.instagram img {
	content: "";
	position: fixed;
	z-index: 999;
	bottom: 150px;
	right: 50px;	
}


/* FOOTER */

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	padding-left: 8%;
	padding-right: 8%;
	padding-bottom: 25px;
	background-color: #af1073;
	position: relative;
	gap: 80px; 
}


footer section.main {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	align-content: center;
	gap: 50px;	
}

footer section.main div.yasal {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 55%;
	gap: 40px;	
	padding-bottom: 50px;
}

footer section.main div.yasal div {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 5px;
	z-index: 1;
}

footer section.main div.yasal h3 {
	text-align: center;
	font-size: 25px;
	font-weight: 500;
	color: white;
	letter-spacing: 1px;
	padding-bottom: 20px;
	z-index: 1;
}

footer section.main div.yasal div p {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;	
	color: white;
	z-index: 1;
}

footer section.main div.social_media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;	
	width: 45%;
}

footer section.main div.social_media div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding-bottom: 50px;
}

footer section.main div.social_media div h3 {
	text-align: center;
	font-size: 25px;
	font-weight: 500;
	color: white;
	letter-spacing: 1px;
	padding-bottom: 20px;
	
}

footer section.main div.social_media div a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;	
	color: white;
	text-align: center;	
	transition-duration: .5s;
}

footer section.main div.social_media div a:hover {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;	
	color: white;
	text-align: center;	
	transition-duration: .5s;
}


footer section.main div.social_media h3 {
	text-align: center;
	font-size: 25px;
	font-weight: 500;
	color: white;
	letter-spacing: 1px;
}

footer section.main div.social_media div.icons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;	
}

footer section.main div.social_media div.icons a {	
	
}

footer section.main div.social_media div.icons a img {
	width: 40px;
	height: 40px;
	transition-duration: .5s;
}

footer section.main div.social_media div.icons a img:hover {
	transition-duration: .5s;
	border-radius: 50px;
	width: 50px;
	height: 50px;
}

footer p {
	text-align: center;
	font-size: 14px;
	font-weight: 300;
	word-spacing: 4px;
	color: white;
}


/* MEDIA ÇAĞIRMA */

@media screen and (max-width: 1300px) {
	
}

@media screen and (max-width: 1100px) {
	
}

@media screen and (max-width: 860px) {
	header div {
	padding: 0px 5% 0px 5%;
	}

	header nav {
	padding: 10px 5%;
	}
	
	main section.filler {
	padding: 200px 5% 50px 5%;
}
	
	
	main section.contact form div.input {
	align-items: center;
	flex-direction: column;
	
}
	
	main section.contact form span.textarea {
	width: 80%;
}
	main section.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 5% 100px 5%;	
}
	
	main section.contact form div.input span.area {
	width: 80%;
}
	
	
	main section.eklenti {
	right: 20px;	
	}

	a.whatsapp img {
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
}
	
	a.instagram img {
	bottom: 90px;
	right: 20px;
	width: 57px;
	height: 57px;
}
	
	footer section.main {
	flex-direction: column;
	gap: 80px;
	margin-bottom: 70px;
	}
	
	footer section.main div.yasal {
	flex-direction: column;
	width: 100%;
	gap: 100px;
	}
	
	footer section.main div.social_media {
	width: 100%;
	}
	
	footer section.main div.yasal div {
	align-items: center;
	}

	footer section.main div.yasal h3 {
	text-align: center;
	}

	footer section.main div.yasal div p {
	text-align: center;
	width: 80%;
	}	
}

@media screen and (max-width: 750px) {
	
	
	
}

@media screen and (max-width: 600px) {
	header {
	padding: 10px 3% 10px 3%;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
	}
	
	header div a.btn {
	display: none;
	}
	
	header nav {
	display: none;
	}
	
	header div {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	}
	
		
	header span.mobilmenu a {
	display: flex;
	}
	
	header {
	align-items: flex-start;
	}
	
	main section.filler {
	padding: 120px 10% 50px 10%;;
}
	
	
	footer {
	padding-left: 4%;
	padding-right: 4%;
	}
}


/* MOBİLE MODE */

@media screen and (max-width: 500px) {
	
	
	}
}

	footer section.main div.social_media div.icons {
	gap: 5px;	
}
	