
article, aside, details, dialog, figcaption, figure, footer, header, main, nav, section {
	display: flex;
}

[hidden] {
	display: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



body {
	color: #333;
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	background: #f8fafc;
    width: 100%;
}


h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	font-family: 'Segoe UI', 'Source Sans Pro', sans-serif;
	color: #2c5282;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.5rem;
}


.layer {
	width: 100%;
}

.center {
	max-width: 1200px;
	width: 100%;
	margin: auto;
	padding: 0 20px;
}


.bg1 {
	background-color: #f1f4f6;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.baner {
	display: flex;
	align-items: center;
    margin: auto;
	width: 100%;
}

.head h1 {
	color: white;
	font-size: 1.8rem;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}


.menu-container {
    position: relative;
    z-index: 1000;
}


.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 15px;
    position: fixed;
    top: 10px;
    right: 15px;
    background: white;
    border-radius: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #2563eb;
    margin: 5px 0;
    transition: all 0.3s ease;
}


.menu {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 15px 0;
    margin: 0;
    transition: all 0.4s ease;
}

.menu li {
	flex: 1;
	min-width: 120px;
}

.menu li a {
	display: block;
	padding: 15px 10px;
	color: #2c5282;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	background: white;
	text-align: center;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.menu li a:hover, .hover {
	background: #2b6cb0 !important;
	color: white !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.wrapper {
	width: 100%;
	background: white;
	padding: 30px;
    margin-top: 10px;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content {
	flex-wrap: wrap;
	gap: 30px;
}

.left {
	flex: 1;
	min-width: 300px;
}

.right {
	flex: 0 0 300px;
}


.offer {
	margin: 20px 0;
}

ul.offer {
	list-style: none;
}

ul.offer li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	width: 100%;
}

ul.offer li:before {
	content: "→";
	color: #2b6cb0;
	position: absolute;
	left: 0;
}

.contact .c-form {
	float: left;
	width: 48%;
	margin-right:2%;
}
  
.contact .input-group {
	float: left;
	margin-right: 5%;
	width: 100%;
}
  
.contact .input-group input {
	border: 1px solid #e7e7e7;
	float: left;
	height: 25px;
	margin-bottom: 5px;
	border-radius: 4px;
	padding: 0 0 0 2%;
	width: 98%;
}
  
.contact .textarea-group {
	float: left;
	width: 100%;
}
  
.contact .textarea-group textarea {
	border: 1px solid #e7e7e7;
	float: left;
	width: 98%;
	min-height: 150px;
	border-radius: 4px;
	resize: vertical;
}
  
  .btn-send {
	background: none repeat scroll 0 0 #1e70d3;
	border: medium none;
	color: #fff;
	float: right;
	border-radius: 4px;
	margin: 10px 12px 0 0;
	padding: 5px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
}
  
  .btn-send:hover {
	background: none repeat scroll 0 0 #0009b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#enigma_logo {
	width: 30%;
	float: right;
	right: 10%;
	margin-bottom: 10px;
}

.mapa {
	width: 100%;
	height: 650px;
	margin-bottom: 50px;
}

.przycisk {
	position: relative;
	margin-top: 50px;
	
}

#wlacz_rodo {
	position: relative;
	color: #2c5282;
	text-decoration: none;
	font-weight: 600;
	background: white;
	margin: auto;
	margin-top: 70px;
	border-radius: 4px;
	height: 50px;
	width: 200px;
	border: 2px solid #e2e8f0;
	align-items: center;
}

#kl_rodo {
	display: none;
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.gallery-item {
	width: 300px;
	height: 400px;
	margin: 10px;
	overflow: hidden;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: transform 0.3s;
}

.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.lightbox img {
	max-width: 80%;
	max-height: 80%;
}

.close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 30px;
	cursor: pointer;
}


.footer {
	width: 100%;
	border-top: 1px solid #e2e8f0;
	padding: 30px 0;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
}

.footer ul li a {
	color: #4a5568;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer ul li a:hover {
	color: #2b6cb0;
	text-decoration: underline;
}

.footer p {
	color: #718096;
	margin: 0;
}

@media (max-width: 768px) {
	
	.contact .c-form {
		float: left;
		width: 100%;
	}
	
	img.certificats {
		width: 100%;
		margin: auto;
		display: block;
	}

    .mapa {
		width: 100%;
		height: 650px;
		max-width: fit-content;
	}
	.baner {
		width: 100%;
	}
	img {
		max-width: 100%;
		margin: 50px;
	}
    .menu-toggle {
        display: block;
		border: none;
    }
    
    .menu {
        position: fixed;
		z-index: 21474836487899;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 60px 20px 20px;
    }
    
    .menu.active {
        left: 0;

    }
    
    .menu li {
        width: 100%;
        margin: 5px 0;
        flex: none;
    }
    
    .menu li a {
        display: block;
        width: 100%;
        padding: 12px 15px;
        background: #f5f7fa;
    }
    
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}