/*
  Theme Name: Avilon
  Theme URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #666666;
  font-family: "poppins", sans-serif, corbel_bold;
  overflow-x: hidden;
}

a {
  color: #b00e0e;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b4080;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size: 14px;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}

td {
    vertical-align: top;
    padding-bottom: 5px;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;

}

hr {
    border: none;
    border-top: 1px solid grey;
    color: grey;
    overflow: hidden;
    text-align: center;

}


img:fullscreen {
  object-fit: contain; /* Zachová poměr stran a vyplní obrazovku */
  background-color: white;
}

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #b00e0e;
  margin-bottom: 20px;
}

.white-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  background: linear-gradient(0deg, #fff 0%, #fff 100%);
  margin-bottom: 20px;
  margin: auto;

}

.map-label {
  background-color: rgba(0, 0, 0, 0.6); /* Černá s 50% průhledností */
  font-color: white;
  font-family: Poppins;
  font-size: 16px;
  font-weight: bold;
  padding: 2px 6px;      /* Mezera kolem textu */
  border-radius: 4px;    /* Zakulacené rohy */
  white-space: nowrap;   /* Text se nezalomí */
  border: none;
}


/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #e01d1d, #b00e0e);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #e01d1d, #b00e0e);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #b00e0e;
  color: #fff;
}


.rotate-90 {
  display: inline-block; 
  transform: rotate(90deg);
}

.rotate-180 {
  display: inline-block; 
  transform: rotate(180deg);
}

.rotate-270 {
  display: inline-block; 
  transform: rotate(270deg);
}


#fullscreen-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}
#hd-image {
    width: 1400px;
}


.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95); /* Bílé pozadí s mírnou průhledností */
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; cursor: zoom-out;
  overflow: auto; /* Umožní scrollování při velkém zoomu */
}

.lightbox-img {
  width: auto !important; 
  height: auto !important;
  max-width: 100vw; 
  max-height: none !important;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  background: white;
  transition: transform 0.1s ease-out; /* Kratší přechod pro plynulost */
  cursor: grab;
  user-select: none; /* Zabrání označování modře */
  touch-action: none; /* Důležité pro vlastní gesta na mobilu */
  position: relative;}

/* Skryje scrollbar body při otevřeném lightboxu */
body.lb-open { overflow: hidden; }


.lightbox-close {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%); /* Vycentrování na střed */
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 10001; /* Musí být nad overlayem */
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: translateX(-50%) scale(1.1);
}

/* Symbol křížku (pomocí CSS pseudoprvků, není potřeba ikona) */
.lightbox-close::before, .lightbox-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
}
.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  background: #b00e0e;
  padding: 12px 0;
  height: 45px;
  transition: all 0.5s;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 600;
  width: 100%;

}

#header.header-fixed {
  background: #0B4080;
  padding: 0px;
  height: 45px;
  transition: all 0.5s;
  left: 0;
  top: 0;
  right: 0;
  z-index: 997;
}

#flag {
  display: none; 
  position: absolute; /* Přichytí se k hornímu okraji headeru */
  top: 0;
  left: 0; 
  z-index: 9999;
}

#flag .btn-primary, 
#flag .btn-primary:focus, 
#flag .btn-primary:active, 
#flag .btn-primary:hover {
    box-shadow: none !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    /* Pokud chcete zachovat bílou barvu i při kliku: */
    background-color: white !important;
    color: #0B4080 !important;
}

.show-flag {
  display: block !important;
}

.btn-primary {
	background: white;
	border: none;
	border-radius: 0px; 
 	width: auto; 
        height: 45px;
	color: #e01d1d;
	font-size: 14px;
	font-weight: 700; 
	margin-left: 0px;
	vertical-align: top;
	float: left;
	padding-left: 7px;
	padding-right: 7px;
}

#header #nav-menu-container {

	position: absolute;
	z-index: 500;
}

#header #heslo {
        height: 5px;
 	width: auto;
	z-index: 1100;
}

#header #heslo img {
        height: 20px;
 	width: auto;
	margin-right: 45px;
	float: right;
	z-index: 1100;
	display: block;
}

#logocon {
        width: 100%;
        margin: 0 auto;
}

#header #logo h1 {
  font-size: 36px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-family: "poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
  overflow: hidden;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}


}

/* Nav Meu Container */

#nav-menu-container {
  float: center;
  margin: 0;
  height: 40px;

}

/* Nav Menu Styling */

.nav-menu a {
  padding-right: 10px;
  padding-bottom: 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.nav-menu > li {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 12px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 12px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #b00e0e;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 7px;
  border: 0;
  background: none;
  font-size: 20px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 3px;
  bottom: 0;
  z-index: 998;
  background: rgba(11, 64, 128, 1);
  width: 290px;
  right: -290px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 3px;
  position: relative;
  text-decoration: none;
  width: 350px;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding-right: 30px;
  padding-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: white;
}

#mobile-nav ul .menu-item-active {
  color: white;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(11, 64, 128, 0.8);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 85vh;
  background: linear-gradient(rgba(14, 87, 176, 0.8), rgba(56, 137, 235, 0.2)), url(../img/intro-bg.jpg) fixed center center;
  background-size: cover;
  background-position: right;
  position: relative;
}

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 8vh;
  right: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -webkit-align-items: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#intro h2 {
  margin-bottom: 10px;
  padding: 0 15px;
  font-size: 80px;
  font-weight: 800;
  line-height: 100px;
  color: #fff;
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}


/*--------------------------------------------------------------
# Intro2 Section
--------------------------------------------------------------*/

#intro2 {
  width: 100%;
  height: 75vh;
  background: linear-gradient(rgba(14, 87, 176, 0.8), rgba(56, 137, 235, 0.2)), url(../img/intro-bg2.jpg) fixed center center;
  background-size: cover;
  background-position: right;
  position: relative;
}

#intro2 .intro-text {
  position: absolute;
  left: 0;
  top: 8vh;
  right: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
  -webkit-align-items: left;
  -ms-flex-align: left;
  align-items: left;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#intro2 h2 {
  margin-bottom: 10px;
  padding: 0 15px;
  font-size: 180px;
  font-weight: 800;
  line-height: 100px;
  color: #fff;
}

#intro2 p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header {
  background: #b00e0e;
  margin-bottom: 30px;
  height: 73px;
  overflow: hidden;
}

.section-header .section-title {
  font-size: 50px;
  color: #f5efef;
  text-align: left;
  font-weight: 700;
  padding-top: 33px;
  padding-left: 30px;

}

.section-header .section-description {
  text-align: center;
  padding-bottom: 0px;
  color: #777;
  font-style: regular;
  font-size: 24px;
  font-weight: 400;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #b00e0e;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f5efef;
}

.section-bgw {
  background: #fff;
}

/* About Us Section
--------------------------------*/

#about {
  padding: 60px 0;
  overflow: hidden;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

#about .podklad {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  top: 0;
  height: 80%;
  width: auto;
}

#about .content h2 {
  color: #333;
  font-weight: 700;
  font-size: 26px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  font-style: italic;
}

#about .content p {
  line-height: 24px;
}


#about .content p:last-child {
  margin-bottom: 0;
}

#about .content ig {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  margin-bottom: 30px;
  color: #b00e0e;
  float: left;
}

#about .content ul {
  list-style: none;
  padding: 0;
  margin-top: -30px;
  text-align: middle;
}

#about .content ul li {
  padding: 0;
  overflow: hidden;
  text-align: middle;
}

#about .icon {
  margin-bottom: 10px;
}

#about .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#about .icon i:before {
  background: #b00e0e;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* pocty
--------------------------------*/

#pocty {
  padding: 60px 0px 20px 0px;
  overflow: hidden;
}

#pocty .pocty-img {
  overflow: hidden;

}

#pocty .pocty-img img {
  margin-left: -15px;
  max-width: 100%;
}

#pocty .podklad {
  z-index: 10;
  float: right;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  object-fit: cover;
  display: block-inline;
  overflow: hidden;
}

#pocty .preklad {
  position: absolute;
  z-index: 30;
  left: 0;
  bottom: 0;
  top: 0;
  max-width: 100%;
  height: auto;
  margin: auto;
}

#pocty .content h2 {
  color: #333;
  font-weight: 700;
  font-size: 26px;
}

#pocty h3 {
  color: #777;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}

#pocty .content p {
  line-height: 24px;
  margin-bottom: 10px;
}


#pocty .content p:last-child {
  margin-bottom: 0;
}

#pocty .content ig {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #4ab95d;
  float: left;
}

#pocty .content ig2 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #417cb1;
  float: left;
}

#pocty .content ig3 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #b00e0e;
  float: left;
}

#pocty .content ig4 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #a02c89;
  float: left;
}

#pocty .content ig5 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #d4aa00;
  float: left;
}


#pocty .content ul {
  list-style: none;
  padding: 0;
  margin-top: -30px;
  text-align: middle;
}

#pocty .content ul li {
  padding: 0;
  overflow: hidden;
}

#pocty .icon {
  margin-bottom: 10px;
}

#pocty .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#pocty .icon i:before {
  background: #b00e0e;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* priklady
--------------------------------*/

#priklady {
  padding: 10px 10px 10px 10px;
  overflow: hidden;
  background: white;
}

#priklady h3 {
  color: #555;
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin: 0px;
}

/* bonus
--------------------------------*/

#bonus {
  padding: 40px 0px 30px 0px;
  overflow: hidden;
}

#bonus .bonus-img {
  overflow: hidden;

}

#bonus .bonus-img img {
  margin-left: -15px;
  max-width: 100%;
}

#bonus .podklad {
  z-index: 10;
  float: right;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  object-fit: cover;
  display: block-inline;
  overflow: hidden;
}

#bonus .preklad {
  position: absolute;
  z-index: 30;
  left: 0;
  bottom: 0;
  top: 0;
  max-width: 100%;
  height: auto;
  margin: auto;
}

#bonus .content h2 {
  color: #333;
  font-weight: 700;
  font-size: 26px;
}

#bonus h3 {
  color: #777;
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}

#bonus .content p {
  line-height: 24px;
  margin-bottom: 10px;
}


#bonus .content p:last-child {
  margin-bottom: 0;
}

#bonus .content ig {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #4ab95d;
  float: left;
}

#bonus .content ig2 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #417cb1;
  float: left;
}

#bonus .content ig3 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #b00e0e;
  float: left;
}

#bonus .content ig4 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #a02c89;
  float: left;
}

#bonus .content ig5 {
  font-size: 65px;
  line-height: 1;
  font-family: "poppins", sans-serif;
  font-style: regular;
  color: #d4aa00;
  float: left;
}

#bonus .content ul {
  list-style: none;
  padding: 0;
  margin-top: -30px;
  text-align: middle;
}

#bonus .content ul li {
  padding: 0;
  overflow: hidden;
}

#bonus .icon {
  margin-bottom: 10px;
}

#bonus .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#bonus .icon i:before {
  background: #b00e0e;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Product Featuress Section
--------------------------------*/

#features {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 60px;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  overflow: hidden;
}

#features img {
  height: 100%;
  padding-top: 60px 0;
  object-fit: cover;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #b00e0e;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 16px;
  font-weight: 400
  line-height: 29px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 400
  line-height: 30px;
}

#features .content h2 {
  color: #333;
  font-weight: 700;
  font-size: 26px;
}


/* Product Advanced Featuress Section
--------------------------------*/

#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 14px;
  line-height: 1;
}

#advanced-features i:before {
  background: #b00e0e;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: calc(100% + 50px);
  padding-left: 50px;
  float: right;
}

#advanced-features .mapbox {
  max-width: 100%;
  float: left;
  overflow: hidden;
  display: block-inline;
  object-fit:cover;
  frameborder: 0px;
  border: 0; 
  width: 100%;
  height: 100%;
  padding-top: 0px;
  z-index: 10;
  min-height: 350px;

}



/* Revize
--------------------------------*/

#revize {
  overflow: hidden;
  background: linear-gradient(rgba(163, 10, 10, 0.8), rgba(240, 50, 50, 0.2)), url(../img/intro-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#revize .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#revize .cta-text {
  color: #fff;
}

#revize h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#revize .divide-white {
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  background: linear-gradient(0deg, #fff 0%, #fff 100%);
  margin-bottom: 20px;
}


#revize .cta-btn {
  font-family: "poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#revize .cta-btn:hover {
  background: #b00e0e;
  border: 2px solid #b00e0e;
}


/* More Features Section
--------------------------------*/

#more-features {
  padding-bottom: 60px;
  overflow: hidden;
}

#more-features h3 {
  text-align: justify;
  padding-bottom: 0px;
  color: #777;
  font-style: regular;
  font-size: 16px;
  font-weight: 400;
}

#more-features h5 {
  text-align: left;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: #777;
  font-style: regular;
  font-size: 14px;
  font-weight: 600;
}

#more-features .box {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  scroll-margin-top: 55px;
}

img{ 
  width: 100%; 
  height: auto; 
}

#more-features .icon {
  float: left;
}

#more-features .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#more-features .icon i:before {
  background: #b00e0e;
  background: linear-gradient(45deg, #3889eb 0%, #0e57b0 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#more-features h4 {
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

#more-features h4 a {
  color: #b00e0e;
  text-align: right;
}

#more-features p {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 8px;
  line-height: 1.3;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}

#more-features h6 { 
  margin-top: 8px;
  text-align: justify;
  margin-bottom: 0px;
  line-height: 1.3;
  font-size: 14px;
  color: #0b4080;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}

#more-features button {
  width: 54px;
  background: #b00e0e;
  border: 0;
  border-radius: 5px;
  padding: 2px 2px;
  color: #fff;
  font-weight: bold;
  margin: 2px;
  font-size: 14px;
}

#more-features td { 
  vertical-align: top;
  text-align: left;
}


/* Clients Section
--------------------------------*/

#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  transition: 0.3s;
  padding: 0px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients p {
  font-color: #333;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

#clients .kartou {
  width: auto;
  animation-name: karta;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes karta {
  0%   {opacity:100%;}
  13%  {opacity:100%;}
  23%  {opacity:50%;}
  80%  {opacity:50%;}
  90%  {opacity:100%;}
  100%  {opacity:100%;}
}

#clients .mobilem {
  width: auto;
  animation-name: mobil;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes mobil {
  0%   {opacity:50%;}
  13%  {opacity:50%;}
  23%  {opacity:100%;}
  46%  {opacity:100%;}
  56%  {opacity:50%;}
  100%  {opacity:50%;}
}

#clients .hodinkami {
  width: auto;
  animation-name: hodinky;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes hodinky {
  0%   {opacity:50%;}
  46%  {opacity:50%;}
  56%  {opacity:100%;}
  80%  {opacity:100%;}
  90%  {opacity:50%;}
  100%  {opacity:50%;}
}


/* Pricing Section
--------------------------------*/

#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
  background: linear-gradient(rgba(14, 87, 176, 0.8), rgba(56, 137, 235, 0.2)), url(../img/intro-bg.jpg) fixed center center;
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

#pricing img{ 
  width: 118%; 
  height: auto; 
  margin-left: -9%;
}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 26px;
}

#pricing h4 {
  font-size: 46px;
  color: #b00e0e;
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: center;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: #b00e0e;
  font-size: 18px;
  padding-right: 4px;
}

#pricing .get-started-btn {
  background: #615151;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "poppins", sans-serif;
}

#pricing .featured {
  border: 2px solid #b00e0e;
}

#pricing .featured .get-started-btn {
  background: linear-gradient(45deg, #e01d1d, #b00e0e);
}

/* Frequently Asked Questions Section
--------------------------------*/

#faq {
  padding: 60px 0;
  overflow: hidden;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "poppins", sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list .link {
  color: #b00e0e;
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: inline-block;
}

#faq #faq-list a.collapse {
  color: #b00e0e;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

/* Our Team Section
--------------------------------*/

#team {
  padding: 60px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #b00e0e;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Gallery Section
--------------------------------*/

#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}

#contact .contact-about h3 {
  font-size: 36px;
  font-family: "poppins", sans-serif;
  font-weight: 300;
  color: #b00e0e;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "poppins", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #b00e0e;
  line-height: 1;
  padding: 8px 0px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #b00e0e;
  vertical-align: middle
  align-items: center;
}

#contact .social-links a:hover {
  background: #b00e0e;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .icox i {
  font-size: 42px;
  color: #b00e0e;
  line-height: 1;
}

#contact .info h3 {
  text-align: center;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #b00e0e;
  border: 1px solid #b00e0e;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .col {
  vertical-align: middle
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: linear-gradient(45deg, #e01d1d, #b00e0e);
  border: 0;
  border-radius: 20px;
  padding: 20px 30px;
  color: #fff;
  margin-bottom: 20px;
}

#contact .form button[type="submit"]:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #b00e0e;
}

  #revize .cta-btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (min-width: 1025px) {
  #intro {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (min-width: 768px) {
  #intro h2 {
    font-size: 140px;
    line-height: 150px;
  }
}


@media (min-width: 1025px) {
  #intro2 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #intro2 h2 {
    font-size: 80px;
    line-height: 90px;
  }
}

@media (min-width: 768px) {
  #intro2 h2 {
    font-size: 140px;
    line-height: 150px;
  }
}

  #header #logo img {
    max-height: 40px;
  }


  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  #intro2 p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }

  #intro .product-screens .product-screen-2,
  #intro .product-screens .product-screen-3 {
    display: none;
  }

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }

  #more-features .box {
    margin-bottom: 20px;
  }

  #more-features .icon {
    float: none;
    text-align: left;
    padding-bottom: 15px;
  }

  #more-features h4,
  #more-features p {
    margin-left: 0;
    text-align: justify;
  }
}


/* Claim Section
--------------------------------*/

#claim {
  padding: 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.claim {
  padding: 0;
  background: #333;
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 10px;
  padding-top: 10px;
}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/* Pro Chrome, Safari a novější Edge */
::-webkit-scrollbar {
    display: none;
}

/* Pro Firefox */
html {
    scrollbar-width: none;
}

/* Pro starší Internet Explorer a Edge */
html {
    -ms-overflow-style: none;
}


@media screen and (max-width: 576px) {
  div.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* 1. Zrušení fixní výšky a vynucení přizpůsobení obsahu */
#intro {
    height: auto !important;
    min-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px !important; /* Prostor pro fixní menu, pokud ho používáte */
    padding-bottom: 100px !important; /* Rezerva nad footerem */
    overflow: visible !important;
}

/* 2. Zrušení absolutního pozicování textu, které způsobuje přetékání */
#intro .intro-text {
    position: relative !important; /* Klíčová změna: text už neplave "nad" sekcí */
    top: 0 !important;             /* Zrušíme posun z originálního CSS */
    left: 0 !important;
    transform: none !important;    /* Zrušíme případné centrování transformací */
    width: 100%;
    height: auto !important;
}

/* 3. Oprava kontejneru v šabloně */
.intro-container {
    position: relative !important;
    height: auto !important;
}



/* 1. Zrušení fixní výšky a vynucení přizpůsobení obsahu */
#intro2 {
    height: auto !important;
    min-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px !important; /* Prostor pro fixní menu, pokud ho používáte */
    padding-bottom: 100px !important; /* Rezerva nad footerem */
    overflow: visible !important;
}

/* 2. Zrušení absolutního pozicování textu, které způsobuje přetékání */
#intro2 .intro-text {
    position: relative !important; /* Klíčová změna: text už neplave "nad" sekcí */
    top: 0 !important;             /* Zrušíme posun z originálního CSS */
    left: 0 !important;
    transform: none !important;    /* Zrušíme případné centrování transformací */
    width: 100%;
    height: auto !important;
}

/* 3. Oprava kontejneru v šabloně */
.intro2-container {
    position: relative !important;
    height: auto !important;
}