/* definice stylů pro html elementy */
body {
  font-family: 'Open Sans';
  font-weight: 300;
  color: black;
}
h2 {
  font-size: 40px;
  margin: 0 0 30px;
  text-transform: uppercase;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgb(0 0 0 / 70%);
}
h3 {
  font-size: 25px;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 800 !important;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgb(0 0 0 / 70%);
}
strong {
  font-weight: 700;
}


/* definice globálních stylů */
.cervena {
  color: #b52024;
}
.tucne {
  font-weight: 800;
}
.sloupce {
  padding: 15px;
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid lightgrey;
}
@media (min-width: 767px) {
  .sloupce {
    column-count: 3;
  }
}






/* definice stylů pro menu */
.navbar-nav {
  background-color: rgba(250,250,250,.8);
  border-radius: 15px;
}

@media (min-width: 767px) {
  .navbar {
    padding: 20px 0;
  }
}

@media (max-width: 766px) {
  .navbar-nav {
    border-radius: 0;
  }
  .navbar-nav li a {
    padding: 5px !important;
  }
}
.navbar-nav li a {
  font-size: 12px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px !important;
}

.navbar-nav li a:hover, .navbar-nav li a:focus, .navbar-nav li.active {
  background-color: rgba(255,255,255,.2);
  border-radius: 15px;
}

.navbar-nav .dropdown-menu {
  background-color: rgba(250,250,250,.8);
  border-radius: 15px;
}

.navbar .navbar-brand h1 {
  display: none;
}

.scrolled {
  padding: 0;
  background-color: #b52024;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.scrolled .navbar-brand {
  display: none;
}
.scrolled .navbar-nav {
  background-color: rgba(255,255,255,0);
  text-shadow: 0 1px 5px rgb(0 0 0 / 70%);
}
.scrolled .navbar-nav li a {
  color: white !important;
}
.scrolled .dropdown-menu {
  background-color: #b52024;
  padding-left: 20px;
}

.navbar-light .navbar-toggler {
  color: rgba(0,0,0,.9);
  border-color: rgba(0,0,0,.5);
}
@media(max-width:990px) {
  .navbar-light .navbar-toggler {
    background-color:  rgba(255,255,255,.7);
  }
}



.logo-obal {
  top: -20px;
  position: absolute;
  background-color: rgba(255,255,255,.7);
  padding: 2.5rem 1.5rem;
  margin-top: -25px;
  border-radius: 0 0 20px 20px;
}
.logo {
  width: 170px;
  height: 70px;
  background: url(/assets/img/us-flow.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0px;
}
@media(max-width:990px) {
  .logo-obal {
    top: 8px;
    padding: 0.2rem 0.5rem;
    border-radius: 0 0 5px 5px;
  }
  .logo {
    width: 100px;
    height: 33px;
  }
}








/* definice stylů pro carousel */
.carousel {
  width: 100vw;
  max-height: 80vh;
  overflow: hidden;
  margin-top: -80px;
}



.carousel-indicators {
  margin-left: 0%;
  left: 70%;
  width: 250px;
  border: 1px solid white;
  padding-top: 5px;
  border-radius: 15px;
}

@media (max-width: 766px) {
  .carousel {
    overflow: visible !important;
  }
  .carousel-indicators {
    left: 10%;
  }
  .carousel-item  img {
    width: 100vw;
    min-height: 50vh;
    object-fit: cover;
  }
  .carousel-control-next, .carousel-control-prev {
    top: 20%;
  }
}

.carousel-indicators li {
  width: 20px;
  height: 20px;
  margin: 5px;
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}


/* definice stylů pro section */
.perex {
  color: rgb(0 0 0 / 80%);
  font-weight: 500;
  font-size: 23px;
  text-shadow: 0 1px 2px rgb(0 0 0 / 40%);
}

.pozadi1 {
  background-color: #e7f0f5;
  background-image: url(/assets/img/hvezda.png);
  background-repeat: no-repeat;
  background-position: 95% -30px;
}

.pozadi2 {
  background-color: #f0f0f0;
  background-image: url(/assets/img/hvezda.png);
  background-repeat: no-repeat;
  background-position: 5% 105%;
}

#mapa {
  margin-bottom: -8px !important;
}







/* loga firem */
.znacka {
  margin: 5px 5px;
}
.znacka img {
  width: 100%;
  height: 130px;
  border: 1px solid lightgrey;
  object-fit: contain;
  padding: 15px 15px;
  background-color: white;
}
.znacka:hover > img {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}



/* ilustrační obrázky */


.ilustracni:hover > img {
  animation-duration: 0.5s;
  animation-name: pulse;
}



/* definice stylů pro pattičku */
footer {
  color: white !important;
  background-color: #000;
  padding: 50px 0;
}
footer a {
  color: white !important;
}



/* definice stylů pro kontakty */
.card-kontakt {
  width: 100%;
  border: 1px solid lightgrey;
  margin: 15px 15px 0 0;
}
.card-kontakt:hover,
.card-kontakt:active {
  animation-duration: 1s;
  animation-name: bounce;
}
.card-kontakt .card-title {
  font-weight: 600;
  margin-bottom: 0;
}
.card-kontakt .vlajka {
  height: 16px;
  border: 1px solid lightgrey;
}




/* definice stylů pro formulářové prvky */
.btn-outline-danger {
  color: #b52024;
  border-color: #b52024;
}
.btn-outline-danger:hover {
  background-color: #b52024;
  border-color: #b52024;
}
