/* GENERAL */
html,
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	scroll-behavior: smooth;
}
.spacing {
  margin-top: 50px;
}

/* GENERAL END */


/* NAVBAR */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	width: 100%;
	background-color: transparent;
	color: white;
	transition: background-color 0.5s;
	z-index: 99999;
}

.logo {
	margin-left: 20px;
	display: flex;
	align-items: center;
	height: 100px;
}

.logo img {
	height: 100%;
	width: auto;
}

.nav-link {
	transition: color 0.3s;
}

.scrolled:hover {
	color: #00a69d;
}

.nav-links {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	display: inline-block;
	font-size: large;
}

.contact-us-button {
	background-color: #00a69d;
	padding: 10px;
	transition: background-color 0.2s;
	color: white !important;
	border-radius: 5px;
}

.contact-us-button:hover {
	background-color: #076762;
	color: white !important;
}

.nav-links a:hover {
	color: #00a69d;
}

.hamburger {
	display: none;
	font-size: 30px;
	cursor: pointer;
	color: #00a69d;
	transition: transform 0.2s;
}

.hamburger:hover {
	transform: scale(1.1);
}

#languageSelect {
	padding: 11.5px;
	background-color: #00a69d;
	border-radius: 5px;
	color: white;
	border: 1px solid #00a69d;
	font-family: 'Arial', sans-serif;
}


@media (max-width: 1200px) {
	.nav-links {
		overflow: hidden;
		transition: max-height 0.5s ease-out;
		max-height: 0;
		/* Initially hide menu */
		position: absolute;
		background-color: white;
		width: 100%;
		text-align: center;
		left: 0;
		top: 100px;
		padding: 0;
		flex-direction: column;
	}

	#languageSelect {
		padding: 20px;
		margin-bottom: 10px;
	}

	.nav-links a {
		display: block;
		margin: 10px 0;
		padding: 6px 0;
		border-bottom: none;
		background-color: white;
		transition: background-color 0.3s;
		color: black !important;
	}

	.hamburger {
		display: block;
		margin-right: 20px;
	}

	.contact-us-button {
		background-color: white !important;
	}

	.contact-us-button:hover {
		color: black !important;
	}
}


/* NAVBAR END */


/* BANNER with image and text overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.banner {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.banner img {
	width: 100%;
	object-fit: cover;
	height: auto;
}

/* Gradient overlay */
.banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.7) 30%,
			/* Darker shade at the top */
			rgba(0, 0, 0, 0.5) 70%
			/* Slightly lighter shade towards the bottom */
		);
	z-index: 5;
}

.banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	/* Above the gradient overlay */
	color: white;
	margin-left: 50px;
	width: 100%;
}

.banner-text h1 {
	display: inline-block;
	margin: 0;
	padding: 10px 20px;
	font-size: 2rem;
	animation: fadeIn 2s forwards;
}

.banner-button {
	animation: fadeIn 2s forwards;
	background-color: #003f71;
	color: white;
	text-decoration: none;
	padding: 1em 2em;
	margin-left: 25px;
	border-radius: 22px;
	margin-top: 1em;
	font-size: 1.25rem;
	/* Button text size */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* Center text when the icon is not visible */
	transition: background-color 0.3s, padding-right 0.3s;
	position: relative;
	/* For positioning the icon */
	overflow: hidden;
	/* Hide the icon when it's positioned off-screen */
}

.banner-button .fa {
	position: absolute;
	right: -30px;
	/* Start off-screen */
	transition: right 0.3s, opacity 0.3s;
	opacity: 0;
	/* Start transparent */
}

.banner-button:hover {
	padding-right: 3em;
	/* Make space for the icon */
}

.banner-button:hover .fa {
	right: 1em;
	/* Bring the icon on-screen */
	opacity: 1;
	/* Make the icon visible */
}
@media (max-width: 1300px) {
	.banner-text h1 {
		padding: 0px 20px;
	}
	.banner-button {
		margin-top:0.5em;
	}
}


@media (max-width: 800px) {
	.banner-text h1 {
		font-size: 1.5rem;
	}

	.banner {
		height: 300px;
		/* Adjust the height of the banner on mobile devices */
	}

	.banner-text {
		top: calc(50% + 50px);
		/* Adjust top value to push down the text */
		margin-left: 0px;
		text-align: center;
	}

	.banner-text h1 {
		font-size: 1.5rem !important;
	}

	.banner-button {
		font-size: 1rem;
		/* Smaller button text on mobile */
		padding: 0.75em 1.5em;
		/* Smaller button padding on mobile */
		margin-left: 0px;
		margin-bottom: 25px;
	}

	.banner-button:hover .fa {
		right: 10px;
		/* Adjust position for smaller screens */
	}
}

@media (max-width: 1024px) {
	.banner-text {
		top: calc(50% + 50px);
		/* Adjust top value to push down the text */
	}

	.banner-text h1 {
		font-size: 1.5rem;
		/* Smaller font size for medium screens */
	}

	.banner-button {
		font-size: 1rem;
		padding: 0.75em 1.5em;
	}

	.banner-button:hover .fa {
		right: 15px;
		/* Adjust position for medium screens */
	}
}


/* BANNER END */


/* SERVICES OVERVIEW */
.full-width {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-container {
	display: flex;
	width: 80%;
	align-items: center;
	justify-content: center;
}

.services {
	width: 100%;
}

.service {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.services h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	position: relative;
	color: #003f71;
}

.row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.row a {
	text-decoration: none;
}

.row .service {
	padding: 25px 15px;
	background: transparent;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	transition: 0.5s;
	text-decoration: none;
}

.row .service:hover {
	transform: scale(1.05);
}

.row .service i {
	color: #00b2a9;
	margin-bottom: 20px;
	font-size: 40px;
	transition: 0.5s;
}

.row .service h3 {
	color: #003f71;
}

.row .service h2 {
	font-weight: 600;
	margin-bottom: 20px;
}

.row .service p {
	color: black;
}


@media (max-width: 600px) {
	.services-container {
		width: 100%;
	}
}

/* SERVICES OVERVIEW END */


/* FOOTER */

/* General Footer Styling */
footer {
	background-color: black;
	color: #fff;
	line-height: 1.6;
}

/* Grid Layout for Footer */
.footer-container {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-template-areas:
		"logo sections"
		"copyright copyright";
	align-items: center;
	gap: 20px;
	padding: 20px;
	max-width: 1200px;
	margin: auto;
}

footer h2 {
	color: #00a69d;
}

/* Logo Styling */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* 4-column layout */
	background-color: black;
	/* Overall background color */
	padding: 20px;
	background-image: url(img/spray.png);
	background-repeat: no-repeat;
	background-position: left;
}

.footer-section {
	background-color: transparent;
	/* Section background color */
	color: #fff;
	/* Text color for visibility */
	text-align: center;
	border-right: 2px solid #00a69d;
	/* Add right border to each section */
}

/* Remove the right border for the last section in a row */
.footer-grid>.footer-section:nth-child(4n) {
	border-right: none;
}

.footer-grid>div:last-child {
	grid-column: 1 / -1;
	/* Span across all columns */
	text-align: center;
	font-size: 0.8em;
	color: #fff;
	/* Ensure visibility against the background */
}

/* Adjustments for medium screens (2x2 grid) */
@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		background-position: bottom;
	}

	/* Adjusting right borders for a 2-column layout */
	.footer-section {
		border-right: 2px solid #00a69d;
		border-bottom: 2px solid #00a69d;
		/* Adding a bottom border for separation */
	}

	/* Remove the right border for the last section of each row */
	.footer-grid>.footer-section:nth-child(2n) {
		border-right: none;
	}

	/* Remove the bottom border for the last row */
	.footer-grid>.footer-section:nth-last-child(-n+2) {}
}

/* Adjustments for small screens (stacked layout) */
@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-section {
		border-right: none;
		/* No right border needed */
		border-bottom: 2px solid #00a69d;
		/* Separate sections with a bottom border */
	}

	/* Remove the bottom border for the last section */
	.footer-section:last-child {
		border-bottom: none;
	}
}

.footer-logo {
	max-width: 250px;
	/* Maximum height of 200px */
	height: auto;
	/* Maintain aspect ratio */
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-links a {
	text-decoration: none;
	color: white;
}

.footer-links a:hover {
	color: #00a69d;
}

footer img {
	transition: transform 0.3s;
}

footer img:hover {
	transform: scale(1.05);
}

.footer-logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

footer i {
	color: #00a69d;
	margin-right: 5px;
}


/* FOOTER END */


/* CARDS */
/* card - image on the left, text on the right */
/* card2 - image on the right, text on the left */
.cards-container {
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.card {
	display: flex;
	flex-direction: row;
	/* Default is row for larger screens */
	max-width: 80vw;
	max-height: 60vh;
	/* Maximum card height is 60% of the viewport height */
	width: 100%;
	background-color: #fdfdfd;
	border-radius: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: transform 0.3s;
}

.card:hover {
	transform: scale(1.01);
}

.card-image {
	flex: 0.8;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.card-image img {
	flex-shrink: 0;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.card-content {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card-content h1,
.card-content p,
.card-content ul,
.card-content button {
	margin-bottom: 0px;
}

.card-content h1 {
	color: #00a69d;
	font-size: 24px;
}

.card-content p {
	font-size: 16px;
}

.card-content ul {
	list-style-type: none;
}

.card-content2 ul {
	list-style-type: none;
	margin-bottom: 0px;
}

.card-content ul li::before {
	content: '•';
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.card-content2 ul li::before {
	content: '•';
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.card-content ul li {
	font-size: 16px;
}

.card-content a {
	background: #003f71;
	color: white;
	border: none;
	padding: 10px 20px;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 16px;
	align-self: start;
	transition: background-color 0.3s;
	text-decoration: none;
}

.card-content a:hover {
	background: rgb(18, 89, 171);
}

/* Adjustments for mid-sized screens */
@media (max-width: 1300px) {
	.card-content {
		padding: 10px;
	}
	.card-content h1 {
		font-size: 20px;
	}
	.card-content p, 
	.card-content ul li {
		font-size: 14px;
	}
	.card-content a {
		font-size: 14px;
		padding: 8px 16px;
	}
}

@media (max-width: 1000px) {
	.card {
		flex-direction: column;
		/* Stack vertically on smaller screens */
		max-height: none;
	}

	.card-image img {
		max-height: 200px;
		/* Limit image height on smaller screens */
		width: auto;
		/* Adjust width automatically */
		margin: 0 auto;
		/* Center image */
	}

	.card-content button {
		align-self: center;
		/* Center button on smaller screens */
	}
}

@media (max-width: 600px) {
	.card-content h1 {
		font-size: 18px;
	}
	.card-content p, 
	.card-content ul li {
		font-size: 12px;
	}
	.card-content a {
		font-size: 12px;
		padding: 6px 12px;
	}
}


/* Start of the second card (image on the right) */
.card2 {
	display: flex;
	flex-direction: row;
	max-width: 80vw;
	max-height: 60vh;
	width: 100%;
	background-color: #fdfdfd;
	border-radius: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transition: transform 0.3s;
}

.card2:hover {
	transform: scale(1.01);
}

.card-image2 {
	flex: 0.8;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	order: 2;
	/* Different order to put the image second */
}

.card-image2 img {
	flex-shrink: 0;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.card-content2 {
	flex: 1;
	order: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.card-content2 h1,
.card-content2 p,
.card-content2 ul,
.card-content2 button {
	margin-bottom: 0px;
}

.card-content2 h1 {
	color: #00a69d;
	font-size: 24px;
}

.card-content2 p {
	font-size: 16px;
}

.card-content2 ul {
	list-style-type: none;
}

.card-content2 ul li {
	color: #333;
	font-size: 16px;
}

.card-content2 a {
	background: #003f71;
	color: white;
	border: none;
	padding: 10px 20px;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 16px;
	align-self: start;
	transition: background-color 0.3s;
	text-decoration: none;
}

.card-content2 a:hover {
	background: rgb(18, 89, 171);
}

/* Adjustments for mid-sized screens */
@media (max-width: 1300px) {
	.card-content2 {
		padding: 10px;
	}
	.card-content2 h1 {
		font-size: 20px;
	}
	.card-content2 p, 
	.card-content2 ul li {
		font-size: 14px;
	}
	.card-content2 a {
		font-size: 14px;
		padding: 8px 16px;
	}
}

@media (max-width: 1000px) {
	.card2 {
		flex-direction: column;
		max-height: none;
	}

	.card-image2 img {
		max-height: 200px;
		width: auto;
		margin: 0 auto;
	}

	.card-content2 button {
		align-self: center;
	}
}

@media (max-width: 600px) {
	.card-content2 h1 {
		font-size: 18px;
	}
	.card-content2 p, 
	.card-content2 ul li {
		font-size: 12px;
	}
	.card-content2 a {
		font-size: 12px;
		padding: 6px 12px;
	}
}


/* CARDS END */


/* CONTACT FORM */
.contact-container {
	width: 80%;
	margin: auto;
	background-color: #003f71;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.contact-container h1,
.contact-desc,
.contact-form {
}

.input-group {
	width: 100%;
	margin-bottom: 15px;
}

.input-group input,
.input-group select,
.input-group textarea,
.input-group button {
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
	width: 100%;
	box-sizing: border-box;
	font-size: 16px;
}

.input-group select,
.input-group textarea {
	background-color: #fff;
	color: #333;
}

.input-group textarea {
	resize: vertical;
}

.input-group button {
	background-color: #00a69d;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.input-group button:hover {
	background-color: #076762;
}

.first-three-inputs {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.data-processing-info {
	color: #fff;
	font-size: 14px;
	text-align: center;
	margin: 20px 0;
	line-height: 1.5;
}

.icon-input {
	position: relative;
}

.icon-input i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #003f71;
}

.input-group input {
	padding-left: 40px;
	color: #aaa;
}

.input-group textarea {
	color: #aaa;
}

@media (max-width: 768px) {
	.first-three-inputs {
		flex-direction: column;
	}

	.contact-container {
		width: 95%;
	}
}


/* CONTACT FORM END */


/* INTRODUCTION TEXT */
.title-container {
	margin-top: 50px;
	width: 80%;
}

.title-container span {
	color: #00a69d
}

.large-title {
	font-size: 35px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}


/* INTRODUCTION TEXT END */


/* SCROLLING ANIMATION */
section {
	transition: opacity 1.5s ease-out;
}

.hidden {
	opacity: 0;
}

.show {
	opacity: 1;
}

/* SCROLLING ANIMATION END */


/* PODPORA */
.podpora-container {
	max-width: 85%;
	margin: 20px auto;
	padding: 20px;
}

.podpora-h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	position: relative;
	color: #003f71;
}


.podpora-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.podpora-card,
.podpora-contact {
	background: white;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.podpora-card {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: transform 0.3s;
	background-color: #fdfdfd;
}

.podpora-card:hover {
	transform: scale(1.05);
}

.podpora-card:hover i {
	transform: scale(1.2);
}

.podpora-card a {
	color: #003f71;
	text-decoration: none;
	font-size: x-large;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.podpora-contact {
	background-color: #fdfdfd;
	color: #003f71;
}

.podpora-contact i {
	margin-bottom: 10px;
	font-size: 24px;
	transition: transform 0.3s;
}

.podpora-card i {
	margin-bottom: 10px;
	font-size: 32px;
	transition: transform 0.3s;
}

.podpora-contact .contact-item {
	display: flex;
	align-items: center;
	/* Aligns items vertically in the center */
	margin-bottom: 10px;
}

.podpora-contact h2 {
	color: #003f71;
}

.podpora-contact i {
	color: #00a69d;
	min-width: 30px;
	margin-right: 10px;
	margin-top: 10px;
}

.podpora-contact .contact-item span {
	display: block;
}

@media (max-width: 768px) {
	.podpora-content {
		grid-template-columns: 1fr;
	}
}

/* PODPORA END */


/* DOWNLOADS */
.page-container {
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.downloads-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.download-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 5px;
	background: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 400px;
	box-sizing: border-box;
	text-decoration: none;
	color: #333;
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.download-item-icon {
	display: flex;
	justify-content: center;
	width: 30px;
}

.download-item-text {
	flex-grow: 1;
}

.download-item:hover,
.download-item:focus {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	text-decoration: none;
	color: #00a69d;
}

.download-item i {
	font-size: 24px;
	color: #003f71;
}

@media (max-width: 768px) {
	.downloads-container {
		flex-direction: column;
		align-items: center;
	}

	.download-item {
		justify-content: center;
		width: 90%;
		margin-bottom: 20px;
	}
}

/* DOWNLOADS END */

/* CAREER */
.no-positions {
	background-color: white;
	padding: 20px;
	margin-top: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	width: 80%;
}

/* CAREER END */