*, *:before, *:after {
	box-sizing: border-box;
}

:root {
	--green: #aee340;
	--gray: #333;
	--lightgray: #aaa;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	position: relative;
}

html {
 scrollbar-gutter: stable;
	scrollbar-width: thin;
	scrollbar-color: #aee340 #ddd
}

html, body {
	font-family: "Poppins", sans-serif;
	width: 100%;
	color: var(--gray);
}

body {
	overflow-x: hidden;
	overflow-y: auto
}

img {
	max-width: 100%;
}

.an {
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
}

.an.sl {
	transform: translateY(5px);
}

.an.vi {
	opacity: 1;
	transform: translate(0, 0);
	transition: opacity .3s ease, transform .3s ease
}

#content .wrapper>div:nth-of-type(1) .shw.vis {
	transition: opacity .3s ease, transform .3s ease;
}

#content .wrapper>div:nth-of-type(2) .shw.vis {
	transition-delay: .1s;
}

a {
	outline: none;
	color: var(--gray);
	text-decoration: underline;
	cursor: pointer;
	transition: color .2s ease;
}

a:hover {
color: var(--lightgray);
}

a:active, a:focus {
	outline: none;
}

p {
	line-height: 46px;
	font-size: 18px;
	font-weight: 200;
	padding-bottom: 10px;
	display: block;
	padding: 10px 0 0;
	text-align: justify;
	color: var(--gray);
}



td:empty {
padding: 0 !important
}


p strong {

	font-weight: 700;
}


ul {
	list-style: none;
}

#page {
	background: #eee;
}

.wrapper {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	background: #fff;
}

#head {
	width: 100%;
}

#head h2 {
	background: var(--gray);
	width: 100%;
	font-weight: 400;
	height: 100px;
	color: var(--green);
	text-align: center;
	line-height: 100px;
	font-size: 72px;
	letter-spacing: -1px;
}

#head h2 strong {
	font-weight: 700;
	color: #fff;
}

#slida {
	position: relative;
	width: 100%;
	height: 540px;
	overflow: hidden;
}

#slida img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

#slida img.active {
	opacity: 1;
}

.slida-nav-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 15px;
}

.slida-nav-dots .dot {
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.slida-nav-dots .dot.active {
	background-color: var(--green)
}


.btns {
	display: flex;
  	gap: 40px;
	flex: 1 1 100%;
}

.slidlogo {
position: absolute;
  left: 95px;
  max-width: 200px;
  bottom: 60px;
  z-index: 2;
}


.decors {
	max-width: 1160px;
	margin: 0 auto;
	display: block;
	width: 100%;
}
.zoom.deco {
	pointer-events: none;
}

#hello {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 70px;
padding: 60px 0 50px;
}

#hello > div {
flex: 0 0 40%;
  z-index: 5;
}

#hello p {
line-height: 64px;
  font-size: 32px;
  padding: 0;
}

#hello p strong {
  font-weight: 800;
}

#hello .cards p  {
  	text-align: left;
	position: absolute;
	top: 90px;
	left: 250px;
	font-size: 26px;
	line-height: 44px;
}

#hello .cards p:after  {
	content: '';
	background: url(img/ar.png) no-repeat center center / contain;
	top: 15px;
	left: 0px;
	width: 35px;
	height: 46px;
	display: block;
	position: relative;
}

#hello a {
	background: url(/files/new.png) no-repeat center center / contain;
	width: 370px;
	height: 100px;
	display: block;
	margin: 30px 0 0;
	padding: 23px 0 0 147px;
	color: #fff;
	font-size: 21px;
	line-height: 28px;
	text-decoration: none;
}

#hello a strong {
color: var(--green);
font-weight: 900;
  font-size: 25px;
}

.cards>div {
height: 400px;
  left: -40px;
  top: 20px;
  transition: left 1s ease;
  width: 260px;
}

.cards>div.start {
	left: -40px;
}

.cards span {
	background: #0001;
	width: 220px;
  	height: 370px;
	display: block;
	position: absolute;
	transform-origin: calc(100% - 20px) calc(100% - 20px);
	border-radius: 20px;
	left: 0px;
	filter: drop-shadow(7px 8px 10px #0005);
}

.cards>div.start span {
	animation: rotateCards 2s ease forwards;
}

@keyframes rotateCards {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(var(--hover-angle));
	}
	100% {
		transform: rotate(var(--initial-angle));
	}
}

@keyframes rotateCardsHover {
	0% {
		transform: rotate(var(--initial-angle));
	}
	100% {
		transform: rotate(var(--hover-angle));
	}
}

@keyframes rotateBack {
	0% {
		transform: rotate(var(--hover-angle));
	}
	100% {
		transform: rotate(var(--initial-angle));
	}
}

.cards>div.back span {
	animation: rotateBack .2s ease forwards;
}

.cards span.c1 {
--initial-angle: 7deg;
  --hover-angle: 2deg;
	transform: rotate(0deg);
	background: #0000 url(/files/templet.png) no-repeat center center / contain;
	border-radius: 0;
	z-index: 10;

}

.cards span.c2 {
	--initial-angle: -20deg;
	--hover-angle: -30deg;
	transform: rotate(0deg);
	z-index:9;
}

.cards span.c3 {
	--initial-angle: -5deg;
	--hover-angle: -10deg;
	transform: rotate(0deg);
	z-index: 8;
}

.cards span.c4 {
	--initial-angle: 10deg;
	--hover-angle: 10deg;
	transform: rotate(0deg);
	z-index: 7;
}

.cards span.c5 {
	--initial-angle: 25deg;
	--hover-angle: 30deg;
	transform: rotate(0deg);
	z-index: 6;
}

.cards span.c6 {
	--initial-angle: 40deg;
	--hover-angle: 50deg;
	transform: rotate(0deg);
	z-index: 5;
}

.cards span.c7 {
	--initial-angle: 55deg;
	--hover-angle: 72deg;
	transform: rotate(0deg);
	z-index: 4;
}

.cards span.c8 {
	--initial-angle: 70deg;
	--hover-angle: 84deg;
	transform: rotate(0deg);
	z-index: 3;

}

.cards span.c9 {
	--initial-angle: 85deg;
	--hover-angle: 106deg;
	transform: rotate(0deg);
	z-index: 2;

}

.cards span.c10 {
	--initial-angle: 100deg;
	--hover-angle: 128deg;
	transform: rotate(0deg);
	z-index: 1;

}

.cards span.c11 {
	--initial-angle: 115deg;
	--hover-angle: 140deg;
	transform: rotate(0deg);
	z-index: 0;
	box-shadow: 20px 10px 60px #0004;
}


.cards>div.hover span {
	animation: rotateCardsHover .5s ease forwards;
	animation-fill-mode: forwards;
	pointer-events: none;
}

#collection {
margin: 70px 0 0;
}


.collection > div:first-of-type {
  display: flex;
  //flex-wrap: wrap;
  //justify-content:  space-between;
//  align-items: center;
  gap: 0 70px;
  padding: 40px 100px 0;
}

 .collection > div > div:first-of-type > div  {
  width: 300px;
  z-index: 1;
}
 .collection > div > div:first-of-type div img.logo {
  border-radius: 0;
  z-index: 5;
  width: 160px;
  height: 42px;
top: 92px;
  right: -59px;
  left: initial;
  transform: rotate(90deg);
  box-shadow: none;
  position: absolute;
}

.collection > div > div:first-of-type p {
position: absolute;
  top: 45px;
  left: 40px;
  color: #fff;
  z-index: 2;
  font-weight: 300;
  font-size: 23px;
  line-height: 30px;
  text-align: left;
padding: 0 70px 0 0;
}


.collection.terazzo-jasny > div > div:first-of-type p {
background: #fffd;
  padding: 3px 8px;
  margin: -3px 0 0 -5px;
}

.collection > div > div:first-of-type b {
width: 15px;
  height: 15px;
  position: absolute;
  top: 25px;
  left: 25px;
  background: #fff;
  box-shadow: inset 0 5px 13px #0003;
  border-radius: 10px;
  z-index: 5;
}

.collection > div > div:first-of-type > div i {
font-size: 18px;
  font-style: normal;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 4;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.collection > div > div:first-of-type > div i span {
  color: var(--green);
    font-weight: 300;
}

.collection > div > div:first-of-type > div img {
	border-radius: 30px;
	box-shadow: 0px 5px 15px #0003;
}


.collection > div > div:nth-of-type(2) {
	flex: 0 0 35%;
	margin: 25px 0 0;
}




.collection > div > div:nth-of-type(2).prem h2 {
font-size: 42px;
}

.collection > div > div:nth-of-type(2).prem p {
font-size: 30px;
  line-height: 46px;
}



.collection > div > div h2 {
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: -.5px;
	font-size: 36px;
	margin: 0 0 10px;
	line-height: 42px;
}

.collection > div > div:nth-of-type(2) p {
	font-size: 26px;
	line-height: 40px;
}

.collection > div > div:nth-of-type(3) {
width: 180px;
display: flex;
  flex-direction: column;
  align-items: center;
}


.collection > div > div:nth-of-type(3) {
margin: 25px 0 0 0;
}

.collection > div > div:nth-of-type(3) img {
max-width: 181px;
  margin: 0px 0 16px;
}

.collection > div > div:nth-of-type(3) a{
width: 100%;
  background: #333;
  padding: 25px 10px;
  color: var(--green);
  font-weight: 200;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  pointer-events: none;
}

.collection > div > div:nth-of-type(3) a.newe {
background: #333;
  padding: 15px 22px;
  color: #fff;
  font-weight: 300;
  font-size: 19px;
  line-height: 27px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 192px;
  margin: 30px 0 0;
position: absolute;
  left: -130px;
  top: 137px;
    pointer-events: none;
}

.collection > div > div:nth-of-type(3) a.newe  b {
color: var(--green);
font-weight: 800;
font-size: 22px;
}

.collection > div > div:nth-of-type(3) a.newe:before {
content: '';
background: url(/files/chck.png) no-repeat center center / contain;
position: absolute;
  top: -23px;
  left: -8px;
  width: 67px;
  height: 59px;
}

.collection > div > div:nth-of-type(2) a strong {
color: var(--green);
font-size: 22px;
}


.collection > div > div:nth-of-type(3) > div span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 50px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	z-index: 3;
	text-align: center;

}

.collection > div:nth-of-type(2) img {
	flex: 0 0 100%;
	margin: -40px 0 30px 0;
}

.collection > div:nth-of-type(2)  span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  z-index: 3;
  text-align: center;
}


.collection > div:last-of-type p {
  padding: 10px 100px;
  font-size: 26px;
  line-height: 34px;
}

.collection > div:last-of-type p:last-of-type {
  font-size: 19px;
font-weight: 500;
  color:var(--green);
  line-height: 24px;
}

.collection > div:last-of-type div:last-of-type {
  display: flex;
  justify-content: center;
  gap: 50px;
padding: 50px 100px 80px;
}


.icon-zoom {
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 30px;
  color: #fff;
}
.icon-zoom::before {
  content: '\e805';
  font-size: 72px;
}
[class^="icon-"], [class*=" icon-"], [class^="icon-"]::before, [class*=" icon-"]::before {
  font-family: fntz;
  font-style: normal;
  font-weight: normal;
  text-decoration: none !important;
  display: inline-block;
  line-height: 55px;
  z-index: 3;
}


.map-container h2 {
	position: absolute;
	z-index: 3;
	left: 50px;
	right: 50px;
	text-align: center;
	top: 30px;
	color: var(--gray);
	font-size: 48px;
	line-height: 40px;
}

.map-container h2 span {
	color: var(--green)
}


#table {
	padding: 50px 100px;
	background: var(--gray);
	color: #fff;
	font-size: 22px;

}

#table strong {
	font-weight: 700;
}

#table h3 {
text-align: center;
  font-size: 42px;
  padding: 0 0 30px;
  font-weight: 300;
  color: var(--green)
}

#table table {
	width: 100%;
	border-collapse: separate;
  border-spacing: 0;
line-height: 26px;
    overflow-x: auto;


  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;

}

#table > div {
	overflow-x: auto;
}

#table table th,
#table table td {
padding: 20px;
	font-weight: 200;
}

#table table tr th:first-of-type,
#table table tr:nth-last-child(3) td:first-of-type,
#table table tr:nth-last-child(2) td:first-of-type {
	padding-left: 0;
	text-align: left;
	font-weight: 700;
}

#table table tr th:first-of-type {
	font-size: 28px;
}

#table table thead tr th {
border-bottom: 2px solid var(--green)
}

#table table tr:nth-of-type(1) td:first-of-type,
#table table tr:nth-of-type(2) td:first-of-type,
#table table tr:nth-of-type(3) td:first-of-type {
border-left: 3px solid var(--green);
text-align: left;
}

#table table tr:nth-of-type(1) td {
		border-bottom: 2px solid #fff
}


#table table tr:nth-of-type(2) td:nth-of-type(-n+2) {
border-bottom: 2px solid #fff
}


#table table tr:nth-of-type(3) td {
border-bottom: 2px solid var(--green)
}

#table table tr:nth-of-type(4) td, 
#table table tr:nth-of-type(5) td {
border-bottom: 2px solid var(--green)
}

#table table tr:nth-of-type(5) td:nth-last-child(2), 
#table table tr:nth-of-type(5) td:last-of-type {
border-bottom: 2px solid #fff !important
}

#table table tr:nth-of-type(5) td {
border-top: 2px solid var(--green)
}

#table table tr:last-of-type td {
border-top: 2px solid var(--green);
border-bottom: 2px solid var(--green)
}




#table table th:nth-child(2),
#table table th:nth-child(4),
#table table td:nth-child(2),
#table table td:nth-child(4) {
background: #4d4d4d;
text-align: center;
}

#table table th:nth-child(3),
#table table td:nth-child(3),
#table table td:nth-child(1) {
	text-align: center;
}

#table td p {
text-align: center !important;
  font-size: 14px;
  font-style: normal !important;
  margin: 0;
  padding: 0;
  line-height: 12px;
  padding: 7px 0 0;
}


#table p:last-child {
	text-align: right;
	font-style: italic;
	color: #fff;
}


.fo {
	display: flex;
}

.fo img {
width: 50%;
}

#info {
	padding: 70px 100px;
}

#info p:first-of-type {
	text-align: center;
	font-size: 46px;
	padding: 0 0 20px;
	font-weight: 400;
}

#info h3 {
	font-size: 54px;
}

#info h3 span {
	color: var(--green)
}

#info h2, #info h3 {
	text-align: center;
}

#info h2 {
	font-weight: 400;
	font-size: 42px;
	margin: 40px 0;
}

#info h2 br {
	display: none;
}

#info h2 i {
	font-style: normal;
	color: var(--green);
	font-weight: 400;
}

#info img {
	margin: 0 auto 60px;
	display: block;
	max-width: 430px;
	width: 100%;
}

#info table {
	width: 94%;
	margin: 50px auto 20px;
	font-size: 18px;
	padding: 0 0 0 50px;
}

#info td:nth-of-type(1) {
	text-transform: uppercase;
	font-weight: 700;
}

#info td:nth-of-type(1):before {
	content: '';
	background: url(img/pin.png) no-repeat center center / 100% auto;
	width: 35px;
	height: 50px;
	position: absolute;
	top: 4px;
	left: -60px;
	display: block;
}

#info td {
	padding: 0 10px 25px 0;
	vertical-align: top;
	vertical-align: middle;
}

#info td:last-of-type {
	padding: 0 0px 15px 0;
	font-weight: 600;
}

#info td:nth-of-type(1) br {
	display: none;
}



#map {
	width: 100%;
	height: 560px;
	background-color: #e0e0e0;
	flex-grow: 1;
}

.map-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}

.map-sidebar {
	width: 100%;
	padding: 20px;
	background-color: #f8f8f8;
	border-right: 1px solid #eee;
	overflow-y: auto;
	max-height: 400px;
}

.map-controls {
	margin-bottom: 20px;
}

.map-controls input[type="text"], .map-controls select {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
}

div.gmnoprint[title*="Cluster of"] label {
	color: white !important;
	font-size: 14px !important;
	font-weight: bold !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gm-bundled-control {
	bottom: 51px !important
}

.gm-control-active {
	transition: background  .2s ease;
	background: #2224 !important
}

.gm-control-active:hover {
	background: #2229 !important
}

.gm-control-active+div, .gm-bundled-control .gmnoprint>div {
	background: none !important;
	box-shadow: none !important;
}

.gm-control-active img {
	display: none !important;
}

.gm-control-active:after {
	font-family: fntz;
	font-weight: normal;
	line-height: 40px;
	font-size: 22px;
	color: #fff;
	transition: color .2s ease;
}

.gm-control-active:hover:after {
	color: var(--green)
}


.gm-control-active:first-of-type:after {
	content: '\e803';
}

.gm-control-active:last-of-type:after {
	content: '\e804';
}

.btn {
	display: flex;
	justify-content: center;
  	align-items: center;
  	line-height: 24px;
	padding: 22px;
	border-radius: 50px;
	box-shadow: inset 0 0 0 3px var(--gray);
	color: var(--gray);
	text-decoration: none;
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	max-width: 440px;
	width: 100%;
	transition: background .3s ease, transform .3s ease, color .3s ease, box-shadow .3s ease !important;
	
}

.btn.grn {
	box-shadow: none;
	color: #fff;
	background: var(--green);
	max-width: 410px;
margin: 20px auto 0;
}

.btn:hover {
	background: var(--gray);
	color: #fff;
	box-shadow: inset 0 0 0 3px var(--gray);
	transform: translateY(-3px);
}

.logo {
	max-width: 55%;
}

footer table {
	font-weight: 400;
	margin-top: 42px;
	line-height: 28px;
}

footer td {
	padding: 5px 13px;
	text-align: left;
	color: #fff;
}

footer td:nth-of-type(1) {
	color: var(--green);
	font-weight: 700;
}

footer table a {
	color: #fff;
	font-weight: 700;
}

hr {
	background-color: #ddd;
	border: 0;
	height: 1px;
	position: relative;
	top: 10px;
	margin: 10px 0 30px 0;
	clear: both;
	display: block;
}

footer p {
	padding: 10px 100px;
	font-size: 16px;
	line-height: 40px;
	text-align: justify;
}

footer {
	background: var(--gray);
	min-height: 350px;
	display: flex;
	flex-direction: column;
	padding: 25px 80px;
}

footer>div {
	display: flex;
	justify-content: space-between;
}

footer .logo {
	max-width: 60%;
	align-self: center;
}

#totop {
	background: #fff url(img/totop.png) no-repeat center center / cover;
	position: fixed;
	bottom: 21px;
	right: calc(50% - 720px);
	height: 82px;
	width: 60px;
	opacity: 0;
	visibility: hidden;
	z-index: 123;
	transition: opacity .2s ease;
}

#totop:after {
	content: '';
	background: url(img/totop_h.png) no-repeat center center / cover;
	position: absolute;
	height: 82px;
	width: 60px;
	opacity: 0;
	z-index: 123;
	transition: opacity .2s ease, transform .2s ease;
}

#totop:hover:after {
	opacity: 1;
}

#totop.show {
	visibility: visible;
	opacity: 1;
}

.social {
	margin-top: 50px;
	left: 0;
	width: 150px;
}

.privacy {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 52px;
}

.privacy+p {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	padding: 0;
	line-height: 50px;
	white-space: nowrap;
}

.privacy+p a {
	color: #fff;
}

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

[class^="icon-"], [class*=" icon-"], [class^="icon-"]:before, [class*=" icon-"]:before {
	font-family: fntz;
	font-style: normal;
	font-weight: normal;
	text-decoration: none !important;
	display: inline-block;
	line-height: 55px;
	z-index: 3;
}

.icon-fb:before {
	content: '\e802';
	margin: 0 20px 0 0;
	color: #fff;
	font-size: 62px;
}

.icon-in:before {
	content: '\e801';
	color: #fff;
	font-size: 62px;
}

@media (max-width: 1400px) {
	#totop {
		top: initial;
		bottom: 21px !important;
		right: 0;
		position: fixed !important;
	}
}

@media (max-width: 1200px) {

	.btns {
  		margin: 20px 0 0;
	}
	footer {
		padding: 25px 40px;
	}

.slidlogo {
  left: 75px;
 
 
}

}

@media (max-width: 1100px) {
	#info h2 {
		font-size: 38px;
	}
	.decors {
   max-width: 80%;
}
}

@media (max-width: 1024px) {
	#totop {
		display: none;
	}
	#head h2 {
		height: initial;
		line-height: 50px;
		padding: 20px 0;
	}
	#head {
		height: calc(45vw + 100px);
	}
	#head .logo {
		max-width: calc(100% - 40px);
		top: -11px;
	}
	#slida {
		height: 45vw;
	}
	#map {
		height: 400px;
	}
	#info {
		padding: 40px 20px;
	}
	#info h3 {
		font-size: 48px;
	}
	#info table {
		width: 100%;
		margin: 10px auto 20px;
		font-size: 17px;
		text-align: center;
		padding: 0
	}
	#info td {
		padding: 0 0px 8px 0;
		display: block;
	}
	#info td:first-of-type {
		margin: 20px 0 0 0;
	}
	#info td:last-of-type {
		line-height: 31px;
		border-bottom: 2px solid #ddd;
	}
	#info h2 {
		font-size: 32px;
	}
	.btns {
  		gap: 20px;
	}
	p {
		line-height: 36px;
		font-size: 17px;
	}
	footer {
		padding: 30px 20px;
	}
	footer p {
		padding: 10px 15px;
		font-size: 16px;
		line-height: 36px;
		max-width: calc(100% - 50px);
		margin: 0 auto;
		text-align: left;
	}
	footer>div {
		flex-direction: column-reverse;
		display: flex;
		padding: 0;
		text-align: center;
	}
	footer .logo {
		max-width: 90%;
	}
	footer table {
		left: initial;
		width: 100%;
		order: 1;
		font-size: 17px;
		margin-top: 15px;
	}
	footer tbody {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	footer tr {
		max-width: 33%;
		width: 100%;
		display: block;
	}
	footer td {
		padding: 1px 13px;
		display: block;
		text-align: center;
	}
	.social {
		position: static;
		width: 100%;
		text-align: center;
		order: 2;
		margin: 50px 0 0 0;
	}
	.privacy {
		top: initial;
		left: initial;
		bottom: initial;
		order: 3;
		margin: 20px auto;
		position: static;
		font-size: 16px;
		max-width: initial;
	}
	footer td:first-of-type {
		margin: 30px 0 0 0;
	}
	.privacy+p {
		order: 4;
		position: static;
		font-size: 16px;
		max-width: initial;
		text-align: center;
	}
	.icon-zoom {
		position: absolute;
		top: 35px;
		left: 17px;
	}
	.icon-zoom::before {
		font-size: 54px;
	}
	#info td:nth-of-type(1) br {
		display: block
	}
	#info td:nth-of-type(1)::before {
		display: inline-block;
		position: static;
	}
}

@media (max-width: 960px) {

	#hello {
  
  gap: 0 70px;
  padding: 0px 0 30px;
  flex-direction: column-reverse;
}
  .cards > div {
    height: 360px;
    width: 500px;
    top: 0px;
    margin: 0 auto;
    transform: scale(0.7);
  }


.slidlogo {
  left: 30px;
 max-width: 160px;
 bottom: 60px
}


}

	




@media (max-width: 768px) {
	.btn, .btn.grn {
		font-size: 19px;
		max-width: 350px;
		padding: 18px 30px;
	}
	.btns {
		flex-direction: column;
	}

.cards > div {
    width: 100vw;
    left: calc(50% - 89px);
    transform: scale(.6) translateX(-50%);
    height: 320px;
  }

  .cards > div.start {
	left: calc(50% - 105px);
  }


#hello p {
    line-height: 48px;
    font-size: 22px;
	padding: 0 30px;
	text-align: left;
  }

  #hello p br {
display: none;
  }

  #hello .cards p br {
	display: inline-block
  }

#hello > div {
  flex: 0 0 100%
}

#hello a {
	    transform: scale(0.7);
}




.collection > div:first-of-type {

  gap: 0 70px;
  padding: 40px 30px 0;
}



.collection > div {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 70px;
}

.collection > div > div:nth-of-type(2) {
  padding: 30px 0;
  flex: 1 1 100%;
}

.collection > div:nth-of-type(2) img {
  margin: 20px 0 30px 0;
}

.collection > div > div:nth-of-type(2).prem {
  flex: 0 0 100%;
}

.collection > div > div:nth-of-type(3) {
  margin: 15px 0 30px;
}

.collection > div:last-of-type p {
  padding: 10px 30px;
  font-size: 22px;
  line-height: 32px;
}

p {
	text-align: left;
}

.collection > div:last-of-type div:last-of-type {
 
  gap: 30px;
  padding: 30px 30px 50px;
  flex-direction: column;
}

.collection > div:nth-of-type(2) span { 
font-size: 14px;
}

#table {
  padding: 50px 30px;
   font-size: 18px;
}
#table table {
margin: 0 0 10px;
}

#table h3 {
font-size: 30px;
    line-height: 33px;
}

	#info h2 br {
		display: block;
	}
	#info h2 i:nth-of-type(3) {
		display: none;
	}
	#info h3 {
		font-size: 34px;
		line-height: 40px;
	}
	#info h3 span {
		display: block;
	}

#hello .cards p  {
	top: 60px;
    left: calc(50% + 5px);
  	font-size: 20px;
  	line-height: 31px;
}


	.collection > div > div:nth-of-type(3) a.newe {
top: unset;
left: unset;
position: relative;
	}

#info p:first-of-type {
 
  font-size: 30px;
}

	footer tbody {
		display: flex;
		flex-wrap: wrap;
	}
	footer tr {
		max-width: 100%;
		display: block;
		width: 100%;
	}

#info img {
	margin: 0 auto 40px;
	max-width: 250px;
	
}


}

@media (max-width: 560px) {

	#info h2 {
		font-size: 26px;
	}

.fo {
	flex-direction: column;
}

.fo img {
width: 100%;
}

.zoom.deco {
	pointer-events: initial;
}



}

#results-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#results-list li {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#results-list li:hover {
	background-color: #f0f0f0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#results-list li h4 {
	margin-top: 0;
	margin-bottom: 5px;
	color: #333;
	font-size: 1.1em;
}

#results-list li p {
	margin-bottom: 5px;
	color: #666;
	font-size: 0.9em;
}

#results-list li a {
	color: #007bff;
	text-decoration: none;
	font-weight: bold;
}

#results-list li a:hover {
	text-decoration: underline;
}

.info-window-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

.info-window-content h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
	font-size: 1.2em;
}

.info-window-content p {
	margin-bottom: 5px;
}

.info-window-content a {
	color: #007bff;
	text-decoration: none;
}

.info-window-content a:hover {
	text-decoration: underline;
}

.info-window-content .directions-link {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 12px;
	background-color: #007bff;
	color: #fff;
	border-radius: 4px;
	font-size: 0.9em;
}

.info-window-content .directions-link:hover {
	background-color: #0056b3;
	text-decoration: none;
}

.custom-info-modal {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 20px;
}

.custom-info-modal.active {
	display: block;
}

.custom-info-modal .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	position: relative;
	max-height: 90%;
	overflow-y: auto;
}

.custom-info-modal .close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 15px;
}

.custom-info-modal .close-button:hover, .custom-info-modal .close-button:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.custom-info-modal .modal-body {
	padding-top: 10px;
}

.custom-info-modal .modal-body h3 {
	margin-top: 0;
	font-size: 1.2em;
}

.custom-info-modal .modal-body p {
	margin-bottom: 5px;
	font-size: 0.9em;
}

.custom-info-modal .modal-body a {
	color: #0073aa;
	text-decoration: none;
}

.custom-info-modal .modal-body a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	.custom-info-modal .modal-content {
		width: 95%;
	}
}