footer {
	width: 100%;
	margin: 100px 0px 25px 0px;
	padding-top: 25px;
	border-top: 1px solid #004996;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	/* padding: 0px 20px; */
	width: 100%;
}

.footer-content p {
	text-align: left;
}

.contact {
	display: flex;
	flex-direction: column;
	gap: 52px;
	min-width: fit-content;
}

.footer-nav {
	list-style: none;
}

.footer-nav.columns-1 {
	column-count: 1;
	width: fit-content;
}

.footer-nav.columns-2 {
	column-count: 2;
	width: fit-content;
}

.footer-nav.columns-3 {
	column-count: 3;
	width: fit-content;
}

.footer-nav li {
	margin: 0px 0px 18px 50px;
	width: 200px;
	display: flex;
}

.footer-nav.columns-3 li {
	width: 150px;
}

.footer-nav li a {
	position: relative;
	font-size: 18px;
	color: #004996;
	text-decoration: none;
	width: fit-content;
	display: inline-block;
}

.footer-nav li a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	width: 100%;
	height: 2px;
	background-color: #004996;
	transition: transform 0.3s ease;
}

.footer-nav li a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.footer-links {
	width: 100%;
}

.footer-links ul {
	margin: 0 auto;
}

.footer-nav a {
	color: #003e79;
	text-decoration: none;
	display: block;
}

input[type="submit"] {
	background-color: #004996;
	border-radius: 20px;
	padding: 5px 35px;
	color: white;
	font-size: 18px;
	border: none;
	margin: 15px;
	cursor: pointer;
}

input[type="email"] {
	border: 1px solid #004996;
	border-radius: 20px;
	padding: 5px 35px;
	color: white;
	font-size: 18px;
	color: #9b9b9b;
	width: 100%;
}

input[type="checkbox"] {
	width: 19px;
	height: 19px;
	margin: 5px;
	accent-color: #004996;
}

label,
label a {
	font-size: 18px;
	color: #004996;
}

.form-row {
	display: flex;
  	align-items: center;
	justify-content: space-between;
}

footer h4 {
	font-size: 20px;
	color: #004996;
	margin-bottom: 15px;
}

.footer-right {
	margin-left: auto;
	flex-shrink: 0;
	min-width: 0px !important;
	max-width: 460px;
	width: 100%;
}

.footer-social-links {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.footer-social-link {
	background-color: #004996;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s all;
}

.footer-social-link:hover {
	background-color: #003e79;
}

.footer-social-link a img {
	transition: 0.3s all;
}

.footer-social-link:hover img {
	transform: scale(1.15);
}

.footer-social-link a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
}

.phone a {
	color: #004996;
	font-size: 18px;
	font-weight: bold;
	width: fit-content;
}

#copyright {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
}

#copyright .center-text {
	margin: 0 auto;
}

#copyright .right-img {
	display: block;
	position: absolute;
	right: 20px;
}

@media (max-width: 600px) {
	#copyright {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	#copyright .right-img {
		position: static;
	}
}

@media (max-width: 1350px) {
	.footer-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.contact {
		flex-direction: row;
		gap: 0;
		width: 100%;
	}

	.address {
		width: 100%;
	}

	.footer-nav li {
		margin: 0 0 15px 0;
	}

	.footer-nav.columns-2,
	.footer-nav.columns-3 {
		width: 100%;
		column-count: 2;
	}

	.footer-nav.columns-3 li {
		width: 100%;
	}

	.footer-right {
		margin-left: 0;
		display: flex;
		max-width: 100%;
	}

	.footer-social,
	.footer-news {
		width: calc(50vw - 25px);
	}
}

@media (max-width: 900px) {
	.footer-right {
		display: block;
	}

	.footer-right,
	.footer-social,
	.address,
	.footer-news {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.contact {
		flex-direction: column;
		gap: 20px;
	}

	.footer-nav.columns-2,
	.footer-nav.columns-3 {
		column-count: 1;
	}

	.footer-links {
		text-align: center;
	}

	.footer-social-links {
		gap: 10px;
	}

	.footer-social-link {
		width: 40px;
		height: 40px;
	}

	.footer-nav li {
		width: 100%;
		margin: 0 0 12px 0;
		justify-content: center;
	}

	.contact {
		min-width: auto;
		gap: 30px;
		width: 100%;
	}

	input[type="email"],
	input[type="submit"] {
		padding: 10px 20px;
		font-size: 16px;
	}

	input[type="submit"] {
		margin: 10px;
	}

	.form-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	footer img {
		display: block;
		margin: 0 auto;
	}

	.footer-content {
		align-items: center;
	}

	.footer-content p {
		text-align: center;
	}

	footer h4 {
		text-align: center;
	}

	.phone {
		align-items: center;
	}

	.footer-social-links {
		justify-content: center;
	}
}

.otgs-development-site-front-end {
	display: none;
}

/*KONTAKTNÍ FORM*/
#contact-form-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.contact-form-popup-content {
	background-color: white;
	max-width: 1000px;
	width: 90%;
	max-height: 90vh;
	height: 90vh;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

.inner-content {
	overflow: auto;
	flex: 1 1 auto;
	padding: 20px;
}

.wpforms-field-label {
	color: #004996 !important;
}

.contact-form-popup-content input,
.contact-form-popup-content textarea {
	color: #003e79 !important;
}

#close-contact-form {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

#wpforms-1129-field_3 {
	border-radius: 15px !important;
}

.wpforms-uploader {
	border-radius: 15px !important;
}

.wpforms-submit {
	color: white !important;
	background-color: #004996 !important;
	border-radius: 15px !important;
	width: 100% !important;
	transition: 0.3s all;
}

.wpforms-field-container input {
	border-radius: 15px !important;
}

.wpforms-required-label {
	color: #004996 !important;
}

.wpforms-field.wpforms-field-email {
	padding: 0px !important;
}

/*NEWSLETTER FORM*/
:root {
	--wpforms-button-background-color: #004996 !important;
}

div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li label,
div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li label a {
	color: #004996 !important;
}

#wpforms-submit-1134 {
	border-radius: 20px !important;
	position: relative !important;
	margin-left: 10px !important;
	min-width: 160px !important;
}

#wpforms-1134 {
	margin: 0 auto;
}

#wpforms-1134-field_1 {
	border-radius: 100px !important;
	border-color: #004996 !important;
	color: #004996 !important;
	font-size: 18px !important;
}

#wpforms-1134-field_2-container {
	padding-bottom: 0px !important;
}

.wpforms-submit-container {
	display: flex !important;
	flex: 0 0 30% !important;
}
.wpforms-uploader.dz-clickable {
	margin-top: 15px !important;
}
div.wpforms-container-full input[type=checkbox]:before {
	border-color: #004996 !important;
}
