#bar-poweredby { display:none; }
#bar-poweredby {background:524b45; display:none; }

/* kaskade */
.sluzby .thumbnail {
  background-color:rgba(41,44,47,0.7);                       /* barva pozadí */

  border:1px solid #292C2F;                        /* tloušťka ohraničení, styl čáry, barva ohraničení */
  border-radius:3px;                               /* oblé rohy, hodnota 0px znaméná ostré rohy */
}
.sluzby .thumbnail .caption {color:#292c2f;}      /* barva textu */
.sluzby .thumbnail .caption h2{color:#292c2f;}    /* barva nadpisu */

.sluzby .thumbnail .caption .btn-primary {
  color:#292c2f;                                    /* barva textu */
  background-color:rgba(41,44,47,0.6);                         /* barva pozadí */
  border:1px solid #ffffff;                         /* barva ohraničení */
}

.sluzby .thumbnail .caption .btn-primary:hover {
  color:#ffffff;                                    /* barva písma při najetí myši na tlačítko */
  background-color:rgba(41,44,47,0.2);                         /* barva pozadí po najetí myši na tlačítko */
  border:1px solid #ffffff;                         /* barva ohraničení po najetí myši na tlačítko */
}
.thumbnail { background-color: rgba(41,44,47,0.5);} 
.form-horizontal {background-color: rgba(41,44,47,0.5);}




#bar-poweredby { display:none; }
<div class="alert alert-success"> Text uvnitř zeleného boxu </div> 
img {max-width: 100%; height: auto; box-sizing: border-box;}

#side-column {
  background-color: rgba(131, 102, 0, 0,1);
}
/*------------ patička vždy dole -----------------*/

body {
  background: white;
}
footer {
  background: #524b45;                               /*zlat-hněda barva patičky*/
  color: #000000;                                      /*barva textu v patičce*/
}
#bar-footer {
  background: #ffffff;                                /*černé pozadí pruhu v patiče */ 
  border-top: 1px solid #524b45;                      /*černá čára pruhu v patičce*/
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}
/* Konec- video */

main {

  a:link, a:visited { color:#e6d7c2; }

  a:hover { color:#b2a695; } 

  margin: 0 auto;
  width: 80%;
}

p { 
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7rem;
}
@media (min-width: 992px) { /*zobrazení pro malý notebook*/

  aside.col-md-pull-8 {right: 60%;} /*posunutí postranního sloupce vlevo*/
  main.col-md-push-4 {left: 40%;} /*posunutí hlavního sloupce vpravo*/


  aside.col-md-4 {width: 40%;} /*šířka postranního sloupce */
  main.col-md-8 {width: 60%;} /*šířka hlavního sloupce*/

}


@media (min-width: 1200px) { /*zobrazení pro monitor*/

  aside.col-lg-pull-9 {right: 60%;} /*posunutí postranního sloupce vlevo*/
  main.col-lg-push-3 {left: 40%;} /*posunutí hlavního sloupce vpravo*/

  aside.col-lg-3 {width: 40%;} /*šířka postranního sloupce */
  main.col-lg-9 {width: 60%;} /*šířka hlavního sloupce*/

}
/*proba*/

* {
  box-sizing: border-box;
}

body {
  font: 300 100% 'Helvetica Neue', Helvetica, Arial;
}

.tab-container {
  margin: 0 !important;
  padding: 0px;
  height: 100%;
}

.tab-nav-wrapper {
  width: 360px;
  max-width: 100%;
  margin: 0 auto;
}

.current-tab {
  color: #000 !important;
}

.tab1-c,
.tab2-c,
.tab3-c,
.tab4-c {
  display: none;
}

.tab-content-wrapper {
  width: 360px;
  min-height: 500px;
  background-color: #f5f5f5;
  margin: 0 auto;
}

.tab-nav-wrapper > ul {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  z-index: 100;
  background-color: #ccc;
}

.tab-nav-wrapper > ul li {
  display: inline;
  text-align: center;
  margin-right: -5px !important;
}

.tab-nav-wrapper > ul li a {
  display: inline-block;
  width: 20%;
  padding: 15px 0 8px 0;
  margin: 0;
  text-decoration: none;
  color: #000;
}

.two:hover ~ hr {
  margin-left: 20%;
  background: #006097;
}

.three:hover ~ hr {
  margin-left: 40%;
  background: #f18b2d;
}

.four:hover ~ hr {
  margin-left: 60%;
  background: #683177;
}

.five:hover ~ hr {
  margin-left: 80%;
  background: #ffd100;
}

.tab-nav-wrapper > ul hr {
  height: 155px;
  width: 40%;
  margin: 0;
  background: #00a0df;
  border: none;
  transition: .3s ease-in-out;
  float: left;
}

a.active {
  color: #000;
}
/*probaJS*/
$('.tab-nav-wrapper ul li a').click(function(){ 
  $('.active').removeClass('active');
  $(this).addClass('active');
  $('.tab-content-wrapper > div').hide();
  $('.tab-content-wrapper > div').eq($(this).parent().index()).show();  
});