/*
Copyright 2023, JT WebDesign Studio - www.jtwds.cz
*/


@import url("font_jost.css");
@import url("font_open-sans.css");


/* == [ GLOBAL ] == */

body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

.text-justify {
	text-align: justify;
}

a {
	text-decoration: none;
	color: #47b2e4;
}

a:hover {
	text-decoration: underline;
	color: #73c5eb;
}

a[href^="tel:"] {
	color: #444444;
}

a[href^="whatsapp:"] {
	color: #25d366;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Jost", sans-serif;
}

section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f3f5fa;
}

.section-title {
	text-align: center;
	padding-top: 90px;
	padding-bottom: 30px;
}

.section-title:first-child {
	padding-top: 0;
}

.section-title h2 {
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #37517e;
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #47b2e4;
	bottom: 0;
	left: calc(50% - 20px);
}

.content p:last-child {
	margin-bottom: 0;
}


/* == [ HEADER ] == */

#header {
	transition: all 0.5s;
	padding: 15px 0;
	z-index: 997;
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgba(40, 58, 90, 0.9);
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
}

#header .logo img {
	max-height: 40px;
}


/* == [ NAVIGATION (DESKTOP) ] == */

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #47b2e4;
}


/* == [ NAVIGATION (MOBILE) ] == */

.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991.98px) {

	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}

}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(40, 58, 90, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile ul li {
	text-align: right;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #37517e;
	display: block;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile .active:focus,
.navbar-mobile li:hover > a {
	color: #47b2e4;
}


/* == [ INTRO ] == */

#intro {
	background: #37517e;
	width: 100%;
	height: 80vh;
}

#intro .container {
	padding-top: 72px;
}

#intro h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 56px;
	color: #fff;
}

#intro h2 {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 50px;
	font-size: 24px;
}

#intro .buttons a {
	font-family: "Jost", sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	margin: 10px 0 0 0;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	background: #47b2e4;
	border: 2px solid transparent;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

#intro .buttons a:hover {
	background: #209dd8;
	border-color: rgb(230, 230, 230);
}

#intro .buttons a:last-child {
	margin: 10px 0 0 25px;
}

#intro .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991.98px) {

	#intro {
		height: 100vh;
		text-align: center;
	}

	#intro .animated {
		-webkit-animation: none;
		animation: none;
	}

	#intro .intro-img {
		text-align: center;
	}

	#intro .intro-img img {
		width: 50%;
	}

}

@media (max-width: 767.98px) {

	#intro h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#intro h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	#intro .intro-img img {
		width: 70%;
	}

}

@media (max-width: 575.98px) {

	#intro .intro-img img {
		width: 80%;
	}

}

@-webkit-keyframes up-down {

	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}

}

@keyframes up-down {

	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}

}


/* == [ CLIENTS ] == */

#clients {
	padding: 12px 0;
	text-align: center;
}

#clients .section-title {
	display: none;
}

#clients img {
	max-width: 65%;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	padding: 15px 0;
	filter: grayscale(100);
}

#clients img:hover {
	filter: none;
	transform: scale(1.1);
}

@media (max-width: 767.98px) {

	#clients img {
		max-width: 40%;
	}

}


/* == [ O NAS ] == */

#o-nas .content .btn-learn-more {
	font-family: "Jost", sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.3s;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	background: #47b2e4;
	border: 2px solid #47b2e4;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

#o-nas .content .btn-learn-more:hover {
	background: #209dd8;
	border-color: rgb(230, 230, 230);
}


/* == [ SLUZBY ] == */

#sluzby .icon-box {
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	padding: 30px;
	transition: all ease-in-out 0.4s;
	background: #fff;
}

#sluzby .icon-box:hover {
	transform: translateY(-10px);
}

#sluzby .icon-box .icon {
	margin-bottom: 20px;
	line-height: 1;
}

#sluzby .icon-box .icon i {
	color: #47b2e4;
	font-size: 36px;
	transition: 0.3s;
}

#sluzby .icon-box h4 {
	font-weight: 400;
	margin-bottom: 15px;
	font-size: 24px;
	color: #37517e;
	transition: ease-in-out 0.3s;
}

#sluzby .icon-box:hover h4 {
	color: #47b2e4;
}

#sluzby .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

#sluzby .box {
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	padding: 30px;
	transition: all ease-in-out 0.4s;
	background: #fff;
}

#sluzby .box:hover {
	transform: translateY(-10px);
}

#sluzby .box h4 {
	font-weight: 400;
	margin-bottom: 15px;
	font-size: 24px;
	color: #37517e;
	transition: ease-in-out 0.3s;
}

#sluzby .box:hover h4 {
	color: #47b2e4;
}

#sluzby .box p:last-child {
	margin-bottom: 0;
}


/* == [ REFERENCE ] == */

#reference .portfolio-item {
	position: relative;
}

#reference .portfolio-item .portfolio-img {
	border: 1px solid #47b2e4;
	overflow: hidden;
}

#reference .portfolio-item .portfolio-img img {
	transition: all 0.6s;
}

#reference .portfolio-item .portfolio-info {
	background: rgba(55, 81, 126, 0.8);
	padding: 10px 15px;
	opacity: 0;
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 0;
	z-index: 3;
	transition: all 0.3s;
}

#reference .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	color: #fff;
	margin-bottom: 0;
}

#reference .portfolio-item:hover .portfolio-img img {
	transform: scale(1.15);
}

#reference .portfolio-item:hover .portfolio-info {
	opacity: 1;
}


/* == [ KONTAKT ] == */

#kontakt {
	background: #f3f5fa;
}

#kontakt .info,
#kontakt #kontakt-form {
	border-top: 3px solid #47b2e4;
	border-bottom: 3px solid #47b2e4;
	padding: 30px;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

#kontakt .info {
	font-size: 14px;
}

#kontakt .qrcode {
	margin-bottom: 0;
}

@media only screen and (min-width: 992px) {

	#kontakt .qrcode {
		margin-top: 15px;
	}

}

@media only screen and (max-width: 575.98px) {

	#kontakt .qrcode {
		margin-top: 15px;
	}

}

#kontakt #kontakt-form .form-group {
	margin-bottom: 20px;
}

#kontakt #kontakt-form > .form-group:last-child {
	margin-bottom: 0;
}

#kontakt #kontakt-form label {
	padding-bottom: 8px;
}

#kontakt #kontakt-form input,
#kontakt #kontakt-form textarea {
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
	padding: 10px;
}

#kontakt #kontakt-form input:focus,
#kontakt #kontakt-form textarea:focus {
	border-color: #47b2e4;
}

#kontakt #kontakt-form button[type=submit] {
	background: #47b2e4;
	padding: 12px 34px;
	color: #fff;
	border: 0;
	border-radius: 50px;
	transition: 0.4s;
}

#kontakt #kontakt-form button[type=submit]:hover {
	background: #209dd8;
}

#kontakt #kontakt-form button[type=submit]:disabled {
	background: #b4b4b4;
}

.grecaptcha-badge {
	visibility: hidden;
}


/* == [ FOOTER ] == */

#footer {
	background: #37517e;
	font-size: 14px;
}

#footer .container {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #fff;
}

#footer .container a {
	color: #fff;
	transition: 0.3s;
}

#footer .container a:hover {
	color: #fff;
}

#footer .copyright {
	float: left;
}

#footer .credits {
	float: right;
}

@media (max-width: 768px) {

	#footer .container {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .copyright,
	#footer .credits {
		text-align: center;
		float: none;
	}

	#footer .credits {
		padding-top: 4px;
	}

}


/* == [ BACK TO TOP ] == */

.back-to-top {
	background: #47b2e4;
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #6bc1e9;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}


/* == [ PRINT STYLES ] == */

@media print {

	.col-print-1  { width: 8%;   float: left; }
	.col-print-2  { width: 16%;  float: left; }
	.col-print-3  { width: 25%;  float: left; }
	.col-print-4  { width: 33%;  float: left; }
	.col-print-5  { width: 42%;  float: left; }
	.col-print-6  { width: 50%;  float: left; }
	.col-print-7  { width: 58%;  float: left; }
	.col-print-8  { width: 66%;  float: left; }
	.col-print-9  { width: 75%;  float: left; }
	.col-print-10 { width: 83%;  float: left; }
	.col-print-11 { width: 92%;  float: left; }
	.col-print-12 { width: 100%; float: left; }

	#header,
	.back-to-top {
		display: none !important;
	}

	section > .container {
		width: 95%;
		max-width: none;
	}

}


/* BOOTSTRAP-XS (- 575) */
@media only screen and (max-width: 575.98px) {
}

/* BOOTSTRAP-SM (576 - 767px) */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
}

/* BOOTSTRAP-MD (768 - 991) */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
}

/* BOOTSTRAP-LG (992 - 1199) */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
}

/* BOOTSTRAP-XL (1200 - 1399) */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
}

/* BOOTSTRAP-XXL (1400 -) */
@media only screen and (min-width: 1400px) {
}