/*
Theme Name: Koduje Marzenia
Template: blocksy
Author: Mehelbangin
Description: 2024
Version: 2.0.1712426648
Updated: 2024-04-06 20:04:08

*/

/* BASIC STYLES */

:root {
	--main: #d91a1a;
	--second: #6b1f20;
	--txt: 'itc-avant-garde-gothic-pro', sans-serif;
	--txtHeader: 'itc-avant-garde-gothic-pro', sans-serif;
}
*{
	box-sizing:border-box;
}
html{
	margin-top:0px !important;
}
body{
	background: #fff !important;
	margin: 0;padding: 0;
	font-family: var(--txt) !important;
}
@media screen and (max-width:992px){
	body{
		overflow-x:hidden;
	}
}
*:focus{outline: none !important;}
h1,h2,h3,h4,h5,h6{
    margin: 0;padding: 0;
	font-family: var(--txtHeader);
}
p{
	margin:0; padding:0;
	margin-bottom:8px;
}
p:last-child{
	margin-bottom: 0px;
}
a{
	text-decoration:none;
	font-family: var(--txt);
}
a:hover{
	text-decoration:none;
}
img{
	width:100%;
	height:auto;
}
::selection{
	background-color:#fff !important;
	color:#e7ad88;
}

/* BONUS CLASSES */

.bg-center{
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.position-relative{
	position:relative;
}
.txt-center{
	text-align:center;
}
.txt-center p {
	text-align: center;
}
.txt-white{
	color:#fff;
}
.txt-white p {
	color:#fff;
}
.txt-black{
	color: #000;
}
.txt-black p {
	color: #000;
}
.bg-color{
	background:var(--section);
}
.bg-gradient{
	background: var(--gradient);
}
.margin-auto{
	margin-right: auto;
	margin-left: auto;
}


/* CONTAINER */

.container{
	max-width:1336px !important;
	margin:0 auto;
	padding-left:20px !important;
	padding-right:20px !important;
}

.container-small{
	max-width:754px !important;
	margin:0 auto;
	padding-left:20px !important;
	padding-right:20px !important;
}

@media screen and (max-width:768px){
	.container {
		padding-left:15px !important;
		padding-right:15px !important;
	}
	.container-small {
		padding-left:15px !important;
		padding-right:15px !important;
	}
}

/*--- FLEX ---*/

.display-flex{
	display:flex;
}
.flex-direction-column{
	flex-direction: column;
}
@media screen and (max-width:768px){
	.flex-direction-column-m{
		flex-direction: column;
	}
}
.align-items-center{
	align-items:center;
}
.align-items-end{
	align-items:end;
}
.align-items-start{
	align-items:start;
}
.justify-content-center{
	justify-content:center;
}
.justify-content-end{
	justify-content:end;
}
.justify-content-start{
	justify-content:start;
}
.justify-content-space-between{
	justify-content: space-between;
}

/*--- GRID ---*/

.grid {
	display:grid;
}

.grid-2 {
	display:grid;
	grid-template-columns: repeat(2,1fr);
}

.grid-3 {
	display:grid;
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
	display:grid;
	grid-template-columns: repeat(4,1fr);
}

.grid-5 {
	display:grid;
	grid-template-columns: repeat(5,1fr);
}

.grid-6 {
	display:grid;
	grid-template-columns: repeat(6,1fr);
}

.grid-3-2 {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
}

.grid-2-3 {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
}

.grid-1-2 {
	display: grid;
	grid-template-columns: 1fr 2fr;
}

.grid-1-3 {
	display: grid;
	grid-template-columns: 1fr 3fr;
}

.grid-2-1 {
	display: grid;
	grid-template-columns: 2fr 1fr;
}
.grid-3-1{
	display: grid;
	grid-template-columns: 3fr 1fr;
}
.grid-1-2-1 {
	display: grid;
	grid-template-columns: 1fr 2fr 0.5fr;
}

.grid-1-2-2 {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
}

.grid-2-1-1 {
	display: grid;
/* 	grid-template-columns: 2fr 1fr 1fr 1fr; */
	grid-template-columns: 50% 25% 25%;
}
.grid-1-1-2{
	display: grid;
	grid-template-columns:  1fr 1fr 1fr 2fr;
}

/* RESPONSIVE GRID */

@media screen and (max-width:1170px){
	.grid-1-xl {
/* 		grid-template-columns:1fr; */
		grid-template-columns:100%;
	}
	.grid-2-xl {
		grid-template-columns:repeat(2, 1fr);
	}
	.grid-3-xl {
		grid-template-columns:repeat(3, 1fr);
	}
	.grid-1-2-xl {
		grid-template-columns: 1fr 2fr;
	}
}
@media screen and (max-width:992px){
	.grid-1-l {
		grid-template-columns:1fr;
	}
	.grid-2-l {
		grid-template-columns:1fr 1fr;
	}
	.grid-3-l {
		grid-template-columns:repeat(3, 1fr);
	}
}
@media screen and (max-width:768px){
	.grid-1-m {
		grid-template-columns: 1fr;
	}
	.grid-2-m {
		grid-template-columns:1fr 1fr;
	}
	.grid-3-m {
		grid-template-columns:1fr 1fr 1fr;
	}
}
@media screen and (max-width:576px){
	.grid-1-s {
		grid-template-columns:1fr;
	}
	.grid-2-s {
		grid-template-columns:1fr 1fr;
	}
}

/* Z-INDEX */

.z-index-1{
	z-index: 1;
	position: relative;
}
.z-index-2{
	z-index: 2;
	position: relative;
}
.z-index-3{
	z-index: 3;
	position: relative;
}
.z-index-4{
	z-index: 4;
	position: relative;
}
.z-index-5{
	z-index: 5;
	position: relative;
}
.z-index-6{
	z-index: 6;
	position: relative;
}
.z-index-7{
	z-index: 7;
	position: relative;
}
.z-index-8{
	z-index: 8;
	position: relative;
}
.z-index-9{
	z-index: 9;
	position: relative;
}
.z-index-10{
	z-index: 10;
	position: relative;
}

/* Display none */

@media screen and (max-width:992px){
	.display-none-l{
		display: none !important;
	}
}
@media screen and (min-width:992px){
	.display-none-desktop{
		display: none !important;
	}
}


/* MARGINS - FULL */

.margin-1{
	margin:10px !important;
}.margin-2{
	margin:20px !important;
}
.margin-3{
	margin:30px !important;
}
.margin-4{
	margin:40px !important;
}
.margin-5{
	margin:50px !important;
}
.margin-6{
	margin:60px !important;
}
.margin-7{
	margin:70px !important;
}
.margin-8{
	margin:80px !important;
}
.margin-9{
	margin:90px !important;
}
.margin-10{
	margin:100px !important;
}
.margin-11{
	margin:110px !important;
}
.margin-12{
	margin:120px !important;
}
.margin-13{
	margin:130px !important;
}
.margin-14{
	margin:140px !important;
}
.margin-15{
	margin:150px !important;
}
.margin-16{
	margin:160px !important;
}
.margin-17{
	margin:170px !important;
}
.margin-18{
	margin:180px !important;
}
.margin-19{
	margin:190px !important;
}
.margin-20{
	margin:200px !important;
}
/* MARGIN TOP */
.margin-top-1{
	margin-top:10px !important;
}
.margin-top-2{
	margin-top:20px !important;
}
.margin-top-3{
	margin-top:30px !important;
}
.margin-top-4{
	margin-top:40px !important;
}
.margin-top-5{
	margin-top:50px !important;
}
.margin-top-6{
	margin-top:60px !important;
}
.margin-top-7{
	margin-top:70px !important;
}
.margin-top-8{
	margin-top:80px !important;
}
.margin-top-9{
	margin-top:90px !important;
}
.margin-top-10{
	margin-top:100px !important;
}
.margin-top-11{
	margin-top:110px !important;
}
.margin-top-12{
	margin-top:120px !important;
}
.margin-top-13{
	margin-top:130px !important;
}
.margin-top-14{
	margin-top:140px !important;
}
.margin-top-15{
	margin-top:150px !important;
}
.margin-top-16{
	margin-top:160px !important;
}
.margin-top-17{
	margin-top:170px !important;
}
.margin-top-18{
	margin-top:180px !important;
}
.margin-top-19{
	margin-top:190px !important;
}
.margin-top-20{
	margin-top:200px !important;
}

/* MARGIN BOTTOM */

.margin-bottom-1{
	margin-bottom:10px !important;
}
.margin-bottom-2{
	margin-bottom:20px !important;
}
.margin-bottom-3{
	margin-bottom:30px !important;
}
.margin-bottom-4{
	margin-bottom:40px !important;
}
.margin-bottom-5{
	margin-bottom:50px !important;
}
.margin-bottom-6{
	margin-bottom:60px !important;
}
.margin-bottom-7{
	margin-bottom:70px !important;
}
.margin-bottom-8{
	margin-bottom:80px !important;
}
.margin-bottom-9{
	margin-bottom:90px !important;
}
.margin-bottom-10{
	margin-bottom:100px !important;
}

/* PADDING - FULL */

.padding-1{
	padding:10px !important;
}
.padding-2{
	padding:20px !important;
}
.padding-3{
	padding:30px !important;
}
.padding-4{
	padding:40px !important;
}
.padding-5{
	padding:50px !important;
}
.padding-6{
	padding:60px !important;
}
.padding-7{
	padding:70px !important;
}
.padding-8{
	padding:80px !important;
}
.padding-9{
	padding:90px !important;
}
.padding-10{
	padding:100px !important;
}
.padding-11{
	padding:110px !important;
}
.padding-12{
	padding:120px !important;
}
.padding-13{
	padding:130px !important;
}
.padding-14{
	padding:140px !important;
}
.padding-15{
	padding:150px !important;
}
.padding-16{
	padding:160px !important;
}
.padding-17{
	padding:170px !important;
}
.padding-18{
	padding:180px !important;
}
.padding-19{
	padding:190px !important;
}
.padding-20{
	padding:200px !important;
}

/* PADDING BOTTOM */

.padding-bottom-1{
	padding-bottom:10px !important;
}
.padding-bottom-2{
	padding-bottom:20px !important;
}
.padding-bottom-3{
	padding-bottom:30px !important;
}
.padding-bottom-4{
	padding-bottom:40px !important;
}
.padding-bottom-5{
	padding-bottom:50px !important;
}
.padding-bottom-6{
	padding-bottom:60px !important;
}
.padding-bottom-7{
	padding-bottom:70px !important;
}
.padding-bottom-8{
	padding-bottom:80px !important;
}
.padding-bottom-9{
	padding-bottom:90px !important;
}
.padding-bottom-10{
	padding-bottom:100px !important;
}
.padding-bottom-11{
	padding-bottom:110px !important;
}
.padding-bottom-12{
	padding-bottom:120px !important;
}

/* PADDING TOP */
.padding-top-0{
	padding-top:0px !important;
}
.padding-top-1{
	padding-top:10px !important;
}
.padding-top-2{
	padding-top:20px !important;
}
.padding-top-3{
	padding-top:30px !important;
}
.padding-top-4{
	padding-top:40px !important;
}
.padding-top-5{
	padding-top:50px !important;
}
.padding-top-6{
	padding-top:60px !important;
}
.padding-top-7{
	padding-top:70px !important;
}
.padding-top-8{
	padding-top:80px !important;
}
.padding-top-9{
	padding-top:90px !important;
}
.padding-top-10{
	padding-top:100px !important;
}

/* GAP */

.gap-1{
	gap:10px;
}
.gap-2{
	gap:20px;
}
.gap-3{
	gap:30px;
}
.gap-4{
	gap:40px;
}
.gap-5{
	gap:50px;
}
.gap-6{
	gap:60px;
}
.gap-7{
	gap:70px;
}
.gap-8{
	gap:80px;
}
.gap-9{
	gap:90px;
}
.gap-10{
	gap:100px;
}
.gap-11{
	gap:110px;
}
.gap-12{
	gap:120px;
}
.gap-13{
	gap:130px;
}
.gap-14{
	gap:140px;
}
.gap-15{
	gap:150px;
}
@media screen and (max-width:992px){
	.gap-0-l{
		gap:0px;
	}
	.gap-1-l{
		gap:10px;
	}
	.gap-2-l{
		gap:20px;
	}
	.gap-3-l{
		gap:30px;
	}
	.gap-4-l{
		gap:40px;
	}
	.gap-5-l{
		gap:50px;
	}
	.gap-6-l{
		gap:60px;
	}
	.gap-7-l{
		gap:70px;
	}
	.gap-8-l{
		gap:80px;
	}
	.gap-9-l{
		gap:90px;
	}
	.gap-8-l{
		gap:100px;
	}
}

/* WIDTH */

.width-50 {
	width:50%;
}

.width-60 {
	width:60%;
}

.width-65 {
	width:65%;
}

.width-70 {
	width:70%;
}

.width-80 {
	width:80%;
}

.width-90 {
	width:90%;
}

.width-100 {
	width:100%;
}

@media screen and (max-width:992px){
	.width-100-l {
		width:100% !important;
	}
}

@media screen and (max-width:768px){
	.width-100-m {
		width:100% !important;
	}
}

@media screen and (max-width:576px){
	.width-100-s {
		width:100% !important;
	}
}

/* BLOCKSY  */

/* header */

#header{
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	width:100%;
	transition: background-color 0.4s ease-out;
	background:#fff !important;
	display:flex;
	flex-direction:column;
	justify-content:center;
	height:120px !important;

	display: none !important;
}

/* margin for content */

/* .page-margin-top{
	margin-top:120px;
}

.page-margin-top--double{
	margin-top: 240px;
} */

/* .page-margin-bottom{
	margin-bottom: 120px;
} */

#main-container{
	min-height: auto !important;
}

.entries.wp-block-blocksy-post-template.is-layout-flow.wp-block-post-template-is-layout-flow{
	display: none !important;
}

/* BLOCKSY - END */

/* !BLOCKS */

/* !img-content */

.imgContent__img{
	height:450px;
	width:100%;
	object-fit:cover;
	border-radius:var(--border-radius);
	border:var(--border);
}

/* !menu */

.menu__img{
	width: auto;
}



.menu__mainHeader{
	background: linear-gradient(90deg, #943F24 0%, #D79172 31.09%, #C67D5F 64.93%, #AA583E 92.37%, #C07458 115.23%, #D79172 146.33%, #943F24 182.91%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	font-size: 48px;
	line-height: 58px !important;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

	margin-bottom: 89px;
}
.menu__h3 {
	background: linear-gradient(90deg, #943F24 0%, #D79172 31.09%, #C67D5F 64.93%, #AA583E 92.37%, #C07458 115.23%, #D79172 146.33%, #943F24 182.91%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	font-size: 40px;
	line-height: 50px !important;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

	margin-bottom: 22px;
}

.menu__desc p {
	color: #000;	
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.menu__allBoxes .menu__box {
	margin-bottom: 78px;
}
.menu__allBoxes .menu__box:last-child {
	margin-bottom: 0px;
}

.sign-line--desktop{
	margin-top: 107px;
}
.sign-line--mobile{
	margin-top: 80px;
}

@media screen and (max-width:992px){
	.menu__mainHeader {
		margin-bottom: 40px;
		font-size: 40px !important;
		line-height: 50px !important;
	}
	.menu__boxImg{
		display: flex;
		justify-content: center;
	}
	.menu__h3 {
		font-size: 32px !important;
	}
	.menu__desc p {
		font-size: 18px !important;
	}
	.sign-line--desktop{
		display: none;
	}
}

@media screen and (min-width:992px){
	.sign-line--mobile {
		display: none;
	}
}


/* !banner-logo */

.bannerLogo__logo{
	width: auto;
}

.bannerLogo__mainHeader{
	background: linear-gradient(90deg, #943F24 0%, #D79172 31.09%, #C67D5F 64.93%, #AA583E 92.37%, #C07458 115.23%, #D79172 146.33%, #943F24 182.91%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	font-size: 64px;
	line-height: 74px !important;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

	margin-bottom: 40px;
}

.bannerLogo__desc p {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.bannerLogo__desc p strong {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.bannerLogo__contentTxt{
	margin-bottom: 180px;
}



@media screen and (max-width:768px){
	.bannerLogo__logo{
		width: 202px;;
	}
	.bannerLogo__contentTxt{
		margin-bottom: 100px;
	}
}

/* !bg-section */

.bgSection__desc h2 {
	color: #FFF;
	text-align: center;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 58px !important;
}
.txtHeadings__mainHeader--big{
	color: #FFF;
	text-align: center;
	font-size: 96px;
	font-style: normal;
	font-weight: 700;
	line-height: 106px !important;
}
.txtHeadings__mainHeader--small{
	color: #FFF;
	text-align: center;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 74px !important;
	margin-top: 120px;
	margin-bottom: 80px;
}


.second-part-section{
	padding-top: 120px;
	padding-bottom: 50px;
}

@media screen and (max-width:992px){
	.txtHeadings__mainHeader--big {
		font-size: 40px !important;
		line-height: 50px !important;
	}
	.txtHeadings__mainHeader--small {
		font-size: 32px !important;
		line-height: 42px !important;
	}
	.bgSection__desc h2 {
		font-size: 24px !important;
		line-height: 34px !important;
	}
}

@media screen and (max-width:768px){
	.second-part-section {
		padding-top:42px;
	}
	.txtHeadings__mainHeader--small {
		margin-top:50px;
		margin-bottom:20px;
	}
	.bgSection__img2 {
		width:167px;
	}
}


.page-template-default {
	position:relative;
}
.bg-full{
/* 	background-image: url('/wp-content/uploads/2024/07/image.png') !important;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center; */
	
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
}


.letters-bg{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom:0px;
	width: 100%;
	height:100%;
}

.letters-bg--mobile {
	position: absolute;
	top: 90px;
	right: 0px;
}
.letters-bg--mobile--left {
	position: absolute;
	top: 1470px;
	left: 0px;
	width:100%;
}
.letters-bg--mobile--last {
	position: absolute;
	top: 3100px;
	left: 0px;
	width:100%;
}
@media screen and (min-width:992px){
	.letters-bg--mobile {
		display:none;
	}
	.letters-bg--mobile--left{
		display:none;
	}
	.letters-bg--mobile--last{
		display:none;
	}
}

.letter-bg--first {
/* 		background-image: url('/wp-content/uploads/2024/07/tekst-gora-1.png') !important;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
	
	height:50%; */
}
.letter-bg--second{
/* 		background-image: url('/wp-content/uploads/2024/07/srodek-1.png') !important;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
	
	height:50%; */
}

.sign-line--desktop--first {
	margin-top:0px !important;
}




.flex-section-one {
	display:flex;
	gap:50px;
	justify-content:center;
	align-items:center;
	padding-top:40px;
}


.instruction__stepBox{
	display:flex;
	gap:8px;
	
	color: #FFF;

	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	align-items:baseline;
	padding-bottom:6px;
}
.instructions__extraDesc {
	padding-left:24px;
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top:20px;
}
.h1__weekend{
	margin-top:88px;
}
.weekend__desc{
	max-width:694px;
}
.weekend__desc p {
	color: #FFF;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.flex-section-two {
	display:flex;
	gap:50px;
	justify-content:center;
	align-items:center;
	margin-top:40px;
}
@media screen and (max-width:992px){
	.flex-section-two{
		flex-direction:column;
		margin-top:20px;
	}
}
@media screen and (max-width:768px){
	.instruction__stepBox {
		font-size:20px !important;
	}
	.h1__weekend {
		margin-top:40px;
		margin-bottom:20px !important;
	}
	.weekend__desc p {
		font-size:32px !important;
		line-height:42px !important;
	}

	.order-2-m {
		order:2;
	}
	.weekend__desc p {
		text-align:center;
	}
}

@media screen and (min-width:1170px){
	.koljeka__h2 h2 {
		width:70%;
		margin-left:auto;
		margin-right:auto;
	}
}

.kolejka__box {
	margin-top:160px;
}

.timer__img {
	width:370px;
}

@media screen and (max-width:768px){
	.timer__img {
		width:290px;
	}
}
.timer__imgBox{
	margin-top:50px;
	margin-bottom:120px;
}

.sign-line--mobile--noMrg{
	margin-top:0px !important;
}


.limited__desc p {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.anchor__foooter {
	margin-top:36px;
	display:flex;
	justify-content:center;
}
.anchor__foooter a {
	color: #FFF;
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
@media screen and (max-width:768px){
	.anchor__foooter a {
		font-size:20px;
	}
	.kolejka__box{
		margin-top:50px;
	}
	.timer__imgBox{
		margin-bottom:65px;
	}
}

/* pop up */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 9999999999999;
}

.my-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top:42px;
	padding-bottom:33px;
	padding-left:140px;
	padding-right:140px;
    width: 50%;
    z-index: 99999999999999;
   background: #fff;
   border-radius: 35px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.popUp__iconBox{
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.my-popup__description h3 {
    margin-bottom: 16px !important;
}
.my-popup__description h5 {
    margin-bottom: 32px !important;
}


.my-popup__description p {
/* 	text-align:center; */
	color: #000;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
}

.my-popup__description--first p {
	margin-bottom:29px;
}
.my-popup__description--second p {
	margin-bottom:23px;
	margin-top:55px;
	text-align:start !important;
}

.gradient-btn {
	background: linear-gradient(90deg, #A8583B 0%, #C87F60 100%);
	color:#fff;
	padding:7px 40px;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	cursor:pointer;
}
.gradient-box-btn {
	display:flex;
	justify-content:center;
	margin-top:50px;
}


input[type="checkbox"] {
 -webkit-appearance: none;
 appearance: none;
 background-color: #fff;
 margin: 0;
}
input[type="checkbox"] {
 appearance: none;
 background-color: transparent;
 border-radius: 0px;
 margin: 0;
 font: inherit;
 color: currentColor;
 width: 24px !important;
 height: 24px;
 border: 1px solid #000;
 transform: translateY(-0.075em);
 margin-right:25px;
	display: grid;
 place-content: center;
   cursor:pointer;
}
input[type="checkbox"]::before {
 content: "";
 width: 24px;
 height: 24px;
 border-radius: 0px;
 transform: scale(0);
 transition: 120ms transform ease-in-out;
   background-color:#000;
}
input[type="checkbox"]:checked::before {
 transform: scale(1);
}

.checkbox-second {
	position:relative;
	top:3px;
}


@media screen and (max-width:992px){
    .my-popup{
        width: 90%;
        padding: 40px 20px;
    }
	.my-popup__description--second p {
		margin-bottom:16px;
		margin-top:36px;
	}
	.my-popup__description--first p {
		margin-bottom:16px;
	}
	input[type="checkbox"] {
		margin-right:15px;
	}
}
@media (min-width:992px) and (max-width:1330px){
	.my-popup {
		padding-left:60px;
		padding-right:60px;
	}
}

label {
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 23px;
	font-family: var(--txt) !important;
}

@media screen and (max-width:480px){
	.header-desktop {
		display:none;
	}
}
@media screen and (min-width:480px){
	.header-mobile {
		display:none;
	}
}

@media screen and (max-width:390px){
	.header-desktop--smaller {
		display:none;
	}
}
@media screen and (min-width:390px){
	.header-mobile--smaller {
		display:none;
	}
}

@media screen and (max-width:768px){
	.margin-bottom-2-m {
		margin-bottom:20px !important;
	}
	.menu__h3 {
		margin-bottom:3px;
	}
}

@media screen and (max-width:992px){
	.flex-section-one--instruction h2 {
		font-size:32px !important;
		line-height:42px !important;
	}
	.letters-bg {
		display:none;
	}
	.order-2-l {
		order:2;
	}
	.second-part-section {
		z-index:9;
	}
}

@media screen and (max-width:576px){
	.display-none-s {
		display:none;
	}
	.padding-left-100-s {
		padding-left:100px;
	}
	.flex-section-one--absoluteImg{
		position:absolute;
		top:0px;
		bottom:0px;
		left:-36px;
	}
	.flex-section-one--absoluteImg .bgSection__img1 {
		height:100%;
	}
	.flex-section-one {
		padding-bottom:40px;
		margin-top:30px;
	}

}

@media screen and (min-width:576px){
	.flex-section-one--absoluteImg {
		display:none;
	}
}
