@charset "utf-8";
/* CSS Document */
@font-face {
	font-family: 'open-sans-regular';
	src: url('../fonts/open-sans/OpenSans-Regular.ttf');
}
body {
	font-family: 'open-sans-regular', sans-serif;
	line-height: 30px;
	color: #3B3B3B;
}
a {
	color: #3B3B3B;
}
header {
	margin: 40px 0px 40px 0px;
}
h1 {
	margin-bottom: 30px;
	/*animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-name: priletZleva;
	animation-delay: 0.5s;*/
}
#mapa-container{
	margin-top: 40px;
}
#mapa{
	width: 100%;
	height: 333px; 
}
.logo {
	width: 40%;
	min-width: 200px;
}
.logo-p-container{
	position: relative;
}
.logo-p {
	display: none;
}
.container-xxl {
	width: 90%;
}
.cover {
	height: 400px;
	background-image: url("../img/kancelar-01.jpg");
	object-position: center;
	background-position: 50% 20%;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0px auto 60px auto;
}
.footer-ram {
	background-color: #E3D2BF;
	padding: 60px 0px 60px 0px;
	margin-top: 40px;
}
.jazky-parent-div{
	text-align: right; 
	position: relative; 
	height: 20px; 
}
.jazyk{
	display: inline-block;
	padding: 4px 10px 4px 10px;
	background-color: #E3D2BF;
	animation-duration: 0.5s; /* the duration of the animation */
	animation-timing-function: ease-out; /* how the animation will behave */
	animation-delay: 0s; /* how long to delay the animation from starting */
	animation-iteration-count: 1; /* how many times the animation will play */
	animation-name: priletShora; /* the name of the animation we defined above */
}
.jazyk:hover{
	background-color: #77594d;
	color: #FFFFFF;
	transition: background-color 1000ms linear;
}
@keyframes priletShora {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes priletZleva{
	0% {
		transform: translateX(-5%);
	}
	100%{
		transform: translateX(0);
	}
}

/* https://getbootstrap.com/docs/5.3/layout/breakpoints/ */
/* sm */
@media (min-width: 576px) {
	#mapa{
		width: 500px;
		height: 333px; 
}
}
/* md */
@media (min-width: 768px) {
	.logo {
		width: 80%;
	}
	.logo-p {
		display:block;
		position: absolute;
		right: 8px;
		bottom: -8px;
		font-size: 1.2rem;
	}
}
/* ld */
@media (min-width: 992px) {}
/* xl */
@media (min-width: 1200px) {}
/* xxl */
@media (min-width: 1400px) {
	.container-xxl {
		width: 100%;
	}
	.cover {
		min-width: 1400px;
		max-width: 1500px;
	}
}