 *{
	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 {
	
	
}

main section {
	padding: 140px 10% 50px 10%;
	
}



main section h1 {
	text-align: center;
	color: #038e03;
	font-size: 50px;
	font-weight: 500;
	width: 100%;
	padding-bottom: 0px;
	padding-top: 80px;
	
}

main section p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8em;	
	color: black;
}





/*Z PATTERN*/



main section.z_pattern {
	padding: 50px 0%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 50px;
}

main section p {
	text-align: start;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 25px;
	}

main section.z_pattern div {
	padding: 25px 0%;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

main section.z_pattern div h2 {
	color: #af1073;
	font-size: 35px;
	text-align: start;
	font-weight: 500;
	width: 100%;
}

main section.z_pattern div h3 {
	color: #038e03;
	font-size: 20px;
	text-align: start;
	font-weight: 500;
	width: 100%;	
	padding-bottom: 20px;
}

main section.z_pattern div:first-child {
	width: 30%;
}

main section.z_pattern div:last-child {
	width: 70%;
}

main section.z_pattern div p:first-child {
	
}

main section.z_pattern div:last-child {
	
}

main section.z_pattern div img {
	width: 100%;	
	border-radius: 10px;
	height: auto;
}

main section.z_pattern div p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8em;	
	color: black;
}
main section.z_pattern div ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0px;
	width: 100%;
	padding-left: 20px;
	padding-top: 0px;
	
}

main section.z_pattern div ul li {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8em;	
	color: black;
	text-align: start;	
	
}


main section.z_pattern:nth-child(odd) {
	flex-direction: row-reverse;
}

main section.filler p {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8em;	
	color: black;
	text-align: center;

}




/* EKLENTİ */

main section.eklenti {
	right: 50px;	
	display: flex;
	flex-direction: column;
	padding: 0px;
}

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%;
	}
	
	
	
	/*Z PATTERN*/
	
	main section {
	padding: 120px 5% 50px 5%;
	
}
	

	main section.z_pattern div {
		align-items: center;
	}
	
	main section.z_pattern div h2 {
		text-align: center;
	}
	
	main section.z_pattern div h3 {
		text-align: center;
	}

	main section.z_pattern div:first-child {
		width: 100%;

	}

	main section.z_pattern div:last-child {
		width: 100%;

	}

	main section.z_pattern div p:first-child {

	}

	main section.z_pattern div:last-child {

	}

	main section.z_pattern div img {
		width: 70%;	

	}

	main section.z_pattern div p {
		text-align: center;
	}


	main section.z_pattern:nth-child(odd) {
		flex-direction: column;
	}

	main section.z_pattern:nth-child(even) {
		flex-direction: column;
	}


	
	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 {
	padding: 10px 5% 10px 5%;
	
}
	
	main section.slider {
	height: 60vh;
	padding: 200px 50px 50px 50px;;
	}
	
	
		
	main section.z_pattern {
	padding: 20px 0%;
	gap: 20px;
}
	
	
	main section.z_pattern div img {
	width: 90%;	

	}
	
	
	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;	
}
	