/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: Blocksy is a blazing fast and lightweight WordPress theme built with the latest web technologies. It was built with the Gutenberg editor in mind and has a lot of options that makes it extendable and customizable. You can easily create any type of website, such as business agency, shop, corporate, education, restaurant, blog, portfolio, landing page and so on. It works like a charm with popular WordPress page builders, including Elementor, Beaver Builder, Visual Composer and Brizy. Since it is responsive and adaptive, translation ready, SEO optimized and has WooCommerce built-in, you will experience an easy build and even an increase in conversions. Note: Blocksy is built with the latest web technologies in order to bring you the smoothest experience, that told, old browsers like IE 11 and below may not work as expected. We strongly recommend you to update/switch to a modern browser.
Tags: blog,e-commerce,wide-blocks,block-styles,grid-layout,one-column,two-columns,three-columns,four-columns,right-sidebar,left-sidebar,translation-ready,custom-colors,custom-logo,custom-menu,featured-images,footer-widgets,full-width-template,theme-options,threaded-comments,buddypress,rtl-language-support,news
Version: 1.9.7.1697050972
Updated: 2023-10-11 21:02:52

*/

/* Basic styles */

:root {
	--main: #de9f17;
	--second: #FFA500;
	--hover: #EC222A;
	--gradient: #000;
	--header: 'EB Garamond', serif;
	--txt: 'EB Garamond', serif;
	--border: 20px;
	--borderMax: 40px;
	--txt: 'Poppins', sans-serif;
	--txtHeader: 'Bebas Neue', sans-serif;
}
*{
	box-sizing:border-box;
}
/* html{
	overflow-x: hidden;
} */
body{
	background: #fff;
	margin: 0;padding: 0;
	font-family: var(--txt);
}
@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(--txt);
}
p{
	margin:0; padding:0;
}
a{
	text-decoration:none;
	font-family: var(--txt);
}
a:hover{
	text-decoration:none;
}
img{
	width:100%;
	height:auto;
}
h1{
	font-size:60px;
	font-weight:800;
	line-height:65px;
/* 	font-family:var(--txtHeader); */
}
h6{
	text-transform:uppercase;
	font-size:20px;
	color:var(--second);
	letter-spacing:8px;
}
@media screen and (max-width:576px){
	h1{
		font-size:34px !important;
		line-height:40px;
	}
}
::selection{
	background-color:var(--main) !important;
	color:#fff;
}

/* CONTAINER */

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

/*--- GRID SYSTEM ---*/

.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);
	}
}
@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;
	}
}



/* BONUS CLASSES */


@media screen and (max-width:768px){
	h4{
		font-size:20px !important;
	}
/* 	h3{
		font-size:24px !important;
	} */
	h2{
		font-size:28px !important;
	}
}

.bg-center{
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.txt-center{
	text-align:center;
}
.margin-first-section{
	margin-top:120px;
}
.padding-first-section{
	padding-top:120px;
}
.padding-first-section-extra{
	padding-top:190px;
}
@media screen and (max-width:768px){
	.padding-first-section-extra{
	padding-top:140px;
}
}
.classic-section{
	padding:70px 0px;
}
.padding-top-section{
	padding-top:70px;
}
.padding-bottom-section{
	padding-bottom:70px;
}
.relative-div{
	position:relative;
}
.flex-center{
	display:flex;
	justify-content:center;
	align-items:center;
}
.scroll-section-mobile{
	position:relative;
}
.scroll-mobile{
	position:absolute;
	top:0px;
	width:100%;
	height:1px;
	content:'';
	z-index:-1;
	visibility:hidden;
	top:-110px;
}
.bottom-line::after{
	content:'';
	position:absolute;
	left:0px;
	height:3px;
	bottom:0px;
	right:0px;
	margin:unset;
	background-color:#000;
	width:160px;
}
.bottom-line-center::after{
	content:'';
	position:absolute;
	left:0px;
	height:3px;
	bottom:0px;
	right:0px;
	margin:unset;
	background-color:#000;
	width:160px;
	margin-left:auto;
	margin-right:auto;
}
.white-color{
	color:#fff !important;
}

.width-100{
	width:100% !important;
}

/* BLOCKSY  */


#header{
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	width:100%;
	transition: background-color 0.4s ease-out;
}
#header.bg-header{
	background:#000;
}


/* nav[class*=menu] .ct-menu-link{
	color:#000;
	--theme-icon-color:#000;
} */

/* BUTTONS */

.first-button{
	background:var(--main);
	padding:15px 60px;
	border:2px solid var(--main);
	font-size:16px;
	cursor:pointer;
	color:#000;
	border-radius:var(--borderMax);
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:500;
}
.first-button:hover{
	background:none;
	color:var(--main);
}
.cta-button{
	background:var(--second);
	padding:15px 60px;
	border:2px solid var(--second);
	font-size:16px;
	cursor:pointer;
	color:#000;
	border-radius:0px;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:500;
}
.white-button{
	background:#fff;
	padding:15px 60px;
	border:2px solid #fff;
	font-size:16px;
	cursor:pointer;
	color:#000;
	border-radius:0px;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:500;
}
.cta-button:hover{
	background:none;
	color:var(--second);
	border:2px solid var(--second);
}
.white-button:hover{
	background:none;
	color:#fff;
	border:2px solid #fff;
}
@media screen and (max-width:576px){
	.first-button{
		padding:15px 33px;
	}
	.cta-button{
		padding:15px 33px;
	}
	.white-button{
		padding:15px 33px;
	}
}

/* WOOCOMMERCE */

.ct-container-full{
	padding-top:190px;
	padding-bottom:70px;
}
@media screen and (min-width:1000px){
	.ct-order-review, .sticky-summary .entry-summary, .sticky-gallery .woocommerce-product-gallery{
		position:static;
	}
}

/* sklep page */

#main .ct-container{
	padding-bottom:70px;
	padding-top: 70px;
}
.single-product .ct-breadcrumbs{
	display: block;
}
.archive.tax-product_cat .ct-container{
	padding-top:0px;
}
/* .woocommerce-products-header__title.page-title{
	padding-top:190px;
} */

/* 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 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 TOP */

.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-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%;
}

/* foto slider 1 - full width slider wystajacy z obu stron*/

.fotoSlider__box{
	height:auto !important;
/* 	padding:0px 12px; */
}
.fotoSlider__bg{
/* 	border-radius:var(--border); */
	transition:transform 0.3s ease-out;
	border:1px solid var(--second);
}
@media screen and (min-width:1600px){
	.fotoSlider__bg{
		min-width:450px;
		min-height:450px;
	}
}
@media (min-width:1330px) and (max-width:1600px){
	.fotoSlider__bg{
		min-width:360px;
		min-height:360px;
	}
}
@media (min-width:992px) and (max-width:1330px){
	.fotoSlider__bg{
		min-width:510px;
		min-height:360px;
	}
}
@media (min-width:576px) and (max-width:992px){
	.fotoSlider__bg{
		min-width:400px;
		min-height:360px;
	}
}
.arrows-slick{
	position:absolute;
	transform:translateY(-50%);
	top:50%;
	cursor:pointer;
	z-index:10;
	height:80px;
	width:80px;
}
@media screen and (max-width:576px){
	.arrows-slick{
		width:50px;
		height:50px;
	}
}
.arrow-right{
	right:calc(50% + -751px);
	transition:transform 0.3s ease-out;
}
.arrow-left{
	left:calc(50% + -751px);
	transition:transform 0.3s ease-out;
}
/* .arrow-left img{
	transform-origin: center center;
	transform: rotate(180deg);
} */
@media (min-width:1330px) and (max-width:1600px){
	.arrow-right{
		right:calc(50% + -616px);
		transition:transform 0.3s ease-out;
	}
	.arrow-left{
		left:calc(50% + -616px);
		transition:transform 0.3s ease-out;
	}
}
@media (min-width:992px) and (max-width:1330px){
	.arrow-right{
		right:calc(50% + -307px);
		transition:transform 0.3s ease-out;
	}
	.arrow-left{
		left:calc(50% + -307px);
		transition:transform 0.3s ease-out;
	}
}
@media (min-width:576px) and (max-width:992px){
	.arrow-right{
		right:calc(50% + -252px);
		transition:transform 0.3s ease-out;
	}
	.arrow-left{
		left:calc(50% + -252px);
		transition:transform 0.3s ease-out;
	}
}
@media screen and (max-width:576px){
	.fotoSlider__bg{
		min-width:240px;
		min-height:320px;
	}
	.fotoSlider__box{
		padding:0px 6px;
	}
	.arrow-right{
		right:calc(50% + -151px);
		transition:transform 0.3s ease-out;
	}
	.arrow-left{
		left:calc(50% + -151px);
		transition:transform 0.3s ease-out;
	}
}
.fotoSlider__overlayDark{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:linear-gradient(180deg, rgba(247, 251, 250, 0) -15%, #181818 94%);
/* 	opacity:0.5; */
/* 	border-radius:var(--border); */
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.fotoSlider__bg:hover .fotoSlider__overlayDark{
		opacity:0.45;
	}
}
.fotoSlider__BoxName{
	position:absolute;
	bottom:0px;
	padding:25px;
	width:100%;
}
.fotoSlider__BoxImg{
	width:25px;
	margin-left:10px;
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.fotoSlider__bg:hover .fotoSlider__BoxImg{
		margin-left:30px !important;
	}
	.fotoSlider__bg:hover{
		transform:scale(0.96);
	}
}
.fotoSlider__titleBox{
	color:#fff;
	line-height:30px;
	font-size:24px;
}
@media screen and (max-width:576px){
	.fotoSlider__titleBox{
		font-size:16px;
	}
}
.fotoSlider__boxSMFlex{
	display:flex;
	align-items:center;
}
.fotoSlider__boxSMH4{
	font-size:15px !important;
	color:#fff;
	text-transform:uppercase;
	font-weight:200;
}
.fotoSlider__anchorMain{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
/* 	border-radius:var(--border); */
	z-index:5;
}

/* zalety 1 - korzysci position sticky*/

@media screen and (min-width:992px){
	.benefitsSection__stickyDiv{
		position:sticky;
		top:180px;
	}
}
.benefitsSection__icon{
	width:90px;
/* 	height:50px; */
}
.benefitsSection__box{
	background:#1a1a1a;
	padding:20px;
	box-shadow:0px 15px 35px 0px rgba(0, 0, 0, 0.1);
	border-radius:var(--border);
	margin-bottom:20px;
}
.benefitsSection__allBox .benefitsSection__box:last-child{
	margin-bottom:0px;
}
.benefitsSection__h4Over{
	font-size:20px;
	font-weight:200;
	letter-spacing:5px;
}
.benefitsSection__box--noMargin{
	margin:0px;
}
.benefitsSection__box--nomargin{
	margin-bottom:0px;
}
/* baner 1 - slider zdjec */

.heroFirst{
	width:100%;
	height:calc(100vh - 120px ) !important;
	display:flex !important;
	justify-content:center;
	align-items:center;
	background-size:cover;
	background-position:center;
	position:relative;
	padding-top:0px;
	margin-top:120px;
}
.heroFirst__overlay{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	background:#000;
	opacity:0.5;
}
.heroFirst__h1{
	font-size:60px;
	color:#fff;
	text-align:center;
}
.heroFirst__opis p{
	text-align:center;
	color:#fff;
	font-size:24px;
}
.heroFirst__bottomGradient{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	background:linear-gradient(180deg, rgba(247, 251, 250, 0) 0%, #F7FBFA 100%);
	height:300px;
}

/* scroll 1 */

.heroFirst__scroll{
	position: absolute;
	bottom: 45px;
	left: 0px;
	display: flex;
	align-items: center;
	width: 100%;
	animation-duration:2s;
	animation-name: arrowWave;
	animation-timing-function:ease;
	animation-iteration-count:infinite;
}
.scroll{
	display: flex;
	align-items: center;
	position: relative !important;
}
.scroll:hover{
	cursor: pointer;
	
}
.scroll-a{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
@keyframes arrowWave{
	0%{
		transform: translateY(-30px);
	}
	30%{
		transform: translateY(0);
	}
	100%{
		transform: translateY(-30px);
	}
}
.center-btnScroll{
	display: flex;
	align-items: center;
}
.icon-scroll{
	width: 30px;
	height: 46px;
/* 	margin-right: 11px; */
}


/* dodatkowe zalety 1 */

/* SEKCJA ZDJECIE i OPIS NACHODZACE NA SIEBIE  */

.inward-section-without-pad{
	position:relative;
}
.img-section-absolute{
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	position:absolute;
	top:0;
	left:0;
	bottom:0px;
	width:55%;
	z-index:2;
}
.img-section-absolute-right{
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	position:absolute;
	top:0;
	right:0;
	bottom:0px;
	width:55%;
	z-index:2;
}
@media screen and (min-width:992px){	
	.img-section-absolute-right{
		border-radius:24px 0px 0px 24px;
	}
}
.color-under-image-right{
	position:absolute;
	top:20px;
	right:0;
	bottom:-30px;
	width:calc(55% + 30px);
	border:3px solid var(--main);
	z-index:1;
	border-radius:24px 0px 0px 24px;
}
.colors-overlay{
	position:absolute;
	top:0px;
	right:0;
	bottom:0px;
	width:55%;
	background:#53cdfe;
	z-index:3;
	border-radius:24px 0px 0px 24px;
	opacity:0.5;
}
@media screen and (min-width:992px){
	.no-show-desktop{
		display:none !important;
	}
}
.opis-ebook-box{
	margin:50px 0px;
	margin-top:80px;
	background:#fff;
	padding:30px;
	position:relative;
	z-index:3;
	box-shadow:0 0 15px 1px rgb(0 0 0 / 6%);
}
@media screen and (max-width:768px){
	.opis-ebook-box{
		padding:30px 15px;
	}
}
@media screen and (min-width:992px){
	.opis-ebook-box{
		border-radius:24px;
	}
}
@media screen and (max-width:992px){
	.opis-ebook-box{
/* 		margin-top:-50px; */
		margin-top:0px;
		margin-bottom:-50px;
	}
	.no-display-mobile{
		display:none;
	}
	.no-pad-mobilesss{
		padding-left:0px;
		padding-right:0px;
	}
}
@media screen and (max-width:992px){
	.pad-mobiles-why-section{
		padding-left:20px;
		padding-right:20px;
	}
	.mrg-mobiles-why-section{
		margin-left:20px;
		margin-right:20px;
	}
}

.li-checkmark{
	background-image:url(/wp-content/uploads/2023/10/check-1-1.png);
	background-position:left top 3px;
	background-repeat:no-repeat;
	background-size:20px;
	padding:0 0 0 1.25rem;
	margin:10px 0;
}
@media screen and (min-width:992px){
	.li-checkmark{
		padding-left:30px;
	}
}
@media screen and (max-width:992px){
	.li-checkmark{
		padding:0 0 0 2.25rem;	
	}
}


/* Video banner */

.baner-video{
	 position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
	height:100vh;
/* 	padding-top:130px; */
	padding-bottom:0px;
}
.baner-video video{
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}
.overlay-video{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:linear-gradient(90deg, #000 0.58%, #000 99.91%);
	-webkit-mask: linear-gradient(360deg, #000 5%, transparent 100%);
	overflow:visible;
}
.overlay-video--circle{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:linear-gradient(90deg, var(--second) 0%, rgba(0, 64, 119, 0.2) 100%);
	-webkit-mask: radial-gradient(circle at 0% -20%, var(--second) 0%, transparent 45%);
}
.overlay-video--circle__black{
	background:linear-gradient(90deg, #000 0%, rgba(0, 64, 119, 0.2) 100%);
	-webkit-mask: radial-gradient(circle at 0% -20%, #000 0%, transparent 45%);
}
.overlay-video--circleLeft{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	z-index:-1;
	background:linear-gradient(20deg, var(--second) 0%, rgba(0, 64, 119, 0.2) 100%);
	-webkit-mask: radial-gradient(circle at 0% -11%, var(--second) 0%, transparent 45%);
}
.overlay-video--circleRight{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	z-index:-1;
	background:linear-gradient(45deg, var(--second) 0%, rgba(0, 64, 119, 0.2) 100%);
	-webkit-mask: radial-gradient(circle at 100% 100%, var(--second) 0%, transparent 49%);
}
@media screen and (max-width:768px){
	.overlay-video--circleLeft{
		background:linear-gradient(80deg, var(--second) 0%, rgba(0, 64, 119, 0.2) 100%);
	}
	.overlay-video--circleRight{
		-webkit-mask:radial-gradient(circle at 100% 100%, var(--second) -30%, transparent 49%);
	}
}
.heroVideo__h1{
	font-size:45px;
	color:#fff;
	letter-spacing:3px;
}
@media screen and (max-width:576px){
	.heroVideo__h1{
		font-size:25px !important;
	}
}
.heroVideo__opis p{
	text-align:center;
	color:#fff;
	font-size:24px;
}
@media screen and (max-width:768px){
	.heroVideo__h6{
		font-size:15px;
		letter-spacing:1px;
	}
}

/* 	MAPA KONTAKT */

.contact-map{
	filter:grayscale(100%);
}
.contact-map iframe{
	width: 100%;
    min-height: 400px;
    height: 100%;
}
.contact-map-border iframe{
	border-radius:var(--border);
}


/* CTA ZDJECIE W TLE */

.callAction__h2{
	color:#fff;
}
.callAction__h4{
	color:var(--main);
}
.callAction__overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-image:linear-gradient(90deg, #000 0%, rgba(255, 255, 255, 0) 100%);
}
.socialmedia__overlay{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	opacity:0.4;
}

// FAQ

h3.title__FAQ-box{
	padding-right: 45px !important;
}
.boxFAQ{
	position: relative;
	padding:24px 0px;
	cursor: pointer;

	padding-left: 40px;
	padding-right: 40px;

	border-radius: 24px;
/* 	background: #1a1a1a; */
	box-shadow: 0px 3px 15px 0px rgba(4, 11, 32, 0.05);
}
.boxFAQ--overlay{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:#fff;
	mix-blend-mode:overlay;
	transform:translate3d(0, 0, 0);
}
.boxFAQ:last-child{
	margin-bottom:0px !important;
}
@media screen and (min-width:992px){
	// .boxFAQ{
	// 	width: 75%;
	// }
	.allFAQ{
		display: flex;
		flex-direction: column;
/* 		align-items: center; */
	}
}
@media screen and (max-width:576px){
	.boxFAQ{
		padding:20px 0px;
		padding-left: 20px;
		padding-right: 20px;
	}
}
// .boxFAQ::after{
// 	content: '';
//   	position: absolute;
//   	bottom: 0;
//   	left: 0;
//   	width: 100%;
//   	height: 1px;
//   	background-color: rgba(27, 101, 74, 0.5);
//   	opacity: 0.5;
// }
.allFAQ .boxFAQ:last-child::after {
	background-color: transparent;
}
.boxFAQ.active .answerFAQ{
	/* 	display:block !important; */
		max-height:10000px !important;
		// animation:fade 0.2s ease-in-out !important;
		// -webkit-animation: slide-down 0.2s ease-out;
		// -moz-animation: slide-down 0.2s ease-out;
	position:relative;
	z-index:10;
}
.relative-box{
	position: relative;
}
.plus-iconFAQ{
	width:32px;
	height:32px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.3s ease-out;
	transform: translate(0%, -50%);
}
.boxFAQ.active .plus-iconFAQ{
	transform: translate(0%, -50%) rotate(180deg);
}
.answerFAQ p{
	margin-top: 24px;
	color: rgba(255, 255, 255,0.8);
}	

.title-faq-h4{
	text-transform:uppercase;
	letter-spacing:5px;
	font-weight:200;
/* 	text-align:center; */
}
.title-faq-h2{
/* 	text-align:center; */
}


/* TABS */

.content{
	display:none;
	animation: moving 0.4s ease;
}
@keyframes moving{
	from{transform:translateX(50px); opacity:0;}
	to{transform:translateX(0px); opacity:1;}
}
.content.active{
	display:block;
}
.tab_btn{
	display:flex;
	align-items:center;
	cursor:pointer;
}
.tab_btn.active{
	background:var(--main);
}
.tab_btn.active h3{
	color:#fff;
}



/* flex-tabs */
/* .flex-tabs{
	display:flex;
}
@media screen and (min-width:992px){
	.tab_box{
		width:25%;
	}
	.content_box{
		width:75%;
	}
} */

/* extras */

/* .tab_btn:hover .tab_btn-img {
  content: url("/wp-content/uploads/2023/10/Group-30.png");
} */


/* O NAS - TABS */

.tabs__foto{
	min-height:350px;
	max-height:350px;
	width:50%;
	border-radius:var(--border);
}
.tabs__imgBox{
	display:flex;
	gap:20px;
}
.tab_box{
	display:flex;
	gap:10px;
}
@media screen and (max-width:768px){
	.tab_box{
		display:block;
	}
}
.tab_btn{
	padding:10px 30px;
	border:2px solid var(--main);
	border-radius:var(--borderMax);
}
.tab_btn h3{
	font-size:18px;
}
@media screen and (max-width:768px){
	.tab_box .tab_btn{
		margin-bottom:15px;
	}
	.tab_box .tab_btn:last-child {
  		margin-bottom: 0px;
	}
}


/* ZDJECIE I OPIS */

.imgOpis__img{
	width:100%;
	height:100%;
/* 	border-radius:var(--border); */
	min-height:590px;
	background-position:top;
}
.flex-direction-center{
	display:flex;
	flex-direction:column;
	justify-content:center;
}
@media screen and (max-width:576px){
	.imgOpis__img{
		min-height:350px;
	}
	.imgOpis__img--smaller{
		min-height:260px !important;
	}
}
.small-rectangle-overlay{
	position:absolute;
	top:-20px;
	left:-20px;
	width:200px;
	height:200px;
/* 	background:#000;
	border-radius:var(--border); */
	z-index:-1;
}
.small-rectangle-overlay--bottom{
	position:absolute;
	bottom:-20px;
	right:-20px;
	width:200px;
	height:200px;
/* 	background:#000;
	border-radius:var(--border); */
	z-index:-1;
}
@media screen and (max-width:576px){
	.small-rectangle-overlay{
		width:130px;
		height:130px;
	}
	.small-rectangle-overlay--bottom{
		width:130px;
		height:130px;
	}
}
.big-rectangle-overlay{
	position:absolute;
	bottom:-20px;
	right:-20px;
	width:200px;
	height:300px;
	background:#000;
	border-radius:var(--border);
	z-index:-1;
}
.gold-bg{
	background-color:var(--main);
}

/* CENNIK KLASYCZNY */

.white-bg-section{
	background-color:#fff;
}
@media screen and (max-width:992px){
	.color-price{
		background-color:rgba(222, 159, 23,0.1);
	}
}
.price-price{
	text-align:center;
	font-size:30px;
}
.header-cennik{
	text-align:center;
	font-size:36px;
	text-transform:uppercase;
}
.name-offer{
	font-size:28px;
}
@media screen and (max-width:992px){
	.name-offer{
		text-align:center;
		font-size:23px;
	}
	.price-price{
		font-size:23px;
	}
}
.price-hr{
	width:100%;
	background-color:#000;
}
.hr-price-div{
	display:flex;
	justify-content:center;
	align-items:center;
}
.price-hr-div{
	width:100%;
	background-color:#999;
	height:4px;
	border-radius:40px;
	opacity:0.2;
}
/* SIMPLE BANNER */

.simpleBanner__section{
	background-color:#000;
	border-radius:0px 0px 30px 30px;
	overflow:hidden;
}
.simpleBanner__overlay{
	position:absolute;
	top:130px;
	right:0;
	width:300px;
}
@media screen and (max-width:992px){
	.simpleBanner__overlay{
		right:-150px;
	}
}
.simpleBanner__h1{
	position:relative;
	z-index:3;
}

/* BANER TEKST I ZDJECIE */

.txtImgBaner__section{
	min-height:600px;
	border-radius:0px 0px 40px 40px;
/* 	padding:30px 0px; */
	height:calc(100vh - 120px);
	display:flex;
	align-items:center;
	margin-top:120px;
}
@media screen and (max-width:1170px){
	.txtImgBaner__section{
		height:auto;
		margin-top:0px;
		padding-top:170px;
		padding-bottom:50px;
	}
}
.flex-column-ctr-div{
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.txtImgBaner__opis p {
	font-size:23px;
	color:#fff;
}
.flex-box-start{
	display:flex;
	align-items:center;
	gap:20px;
}
@media screen and (max-width:768px){
	.flex-box-start{
		flex-direction:column;
	}
	.btn-div-baner .cta-button{
		width:100%;
	}
	.btn-div-baner .white-button{
		width:100%;
	}
	.btn-div-baner .first-button{
		width:100%;
	}
}
@media screen and (max-width:576px){
	
	.btn-div-baner{
		width:100%;
	}
	
}
/* @media screen and (min-width:1170px){
	.txtImgBaner__boxImg{
		position:absolute;
		top:0;
		right:0;
		width:500px;
	}
} */

.txtImgBaner__boxTxt{
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-color:#000;
	border-radius:0px 0px 0px 30px;
}
@media screen and (min-width:1170px){
	.txtImgBaner__boxTxt{
		padding:40px;
		height:600px;
	}
}

.txtImgBaner__h1{
	color:#de9f17;
	font-size:48px;
	z-index:3;
	font-weight:200;
}
.txtImgBaner__img{
	height:500px;
	border-radius:var(--borderMax);
}
.black-bg-overlay{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:-2;
	background:#000;
	border-radius:0px 0px 40px 40px;
}
@media screen and (max-width:576px){
	.txtImgBaner__img{
		height:350px;
	}
}
@media screen and (max-width:1170px){
	.txtImgBaner__h1{
		text-align:center;
	}
	.txtImgBaner__opis p {
		text-align:center;
	}
	.flex-box-start{
		justify-content:start;
	}
}
.imgTxt__h4{
	letter-spacing:3px;
	color:var(--main);
	font-weight:400;
}
.imgTxt__desc p {
	margin-bottom:15px;
}
.imgTxt__desc p:last-child {
	margin-bottom:0px;
}

/* SEKCJA EFEKTY */

@media screen and (min-width:1170px){
	.effectSection__box{
		width:60%;
		margin-left:auto;
		margin-right:auto;
	}
}
.effectSection__img{
	border-radius:var(--borderMax);
}
.effectSection__title{
	text-align:center;
}

/* SEKCJA OPINIA */

.arrows-slick{
	position:absolute;
	transform:translateY(-50%);
	top:-41px;
	cursor:pointer;
	width:40px;
	height:40px;
}
.arrow-right{
	right:10px;
}
.arrow-left{
	left:calc(100% - 110px);
}
.reviews__box{
	padding:20px;
	background:#1a1a1a;
	margin:0px 10px;
	min-height:370px !important;
	display:flex !important;
	flex-direction:column;
	justify-content:space-between;
}
.reviews__numberDiv{
	font-weight:700;
}
.reviews__icon{
	width:60px;
}
.reviews__stars{
	width:120px;
}
.reviews__5starsNumber{
	display:flex;
	gap:10px;
}
.z-index-3{
	z-index:3;
}

@media screen and (max-width:992px){
	.arrow-left{
		left:-20px;
		top:50%;
	}
	.arrow-right{
/* 		left:65px; */
		right:-20px;
		top:50%;
	}
}

/* 2 zdjecia i zalety */

.imgsTxt{
	display:flex;
	gap:20px;
}
.imgsTxt__section{
	margin-top:-100px;
}
.imgsTxt__benfitBox{
	display:flex;
	align-items:center;
	margin-bottom:15px;
	gap:15px;
}
.imgsTxt__benfitBox:last-child{
	margin-bottom:0px;
}
.imgsTxt__benfitBox::before {
  content: ""; 
  display: inline-block;
  min-width: 25px; 
  height: 25px; 
  background-image: url('/wp-content/uploads/2024/01/Projekt-bez-nazwy-20-1.png');
  background-size: cover;
}
.blog-foto{
	min-height:250px;
}
/* BLOG */

.blog-foto{
	min-height:230px;
/* 	border-radius:var(--border); */
}
.blog-box{
	padding:24px;
	border:1px solid var(--second);
/* 	border-radius:var(--border); */
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
.blog-box-sticky{
	position:sticky;
	top:150px;
/* 	border-radius:var(--border); */
	padding:20px;
}
.blog-box-sticky::before{
	content:'';
	padding:20px;
/* 	border-radius:var(--border); */
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:#181818;
	opacity:0.65;
	z-index:-1;
}
/* .single-post-img{
	border-radius:var(--border);
} */
.singlepost-main-opis h2{
	margin-bottom:16px;
	margin-top:20px;
}
.simple-button-anchor{
	color:#fff;
	display:flex;
	align-items:center;
}
.simple-button-anchor img {
	width:20px;
	margin-left:10px;
	transition:all 0.3s ease-out;
}
.blog-box{
	transition:transform 0.3s ease-out;
}
.blog-box-anchor{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
/* 	border-radius:var(--border); */
}
@media screen and (min-width:992px){
	.blog-box:hover .simple-button-anchor img{
		margin-left:24px;
	}
	.blog-box:hover {
		transform:scale(0.96);
	}
}
.flex-div-end-blog{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:end;
}
@media screen and (max-width:576px){
	.flex-div-end-blog{
		display:none;
	}
	.mobile-btn-blog{
		display:flex;
		justify-content:center;
	}
	.header-aktualnosci{
		text-align:center;
	}
}
@media screen and (min-width:576px){
	.mobile-box-grid{
		display:none;
	}
}
@media screen and (max-width:768px){
	.footerLogo__ctr{
		display:flex;
		justify-content:center;
		margin-bottom:30px;
	}
}
.btnOfferBox{
	display:flex;
	justify-content:center;
}
.mrg-top-minus{
	margin-top:-170px;
}
/* o nas */

.aboutTxt p{
	margin-bottom:15px;
}
.aboutTxt p:last-child{
	margin-bottom:0px;
}
@media screen and (min-width:1170px){
	.aboutBigImg__narrow{
		width:75%;
		margin-left:auto;
		margin-right:auto;
	}
}
.z-index-10{
	z-index:10 !important;
}
.socialMedia__mainBox{
	padding:80px 50px;
	border:1px solid var(--second);
}
.socialMedia__header{
	display:flex;
	align-items:center;
}
@media screen and (max-width:992px){
	.socialMedia__mainBox{
		padding:40px 20px;
	}	
	.socialMedia__header{
		justify-content:center;
	}
	.socialMedia__header .callAction__h2{
		text-align:center;
	}
	.order-2-mobile{
		order:2 !important;
	}
}
.imgOpis__img--higher{
	background-position:center;
	border:1px solid var(--second);
}
@media screen and (min-width:992px){
	.imgOpis__img--higher{
		min-height:630px;
	}
	.offerSection__mrgRight{
		margin-right:0px !important;
	}
	.offerSection__mrgLeft{
		margin-left:60px !important;
	}
}

/* contact */

.contactInfo__box{
	padding:20px;
	border:1px solid var(--second);
}
.contactInfo__phone{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__phone::before {
  content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/phoneee.png');
  background-size: cover;
}
.contactInfo__email{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__email::before {
  content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/emailllleee.png');
  background-size: cover;
}
.contactInfo__adres{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__adres::before{
	 content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/placeee.png');
  background-size: cover;
}
.contactInfo__ig{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__ig::before{
	 content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/instagram-2.png');
  background-size: cover;
}
.contactInfo__tiktok{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__tiktok::before{
	 content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/tiktok-2.png');
  background-size: cover;
}
.contactInfo__facebook{
	display:flex;
	align-items:center;
	gap:15px;
}
.contactInfo__facebook::before{
	 content: ""; 
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-image: url('/wp-content/uploads/2024/01/facebook-3.png');
  background-size: cover;
}

/**//**//**//**//**//**/
/* CONTACT SECTION */
/**//**//**//**//**//**/
input[type=text],input[type=email],input[type=number],input[type=tel]{
	 -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width:100%;
/* 	border-radius:50px; */
	padding:30px 25px;
	border:2px solid var(--second);
	background:transparent;
	text-align:center;
	font-size:16px;
	color:#fff;
}
input[type=text]:focus,input[type=email]:focus,input[type=number]:focus,input[type=tel]:focus{
	outline:none;
	background:transparent;
}
.contact-box{
	padding:40px;
	background:#234a48;
	box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
}
@media screen and (max-width:576px){
	.contact-box{
		padding:40px 20px;
	}
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	padding:15px;
	border-color:#fff;
	color:#fff;
	font-size:12px;
}
@media screen and (min-width:992px){
	.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
		font-size:16px;
	}
}
.txt-area{
	 -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width:100%;
/* 	border-radius:18px; */
	padding:12px 20px;
	border:2px solid var(--second);
	resize:none;
	height:90px;
	margin-bottom:20px;
	background:transparent;
	text-align:center;
	font-size:16px;
	color:#fff;
}
.txt-area:focus{
	outline:none;
	background:transparent;
}
.wpcf7 .wpcf7-submit{
	float:none !important;
}

/* PRZYCISK - CONTACT FORM */

input[type=submit]{
	all: unset;
	background:var(--second) !important;
	padding:15px 60px !important;
	font-size:15px !important;
	cursor:pointer !important;
	margin-top:20px !important;
	transition:all 0.75s !important;
	letter-spacing:1px !important;
	position:relative !important;
	overflow:hidden !important;
	font-weight:500 !important;
/* 	text-transform:uppercase !important; */
	z-index:1 !important;
	color:#000 !important;
/* 	center-it */
	display:flex !important;
/* 	margin-left:auto !important;
	margin-right:auto !important; */
}
@media screen and (min-width:992px){
	input[type=submit]:hover{
/* 		transform:scale(0.8) !important;
		border-radius:20px 20px 20px 20px !important; */
		opacity:0.7;
	}
}
/* CONTACT FORM STYLING*/
.wpcf7-not-valid-tip{
	color:#fff;
	font-size:10px;
	padding-left:20px;
	margin-top:7px;
}
span .wpcf7-list-item-label{
	font-size:13px;
}
@media screen and (min-width:768px){
	.wpcf7-not-valid-tip{
		font-size:13px;
	}
}
input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
}
input[type="checkbox"] {
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 0.15em solid var(--main);
/*   border-radius: 0.15em solid currentColor;; */
  transform: translateY(-0.075em);
  margin-right:10px;
	 display: grid;
  place-content: center;
	cursor:pointer;
}
input[type="checkbox"]::before {
  content: "";
  width: 20px;
  height: 20px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
/*   box-shadow: inset 1em 1em var(--form-control-color); */
	background-color:var(--main);
}
#wpadminbar #adminbarsearch .adminbar-button{
	display:none !important;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}
label{
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
}
.wpcf7-list-item label{
	display:flex;
	justify-content:center;
	align-items:center;
	cursor:pointer;
}
::placeholder{
	color: rgba(255,255,255,0.4);
}
.wpcf7 form.sent .wpcf7-response-output{
	border-color:#fff;
	color:#fff;
}
.wpcf7 label:not(.wpcf7-form-control-wrap){
	display:flex !important;
}

/* end contact */

.contactCTA__box{
	height:258px;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

/* .wpcf7-form-control.wpcf7-checkbox{
	display:flex;
	flex-direction:column;
	align-items:baseline;
	gap:10px;
} */

.wpcf7-list-item{
	display:flex;
	justify-content:start;
	margin:0px !important;
	margin-bottom:10px !important;
	
}
.top-social-media{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:6px;
}
@media screen and (max-width:1000px){
	.top-social-media{
		flex-direction:column;
		gap:20px;
		align-items:start;
	}
}

[data-behaviour*=side] .ct-panel-inner {
	top:0px !important;
	height:100%;
	inset-block:unset;
}