

body {
  color: white;
  background-color: #1e1e1e;
  font-family: 'Figtree';
 
  
}

a {
 
  text-decoration: none;
  transition: 0.3s;
  color:white;
  font-weight: 400;
}

a:hover {
 
  text-decoration: none;
}
.figtree-pismo {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
 
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    

.header {

  padding: 15px 0;
  transition: all 0.5s;
  z-index: 1000;
background-image: linear-gradient(to right, #2c2c2c, #353535, #3f3f3f, #494949, #535353);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  
}
}
@media (max-width: 1199px) {
    .header {
width:100%;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 1000;
background-image: linear-gradient(to right, #2c2c2c, #353535, #3f3f3f, #494949, #535353);

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 42px;
  margin-right: 3px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  width:170px;
  
}
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1e4356;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu { 
    padding: 0; margin-left:40px;
  }

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

  .navmenu li {
    position: relative;
    width:120px;
  }

  .navmenu a,
  .navmenu a:focus {
   
    padding: 18px 15px;
    font-size: 16px;
    color:white;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
   font-weight:bold;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
   
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
   
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer a{
  
  font-size: 14px;
  
}

.footer .footer-newsletter {
background-image: linear-gradient(to right, #2c2c2c, #353535, #3f3f3f, #494949, #535353);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid #1e1e1e;;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}
.footer-about h4{
    color:white;
    text-align: left;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
 
  font-size: 14px;
 
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footerLogo {
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: white transparent white transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  
  padding: 250px 0 90px 0;
  text-align: center;
  position: relative;
  font-size:20px;
}
.page-title-main{
   background: url("../img/vsechnyZavody.png") center 60px no-repeat ; 
}
.page-title-zavod{
   background: url("../img/vsechnyZavody.png") center 60px no-repeat ; 
  
}
.page-title-zavod h1{
 
    
}
.page-title-kontakt{
   background: url("../img/vsechnyZavody.png") center 60px no-repeat ; 
}

.page-title-galerie{
   background: url("../img/vsechnyZavody.png") center 60px no-repeat ; 
}

.page-title-onas{
   background: url("../img/oNas1.jpg") center 10px no-repeat ; 
 
}

.page-title:before {
  content: "";
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

section,
.section {
 
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;

}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
 
background-position: right;
background: linear-gradient(321deg, rgba(81,81,81,1) 0%, rgba(30,30,30,1) 100%);

}


@media (min-width: 1200px) {
.hero .imgLes {
  position: absolute ;
  
 top: 0;
 right:0;
  width: 600px;
  float:right;
  object-fit: cover;
  z-index: 1001;


}

.hero .imgZena {
  position: absolute ;
  right:70px; 
  bottom:0;
 
  width: 420px;
  float:right;
  object-fit: cover;
  z-index: 1005;

}
}
@media (max-width: 1199px) {
    .hero .imgLes {
  position: absolute ;
  
 top: 0;
 right:0;
  max-width: 380px;
  float:right;
  object-fit: cover;
  z-index: 996;


}

.hero .imgZena {
  position: absolute ;
  right:-50px; 
  bottom:0;
 
  width: 40%;
  float:right;
  object-fit: cover;
  z-index: 997;

} }

.hero .carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 999;
 
}

.hero .carousel-container {
    width:100%;
 
  justify-content: left;
margin-left:60px;
margin-top:200px;
 
  
 
  text-align: left;
}

.hero h2 {
    margin-top:40px;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 900;
  animation: fadeInDown 1s both;
  display: block;
}

.hero p {
   
  width: 70%;
 font-size:16px;
 
  animation: fadeInDown 1s both 0.2s;
}

.cudliky {
    width:700px;
    margin-top: 30px;
   
}


.hero .btn-get-started {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  margin-left: 100px;
  padding: 14px 14px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px;
  color: white;
  animation: fadeInUp 1s both 0.4s;
  border: 1px solid white;
  width:200px;
  text-align: center;
     transition: all 0.3s ease-in-out;
     
  
}

.hero .registraceButton {
 background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
 color:black;
 border:0;
}
.nadpisySerie h2{
    color:black
}
.hero .btn-get-started:hover {
font-weight: 800;
   transition: all 0.3s ease-in-out;
}

.hero .carousel-indicators {
  bottom: -60px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.3;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 1024px) {
  .hero p {
    width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px),
(max-height: 700px) {
  .hero h2 {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact{
    background: white;
    
}
.contact a{
   color: black;
     transition: all 0.3s ease-in-out;
}
.contact a:hover{
   font-weight:700;
     transition: all 0.3s ease-in-out;
}

.contact .info-item {
  background-color:white;;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
  color:black;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, black, transparent 40%);
}

.contact .info-item h3 {
  color: color-mix(in srgb, black, transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px 30px 0 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color:black;
  background-color: white;
  border-color: color-mix(in srgb, gray, transparent 80%);
    transition: all 0.3s ease-in-out;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color:black;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, black, transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: black;
  background: white;
  border: 1px solid gray;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .php-email-form button[type=submit]:hover {
 border: 1px solid black;
  font-weight:700;
    transition: all 0.3s ease-in-out;
}

 
 /* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  
  color: black;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

.nadpisHome {
    text-align: center;
    
}
.nadpisHome h2{

  color:black;
  font-weight: 700;
    
}
.leftHome h3{
  padding-top:40px;
  color:black;
  font-weight:800;
    
}
.rightHome h3{
  padding-top:40px;
  color:black;
    font-weight:800;
    
}
.svetlePozadi{
    color:black;
    background: rgb(3,255,111);
background: linear-gradient(173deg, rgba(3,255,111,1) 1%, rgba(255,255,255,1) 22%);

    
}

.imgBezec img{
   width:100%;

}

@media (min-width: 1200px) {
.rightHome{
   text-align: left;
    
}

.leftHome{
   text-align: right;
    
} }

@media (max-width: 1199px) {
    .rightHome{
   text-align: center;
    
}

.leftHome{
   text-align: center;
    
}}
    
    
.leftHome img {margin-top:30px;}

.rightHome img {margin-top:30px;}

.bilePozadi{
    color:black;
    background: white;

    
}
@media (min-width: 1200px) {
.pozadiMapa{
    color:black;
    background: url("../img/pozadiMapa.png") -60px -70px  no-repeat ;  
height:500px;
padding:0;
    
}

.contentMapa{
   position: absolute;
   width:1100px;
   background: radial-gradient(circle, rgba(251,63,63,0) 0%, rgba(255,255,255,1) 100%);  
height:500px;
margin:0;
padding:0;
    
}
.seznamZavodu{
    margin:20px 0 0 20px;
  width:230px;
    background: rgba(255,255,255,1);
height:auto;
border-radius:10px;    
}
.zavod{
    margin:6px;
    padding:10px;
    font-size:14px;
   background: url("../img/levyProuzek.png") 0px 5px  no-repeat ;
 background-size: 3px 80px;
    
}
.viceInformaci{
margin-top:4px;
    padding:3px;
  width:180px;
   color:black;
text-align: center;
border-radius:5px;
border:1px solid black;
font-weight:200;
background: white;
  transition: all 0.3s ease-in-out;

    
}
.viceInformaci:hover{

 background:  linear-gradient(356deg, rgba(34,193,195,1) 0%, rgba(3,255,111,1) 100%); 
   font-weight:700;
  transition: all 0.3s ease-in-out;

    
}

}
@media (max-width: 1199px) {
  .pozadiMapa{
    color:black;
  

padding:0;
    
}

.contentMapa{
  
   width:100%;
 

margin:0;
padding:0;
    
}  
.seznamZavodu{
  padding:10px;
  width:100%;
  max-width:500px;
    background: rgba(255,255,255,1);
    margin:auto;
height:auto;
border-radius:10px;    
}
.zavod{
    margin:16px;
    padding:10px;
    font-size:16px;
   background: url("../img/levyProuzek.png") 0px 5px  no-repeat ;
 background-size: 3px 100px;
    
}
.bodNeni {
    display: none;
}
.viceInformaci{
margin-top:4px;
    padding:3px;
  width:100%;
   color:black;
text-align: center;
border-radius:5px;
border:1px solid black;
font-weight:200;
background: white;
  transition: all 0.3s ease-in-out;

    
}
.viceInformaci:hover{

 background:  linear-gradient(356deg, rgba(34,193,195,1) 0%, rgba(3,255,111,1) 100%); 
   font-weight:700;
  transition: all 0.3s ease-in-out;

    
}

}








.datumZavodu {
    font-weight:bold;
}
.vsechnyZavody{
    background:  linear-gradient(356deg, rgba(34,193,195,1) 0%, rgba(3,255,111,1) 100%); 
    color:black;
    height:55px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight:200;
    text-align: center;
    padding:15px;
    transition: all 0.3s ease-in-out;
    
}
.vsechnyZavody:hover {
  font-weight:700;
  transition: all 0.3s ease-in-out;
    
}
.bod{
      position: absolute;
    opacity: 0.8;
}
.bod:hover{
    opacity: 1;
}
.tl1:hover  .bod1{

    opacity:1;
}


.partneri{
     min-height:500px;
     
     
}
.partneri h3{
   text-align: center;
    color:black;
    padding-top: 0px;
    font-weight: 700;
     
}
.partners__items {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}
.partners__item{
  width: calc(100%/4 - 14px);
  margin: 7px;
  
  background-position: 50%;
  background-size: 60% auto;
  background-repeat: no-repeat;
  transition: 0.3s;
  font-size: 0;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.partners__item:after {
  display: block;
  content: "";
  padding-top: 100%;
}
.partners__item:hover {
  background-size: 80% auto;
  transition: all 0.3s ease-in-out;
}

.vypisZavodu{
    padding-top:10px;
    background:  white;
    min-height:75px; 
    padding-bottom:20px;   
}
@media (min-width:1200px){
.blokZavodu{
    width:90%; 
        height:125px;
    border-radius: 10px;
    margin: auto;
box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
margin-top: 20px;
    
}
.blokZavodu:hover{
background: rgba(253,253,253,1);
box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
transition: all 0.3s ease-in-out;
    
}
.blokLevySloupec{   
    width:70%;
   height:120px;
   float:left;
   margin-left:10px;
   font-size:14px;
       padding-left:10px;
       padding-top: 10px;
        background: url("../img/levyProuzek.png") 0px 5px  no-repeat ;
 background-size: 5px 115px;  
    
}
.blokLevySloupec h3{
    color:black;    
    font-weight:400;
    
}
.blokPravySloupec{   
    width:25%;
   height:120px;
      float:right;    
      padding: 10px;
}
.blizsiInfoZavodu{
    width:65%;
   height:65px;
   float:right;
}
.terminZavodu{   
    width:35%;
   height:65px;
   float:left;    
}
.tlacitkoViceInformaci{
    width:80%;
    margin:auto;
    height:30px;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
    border-radius:5px;
    margin-top: 20px;
    color:black;
    font-weight:300;
    text-align: center;
    font-size:14px;
    padding:3px;
      transition: all 0.3s ease-in-out;
      
}



.tlacitkoViceInformaci:hover {
    font-weight: 700;
 box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
  text-decoration: none;
   transition: all 0.3s ease-in-out;
}

.tlacitkoRegistrace{
    width:80%;
    margin:auto;
    height:30px;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
    border-radius:5px;
    margin-top: 20px;
    color:black;
    font-weight:200;
   background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
    text-align: center;
        font-size:14px;
    padding:3px;
      transition: all 0.3s ease-in-out;
}


.tlacitkoRegistrace:hover {
  
    font-weight: 700;
  text-decoration: none;
  box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
   transition: all 0.3s ease-in-out;
}
}
        @media (max-width:1199px){
        .blokZavodu{
            width:90%; 
               
            border-radius: 10px;
            margin: auto;
        box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
        margin-top: 20px;

        }
        .blokZavodu:hover{
        background: rgba(253,253,253,1);
        box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
        transition: all 0.3s ease-in-out;

        }
        .blokLevySloupec{   
            width:100%;
           
           float:left;
           margin-left:10px;
           font-size:14px;
               padding-left:10px;
               padding-top: 10px;
                background: url("../img/levyProuzek.png") 0px 5px  no-repeat ;
         background-size: 5px 95%;  

        }
        .blokLevySloupec h3{
            color:black;    
            font-weight:400;

        }
        .blokPravySloupec{   
            width:100%;
           height:120px;
              float:right;    
              padding: 10px;
        }
        .blizsiInfoZavodu{
            width:100%;
          
           float:right;
        }
        .terminZavodu{   
            width:100%;
          
           float:left;    
        }
        .tlacitkoViceInformaci{
            width:90%;
            margin:auto;
            height:30px;
            box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
            border-radius:5px;
            margin-top: 10px;
            color:black;
            font-weight:300;
            text-align: center;
            font-size:14px;
            padding:3px;
              transition: all 0.3s ease-in-out;

        }



        .tlacitkoViceInformaci:hover {
            font-weight: 700;
         box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
          text-decoration: none;
           transition: all 0.3s ease-in-out;
        }

        .tlacitkoRegistrace{
            width:90%;
            margin:auto;
            height:30px;
            box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
            border-radius:5px;
            margin-top: 10px;
            margin-bottom:20px;
            color:black;
            font-weight:200;
           background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
            text-align: center;
                font-size:14px;
            padding:3px;
              transition: all 0.3s ease-in-out;
        }


        .tlacitkoRegistrace:hover {

            font-weight: 700;
          text-decoration: none;
          box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
           transition: all 0.3s ease-in-out;
        }

}

@media (min-width: 1200px) {
.header .social {
    width:140px;
   
    margin-left:400px;
    z-index:1100;
}}
@media (max-width: 1199px) {
    

.header .social {
    width:120px;
   margin-left:30px;
   float:right;
    z-index: 999;
} }
.header .social i {
   opacity:0.7;
   margin-left:20px;
   transition: all 0.3s ease-in-out;
}
.header .social i:hover {
   opacity:1;
      transition: all 0.3s ease-in-out;
}



.top50 {
    padding-top:20px
}
.top50 h3{
   color:black;
   padding-top:40px;
}
@media (min-width:1200px){
.zavodNadpis h1{
  text-align: left; 
  padding-left: 100px;
}
.zavodDatum{
    width:200px;
    float:left;
    font-size:16px;
    text-align: left;
    margin-left: 100px;
}

.startKonec{
    width:700px;
    float:left;
    font-size:16px;
    text-align: left;
}    
    
.navZavod{
    position: relative;
    top:60px;
    width:1000px;
    height:50px;
    margin:auto;
   
}
.navZavod a{
    padding:0;
    margin:0;
}
.buttonZavod{
    float:left;
    width:240px;
    color:black;
     margin-top:0;
     padding:10px; 
     font-weight:400;
     transition: all 0.3s ease-in-out;
     box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
   
}
.buttonZavod:hover{
    font-weight:800;
   transition: all 0.3s ease-in-out;
   box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
   
}

.registrace{   
    
    
   
   border-radius:5px;
   background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
   
}
.startovka{   
   border-bottom-left-radius:5px;
   border-top-left-radius:5px;
   margin-left: 30px;
   background: white;
}

.vysledky{   
 
  background:white url("../img/levyProuzek.png") 0px 0px  no-repeat ;
 background-size: 5px 50px;  
}

.fotogalerie{   
   border-bottom-right-radius:5px;
   border-top-right-radius:5px;
    background:white url("../img/levyProuzek.png") 0px 0px  no-repeat ;
 background-size: 5px 50px;  
}

}
@media (max-width:1199px){
            .zavodNadpis h1{
          text-align: left; 
          padding: 0 0 0 10px;
          font-size:20px;
          margin:0;
            position: absolute;
    top:130px;
          
        }
        .zavodDatum{
            position:absolute;
            top:170px;
            width:80%;
            float:left;
            font-size:16px;
            text-align: left;
            padding-left: 10px;
        }

        .startKonec{
            width:100%;
            float:left;
            font-size:16px;
            text-align: left;
             margin-left: 10px;
            
        }
            .navZavod{
            
            
            width:90%;
            
            margin:auto;

        }
        .navZavod a{
            padding:0;
            margin:0;
        }
        .buttonZavod{
            float:left;
            width:100%;
            color:black;
             margin-top:0;
             padding:10px; 
             font-weight:400;
             transition: all 0.3s ease-in-out;
              

        }
        .buttonZavod:hover{
            font-weight:800;
           transition: all 0.3s ease-in-out;
           

        }

        .registrace{   



           border-top-left-radius: 5px;
           border-top-right-radius: 5px;
           background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
           box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 10%); 

        }
        .startovka{   
           
          background:white url("../img/levyProuzek.png") 0px 0px  no-repeat ;
           background-size: 5px 50px;  
           margin-left: 0;
           border-top:1px solid gray;
           box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 10%); 
          
        }

        .vysledky{   

          background:white url("../img/levyProuzek.png") 0px 0px  no-repeat ;
         background-size: 5px 50px;  
         border-top:1px solid gray;
          box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 10%); 
         
        }

        .fotogalerie{   
           border-bottom-right-radius:5px;
            border-bottom-left-radius:5px;
           
            background:white url("../img/levyProuzek.png") 0px 0px  no-repeat ;
         background-size: 5px 50px;  
         border-top:1px solid gray;
          box-shadow: 0px 2px 2px 0px rgb(0 0 0 / 10%); 
        }
}

.registraceZavod{
    width:200px;
    margin:auto;
    margin-top:20px;
    padding:10px;
 border-radius:5px;
   background: linear-gradient(318deg, rgba(118,249,255,1) 37%, rgba(3,255,111,1) 100%);
   text-align: center;
   color:black;
   font-size:20px;
   font-weight: 300;
   box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%); 
   transition: all 0.3s ease-in-out;
       
}
.registraceZavod:hover{
    
   font-weight: 800;
   box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%); 
   transition: all 0.3s ease-in-out;
       
}
.ironRegistrace{
    width:1000px;
    min-height: 1800px;
    margin:auto;
    padding-bottom: 40px;
  
}
.ironStartovka{
    width:1000px;
    min-height: 1800px;
    margin:auto;
    padding-bottom: 40px;
}
.ironVysledky{
    width:1000px;
    min-height: 1800px;
    margin:auto;
    padding-bottom: 40px;
}
.oZavode{
   padding:0 0 0 40px;
   margin:0;
}
.oZavode a{
   
   color:black;
    transition: all 0.3s ease-in-out;
}
.oZavode a:hover{
   
  font-weight:800;
   transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color:black
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.obsahTextu p{
  text-align:  justify;
  padding-left:5px;
}
.obsahTextu a{
  color:black; font-weight:700;
}

.obsahTextu a:hover{
  font-style: italic
}

.obsahTextu h3{
  text-align: left; padding-top: 5px;  color:black;
}

.obsahTextu h2{
  text-align: left; padding-top: 5px;  color:black;
}
.obsahTextu h4{
  text-align: left; padding-top: 5px;  color:black;
}

.obsahTextu  h2{
  font-size:24px;
}
.obsahTextu h3{
  font-size:22px;
}
.footerZavodu {
    width:100%;
    padding: 30px 0 60px 0;
}
.footerZavodu h3{
    text-align: center;
    color:black;
}
.galerie{
    background:white;
}
.gal {
    width:265px;
    height:265px;
    margin:10px;;
   float:left;
   
   
  
    opacity:0.85;
transition: all 0.3s ease-in-out;
 
}
.sedivy {
    margin-top:190px;
    width:100%;
   opacity:0.9;
   background: gray;
  color:white;
}
.gal:hover {
   
    background-size: 450px;
    opacity:1;
transition: all 0.3s ease-in-out;
font-weight:bold;
  
}

.sedivy h4 {
   
   padding:0px 5px 5px 5px;
   text-align: center;
   color:white;
   opacity:1;
}
.sedivy p {
   padding:5px; 
   opacity:1;
   text-align: center;
   font-weight:bold;
}