@charset "UTF-8";

/*
		StudioFabryka.pl
		2023-11

		for Polenresor
*/

html {
	scroll-padding-top: 100px;
}

:root,
[data-bs-theme=light] {
	--font: 'Inter', sans-serif;

	--primary-color:		hsl(204 71% 52%);
	--primary-color-light:	hsl(204 71% 62%);
	--primary-color-dark:	hsl(204 71% 42%);
	--bg-light:				hsl(228 22% 95%);
	--text-color: 			hsl(225 15% 16%);

	--h1: 	clamp(3.5rem, 4.5vw, 4.5rem);
	--h2: 	clamp(2.35rem, 3.5vw, 3.946875rem);
	--h3: 	clamp(2.1rem, 2.5vw, 2.960625rem);
	--h4: 	clamp(1.75rem, 2vw, 2.22125rem);
	--h5: 	clamp(1.25rem, 1.5vw, 1.66625rem);
	--h6: 	clamp(1rem, 1.25vw, 1.25rem);
	--lead: var(--h5);


	--bs-emphasis-color-rgb: 35, 38, 47;
	--bs-primary-rgb: 46, 150, 220;
	--bs-light-rgb: 239, 241, 245;

	--bs-border-radius-xl: 1.5rem;

	--xxl-space: 7.5rem;
}

@media (min-width: 1490px) {
	.container {max-width: 1470px}
}

h1, .h1 {font-size: var(--h1);}
h2, .h2 {font-size: var(--h2);}
h3, .h3 {font-size: var(--h3);}
h4, .h4 {font-size: var(--h4);}
h5, .h5 {font-size: var(--h5);}
h6, .h6 {font-size: var(--h6);}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font);
	color: var(--text-color);
	font-weight: 700;
	margin-bottom: 1rem;

	& em {
		color: var(--primary-color);
		font-style: normal;
		white-space: nowrap;
	}
}

.inset-0 {inset: 0;}

.floating-widgets {
	position: fixed;
	top: 30vh;
	right: 0.5rem;
	z-index: 999;

	& a {
		display: block;
		border-radius: 50%;
		transition: transform 200ms, box-shadow 200ms;

		&:hover {
			transform: scale(1.05);
			box-shadow: 0 .5rem 1rem -.25rem hsl(0 0% 0% / .25);
		}
	}

	& img {
		width: 40px;
	}
}

#search-bar .btn-outline-secondary {
	padding: .75rem 1.5rem;
	border-radius: 1.25rem;
	border: 3px solid var(--bg-light);
	font-weight: normal;
}

#search-bar .dropdown-menu {
	top: 100%;
	min-width: 100%;
}

#search-bar .grid-dropdown-menu.show {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: 1fr 1fr;
}

.form-control {
	padding: .75rem 1.5rem;
	border-radius: 1.25rem;
	border: 3px solid var(--bg-light);

	&:is(select) {
		background-image: url(/assets/img/drop-icon.svg);
		background-repeat: no-repeat;
		background-position: right 1.5rem center;
	}
}



.btn {
	font-size: 1.25rem;
	font-weight: 700;
	padding: 1.25rem 1.875rem;
	border-radius: var(--bs-border-radius-xl);
}

header .btn, .search-widget .btn {
	padding: .65rem 1.5rem;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color-light);
    --bs-btn-hover-border-color: var(--primary-color-light);
    --bs-btn-active-bg: var(--primary-color-dark);
    --bs-btn-active-border-color: var(--primary-color-dark);
}

.p-xxl {padding: var(--xxl-space);}
.pt-xxl {padding-top: var(--xxl-space);}
.pb-xxl {padding-bottom: var(--xxl-space);}
.py-xxl {padding: var(--xxl-space) 0;}

.p-xl {padding: calc(var(--xxl-space)/2);}
.pt-xl {padding-top: calc(var(--xxl-space)/2);}
.pb-xl {padding-bottom: calc(var(--xxl-space)/2);}
.py-xl {padding: calc(var(--xxl-space)/2) 0;}

.mt-xl {margin-top: calc(var(--xxl-space)/2);}


body {
	overflow-x: hidden;
	font-family: var(--font);
	line-height: 1.75;
}


/*
		NAVBAR
*/

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0;
    --bs-navbar-brand-padding-y: 0;
    --bs-navbar-brand-margin-end: 0;
    --bs-navbar-nav-link-padding-x: 0.5rem;

	--bs-navbar-color: var(--text-color);
	--bs-navbar-active-color: var(--primary-color);
	--bs-navbar-hover-color: var(--primary-color);

	transition: all 200ms;

	&.affix {
		top: -120px;
		box-shadow: 0 0 2rem hsl(0 0% 0% / .15);
	}
}

.navbar-top,.navbar-bottom {padding: 1.875rem 0;}

.navbar-bottom {
	border-top: 1px solid var(--bg-light);
}

.navbar-top .nav-link {
	color: var(--text-color);
	opacity: .5;
	padding: 0 clamp(1rem, 1.5vw, 1.875rem);
	transition: opacity 200ms;
	font-size: clamp(1rem, 1.1vw, 1.1875rem);

	&:hover,
	&.active {
		opacity: 1;
	}
}

.navbar-tel {
	text-decoration: none;
	color: var(--text-color);
	font-size: var(--h5);
	font-weight: 700;
	line-height: 1;
	transition: color 200ms;

	&:hover {
		color: var(--primary-color);

		& img {
			animation: ringring 1.5s linear infinite forwards;
		}
	}
}

@keyframes ringring {
	0% {transform: rotate(0);}
	2% {transform: rotate(5deg);}
	4% {transform: rotate(0);}
	6% {transform: rotate(-5deg);}
	8% {transform: rotate(0);}
	10% {transform: rotate(5deg);}
	12% {transform: rotate(0);}
	14% {transform: rotate(-5deg);}
	16% {transform: rotate(0);}
	100% {transform: rotate(0);}
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
}

.nav-link {
	--bs-navbar-nav-link-padding-x: 0;
	font-size: 1.1875rem;
}

.dropdown-menu {
    box-shadow: 0 1rem 2rem -.5rem hsl(0 0% 0% / .25);
	border-radius: var(--bs-border-radius-xl);
	border: 0;
	width: 280px;
	max-width: 280px;

	& > li:first-child > a {
		border-radius: var(--bs-border-radius-xl) var(--bs-border-radius-xl) 0 0;
	}

	& > li:last-child > a {
		border-radius: 0 0 var(--bs-border-radius-xl) var(--bs-border-radius-xl);
	}
}

.dropdown-item {
	overflow: hidden;
	position: relative;
	padding: .35rem 1.5rem;
	transition: all 200ms;
	white-space: wrap;
	line-height: 1.1;
	font-size: 1rem;

	&::before {
		content: '>';
		color: var(--primary-color);
		font-family: monospace;
		position: absolute;
		left: -1em;
		opacity: 0;

		transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1);
	}

	&:hover {
		padding-left: 2rem;
		padding-right: .5rem;

		&::before {
			left: 1em;
			opacity: 1;
		}
	}

	&.active {
		&::before {color: white;}
		background-color: var(--primary-color);
	}
}

.dropdown-menu .dropdown-item.dropdown-toggle::after {
	transform: rotate(-90deg);
}

.navbar-nav li {
	position: relative;
}

.navbar-nav > li:nth-child(n + 8) > .dropdown-menu {
	right: 0 !important;
	left: auto !important;
}

.navbar-nav > li:nth-child(n + 5) > .dropdown-menu .dropdown-menu {
	top: 0 !important;
	right: 100% !important;
	left: auto !important;
}

.dropdown-menu > li:hover > .dropdown-menu {
	display: block;
	opacity: 1;
}


/*
		HEADER
*/

header .swiper-slide {
	overflow: hidden !important;
}

header .swiper-slide::before {
	content: '';
	display: block;
	width: 40%;
	height: 200%;
	background-color: var(--primary-color);
	transform: rotate(-30deg);

	position: absolute;
	left: -12%;
	top: -25%;
	z-index: 1;
	opacity: .5;

	mix-blend-mode: hard-light;
}

header .swiper-pagination {
	bottom: 5rem !important;
	gap: .35rem;
	display: flex;
	align-items: center;
	justify-content: center
}

header .swiper-pagination-bullet {
	background-color: white;
	width: 1.15rem;
	height: 1.15rem;
	opacity: 1;
	box-shadow: 0 .25rem .5rem hsl(0 0% 0% / .15);

	transition: transform 200ms, background-color 200ms;

	&:hover {
		transform: scale(1.3);
	}
}

header .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.slogan {
	margin-left: 3.75rem;
	transform: translateY(-25px);
}

header .swiper-wrapper {
	animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

header form {
	transform: translateY(-50%);
	position: relative;
	z-index: 10;
	margin-inline: 3.75rem;
}



/*
		MAIN
*/

.lead {font-weight: 400;}

.home #info {
	padding-top: calc(var(--xxl-space) - 51px);
}

#offer {
	content-visibility: auto;
}

.offer-box {
	aspect-ratio: 470/500;

	& img {
		position: relative;
		z-index: 1;
		transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	& strong {
		letter-spacing: normal;
		transition: letter-spacing 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	&::after {
		content: '';
		display: block;
		width: 4rem;
		height: 4rem;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(/assets/img/more-icon.svg);

		position: absolute;
		top: 2.5rem;
		right: 2.5rem;
		z-index: 2;

		transition: transform 200ms;
	}

	&:hover {
		&::after {
			transform: rotate(45deg);
		}

		& img {
			transform: scale(1.1);
		}

		& strong {
			letter-spacing: .05em;
		}
	}
}

.offer-box .position-absolute {
	padding: 2.5rem;
}

.hotellpaket .offer-box {
	aspect-ratio: 3/2;
}

.gallery a .label,
.card .label,
.offer-box-label {
	color: var(--text-color);
	font-size: 1rem;
	background-color: #fff;
	border-radius: 0 3rem 3rem 0;
	padding: .25rem 1rem .25rem 2rem;
	margin-left: -2.5rem;
	margin-top: 10px;
	position: relative;

	&::before,
	&::after {
		content: '';
		display: block;
		width: 1.5rem;
		height: 1.5rem;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		left: 0;
	}

	&::before {
		top: -1.5rem;
		background-image: url(/assets/img/label-before.svg);
	}
	&::after {
		bottom: -1.5rem;
		background-image: url(/assets/img/label-after.svg);
	}
}

.card .label {
	padding: 0.25rem 1rem 0.25rem 0rem;
}

#recommenderar {
	content-visibility: auto;
}

.card {
	padding: 0.625rem;
	border: 0;
	cursor: pointer;

	&:hover {
		& .card-title-link {color: var(--primary-color);}

		& .card-img-top img {
			transform: scale(1.1);
		}
	}

	& .price {
		font-weight: 400;

		& em {
			font-weight: 700;
		}
	}
}

.card-title-link {
	color: var(--text-color);
	text-decoration: none;
	transition: color 200ms;

	&:hover {
		color: var(--primary-color);
	}
}

.card-img-top {
	position: relative;

	& .label {
		position: absolute;
		top: 3rem;
		left: 0;
		z-index: 3;
		margin: 0;
		display: flex;
		align-items: center;
		gap: .5rem;

		& .dot {
			width: 10px;
			height: 10px;
			border-radius: 50%;
			display: block;
		}
	}

	& img {
		transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
		aspect-ratio: 16/10;
		position: relative;
		z-index: 1;
	}
}



/*
		FOOTER
*/

footer ul {
	list-style: none;
	padding-left: 0;

	& li + li {margin-top: 0.5em;}

	& a {
		text-decoration: none;
		color: var(--text-color);
		transition: color 200ms;

		&:hover {
			color: var(--primary-color);
		}
	}
}

.madeby {
	display: flex;
	gap: 0.25em;
	color: var(--text-color);
	text-decoration: none;
	align-items: center;
	line-height: 1;

	& small {
		font-size: 0.625rem;
	}
}



/*
		SUB PAGES
*/

.container-fluid {
	padding-inline: clamp(1rem, 3vw, 3.75rem);
}

.breadcrumb a {
	text-decoration: none;
	color: var(--text-color);
	transition: color 200ms;
	line-height: 1;

	&:hover {
		color: var(--primary-color);
	}
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "");
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	margin: 0;
	line-height: 1;
	display: block;
	background-image: url(/assets/img/arrow-right.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.gallery.row {
	--bs-gutter-x: 10px;
	--bs-gutter-y: 10px;

	& a {
		display: block;
		height: 100%;
		border-radius: 1.5rem;
		overflow: hidden;
		position: relative;

		& img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			position: relative;
			z-index: 1;
			transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
		}
	}

	& .row {
		--bs-gutter-y: 10px;
		--bs-gutter-x: 10px;
	}
}

.gallery a .label {
	display: flex;
	align-items: center;
	gap: 1rem;

	border-radius: 3rem 0 0 3rem;
	padding: .25rem 2rem .25rem 1rem;

	position: absolute;
	top: auto;
	bottom: 3rem;
	right: 0;
	z-index: 2;

	color: var(--text-color);

	& img {
		width: 1rem;
		height: auto;
	}

	&::before,
	&::after {
		transform: rotateY(180deg);
		left: auto;
		right: 0;
	}
}

.gallery a {
	overflow: hidden;

	& img {
		transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	&:hover {
		& img {transform: scale(1.1);}
	}
}

.lg-on {overflow: hidden;}

.small-info {
	position: sticky;
	top: 100px;
	bottom: 30px;
}

.small-info a:not(.btn) {
	color: var(--text-color);
	text-decoration: none;
	transition: color 200ms;

	&:hover {
		color: var(--primary-color);
	}
}

#info ul {
	padding-left: 0;
}

#info ul li {
	list-style: none;
	display: block;
	padding-left: 2em;
	background-image: url(/assets/img/bullet.svg);
	background-repeat: no-repeat;
	background-position: 0 .35em;

	& + li {
		margin-top: 0.5rem;
	}
}

.tabs {
	border: 3px solid var(--bg-light);
	overflow: hidden;
}

.nav-pills {
    --bs-nav-pills-border-radius: 1rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: var(--primary-color);

	& a {
		font-weight: 700;
		color: var(--text-color);

		&:hover {
			color: var(--text-color);
			background-color: hsl(0 0% 0% / .1);
		}
	}
}

#tab-1 td {
	padding: .5em;
	line-height: 1.4;
	border-bottom: 1px solid var(--bg-light);
}

.error.form-control {
	border-color: red;
}

.error-msg {
	color: red;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.star {
	color: red;
}

.tabs textarea {
	height: 8.5rem;
}

.btn-add {
	border-radius: 1rem;
	padding: .75rem 1rem 1.1rem;
	line-height: .5;
	font-weight: 400;
	font-size: 3rem;
}

.btn-sm {
	padding: 0.25rem 0.75rem;
	font-size: .75rem;
	font-weight: 400;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
}

.align-items-stretch .card {
	height: 100%;
}

#offers .card-text {
	font-size: .875rem;
}

.btn [src*="more-icon"] {
	transform: rotate(45deg);
	transition: transform 200ms;
	transform-origin: center;
}

.btn:hover [src*="more-icon"] {
	transform: rotate(45deg) translateX(5px) translateY(-5px);
}

.downloads a {
	transition: filter 200ms;

	& strong {
		transition: color 200ms;
	}

	&:hover {
		filter: brightness(1.02);

		& strong {color: var(--primary-color);}
	}
}

h1 + .btn {
	white-space: nowrap;
}

.search-widget {
	isolation: isolate;
	transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);

	bottom: -100px;

	&.open {
		bottom: 0;
	}
}

.search-widget-toggler {
	position: relative;
	background-color: #fff;
	padding: .25rem 1rem;
	border-radius: .5rem .5rem 0 0;
	box-shadow: 0 -.5rem 1.5rem -.15rem hsl(0 0% 0% / .15);
	margin-left: 2.5rem;
	text-decoration: none;
	color: var(--primary-color);
}


#polenresor a.bg-light {
	transition: transform 300ms ease-out;

	&:hover {
		transform: scale(1.03);
	}
}


iframe[src*="vimeo"] {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	display: block;
	border-radius: .5rem;
}

.table .old,
.offer-table .old {
	display: none;
}

table em {font-style: normal;}


/* cms pagination */

.pagination {
	display: flex
}

.pagination li {
	display: none
}

.pagination .active,
.pagination .insertPage,
.pagination li:first-child,
.pagination li:last-child {
	display: block
}

.pagination a {text-decoration: none;}

.pagination a,
.pagination input {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: 0 5px;
	padding: 0;
	font-size: 1.15rem;
	text-align: center;
	color: #aaa;
	border: 1px solid #aaa;
	border-radius: .25rem;
	transition: all .2s
}

.pagination a:focus,
.pagination a:hover,
.pagination input:focus,
.pagination input:hover {
	color: var(--primary-color);
	border: 1px solid var(--primary-color)
}

.pagination input::placeholder {
	color: #aaa;
	font-size: 16px;
	font-weight: 500
}

.pagination .active a {
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
	color: #fff;
	cursor: text
}

.pagination .insertPage+.insertPage {
	display: none
}


/* PRISLISTA INFO POPUP */

.info-popup,
.info-popup-backdrop {
  inset:0;
  position: fixed;
}

.info-popup {
  z-index: 9999;
  isolation: isolate;

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

.info-popup:not(.d-none) {
  display: flex;
}

.info-popup-backdrop {
  z-index: -1;
  background-color: hsl(0 0% 100% / .3);
  backdrop-filter: blur(3px);
}

.info-popup-wrapper {
  position: relative;
  width: 600px;
  max-width: 80vw;
}

.info-popup-close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  color: red;
  font-family: monospace;
  font-size: 2.5rem;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 .5rem 1rem -.5rem hsl(0 0% 0% / .15);

  top: -1.5rem;
  right: -1.5rem;
  transition: transform 200ms;

  &:hover {
    transform: scale(1.05);
  }
}

.info-popup-content {
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 .5rem 1.5rem hsl(0 0% 0% / .15);
  font-size: .875rem;
}



/*
		PRINT STYLES
*/

@media print {

	.container {
		width: 96%;
		max-width: 100%;
	}

	[data-aos] {
		transform: none !important;
		opacity: 1 !important;
	}

	.navbar {
		position: relative !important;
		top: auto;
	}

	.navbar-top ul.nav,
	.navbar .navbar-tel,
	.navbar .navbar-bottom,
	nav.bg-light,
	footer .d-flex:last-child,
	footer .col-lg-3:not(:first-child),
	.btn,
	#see-also,
	.search-widget, #pliki {display: none !important;}

	footer {margin-top: 2em;}

	footer .row {
		justify-content: center;
		text-align: center;
		padding: 1.5em 0;
	}

	.row.gallery > .col-lg-6:not(:first-child) {display: none !important;}

	#info ul {
		padding-left: 1.5em;
	}

	#info ul li {
		list-style: disc;
		background-image: none;
		display: block;
		padding: 0;

		&::before {
			content: '-';
		}
	}

	#info ul li::marker {color: black !important;}

	.shadow,
	.shadow-lg {
		box-shadow: none !important;
		border: 1px solid var(--bg-light);
	}

	.tabs {
		border: 0;
	}

	.tab-content {
		display: block !important;
		margin-bottom: 1em;
		padding: 0;
		break-after: auto;
	}

	#tab-form {display: none !important;}


	#even-more-info, .small-info, .gallery {
		break-before: always;
		break-inside: avoid;
	}

	footer {
		break-inside: avoid;
	}

	h1.h2 {
		font-size: 2rem;
	}

	h2 {font-size: 1.5rem;}
	h3, .h3 {font-size: 1.25rem;}
	h4, .h4 {font-size: 1.15rem;}
	h5, .h5 {font-size: 1rem;}

}


.tab-content sup {
  --size: 1.35rem;
  border: 0;
  width: var(--size);
  height: var(--size);
  background-color: var(--primary-color);
  border-radius: 50%;
  color: white;
  font-size: .875rem;
  padding: 0;
  margin-inline: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: auto !important;
  cursor: pointer;
}

/*
		MARK: RWD
*/

.navbar-brand-image {
	height: 50px;
}

@media screen and (max-width: 1399px) {
	.navbar-brand-image {
		height: 40px;
	}
}

@media screen and (max-width: 1199px) {

	header .swiper-pagination {
		bottom: 6.5rem !important;
	}


	.offer-box strong {
		font-size: var(--h5);
	}

	.offer-box .position-absolute {
		padding: 1.5rem;
	}

	.offer-box::after {
		width: 3rem;
		height: 3rem;
		top: 1.5rem;
		right: 1.5rem;
	}

	.gallery a .label, .card .label, .offer-box-label {
		font-size: .875rem;
		/*margin-left: -1.5rem;*/
		/*margin-top: 23px;*/
	}

	header form {
		flex-wrap: wrap;
	}

	header form .col {
		flex: 0 0 49%;
	}

	.slogan strong {
		margin-bottom: .25rem;
	}

	.navbar.affix {
		top: 0;
	}

	.navbar-top {
		padding: 1rem 0;
	}

	.affix .navbar-top {padding: 0.5rem 0;}

	.navbar-bottom {
		padding: 0;
		height: 1px;
	}

	.navbar-brand-image {
		height: 40px;
	}

	.small-info {
		padding: 1.5rem;
	}

	.offer-box::after {display: none}

}


@media screen and (max-width: 991px) {
	:root {
		--xxl-space: 3.5rem;
	}

	header form .col {
		flex: 0 0 48.9%;
	}

	.slogan {
		transform: none;
	}

	.slogan strong {
		font-size: var(--h5);
	}

	header .swiper-pagination {display: none !important}

	header .swiper-slide img {
		height: 350px;
		object-fit: cover;
	}

	header form {
		transform: none;
		margin-top: var(--xxl-space);
	}

	.home #info {
		padding-top: 0;
		margin-top: var(--xxl-space);
	}

	footer {
		text-align: center;
	}

	.gallery a .label, .card .label, .offer-box-label {
		margin-left: 0;
		margin-top: 0;
	}
}


@media screen and (max-width: 767px) {

	.slogan {
		margin-left: 1.75rem;
	}

	header .swiper-slide::before {
		width: 55%;
	}

	header form .col {
		flex: 0 0 100%;
	}

	/*#info {*/
	/*	margin-top: 0;*/
	/*	padding-top: var(--xxl-space);*/
	/*}*/

	.offer-box {
		aspect-ratio: 16/9;
	}

	.gallery a .label, .offer-box-label {
		margin-left: -1.5rem;
		margin-top: 1.5rem;
	}

}


@media screen and (max-width: 575px) {
	header .swiper-slide img {
		height: 260px;
		width: 100%;
	}

	header form .col {
		flex: 0 0 100%;
	}

	.slogan {
		margin-left: 1.75rem;
	}

	.nav-pills.gap-2 {
		gap: .25rem !important;

		& .nav-link {
			font-size: 1rem;
			padding: .4rem .5rem;
		}
	}

	.gallery a .label {bottom: 2.25rem;}
	.gallery a .label img {display: none !important;}


	.sub #info table {
		display: block;
		width: 100%;
		overflow-x: auto;
	}

}


@media screen and (max-width: 435px) {

	header .swiper-slide a .position-absolute {
		align-items: flex-end !important;
	}

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

		& strong {
			font-size: .875rem;
		}
	}

	.gallery a .label {
		bottom: 1rem;

		&::before,
		&::after {
			display: none;
		}
	}

	header form {
		margin-inline: 0;
	}

	.navbar-brand-image {
		height: 30px;
	}
}
