/* CSS reset start  */
body {
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0px;
	margin: 0px;
	cursor: default;
	overflow: hidden;
	scroll-behavior: smooth;
}

* {
	-webkit-tap-highlight-color: transparent;
}

body * {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

a,
a:active,
a:link,
a:link:visited {
	text-decoration: none;

}



.site_wrapper {
	min-height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100dvh;
	padding: 0px;
	margin: 0px;
	cursor: default;
	background-color: white;
	user-select: none;
	overflow-y: scroll;
	scroll-behavior: smooth;
	font-family: 'Montserrat';
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
}

:root {
	--primary-color: rgba(246, 234, 227, 1);
	--secondary-color: rgba(173, 147, 136, 1);
	--grey_text-color: rgba(98, 99, 106, 1);
}

/* CSS reset end  */


/* Csúszka start */

/* Firefox (külön szintaxis) */
* {
	scrollbar-width: thin;
	/* "auto" vagy "thin" */
	scrollbar-color: rgb(173, 147, 136) rgba(11, 120, 114, 0);
	/* [thumb] [track] */
}

/* Csúszka end */


/* NAV */

header {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
}

nav {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	height: 88px;
	background-color: white;
	width: 100%;
	box-shadow: 8px 16px 40px 0px rgba(0, 0, 0, 0.08);
}

#nav_logo_wrapper {

	padding-left: 5%;
}

#nav_right_wrapper {

	padding-right: 5%;
}

#nav_logo {
	font-family: 'Montserrat';
	font-size: 2rem;
	color: black;
}

#nav_right_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

#nav_links {
	display: none;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 24px;
	font-family: 'Montserrat Bold';
	font-size: 16px;
}

#nav_links a {
	color: black;
}

#nav_instagram_wrapper {
	display: none;

}

.nav_instagram_button {
	color: white;
	font-family: 'Montserrat Bold';
	background-color: var(--secondary-color);
	font-size: 0.8rem;
	border-radius: 6px;
	padding: 14px 24px;
}

/* BURGER NAV */

.nav_burger_button {
	background-color: var(--primary-color);
	color: rgba(74, 63, 53, 1);
	border: none;
	border-radius: 10px;
	height: 32px;
	width: 70%;
}

.nav_burger_button_instagram {
	background-color: white;
	border-color: rgba(169, 149, 138, 1);
	border-radius: 10px;
	height: 32px;
	width: 70%;

}


/* FOOTER */

footer {
	background-color: var(--secondary-color);
	width: 100%;
}

#footer_circle_wrapper {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	padding-top: 20px;
}

.footer_circle {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	height: 50px;
	width: 50px;
	background-color: white;
	border-radius: 25px;
}

#footer_circle6 {
	display: none;
}

#footer_circle7 {
	display: none;
}

#footer_circle8 {
	display: none;
}

#footer_circle9 {
	display: none;
}

#footer_middle {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
	gap: 30px;
}

#footer_logo {
	color: white;
	font-size: 2rem;
}

#footer_links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 60%;
	gap: 12px;

}

#footer_links a {
	color: black;
}


#footer_logos {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#footer_bottom {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	gap: 30px;
}

#footer_bottom_rights {
	color: var(--grey_text-color);
}

#footer_bottom_data {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat SBold';
	gap: 10px;
}

#footer_bottom_data a {
	color: black;
}

#footer_bottom_namu {
	padding-bottom: 60px;

}

#footer_bottom_namu img {
	width: 110px;
}

/* MAIN */
main {
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	display: flex;
	/*background-color: white;*/
}

/* LEAD */

#lead {
	padding-top: 5%;
	padding-left: 5%;
	padding-bottom: 5%;
	gap: 10px;
}

#lead_pic {
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/img/bg/lead_bg_2.webp);
	/*aspect-ratio: 385 / 315;*/
	aspect-ratio: 385 / 270;

	width: 100%;
	max-width: 500px;
	justify-self: flex-end;

}

#lead_text {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: baseline;
	gap: 20px;
	padding-top: 5%;
}

#lead_text_title {
	font-size: 2rem;

}

#lead_text_subtitle {
	font-family: 'Montserrat Bold';
	font-size: 1.5rem;
	white-space: pre-wrap;
}

#lead_text_subtitle2 {
	color: var(--grey_text-color);
	white-space: pre-wrap;
}

#lead_text_button_wrapper {
	width: 80%;
	max-width: max-content;
}

#lead_text_button {}

/* RÓLAM */

#rolam {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background-color: white;
	padding-bottom: 30px;
}

#rolam_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	width: 95%;
	border-radius: 20px;
	gap: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	max-width: 500px;
}

#rolam_pic_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;


}

#rolam_pic_wrapper img {
	height: 180px;
	width: auto;
}

#rolam_text_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 15px;
	width: 60%;
	white-space: pre-wrap;
}

.rolam_dot {
	position: relative;
	background-color: var(--secondary-color);
	height: 20px;
	width: 20px;
	border-radius: 10px;
	align-self: end;
	right: 25px;
}

#rolam_text_wrapper div:nth-of-type(1) {
	font-family: 'Montserrat Bold';
	font-size: 1.5rem;
	white-space: pre-wrap;
}

#rolam_text_wrapper div:nth-of-type(2) {
	line-height: 1.5;
}


/* HOGYAN */

#hogyan {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

#hogyan_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	gap: 10px;
}

#hogyan_texts {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 15px;
	width: 80%;
	max-width: 400px;
}

#hogyan_title {
	font-family: 'Montserrat Bold';
	font-size: 1.5rem;
}

#hogyan_subtitle {
	font-family: 'Montserrat Bold';
	color: rgba(173, 147, 136, 1);
}

#hogyan_steps {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-bottom: 20px;
}

.hogyan_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.hogyan_step_dot {
	height: 15px;
	width: 15px;
	border-radius: 7.5px;
	background-color: var(--primary-color);
	justify-self: center;
}

.h_dot1 {
	background-color: rgba(236, 200, 185, 1);
}

.h_dot2 {
	background-color: rgba(232, 195, 132, 1);
}

.h_dot3 {
	background-color: rgba(156, 155, 131, 1);
}

.hogyan_step_title {
	font-family: "Montserrat Bold";
	color: rgba(98, 99, 106, 1);
}

.hogyan_step_subtitle {
	color: rgba(98, 99, 106, 1);
}

#hogyan_pic {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 95%;
}

#hogyan_pic img {
	width: 100%;
	max-width: 450px;
	aspect-ratio: 3 / 2;
}

/* ALKOTÁS NEKED */


#alkotasneked {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-bottom: 60px;
}

#alkotasneked_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	width: 100%;

}

#alkotasneked_header {

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

}

#alkotasneked_header_img_wrapper {
	position: relative;
	display: inline-block;

}

#alkotasneked_header_img_wrapper img {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

#alkotasneked_header_title {
	position: absolute;
	text-wrap: wrap;
	text-align: center;
	font-family: 'Montserrat Bold';
	top: 80px;
	/* függőleges pozíció */
	left: 50%;
	/* vízszintesen középre */
	transform: translateX(-50%);
	width: 80%;
	/* vagy 100%, ízlés szerint */
	font-size: 1.3rem;
}

#alkotasneked_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 100%;

}

.alkotasneked_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	background-color: var(--primary-color);
	width: 300px;
	gap: 15px;

}

#alkotasneked_pool .alkotasneked_item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.alkotasneked_item>div {
	width: 90%;
}


.alkotasneked_item_pic_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-self: center;
	justify-self: center;

}

.alkotasneked_item_pic_wrapper img {
	width: 200px;
	height: auto;
	padding-top: 15px;


}

.alkotasneked_item_title {
	font-family: 'Montserrat Bold';
}

.alkotasneked_item_title {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	min-height: 38px;
}

.alkotasneked_item_text {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	min-height: 76px;
}

.alkotasneked_item_difficulty {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.alkotasneked_item_footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 15px;
}

.alkotasneked_item_price {
	font-family: 'Montserrat Bold';
	font-size: 1.2rem;
}

#alkotasneked_footer {
	position: relative;
	width: 300px;
	max-width: 100%;
}

#alkotasneked_footer_palette,
#alkotasneked_footer_palette img {
	width: 100%;
}

#alkotasneked_footer_palette img {
	display: block;
	height: auto;
}

#alkotasneked_pool .alkotasneked_item:last-of-type {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.a_dot1 {
	display: none;
}

.alkotasneked_footer_button_wrapper {
	position: absolute;
	left: 50%;
	top: 110%;
	transform: translateX(-50%);
	width: max-content;
}

#alkotasneked_footer_text {
	position: absolute;
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	width: max-content;
	display: none;
	z-index: 10;
	font-family: 'Montserrat Bold';
}

#alkotasneked_footer_button_wrapper {
	position: relative;
	display: inline-block;

}

#alkotasneked_footer_button_wrapper img {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

/* MÁR PRÓBÁLTÁK */
#marprobaltak {
	width: 100%;
	padding: 36px 30px 45px;
	background-color: #ffffff;
	box-sizing: border-box;
}

#marprobaltak_wrapper {
	width: 100%;
}

#marprobaltak_title {
	margin: 0 0 22px;
	font-family: "Montserrat Bold";
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #071414;
}

#marprobaltak_pool {
	margin-inline: auto;
}

.marprobaltak_item {
	width: 100%;
	min-width: 100%;
	padding: 16px 14px;
	box-sizing: border-box;
	background-color: #ffffff;
	border-radius: 7px;
	margin-inline: auto;
}
.marprobaltak_item::after {
	--gap: 5px;
	content: " ";
	position: absolute;
	width: calc( 100% - var(--gap)*2 );
	height: calc( 100% - var(--gap)*2 );
	top: var(--gap);
	left: var(--gap);
	box-shadow: 0 0 10px rgba(0, 0, 0, .06);
	border-radius: 22px;
}

.marprobaltak_text {
	width: 100%;
	min-width: 100%;
	font-family: "Montserrat";
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: 400;
	color: #858585;
	padding: 10px;
	text-align: left;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
}

/* INSTAGRAM BLOKK */

#instablock {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 40px 0;
	background-color: white;
}

#instablock_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 90%;
	max-width: 420px;

	padding: 18px;
	border-radius: 16px;
	background-color: var(--primary-color);
	gap: 20px;
}

#instablock_left {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;

	width: 100%;
	gap: 16px;
}

#instablock_dot {
	display: flex;
}

#instablock_title {
	font-family: 'Montserrat Bold';
	font-size: 1.5rem;
	line-height: 1.15;
}

#instablock_subtitle {
	font-family: 'Montserrat Bold';
	font-size: 1rem;
	line-height: 1.25;
}

#instablock_text {
	color: var(--grey_text-color);
	font-size: 0.9rem;
	line-height: 1.35;
}

#instablock_button_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

#instablock_button {
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 0.7rem;
	padding: 10px 14px;
}

#instablock_right {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 100%;
	order: -1;
	overflow: hidden;
}

/* Az Instagram saját szélességét próbáljuk kordában tartani */
#instablock_right .instagram-media {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
}

/* MIMISH SZÁMOKBAN */

#szamokban {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 40px 0;
}

#szamokban_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	position: relative;
	width: 300px;
	max-width: 90%;
	min-height: 720px;

	padding: 60px 30px 90px;
	gap: 30px;

	background-color: var(--secondary-color);
	background-image: url("/img/pics/m.svg");
	background-repeat: no-repeat;
	background-position: center bottom 20px;
	background-size: 75px auto;

	overflow: hidden;
}


#szamokban_title {
	position: relative;
	z-index: 1;

	width: 100%;
	color: white;
	font-family: "Montserrat Bold";
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.2;
	text-align: center;
}

#szamokban_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	position: relative;
	z-index: 1;

	width: 100%;
	gap: 18px;
}

.szamokban_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 180px;
	min-height: 155px;
	padding: 20px 14px;
	gap: 14px;

	background-color: white;
	border-radius: 4px;
	text-align: center;
}

.szamokban_item_text1 {
	font-family: "Montserrat Bold";
	font-weight: 700;
	font-size: 1.65rem;
	line-height: 1;
	color: black;
}

.szamokban_item_text2 {
	font-family: "Montserrat Bold";
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.25;
	color: black;
}

/* BLOG */

#blog {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 40px 0;
}

#blog_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 90%;
	max-width: 300px;
}

#blog_header {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	gap: 18px;
	margin-bottom: 30px;
}

.blog_dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--secondary-color);
}

#blog_title {
	font-family: "Montserrat Bold";
	font-size: 2rem;
	line-height: 1.15;
	text-align: center;
	color: var(--black-color);
}

#blog_subtitle {
	font-family: "Montserrat SBold";
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: center;
	color: var(--black-color);
}

#blog_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 100%;
	gap: 34px;
}

.blog_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;

	width: 100%;
}

.blog_img_wrapper {
	width: 100%;
	aspect-ratio: 2/3;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 14px;
}

.blog_img_wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog_title {
	font-family: "Montserrat Bold";
	font-size: 1rem;
	line-height: 1.3;
	margin-bottom: 14px;
}

.blog_text {
	font-size: .9rem;
	line-height: 1.45;
	color: var(--grey_text-color);
	margin-bottom: 18px;
}

.blog_button_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
}

.blog_button {
	font-family: "Montserrat Bold";
	font-size: .9rem;
	cursor: pointer;
	text-align: center;
	align-self: center;
}

#blog_button_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 36px;
}

.blog_button_wrapper a {
	color: black;
}

/* GYAKRAN ISMÉTELT KÉRDÉSEK */

#gyik {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	width: 100%;
	max-width: 100%;

	padding-top: 40px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

#gyik_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;

	width: 100%;
	max-width: none;

	background-color: var(--primary-color);
	overflow: hidden;
}

#gyik_title {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	width: 100%;

	padding: 18px 22px;

	background-color: var(--secondary-color);
	border-radius: 8px 8px 0 0;

	color: white;
	font-family: "Montserrat Bold";
	font-size: 1rem;
	line-height: 1.2;
}

#gyik_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;

	width: 100%;

	padding: 10px 22px 25px;
}

.gyik_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;

	width: 100%;

	border-bottom: 1px solid rgba(173, 147, 136, .28);
}

.gyik_item ol {
	padding-left: 15px;
}

.gyik_item>[handle] {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	position: relative;

	width: 100%;
	min-height: 54px;

	padding: 12px 26px 12px 20px;

	font-family: "Montserrat Bold";
	font-size: .78rem;
	line-height: 1.35;

	cursor: pointer;
}

.gyik_item>[handle] img[icon] {
	display: block;
	flex: 0 0 auto;

	width: 7px;
	height: 7px;

	margin-right: 12px;

	object-fit: contain;
}

.gyik_item>[handle] img[arrow] {
	display: block;

	position: absolute;

	top: 50%;
	right: 5px;

	width: 8px;
	height: 8px;

	object-fit: contain;

	transform: translateY(-50%);
}

.gyik_item>[contentwrapper] {
	width: 100%;
}

.gyik_item>[contentwrapper]>div {
	padding: 0 20px 18px;

	font-size: .7rem;
	line-height: 1.5;
	color: #323232;
}

/* Mobil sorrend */
/*
.gyik_item:nth-child(2){order:1;}
.gyik_item:nth-child(3){order:2;}
.gyik_item:nth-child(4){order:3;}
.gyik_item:nth-child(1){order:4;}
.gyik_item:nth-child(5){order:5;}
.gyik_item:nth-child(6){order:6;}
*/

/*  */

/* KAPCSOLAT ALOLDAL*/
#kapcsolat {
	width: 100%;
	background-color: #ffffff;
}

#kapcsolat_wrapper {
	width: 100%;
	max-width: 36rem;
	margin: 0 auto;
	overflow: hidden;
	background-color: #ffffff;
}

#kapcsolat_title {
	padding: 1.5rem 1.25rem 1rem;

	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #071414;
}

#kapcsolat_content {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* ==========================================
   FELSŐ RÉSZ
========================================== */

#kapcsolat_top {
	position: relative;

	display: flex;
	flex-direction: row;
	align-items: stretch;

	width: calc(100% - 0.875rem);
	min-height: 12.5rem;
	margin-left: 0.875rem;

	overflow: hidden;

	background-color: #f4e6df;
	border-radius: 2.75rem 0 0 0;
}

#kapcsolat_top_left {
	position: relative;
	z-index: 2;

	flex: 0 0 60%;

	display: flex;
	align-items: center;

	padding: 1.25rem 0.5rem 1.25rem 2.575rem;

	background-color: transparent;

	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.35;
	color: #111111;
}

#kapcsolat_top_right {
	position: relative;
	z-index: 1;

	flex: 0 0 37%;
	align-self: stretch;
}

/* háttér */

#kapcsolat_bg {
	display: none;
}

/* mimi */

#kapcsolat_mimi {
	position: absolute;
	z-index: 2;

	width: 8rem;
	right: 0;
	bottom: 0;

	right: -0.15rem;
	bottom: 0;
}

/* ==========================================
   ALSÓ RÉSZ
========================================== */

#kapcsolat_bottom {
	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 1.5rem;

	padding: 1.75rem 1.5rem 2rem;

	background: #ffffff;
}

#kapcsolat_bottom_left {
	width: 100%;
	max-width: 21rem;
	white-space: pre-wrap;
	text-align: center;
}

#kapcsolat_bottom_left p {
	margin: 0 0 0.8rem;

	font-size: 0.625rem;
	line-height: 1.6;
	color: #4a4a4a;
}

#kapcsolat_bottom_left p:last-child {
	margin-bottom: 0;
}

#kapcsolat_bottom_left a {
	color: #168DB7;
	font-weight: 700;
	text-decoration: underline;
}

#kapcsolat_bottom_right {
	display: flex;
	justify-content: center;
	width: 100%;
}

/* RÓLAM - aloldal */
/* ==========================================
   RÓLAM 2 + RÓLAM 3
   MOBIL FIRST
========================================== */

#rolam2,
#rolam3 {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 100%;

	background-color: #ffffff;
}

#rolam2_wrapper,
#rolam3_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	width: 100%;
	max-width: 32rem;
	padding: 0 1.25rem;
}

/* ==========================================
   RÓLAM 2
========================================== */

#rolam2 {
	padding-top: 2rem;
}

#rolam2_title {
	width: 100%;
	margin-bottom: 1.25rem;

	font-family: "Montserrat Bold";
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	color: #111111;
}

#rolam2_pic_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	margin-bottom: 1.5rem;
}

#rolam2_pic_wrapper img {
	display: block;

	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;

	object-fit: cover;
	border-radius: 0.75rem;
}

#rolam2_text {
	display: flex;
	flex-direction: column;

	width: 100%;
	gap: 0.5rem;

	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333333;
	white-space:pre-wrap;
}

#rolam2_text p {
	margin: 0;
}

/* ==========================================
   RÓLAM 3
========================================== */

#rolam3 {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

#rolam3_title {
	width: 100%;
	margin-bottom: 1.25rem;

	font-family: "Montserrat Bold";
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	color: #111111;
}

#rolam3_pic_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	margin-bottom: 1.5rem;
}

#rolam3_pic_wrapper img {
	display: block;

	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;

	object-fit: cover;
	border-radius: 0.75rem;
}

#rolam3_text {
	display: flex;
	flex-direction: column;

	width: 100%;
	gap: 0.75rem;

	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333333;
	white-space:pre-wrap;
}

#rolam3_text p {
	margin: 0;
}

#rolam3_siker {
	width: 100%;
	margin-top: 1.5rem;

	font-family: "Montserrat Bold";
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: left;
	color: #111111;
}

#rolam_button_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	margin-top: 2rem;
}

#rolam_title {
	font-family: 'Montserrat Bold';
	font-size: 1.5rem;
	padding-top: 30px;
}

/* BLOG - aloldal */

/* ==========================================
   BLOG – MOBIL FIRST
========================================== */

#blog {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 100%;
	padding: 2rem 0 0;

	background-color: #ffffff;
}

#blog_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 90%;
	max-width: 28rem;

	overflow: hidden;
}

#blog_title {
	width: 100%;
	margin-bottom: 2rem;
	padding: 0 1.25rem;

	font-family: "Montserrat Bold";
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #071414;
}

#blog_pool {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: stretch;

	width: 100%;
}

/* ==========================================
   LEGFRISSEBB BEJEGYZÉS
========================================== */

#blog_pool>.blog_item:first-child {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	width: calc(100% - 2.5rem);
	margin: 0 1.25rem 2rem;
	padding: 0;

	background-color: #ffffff;
}

#blog_pool>.blog_item:first-child::before {
	content: "Legfrissebb bejegyzésem:";

	display: block;

	width: 100%;
	margin-bottom: 1.25rem;

	font-family: "Montserrat Bold";
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
}

.blog_item_img_wrapper {
	width: 100%;
	aspect-ratio: 2 / 3;

	overflow: hidden;

	background-color: #e8edf8;
	border-radius: 0.25rem;
}
.blog_item_img_wrapper figure {
	width: 100%;
	height: 100%;
	margin: 0;
}

.blog_item_img_wrapper img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	aspect-ratio: auto !important;
	object-fit: cover;
	display: block;
}

#blog_pool>.blog_item:first-child .blog_item_img_wrapper {
	margin-bottom: 1rem;
}

.blog_item_title {
	font-family: "Montserrat Bold";
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	color: #111111;
}

#blog_pool>.blog_item:first-child .blog_item_title {
	margin-bottom: 0.9rem;
}

.blog_item_text {
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.55;
	color: #62636a;
}

#blog_pool>.blog_item:first-child .blog_item_text {
	margin-bottom: 1.25rem;
}

.blog_item_more {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
}

.blog_item_more a {
	font-family: "Montserrat Bold";
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	color: #111111;
	text-decoration: none;
}

/* ==========================================
   TOVÁBBI BEJEGYZÉSEK EGYSÉGES BÉZS BLOKKJA
========================================== */

#blog_item_next_block {
	position: relative;
	z-index: 1;

	width: 100%;
	margin: 0;
	padding: 1.5rem 1.25rem 1rem;

	background-color: var(--primary-color);

	font-family: "Montserrat Bold";
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
}

/*
   A bézs hátteret folyamatosan lenyújtja
   az összes további bejegyzés mögé.
*/
#blog_item_next_block::before {
	content: "";

	position: absolute;
	z-index: -1;

	top: 0;
	left: 0;

	width: 100%;
	height: 250rem;

	background-color: var(--primary-color);
}

/* További cikkek fehér kártyái */

#blog_item_next_block~.blog_item {
	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	width: calc(100% - 2.5rem);
	margin: 0 1.25rem 0.75rem;
	padding: 0;

	background-color: #ffffff;
	border-radius: 0.25rem;

	overflow: hidden;
}

/* A cím és az első kártya között ne legyen fehér csík */

#blog_item_next_block+.blog_item {
	margin-top: 0;
}

#blog_item_next_block~.blog_item .blog_item_img_wrapper {
	width: 100%;
	aspect-ratio: 2 / 3;

	border-radius: 0;
}

#blog_item_next_block~.blog_item .blog_item_title {
	width: 100%;
	margin: 0;
	padding: 1rem 1rem 0.75rem;

	background-color: #ffffff;

	font-size: 0.6875rem;
}

#blog_item_next_block~.blog_item .blog_item_text {
	display: none;
}

#blog_item_next_block~.blog_item .blog_item_more {
	width: 100%;
	padding: 0.25rem 1rem 1rem;

	background-color: #ffffff;
}

/* Utolsó kártya alatt maradjon bézs tér */

#blog_pool>.blog_item:last-child {
	margin-bottom: 1.5rem;
}

/* ==========================================
   VISSZA A FŐOLDALRA
========================================== */

.back_to_main {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	color: black;
	width: 100%;
	max-width: 70rem;
	margin: 0 auto;

	padding: 1.25rem 1.25rem 1rem;

	cursor: pointer;
}

.back_to_main img {
	display: block;

	width: 0.75rem;
	height: auto;
}

.back_to_main div {
	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.2;
	color: #3f3f3f;
}

.back_to_main:hover {
	opacity: .75;
	transition: opacity .2s ease;
}

/* ==========================================
   CIKKALOLDAL – MOBIL FIRST
========================================== */

.article {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 90%;
	padding: 1.5rem 0 3rem;

	background-color: #ffffff;
}

.article_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;

	width: 90%;
	max-width: 34rem;
	padding: 0 1.25rem;
}

/* A cikksablonon a BLOG felirat */

.article #blog_title {
	width: 100%;
	margin-bottom: 2.25rem;
	padding: 0;

	font-family: "Montserrat Bold";
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #071414;
}

/* ==========================================
   TELJES CIKK
========================================== */

.article_item {
	display: flex;
	flex-direction: column;
	align-items: stretch;

	width: 100%;
}


/* Cikk címe */

.article_title {
	width: 100%;
	margin-bottom: 1.25rem;

	font-family: "Montserrat Bold";
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.18;
	text-align: center;
	color: #071414;
}

/* ==========================================
   METAADATOK
========================================== */

.article_misc {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	width: 100%;
	gap: 0.75rem;


	font-size: 0.5625rem;
	line-height: 1;
	color: #333333;
}

.article_date,
.article_tag {

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

/*
.article_date::before {
	content: "";

	display: block;

	width: 0.55rem;
	height: 0.55rem;

	background-image: url("/img/icons/calendar.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.article_tag::before {
	content: "";

	display: block;

	width: 0.55rem;
	height: 0.55rem;

	background-image: url("/img/icons/tag.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}*/

.article_instagram {
	display: flex;
	justify-content: center;
	align-items: center;

	margin-left: auto;
}

.article_instagram img {
	display: block;

	width: 0.75rem;
	height: 0.75rem;

	object-fit: contain;
}

/* ==========================================
   FŐKÉP
========================================== */

.article_img_wrapper {
	width: 100%;
	margin-bottom: 1.25rem;

	overflow: hidden;
}

.article_img_wrapper img {
	display: block;

	width: 100%;
	height: auto;

	object-fit: cover;
}

/* ==========================================
   BEVEZETŐ
========================================== */

.article_lead {
	width: 100%;
	margin-bottom: 1rem;

	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.55;
	color: #333333;
}

/* ==========================================
   ARTICLE MISC
========================================== */

.article_misc_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 8px;
}


.misc_date,
.misc_tag {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-size: .7rem;
	color: black;
	gap: 3px;
}

.article_misc img {
	width: 10px;
	height: auto;
}

.misc_date img {
	justify-self: center;
	align-self: center;
}


/* ==========================================
   CIKKSZÖVEG
========================================== */

.article_text {
	display: flex;
	flex-direction: column;

	width: 100%;
	gap: 0.75rem;

	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.55;
	color: #333333;
}

.article_text p {
	margin: 0;
}

.article_text iframe {
    width: 100%;
	height: auto;
    aspect-ratio: 9 / 16;
	max-height: 600px;
}

/* ==========================================
   VIDEÓ
========================================== */

.article_video {
	position: relative;

	width: 100%;
	margin: 1.5rem 0;

	aspect-ratio: 16 / 9;

	overflow: hidden;
	border-radius: 0.25rem;
	background-color: #000000;
}

.article_video iframe {
	position: absolute;
	inset: 0;

	display: block;

	width: 100%;
	height: 100%;

	border: 0;
}

/* ==========================================
   KÉRDÉS–VÁLASZ / TOVÁBBI SZÖVEG
========================================== */

.article_qa {
	display: flex;
	flex-direction: column;

	width: 100%;

	font-size: 0.6875rem;
	font-weight: 400;
	line-height: 1.55;
	color: #333333;
}

.article_qa p {
	margin: 0 0 0.75rem;
}

/* Első, harmadik, ötödik bekezdés: alcímek */

.article_qa p:nth-child(odd) {
	margin-bottom: 0.35rem;

	font-family: "Montserrat Bold";
	font-weight: 700;
	color: #111111;
}

.article_qa p:last-child {
	margin-bottom: 0;
}


/* TERMÉKEK - aloldal */

#termekek_category,
#termekek_category_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#termek_kategoriak_pool {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#termekek_title {
	font-family: "Montserrat Bold";
	font-size: 1.5rem;
	padding-bottom: 30px;

}

#termek_kategoriak_subtitle {
	font-family: "Montserrat";
	font-weight: 400;
	font-size: 0.9rem;
	color: rgba(98, 99, 106, 1);
	align-self: center;
	text-align: center;
}

#termek_kategoriak_title {
	display: none;
}

#termek_kategoriak_pool {
	padding-top: 20px;
	gap: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: 1fr;
	align-items: stretch;
}

.termek_kategoriak_item_img {
	display: none;
	width: 370px;
	height: auto;
	aspect-ratio: 37 / 25;
	transition: transform 0.3s ease;
}

.termek_kategoriak_item_img:hover {
	transform: scale(1.05);
	filter: brightness(125%);
}

.termek_kategoriak_item_title {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 0.7rem;
	padding: 10px 20px;
	height: 100%;
}

/* TERMÉKEK - alkotódobozok */


#alkotodobozok {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-bottom: 60px;
}

#alkotodobozok_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	width: 100%;

}

#alkotodobozok_header {

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

}

#alkotodobozok_header_img_wrapper {
	position: relative;
	display: inline-block;

}

#alkotodobozok_header_img_wrapper img:nth-of-type(1) {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

#alkotodobozok_header_img_wrapper img:nth-of-type(2) {
	display: none;
	height: max-content;
}

#alkotodobozok_header_title {
	position: absolute;
	text-wrap: wrap;
	text-align: center;
	font-family: 'Montserrat Bold';
	top: 90px;
	/* függőleges pozíció */
	left: 50%;
	/* vízszintesen középre */
	transform: translateX(-50%);
	width: 80%;
	/* vagy 100%, ízlés szerint */
}

#alkotodobozok_header_subtitle {
	display: none;
}


#alkotodobozok_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 100%;
	/*padding-bottom: 50px;*/

}

.alkotodobozok_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	background-color: var(--primary-color);
	width: 300px;
	gap: 15px;

}

#alkotodobozok_pool .alkotodobozok_item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.alkotodobozok_item>div {
	width: 90%;
}


.alkotodobozok_item_pic_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-self: center;
	justify-self: center;

}

.alkotodobozok_item_pic_wrapper img {
	width: 200px;
	height: auto;
	padding-top: 15px;


}

.alkotodobozok_item_title {
	font-family: 'Montserrat Bold';
}

.alkotodobozok_item_title {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	min-height: 38px;
}

.alkotodobozok_item_text {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	min-height: 76px;
}

.alkotodobozok_item_difficulty {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.alkotodobozok_item_footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 15px;
}

.alkotodobozok_item_price {
	font-family: 'Montserrat Bold';
	font-size: 1.2rem;
}

#alkotodobozok_footer {
	position: relative;
	width: 300px;
	max-width: 100%;
}

#alkotodobozok_footer_palette,
#alkotodobozok_footer_palette img {
	width: 100%;
}

#alkotodobozok_footer_palette img {
	display: block;
	height: auto;
}

#alkotodobozok_pool .alkotodobozok_item:last-of-type {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.a_dot1 {
	display: none;
}

.alkotodobozok_footer_button_wrapper {
	position: absolute;
	left: 50%;
	top: 110%;
	transform: translateX(-50%);
	width: max-content;
}

#alkotodobozok_footer_text {
	position: absolute;
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	width: max-content;
	display: none;
	z-index: 10;
	font-family: 'Montserrat Bold';
}

#alkotodobozok_footer_button_wrapper {
	position: relative;
	display: inline-block;

}

#alkotodobozok_footer_button_wrapper img {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

/* ==================================================
   KÉSZ KÉZMŰVES TERMÉKEK – MOBILE FIRST
   ================================================== */


#kesz_kezmuves {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

	/*background-color: var(--secondary-color);*/
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

#kesz_kezmuves_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: var(--secondary-color);
	/*min-height: 400px;*/
	height: auto;
	position: relative;
	z-index: 1;
	justify-self: center;
	gap: 10px;
	position: relative;

}

#kesz_kezmuves_img_wrapper {
	position: relative;

	width: 100%;
	aspect-ratio: 138 / 169;

	display: flex;
	justify-content: center;
	align-items: center;

	flex: 0 0 auto;
}

#kesz_kezmuves_wrapper img:nth-of-type(1) {
	position: absolute;

	top: 4%;
	left: 50%;

	display: block;
	width: 90%;
	height: auto;
	max-width: 850px;
	transform: translateX(-50%);


}

#kesz_kezmuves_wrapper img:nth-of-type(2) {
	position: absolute;
	z-index: 3;

	top: 55%;
	left: 0;

	display: block;
	width: 72%;
	height: auto;
	left: -70px;
	max-width: 650px;
}

#kesz_kezmuves_text_wrapper {
	position: absolute;
	z-index: 2;

	top: 26vw;
	left: 0;

	width: 100%;

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	gap: 15px;
}

.a_dot3 {
	display: none;
	background-color: rgb(232, 195, 132);
	width: 20px;
	height: 20px;
	border-radius: 10px;
	align-self: center;
	right: 0;
}

#kesz_kezmuves_title {
	font-family: "Montserrat Bold";
	font-size: clamp(.9rem, 2.8vw, 1.4rem);
	overflow-wrap: break-word;
	max-width: 50%;
	text-align: center;
}

#kesz_kezmuves_text {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat';
	font-size: 0.6rem;
	width: min(55%, 560px);
	gap: 7px;
	line-height: 1.4;
	text-align: center;
	font-size: clamp(.6rem, 2.5vw, 1rem);
	color: rgba(98, 99, 106, 1);
}

#kesz_kezmuves_button_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

#kesz_kezmuves_button_wrapper .nav_instagram_button {
	font-size: clamp(.5rem, 2.5vw, 1rem);
	padding: 10px 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#kesz_kezmuves_button_wrapper .nav_instagram_button:after {
	content: "E-MAIL >";
}

/* TERMÉKEK - ALAPANYAGOK */


#alapanyagok {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding-bottom: 10px;
}

#alapanyagok_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	width: 100%;

}

#alapanyagok_header {

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;

}

#alapanyagok_header_img_wrapper {
	position: relative;
	display: inline-block;

}

#alapanyagok_header_img_wrapper img {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

#alapanyagok_header_title {
	position: absolute;
	text-wrap: wrap;
	text-align: center;
	font-family: 'Montserrat Bold';
	top: 100px;
	/* függőleges pozíció */
	left: 50%;
	/* vízszintesen középre */
	transform: translateX(-50%);
	width: 80%;
	/* vagy 100%, ízlés szerint */
}

#alapanyagok_hamarosan {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	justify-self: flex-start;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: var(--primary-color);
	width: 300px;
}

#alapanyagok_pool {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
	width: 100%;

}

.alapanyagok_item {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	background-color: white;
	width: 300px;
	gap: 15px;

}

#alapanyagok_pool .alapanyagok_item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.alapanyagok_item>div {
	width: 90%;
}


.alapanyagok_item_pic_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-self: center;
	justify-self: center;

}

.alapanyagok_item_pic_wrapper img {
	width: 200px;
	height: auto;
	padding-top: 15px;


}

.alapanyagok_item_title {
	font-family: 'Montserrat Bold';
}

.alapanyagok_item_title {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.alapanyagok_item_text {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.alapanyagok_item_difficulty {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

.alapanyagok_item_footer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 15px;
}

.alapanyagok_item_price {
	font-family: 'Montserrat Bold';
	font-size: 1.2rem;
}

#alapanyagok_footer {
	display: none;
	position: relative;
	width: 300px;
	max-width: 100%;
}

#alapanyagok_footer_palette,
#alapanyagok_footer_palette img {
	width: 100%;
}

#alapanyagok_footer_palette img {
	display: block;
	height: auto;
}

#alapanyagok_pool .alapanyagok_item:last-of-type {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.a_dot4 {
	display: none;
}

.alapanyagok_footer_button_wrapper {
	position: absolute;
	left: 50%;
	top: 110%;
	transform: translateX(-50%);
	width: max-content;
}

#alapanyagok_footer_text {
	position: absolute;
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	width: max-content;
	display: none;
	z-index: 10;
	font-family: 'Montserrat Bold';
}

#alapanyagok_footer_button_wrapper {
	position: relative;
	display: inline-block;

}

#alapanyagok_footer_button_wrapper img {
	display: block;
	transform: rotate(180deg);
	width: 300px;
	height: max-content;
}

/* EGYEDI TERMÉK aloldal */

#termek {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: 90%;
	padding-bottom: 10px;
}

#termek_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 30px 0;
	width: 80%;

}

#termek_img_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding-bottom: 30px;
}

#termek_text_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
}

#termek_price {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	font-family: "Montserrat Bold";
	color: rgba(169, 149, 138, 1);
}

#termek_difficulty {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

#termek_difficulty_text {
	font-family: "Montserrat Bold";
}

#termek_title {
	font-family: "Montserrat Bold";
	font-weight: 700;
	font-size: 1.5rem;
}

#termek_text1,
#termek_text2 {
	font-size: 0.9rem;
	color: rgba(98, 99, 106, 1);
}

#order_and_recommend {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#recommend {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#recommend_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	padding: 10px 22px 25px;
}


.termek_item_gyik {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;

	width: 100%;

	border-bottom: 1px solid rgba(173, 147, 136, .28);
}

.termek_item_gyik>[handle] {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;

	position: relative;

	width: 100%;
	min-height: 54px;

	padding: 12px 26px 12px 20px;

	font-family: "Montserrat Bold";
	font-size: .78rem;
	line-height: 1.35;

	cursor: pointer;
}

.termek_item_gyik>[handle] img[icon] {
	display: block;
	flex: 0 0 auto;

	width: 7px;
	height: 7px;

	margin-right: 12px;

	object-fit: contain;
}

.termek_item_gyik>[handle] img[arrow] {
	display: block;

	position: absolute;

	top: 50%;
	right: 5px;

	width: 8px;
	height: 8px;

	object-fit: contain;

	transform: translateY(-50%);
}

.termek_item_gyik>[contentwrapper] {
	width: 100%;
}

.termek_item_gyik>[contentwrapper]>div {
	padding: 0 20px 18px;

	font-size: .7rem;
	line-height: 1.5;
	color: #323232;
}

#order {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

#order_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

/* ==================================================
   RENDELÉSI ŰRLAP
   ================================================== */

#order_form {
	width: calc(100% - 20px);
	max-width: 400px;
	margin: 0 auto;
	padding: 20px 13px 28px;

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 10px;

	box-sizing: border-box;
	border-radius: 22px;
	background-color: #ded5d0;

	color: #6f6a6d;
	font-family: "Montserrat", sans-serif;
}


/* ==================================================
   FORM SOROK
   ================================================== */

.order_form_inputs {
	width: 100%;
	min-width: 0;

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
}

.order_form_input {
	width: 100%;
	min-width: 0;

	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 6px;
}


/* ==================================================
   FELIRATOK
   ================================================== */

#order_form label {
	display: block;

	margin: 0;
	padding: 0;

	color: #6f6a6d;
	font-family: "Montserrat", sans-serif;
	font-size: 0.7rem;
	font-weight: 400;
	line-height: 1.25;
}


/* Név utáni kettőspont és csillag */

#order_form label[for="vnev"]::after {
	content: ": *";
	color: #ef554c;
	font-weight: 700;
}


/* Kötelező mezők csillagai */

#order_form label[for="email"]::after,
#order_form label[for="tel"]::after,
#order_form label[for="termekvalaszto"]::after,
#order_form label[for="szallitas"]::after {
	content: " *";
	color: #ef554c;
	font-weight: 700;
}


/*
A színválasztó feliratában már szerepel egy csillag,
ezért CSS-ből újraírjuk, hogy a csillag piros lehessen.
*/

#order_form label[for="szinvalaszto"] {
	font-size: 0;
}

#order_form label[for="szinvalaszto"]::before {
	content: "Milyen színben szeretnéd?";
	color: #6f6a6d;
	font-size: 0.7rem;
	font-weight: 400;
}

#order_form label[for="szinvalaszto"]::after {
	content: " *";
	color: #ef554c;
	font-size: 0.7rem;
	font-weight: 700;
}


/* ==================================================
   INPUTOK, SELECTEK ÉS TEXTAREA
   ================================================== */

#order_form input:not([type="checkbox"]),
#order_form select,
#order_form textarea {
	width: 100%;
	min-width: 0;
	margin: 0;

	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: 4px;
	outline: none;

	background-color: #fff;
	color: #817b79;

	font-family: "Montserrat", sans-serif;
	font-size: 0.68rem;
	font-weight: 400;

	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

#order_form input:not([type="checkbox"]),
#order_form select {
	height: 30px;
	padding: 0 9px;
}

#order_form textarea {
	display: block;
	min-height: 70px;
	padding: 9px;

	line-height: 1.4;
	resize: vertical;
}

#order_form input::placeholder,
#order_form textarea::placeholder {
	color: #d8d2cf;
	opacity: 1;
}


/* Aktív mező */

#order_form input:not([type="checkbox"]):focus,
#order_form select:focus,
#order_form textarea:focus {
	border-color: #b79a8c;
	box-shadow: 0 0 0 2px rgba(183, 154, 140, 0.15);
}


/* ==================================================
   VEZETÉKNÉV ÉS KERESZTNÉV EGY SORBAN
   ================================================== */

#order_form>.order_form_inputs:first-of-type {
	flex-direction: row;
	align-items: flex-end;
	gap: 8px;
}

#order_form>.order_form_inputs:first-of-type .order_form_input {
	min-width: 0;
	flex: 1 1 50%;
}


/* ==================================================
   SELECT NYÍL
   ================================================== */

#order_form select {
	appearance: none;
	-webkit-appearance: none;

	padding-right: 30px;

	background-color: #fff;
	background-image:
		linear-gradient(45deg, transparent 50%, #ad9185 50%),
		linear-gradient(135deg, #ad9185 50%, transparent 50%);

	background-position:
		calc(100% - 15px) 50%,
		calc(100% - 11px) 50%;

	background-size:
		4px 4px,
		4px 4px;

	background-repeat: no-repeat;

	cursor: pointer;
}


/* ==================================================
   SZÍNVÁLASZTÓ
   ================================================== */

#form_elsoszin,
#form_masodikszin,
#form_harmadikszin {
	margin-bottom: 3px;
}


/* ==================================================
   MEGJEGYZÉS
   ================================================== */

#form_megjegyzes {
	height: 70px;
}


/* ==================================================
   CHECKBOX BLOKK
   ================================================== */

#order_form>.order_form_inputs:last-of-type {
	margin-top: 8px;
}

#order_form>.order_form_inputs:last-of-type .order_form_input {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	column-gap: 8px;
	row-gap: 14px;
	align-items: start;
}


/* Egyedi, kör alakú checkbox */

#order_form input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;

	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	padding: 0;

	border: 0;
	border-radius: 50%;
	background-color: #fff;

	cursor: pointer;

	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

#order_form input[type="checkbox"]:hover {
	transform: scale(1.08);
}

#order_form input[type="checkbox"]:checked {
	background-color: #b79a8c;
	box-shadow: inset 0 0 0 5px #fff;
}

#order_form input[type="checkbox"]:focus-visible {
	outline: 2px solid #b79a8c;
	outline-offset: 2px;
}


/* Checkboxok melletti szöveg */

#order_form>.order_form_inputs:last-of-type label {
	margin: 0;

	color: #6f6a6d;
	font-size: 0.68rem;
	line-height: 1.3;

	cursor: pointer;
}


/* Dokumentumlinkek */

#order_form a {
	color: #008cff;
	font-weight: 600;
	text-decoration: underline;
}


/* ==================================================
   MEGRENDELÉS GOMB
   ================================================== */

#order_button_wrapper {
	margin-top: 8px;

	display: flex;
	justify-content: center;
	align-items: center;
}

#order_button_wrapper #order_button {
	width: max-content;
	min-width: 95px;
	min-height: 30px;
	margin: 0;
	padding: 8px 16px;

	display: flex;
	justify-content: center;
	align-items: center;

	box-sizing: border-box;
	border: 0;
	border-radius: 4px;
	background-color: #b4998c;

	color: #fff;
	font-family: "Montserrat Bold", sans-serif;
	font-size: 0.5rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;

	cursor: pointer;

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.35s ease,
		box-shadow 0.35s ease;
}

#order_button_wrapper #order_button:hover {
	transform: scale(1.05);
	filter: brightness(108%);
	box-shadow: 0 4px 10px rgba(111, 90, 80, 0.2);
}

#order_button_wrapper #order_button:active {
	transform: scale(0.98);
}

#order_title {
	font-family: "Montserrat Bold";
	font-size: 2rem;
	padding-bottom: 30px;
}

/* EMAIL ELKÜLDVE - aloldal */

#emailsent_wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	width: 80%;
}

#emailsent_title {
	font-family: "Montserrat Bold";

	font-size: clamp(1.3rem, 2.8vw, 1.4rem);
	padding: 30px 0;
}

#emailsent_text {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat";
	font-size: 1.2rem;
	padding-bottom: 50px;
	gap: 20px;
}

#emailsent_text p{
text-align: center;

}

#emailsent_spam{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat";
	font-size: .9rem;
	padding-top: 20px;
	padding-bottom: 50px;
	gap: 20px;
}


/* COOKIE CONSENT */
.cookie-consent-trigger {
    position: fixed !important;
    left: 28px !important;
    bottom: 28px !important;

    width: 64px !important;
    min-width: 64px !important;
    max-width: none !important;

    height: 64px !important;
    min-height: 64px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    overflow: hidden !important;

    box-sizing: border-box !important;

    background: rgba(255, 255, 255, 0.97) !important;

    border: 0 !important;
    border-radius: 32px !important;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.09);

    cursor: pointer;

    z-index: 9999;

    /*
     * Finomabb, lassabb nyitás / zárás.
     */
    transition:
        width 0.90s cubic-bezier(.25, .1, .25, 1),
        box-shadow 0.55s ease,
        background-color 0.55s ease !important;
}


/* --------------------------------------------------
   NYITOTT ÁLLAPOT
-------------------------------------------------- */

.cookie-consent-trigger:hover {
    width: 200px !important;

    background: rgba(255, 255, 255, 1) !important;

    box-shadow:
        0 4px 13px rgba(0, 0, 0, 0.06),
        0 14px 38px rgba(0, 0, 0, 0.11);
}


/* --------------------------------------------------
   IKON TARTÓ

   Ez végig fixen a bal oldali körben marad.
-------------------------------------------------- */

.cookie-consent-icon {
    position: absolute !important;

    left: 0 !important;
    top: 0 !important;

    width: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 5;

    pointer-events: none;
}


/* --------------------------------------------------
   COOKIE KÉP
-------------------------------------------------- */

.cookie-consent-icon img {
    display: block !important;

    width: 54px !important;
    height: 54px !important;

    object-fit: contain;

    opacity: 0.68;

    filter:
        saturate(0.55)
        brightness(1.04);

    transform:
        rotate(0deg)
        scale(0.96);

    transform-origin: center center;

    transition:
        transform 0.95s cubic-bezier(.25, .1, .25, 1),
        opacity 0.50s ease,
        filter 0.50s ease !important;
}


/* --------------------------------------------------
   HOVER – IKON
-------------------------------------------------- */

.cookie-consent-trigger:hover .cookie-consent-icon img {
    opacity: 1;

    filter:
        saturate(1)
        brightness(1);

    transform:
        rotate(360deg)
        scale(1);
}


/* --------------------------------------------------
   FELIRAT

   FONTOS:
   Alaphelyzetben visibility:hidden.
   Emiatt becsukáskor AZONNAL eltűnik,
   tehát a "C" sem maradhat kint.
-------------------------------------------------- */

.cookie-consent-label {
    position: absolute !important;

    left: 64px !important;
    top: 0 !important;

    height: 64px !important;

    display: flex !important;
    align-items: center !important;

    padding-left: 5px;
    padding-right: 20px;

    white-space: nowrap;

    font-size: 14px;
    font-weight: 500;
    line-height: 1;

    color: #333;

    opacity: 0;

    visibility: hidden;

    transform: translateX(-6px);

    pointer-events: none;

    /*
     * Becsukás:
     * visibility azonnal hidden lesz.
     */
    transition:
        opacity 0.12s ease,
        transform 0.20s ease,
        visibility 0s linear 0s !important;
}


/* --------------------------------------------------
   FELIRAT – NYITÁSKOR

   A kapszula előbb elindul,
   a szöveg csak kicsit később jelenik meg.
-------------------------------------------------- */

.cookie-consent-trigger:hover .cookie-consent-label {
    opacity: 1;

    visibility: visible;

    transform: translateX(0);

    transition:
        opacity 0.38s ease 0.22s,
        transform 0.55s ease 0.16s,
        visibility 0s linear 0.16s !important;
}


/* --------------------------------------------------
   FOCUS
-------------------------------------------------- */

.cookie-consent-trigger:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.20);
    outline-offset: 3px;
}


/* --------------------------------------------------
   MOBIL
-------------------------------------------------- */

@media (max-width: 480px) {

    .cookie-consent-trigger {
        left: 18px !important;
        bottom: 18px !important;

        width: 58px !important;
        min-width: 58px !important;

        height: 58px !important;
        min-height: 58px !important;

        border-radius: 29px !important;
    }

    .cookie-consent-trigger:hover {
        width: 58px !important;
    }

    .cookie-consent-icon {
        width: 58px !important;
        height: 58px !important;
    }

    .cookie-consent-icon img {
        width: 49px !important;
        height: 49px !important;
    }

    .cookie-consent-label {
        display: none !important;
    }
}


/* --------------------------------------------------
   REDUCED MOTION
-------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .cookie-consent-trigger,
    .cookie-consent-icon img,
    .cookie-consent-label {
        transition: none !important;
    }

    .cookie-consent-trigger:hover .cookie-consent-icon img {
        transform: scale(1);
    }
}
/* FONTFACE */

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
		url('fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat SBold';
	src: url('fonts/Montserrat-SemiBold.woff2') format('woff2'),
		url('fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Bold';
	src: url('fonts/Montserrat-Bold.woff2') format('woff2'),
		url('fonts/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@media only screen and (min-width: 400px) {

	#nav_instagram_wrapper {
		display: flex;
		padding-right: 40px;

	}
}

@media only screen and (min-width: 480px) {

	#footer_circle6 {
		display: flex;
	}
}

@media only screen and (min-width: 768px) {

	#footer_circle7 {
		display: flex;

	}

	.burgerMenuWrapper {
		display: none;
	}

	#nav_links {
		display: flex;
	}

	#nav_instagram_wrapper {
		padding-right: 0px;

	}

	#lead {
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: nowrap;

		padding-left: 40px;
		justify-content: space-between;

	}

	#lead_pic {
		height: clamp(360px, 45vw, 440px);
		max-width: 600px;

	}

	#lead_text_button_wrapper {
		width: 100%;
		max-width: max-content;
	}

	#rolam_wrapper {
		flex-direction: row;
		max-width: none;
		background-color: white;
	}

	#rolam_text_wrapper {
		width: 40%;
	}

	#rolam_pic_wrapper img {
		height: 350px;
		width: auto;
	}

	.rolam_dot {
		height: 40px;
		width: 40px;
		border-radius: 20px;
		right: 50px;
	}

	#hogyan_wrapper {
		flex-direction: row;
		width: 80%;
	}

	#alkotasneked_header {
		background-color: var(--primary-color);
		width: 100%;
		padding-top: 30px;
	}

	#alkotasneked_pool {
		flex-direction: row;
		align-items: flex-start;
		background-color: var(--primary-color);
		width: 100%;
	}

	.alkotasneked_item {
		background-color: white;
	}

	#alkotasneked_pool .alkotasneked_item:last-of-type {
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}

	#alkotasneked_pool .alkotasneked_item:first-of-type {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	#alkotasneked_footer {
		width: 100%;
		max-width: none;
		align-self: stretch;
	}

	#alkotasneked_footer_palette {
		width: 100%;
	}

	#alkotasneked_footer_palette img {
		width: 100%;
		height: auto;
	}

	#alkotasneked_header_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	#alkotasneked_header_img_wrapper img {
		display: none;
	}

	#alkotasneked_header_title {
		position: relative;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;


		top: 0px;

		left: 0px;

		transform: none;
		width: 100%;
		padding-bottom: 30px;
		font-size: 1.5rem;

	}

	.a_dot1 {
		display: flex;
		align-self: center;

		position: relative;
		background-color: var(--secondary-color);
		height: 24px;
		width: 24px;
		border-radius: 12px;
		right: 0px;
	}

	.alkotasneked_footer_button_wrapper {
		top: 35%;
	}

	#alkotasneked_footer_text {
		display: flex;
	}

	#alkotasneked_footer_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	#alkotasneked_footer_img_wrapper img {
		display: none;
	}

	/* MÁR PRÓBÁLTÁK */
	#marprobaltak {
		padding: 60px 20px 55px;
	}

	#marprobaltak_title {
		margin-bottom: 38px;

		font-size: 22px;
		line-height: 1.2;
		text-align: center;
	}

	.marprobaltak_item {
		flex: 0 0 190px;
		width: 190px;
		min-height: 170px;
		padding: 28px 24px;
	}
	.marprobaltak_item::after {
		--gap: 5px;
		content: " ";
		position: absolute;
		width: calc( 100% - var(--gap)*2 );
		height: calc( 100% - var(--gap)*2 );
		top: var(--gap);
		left: var(--gap);
		box-shadow: 0 0 10px rgba(0, 0, 0, .06);
		border-radius: 22px;
	}

	.marprobaltak_text {
		font-size: 0.8.rem;
		line-height: 1.5;
	}

	/* INSTA */
	#instablock {
		padding: 70px 0;
	}

	#instablock_wrapper {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;

		width: 85%;
		max-width: 1200px;

		padding: 0;
		background-color: white;
		border-radius: 0;
		gap: 60px;
	}

	#instablock_left {
		width: 48%;
		gap: 28px;
	}

	#instablock_right {
		width: 42%;
		order: 0;
	}

	#instablock_dot {
		display: none;
		align-self: center;

		position: relative;
		right: 0;

		width: 32px;
		height: 32px;
		border-radius: 50%;
		background-color: var(--primary-color);
	}

	#instablock_title {
		font-size: 2rem;
		line-height: 1.15;
		max-width: 500px;
	}

	#instablock_subtitle {
		font-size: 1.3rem;
	}

	#instablock_text {
		font-size: 1rem;
		line-height: 1.5;
		max-width: 520px;
	}

	#instablock_button {
		font-size: 0.75rem;
		padding: 14px 20px;
	}

	/* szamokban */

	#szamokban {
		padding: 60px 0;
	}

	#szamokban_wrapper {
		justify-content: center;

		width: 90%;
		max-width: 1200px;
		min-height: 420px;

		padding: 55px 55px 65px;
		gap: 45px;

		background-position: center;
		background-size: 550px auto;

	}

	#szamokban_title {
		font-size: 1.5rem;
	}

	#szamokban_pool {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: stretch;
		gap: 20px;
	}

	.szamokban_item {
		flex: 1;
		width: auto;
		max-width: 310px;
		min-height: 155px;
		padding: 24px 20px;
		gap: 16px;
	}

	.szamokban_item .szamokban_item_text:first-child {
		font-size: 1.8rem;
	}

	.szamokban_item .szamokban_item_text:last-child {
		font-size: 0.95rem;
	}

	/* BLOG */
	#blog {
		padding: 80px 0;
	}

	#blog_wrapper {
		width: 90%;
		max-width: 1200px;
	}

	#blog_header {
		gap: 20px;
		margin-bottom: 55px;
	}

	.blog_dot {
		width: 20px;
		height: 20px;
	}

	#blog_title {
		font-size: 2.4rem;
		max-width: 650px;
	}

	#blog_subtitle {
		font-size: 1.35rem;
	}

	#blog_pool {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 26px;
	}

	.blog_item {
		flex: 1;
		max-width: 360px;
	}

	.blog_img_wrapper {
		margin-bottom: 18px;
	}

	.blog_title {
		font-size: 1.05rem;
		margin-bottom: 16px;
	}

	.blog_text {
		font-size: .95rem;
		line-height: 1.6;
		margin-bottom: 22px;
	}

	#blog_button_wrapper {
		margin-top: 50px;
	}

	/* GYIK */

	#gyik {
		padding-bottom: 0;
	}

	#gyik_wrapper {

		width: 100%;
		max-width: none;

		padding: 38px 80px 70px;

		border-radius: 0 170px 0 0;
	}

	#gyik_title {

		width: auto;

		padding: 0;
		margin-bottom: 22px;

		background-color: transparent;
		border-radius: 0;

		color: black;

		font-size: 1.8rem;
	}

	#gyik_pool {

		flex-direction: row;
		flex-wrap: wrap;

		justify-content: space-between;
		align-items: flex-start;

		padding: 0;

		column-gap: 45px;
		row-gap: 0;
	}

	.gyik_item {

		width: calc(50% - 22.5px);
	}

	.gyik_item>[handle] {

		min-height: 58px;

		padding: 14px 30px 14px 20px;

		font-size: .88rem;
	}

	.gyik_item>[contentwrapper]>div {

		padding: 0 20px 20px;

		font-size: .76rem;
		line-height: 1.5;
	}

	/* KAPCSOLAT ALOLDAL*/
	#kapcsolat_wrapper {
		max-width: 70rem;
	}

	#kapcsolat_title {
		padding: 3rem 1.25rem 1rem;

		font-size: 1.375rem;
	}

	/* ==========================
	   FELSŐ
	========================== */

	#kapcsolat_top {
		width: 100%;
		min-height: 24rem;
		margin-left: 0;

		overflow: visible;

		background-color: transparent;
		border-radius: 0;
	}

	#kapcsolat_top_left {
		flex: 0 0 50%;

		padding: 2rem 6rem 2rem 9rem;

		font-size: 1.5rem;
		line-height: 1.28;
	}

	#kapcsolat_top_right {
		flex: 0 0 50%;
	}

	#kapcsolat_bg {
		position: absolute;
		z-index: 0;

		display: block;

		width: 39rem;
		max-width: none;

		right: -5.5rem;
		bottom: -12rem;
	}

	#kapcsolat_mimi {
		z-index: 3;

		width: 17.5rem;

		right: 1rem;
		bottom: -2.25rem;
	}

	#kapcsolat_bottom {
		position: relative;
		z-index: 2;
	}

	/* ==========================
	   ALSÓ
	========================== */

	#kapcsolat_bottom {

		flex-direction: row;
		justify-content: space-between;
		align-items: center;

		gap: 4rem;

		padding: 2.8rem 9rem;

		background: #F4E6DF;
	}

	#kapcsolat_bottom_left {

		flex: 0 0 58%;
		max-width: 31rem;
		white-space: pre-wrap;
		text-align: left;
	}

	#kapcsolat_bottom_left p {

		font-size: 0.8125rem;
		line-height: 1.6;
	}

	#kapcsolat_bottom_right {

		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* RÓLAM aloldal */
	#rolam2_wrapper,
	#rolam3_wrapper {
		max-width: 44rem;
		padding: 0 2rem;
		align-items: center;
	}

	/* ==========================
	   RÓLAM 2
	========================== */

	#rolam2 {
		padding-top: 3rem;
	}

	#rolam2_title {
		margin-bottom: 1.75rem;

		font-size: 1.375rem;
		text-align: center;
	}

	#rolam2_pic_wrapper {
		margin-bottom: 2.75rem;
	}

	#rolam2_pic_wrapper img {
		width: 11.5rem;
		aspect-ratio: 1 / 1;

		border-radius: 0.625rem;
	}

	#rolam2_text {
		max-width: 34rem;
		gap: 0.35rem;

		font-size: 0.8125rem;
		line-height: 1.45;
		text-align: left;
		white-space:pre-wrap;
	}

	/* ==========================
	   RÓLAM 3
	========================== */

	#rolam3 {
		padding-top: 2.5rem;
		padding-bottom: 4rem;
	}

	#rolam3_title {
		margin-bottom: 1.75rem;

		font-size: 1.375rem;
		text-align: center;
	}

	#rolam3_pic_wrapper {
		margin-bottom: 2.75rem;
	}

	#rolam3_pic_wrapper img {
		width: 11.5rem;
		aspect-ratio: 1 / 1;

		border-radius: 0.625rem;
	}

	#rolam3_text {
		max-width: 34rem;
		gap: 0.9rem;

		font-size: 0.8125rem;
		line-height: 1.5;
		text-align: left;
		white-space:pre-wrap;
	}

	#rolam3_siker {
		max-width: 34rem;
		margin-top: 1.75rem;

		font-size: 1.125rem;
		text-align: left;
	}

	#rolam_button_wrapper {
		margin-top: 2.25rem;
	}

	/* BLOG - aloldal */
	#blog {
		padding: 3rem 2rem 4rem;
	}

	#blog_wrapper {
		max-width: 72rem;
		overflow: visible;
	}

	#blog_title {
		margin-bottom: 5rem;

		font-size: 1.375rem;
	}

	#blog_pool {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;

		gap: 1.5rem;
	}

	/* Mobilos címek és háttér eltüntetése */

	#blog_pool>.blog_item:first-child::before {
		display: none;
	}

	#blog_item_next_block {
		display: none;
	}

	#blog_item_next_block::before {
		display: none;
	}

	/* Minden bejegyzés azonos desktop kártya */

	#blog_pool>.blog_item:first-child,
	#blog_item_next_block~.blog_item {
		display: flex;
		flex-direction: column;
		align-items: flex-start;

		flex: 0 0 calc((100% - 3rem) / 3);
		width: calc((100% - 3rem) / 3);
		max-width: 21rem;

		margin: 0;
		padding: 0;

		background-color: transparent;
		border-radius: 0;

		overflow: visible;
	}

	.blog_item_img_wrapper,
	#blog_pool>.blog_item:first-child .blog_item_img_wrapper,
	#blog_item_next_block~.blog_item .blog_item_img_wrapper {
		width: 100%;
		aspect-ratio: 2 / 3;
		margin-bottom: 1rem;

		border-radius: 0.75rem;
		overflow: hidden;
	}

	.blog_item_title,
	#blog_pool>.blog_item:first-child .blog_item_title,
	#blog_item_next_block~.blog_item .blog_item_title {
		width: 100%;
		margin: 0 0 0.9rem;
		padding: 0;

		background-color: transparent;

		font-size: 0.875rem;
		line-height: 1.35;
	}

	.blog_item_text,
	#blog_pool>.blog_item:first-child .blog_item_text,
	#blog_item_next_block~.blog_item .blog_item_text {
		display: block;

		width: 100%;
		margin: 0 0 1rem;
		padding: 0;

		background-color: transparent;

		font-size: 0.6875rem;
		line-height: 1.6;
		color: #777777;
	}

	.blog_item_more,
	#blog_item_next_block~.blog_item .blog_item_more {
		justify-content: flex-start;

		width: 100%;
		padding: 0;

		background-color: transparent;
	}

	.blog_item_more a {
		font-size: 0.625rem;
		color: var(--secondary-color);
	}

	#blog_pool>.blog_item:last-child {
		margin-bottom: 0;
	}

	.back_to_main {
		padding: 2rem 2rem 1.25rem;
		gap: 1rem;
	}

	.back_to_main img {
		width: 0.875rem;
	}

	.back_to_main div {
		font-size: 0.75rem;
	}

	.article {
		padding: 2.5rem 2rem 5rem;
	}

	.article_wrapper {
		max-width: 52rem;
		padding: 0;
	}

	.article #blog_title {
		margin-bottom: 4rem;

		font-size: 1.375rem;
	}

	.article_item {
		max-width: 38rem;
	}

	/* ==========================
	   CÍM
	========================== */

	.article_title {
		margin-bottom: 1.5rem;

		font-size: 2.25rem;
		line-height: 1.15;
	}

	/* ==========================
	   METAADATOK
	========================== */

	.article_misc {
		margin-bottom: 1.25rem;
		gap: 0.9rem;

		font-size: 0.625rem;
	}

	.article_date::before,
	.article_tag::before {
		width: 0.65rem;
		height: 0.65rem;
	}

	.article_instagram img {
		width: 0.875rem;
		height: 0.875rem;
	}

	/* ==========================
	   FŐKÉP
	========================== */

	.article_img_wrapper {
		margin-bottom: 1.5rem;
	}

	/* ==========================
	   SZÖVEGEK
	========================== */

	.article_lead {
		margin-bottom: 1rem;

		font-size: 0.75rem;
		line-height: 1.6;
	}

	.article_text {
		gap: 0.75rem;

		font-size: 0.75rem;
		line-height: 1.6;
	}

	/* ==========================
	   VIDEÓ
	========================== */

	.article_video {
		width: 70%;
		margin: 2rem auto;

		border-radius: 0.35rem;
	}

	/* ==========================
	   KÉRDÉS–VÁLASZ
	========================== */

	.article_qa {
		font-size: 0.75rem;
		line-height: 1.6;
	}

	.article_qa p {
		margin-bottom: 0.8rem;
	}

	.article_qa p:nth-child(odd) {
		margin-bottom: 0.4rem;
	}

	/* ==========================================
	   TERMÉKEK - aloldal
	========================================== */
	#termekek_category {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	#termekek_category_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 80%;
	}

	#termek_kategoriak {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	#termek_kategoriak_pool {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 90%;
	}

	#termekek_title {
		font-family: "Montserrat Bold";
		font-size: 2rem;
		padding-bottom: 30px;

	}

	#termek_kategoriak_subtitle {
		display: none;

	}

	#termek_kategoriak_title {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		font-family: "Montserrat Bold";
		font-size: 1.3rem;
	}

	.termek_kategoriak_item {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.termek_kategoriak_item_img {
		display: flex;
		min-width: 230px;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: center center;
		border-radius: 16px;

	}

	.termek_kategoriak_item a {
		color: black;
	}

	.termek_kategoriak_item_title {
		font-family: "Montserrat Bold";
		font-weight: 700;
		font-size: 1.2rem;
		height: 70px;

		justify-content: flex-start;
	}

	/* Termékek alkotódobozok */

	#alkotodobozok_header {
		/*background-color: var(--primary-color);*/
		width: 100%;
		padding-top: 30px;
	}

	#alkotodobozok_wrapper {
		width: 80%;
	}

	#alkotodobozok_pool {
		flex-direction: row;
		align-items: flex-start;
		background-color: var(--primary-color);
		width: 100%;
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.alkotodobozok_item {
		background-color: white;
	}

	#alkotodobozok_pool .alkotodobozok_item:last-of-type {
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}

	#alkotodobozok_pool .alkotodobozok_item:first-of-type {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	#alkotodobozok_footer {
		width: 100%;
		max-width: none;
		align-self: stretch;
		display: none;
	}

	#alkotodobozok_footer_palette {
		width: 100%;
	}

	#alkotodobozok_footer_palette img {
		width: 100%;
		height: auto;
	}

	#alkotodobozok_header_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;

		width: 100%;
	}

	#alkotodobozok_header_img_wrapper img:nth-of-type(1) {
		display: none;
		width: 100%;
	}

	#alkotodobozok_header_img_wrapper img:nth-of-type(2) {
		display: block;
		width: 100%;
	}

	#alkotodobozok_header_title {
		position: absolute;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;


		width: 100%;
		padding-bottom: 30px;
		font-size: 1.5rem;
		padding-top: 4%;

	}

	#alkotodobozok_header_subtitle {
		display: flex;
		position: absolute;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		padding-top: 150px;
		color: rgba(98, 99, 106, 1);
		max-width: 350px;
		gap: 10px;
		text-align: center;
		font-size: .6rem;

	}

	.a_dot2 {
		display: flex;
		align-self: center;

		position: absolute;
		background-color: var(--secondary-color);
		height: 24px;
		width: 24px;
		border-radius: 12px;
		right: 0px;
	}

	.alkotodobozok_footer_button_wrapper {
		top: 35%;
	}

	#alkotodobozok_footer_text {
		display: flex;
	}

	#alkotodobozok_footer_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	#alkotodobozok_footer_img_wrapper img {
		display: none;
	}

	#kesz_kezmuves_img_wrapper {
		aspect-ratio: 493 / 440;
	}

	#kesz_kezmuves_img_wrapper>img:nth-of-type(1) {
		top: 9%;
		width: 70%;
	}

	#kesz_kezmuves_img_wrapper>img:nth-of-type(2) {
		top: 57%;
		width: 53%;
		left: 0;
	}

	#kesz_kezmuves_text_wrapper {
		top: 27%;
		gap: clamp(15px, 2vw, 30px);
	}

	.a_dot3 {
		position: static;

		display: block;
		width: clamp(24px, 4.8vw, 69px);
		height: clamp(24px, 4.8vw, 69px);

		flex: 0 0 auto;
		align-self: center;

		border-radius: 50%;
		background-color: rgb(232, 195, 132);
	}

	#kesz_kezmuves_title {
		font-size: clamp(18px, 2.8vw, 40px);
		overflow-wrap: break-word;
		max-width: 60%;
	}


	#kesz_kezmuves_text {
		width: min(44%, 560px);
		font-size: clamp(10px, 1.25vw, 18px);
		white-space: pre-wrap;
	}

	#kesz_kezmuves_button_wrapper .nav_instagram_button {
		font-size: 1rem;
	}

	#kesz_kezmuves_button_wrapper .nav_instagram_button:after {
		content: "EGYEZTESSÜNK E-MAILBEN";
	}

	/* TERMÉKEK - alkotásneked */

	#alapanyagok_wrapper {
		width: 80%;
	}

	#alapanyagok_header {
		background-color: var(--primary-color);
		width: 100%;
		padding-top: 30px;
	}

	#alapanyagok_pool {
		flex-direction: row;
		align-items: flex-start;
		background-color: var(--primary-color);
		width: 100%;
	}

	.alapanyagok_item {}

	#alapanyagok_pool .alapanyagok_item:last-of-type {
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}

	#alapanyagok_pool .alapanyagok_item:first-of-type {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	#alapanyagok_footer {
		width: 100%;
		max-width: none;
		align-self: stretch;
	}

	#alapanyagok_footer_palette {
		width: 100%;
	}

	#alapanyagok_footer_palette img {
		width: 100%;
		height: auto;
	}

	#alapanyagok_header_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	#alapanyagok_header_img_wrapper img {
		display: none;
	}

	#alapanyagok_header_title {
		position: relative;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;


		top: 0px;

		left: 0px;

		transform: none;
		width: 100%;
		padding-bottom: 30px;
		font-size: 1.5rem;

	}

	.a_dot4 {
		display: none;
		align-self: center;

		position: relative;
		background-color: var(--secondary-color);
		height: 24px;
		width: 24px;
		border-radius: 12px;
		right: 0px;
	}

	#alapanyagok_hamarosan {
		font-size: 1.5rem;
	}

	#alapanyagok_footer {
		display: flex;
	}

	.alapanyagok_footer_button_wrapper {
		top: 35%;
	}

	#alapanyagok_footer_text {
		display: flex;
	}

	#alapanyagok_footer_img_wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 20px;
	}

	#alapanyagok_footer_img_wrapper img {
		display: none;
	}

	/* EGYEDI TERMÉK aloldal */

	#termek_wrapper {
		flex-direction: row;
		gap: 50px;
	}

	#termek_title {
		order: 1;
	}

	#termek_text1 {
		order: 2;
	}

	#termek_difficulty {
		order: 3;
	}

	#termek_price {
		order: 4;
		color: black;
	}

	#termek_text2 {
		order: 5;
	}

	#order_form {
		width: 400px;
	}

	#order_and_recommend {

		flex-direction: row;
		width: 80%;
		align-items: baseline;

	}

	#recommend {
		width: 50%;
	}

	#order {
		width: 50%;
	}

	.termek_item_gyik>[handle] {
		font-size: 1.5rem;
	}

	.termek_item_gyik>[contentwrapper]>div {
		font-size: 1rem;
	}

	#emailsent_wrapper {

	width: 70%;
}

}

@media only screen and (min-width: 992px) {

	#footer_circle8 {
		display: flex;

	}

	#alkotodobozok_header_title {
		font-size: 1.7rem;
		padding-top: 7%;
	}

	#alkotodobozok_header_subtitle {
		max-width: 500px;

		text-align: center;
		font-size: 1rem;
		padding-top: 200px;
	}

	#emailsent_wrapper {

	width: 60%;
}


}

@media only screen and (min-width: 1200px) {

	#footer_circle9 {
		display: flex;

	}

	main {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		/*background-color: white;*/
		max-width: 1600px;
	}

	#lead,
	#hogyan_wrapper,
	#rolam_wrapper {
		padding-left: 0;
		gap: 100px;
	}

	#alkotodobozok_header_title {
		font-size: 2rem;
		padding-top: 7%;
	}

	#alkotodobozok_header_subtitle {
		max-width: 500px;

		text-align: center;
		font-size: 1rem;
		padding-top: 200px;
	}

}
