/** CSS Reset **/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

ul, li {
  margin: 0;
  padding: 0;
}

*{ 
    margin: 0; 
    padding: 0; 
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */ 

}

/* LAYOUT */

body {
    background: #fcfcfc url("./images/bg.jpg") repeat;
    font-family: "Trebuchet MS", sans-serif;
}

a {
    color: #6e6e6e;
    border: 0;
    text-decoration: underline;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

a:visited {
    
}

a:hover {
    color: #ffe6e8;
    text-decoration: none;
}

.wrap { 
  width: 980px; 
  margin: 0px auto;
  padding: 0 10px;
}

.clearer {
  clear: both;
}

header {
    width: 100%;
    height: 480px;
    background: url("images/header.jpg") no-repeat;
    background-size: 100% 100%;
    border-bottom: 2px solid #fff;
}

nav {
  width: 100%;
  height: 63px;
  background: url("./images/menu-rpt.png") repeat-x;
  position: fixed;
  top: 0;
  z-index: 99;
}

nav ul {
  text-align: center;
  margin: 0 !important;
}

nav ul li {
  display: inline-block;
  list-style-type: none;
}

nav ul li a {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0 20px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

h1 a#logo {
    display: block;
    width: 100%;
    text-align: center;
    font-family: "bello-pro";
    font-size: 70px;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 10px #000000;
    font-weight: 300;
    position: relative;
    top: 170px;
}

#slogan {
    width: 100%;
    text-align: center;
    font-style: italic;
    color: #fff;
    font-size: 20px;
    position: relative;
    top: 170px;
}

section {
  padding: 10px 0 60px 0;
}

h2 {
    color: #470101;
    font-size: 32px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    margin: 30px 0;
}

h3 {
    color: #7d0000;
    font-size: 25px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
}

h4 {
    width: 100%;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
}

p {
  margin: 15px 0;
}

ul {
  margin: 15px 20px;
  list-style-position: outside;
}

ul li {
  margin: 10px 0;
  text-align: left;
}

ul p {
  margin-top: 40px;
}

/** Content **/

#content {
  min-height: 500px;
}

/* Nevím co potřebuji */

#osoby {
  width: 100%;
  text-align: center;
  margin: 40px 0;
  vertical-align: top;
}

.osoba {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}

.osoba h3 {
  font-size: 18px;
  color: #470101;
}

.osoba h4 {
  font-size: 16px;
  color: #414141;
}

.osoba span.ico {
  display: inline-block;
  width: 179px;
  height: 179px;
  margin: 10px 0;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.nepodnikatel span.ico {
  background: url("./images/osoby.png") 0 0;
}

.osvc span.ico {
  background: url("./images/osoby.png") -179px 0;
}


.pravnicka span.ico {
  background: url("./images/osoby.png") -358px 0;
}

.osoba:hover span.ico {
  -moz-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.osoba ul li {
  list-style-type: none;
  text-transform: uppercase;
  text-align: center;
}

/* Služby */

#sluzby {
  text-align: center;
  padding-bottom: 0;
}

.hide { position: absolute; top: -9999px; left: -9999px; }

#sluzby a {
  display: inline-block;
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  background: #943737;
  background: -moz-linear-gradient(top,  #943737 0%, #8c2020 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#943737), color-stop(100%,#8c2020));
  background: -webkit-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: -o-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: -ms-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: linear-gradient(to bottom,  #943737 0%,#8c2020 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#943737', endColorstr='#8c2020',GradientType=0 );
  border: 1px solid #943737; 
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  color: #fff;
  text-decoration: none;
  margin: 20px 3px 0 3px;
}

#sluzby a:hover {
  background: #710101;
  background: -moz-linear-gradient(top,  #710101 0%, #470101 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#710101), color-stop(100%,#470101));
  background: -webkit-linear-gradient(top,  #710101 0%,#470101 100%);
  background: -o-linear-gradient(top,  #710101 0%,#470101 100%);
  background: -ms-linear-gradient(top,  #710101 0%,#470101 100%);
  background: linear-gradient(to bottom,  #710101 0%,#470101 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#710101', endColorstr='#470101',GradientType=0 );
}

#sluzby a.active {
  background: #710101;
  background: -moz-linear-gradient(top,  #710101 0%, #470101 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#710101), color-stop(100%,#470101));
  background: -webkit-linear-gradient(top,  #710101 0%,#470101 100%);
  background: -o-linear-gradient(top,  #710101 0%,#470101 100%);
  background: -ms-linear-gradient(top,  #710101 0%,#470101 100%);
  background: linear-gradient(to bottom,  #710101 0%,#470101 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#710101', endColorstr='#470101',GradientType=0 );
}

#sluzby-content {
  padding: 40px 0;
  background: #fff;
} 

#sluzby-content p {
  text-align: left;
} 

/* Ceník */

#cenik {
  background: #efe7e7;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}


table {
  width: 980px;
  margin: 0 auto;
  border: 1px solid #decece;
  vertical-align: middle;
  border-spacing: 0;
}

table tr {

}

table tr th {
  text-align: left;
  padding: 10px 5px;
  background: #943737;
  background: -moz-linear-gradient(top,  #943737 0%, #8c2020 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#943737), color-stop(100%,#8c2020));
  background: -webkit-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: -o-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: -ms-linear-gradient(top,  #943737 0%,#8c2020 100%);
  background: linear-gradient(to bottom,  #943737 0%,#8c2020 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#943737', endColorstr='#8c2020',GradientType=0 );
  color: #fff;
  border: 0;
}

table tr td {
  text-align: left;
  padding: 7px 5px;
  background: transparent;
}

table tr.licha td {
  background: #e9dbdb;
}

/* Kde to dělám */

#mapa {
  float: left;
  width: 410px;
  height: 237px;
  background: url("./images/mapa.png");
}

#right {
  float: right;
  width: 550px;
  text-align: right;
}

#right h3 {
  float: right;
  font-size: 18px;
  text-align: right;
}

/* Kontakty */

#kontakty {
 padding-bottom: 0;
}

#kontakty-foto {
  height: 279px;
  background: #fff;
  text-align: center;
}

#kontakty-info {
  background: #440000;
  padding: 40px 0;
}

#kontakty-info h2 {
  color: #fff;
  margin: 0;
}

#kontakty-info h3 {
  color: #cecece;
  font-size: 18px;
  margin: 0 0 20px 0;
}

.kontakty {
  padding: 10px 60px;
  width: 300px;
  margin: 40px auto 0 auto;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}

.telefon {
  font-size: 20px;
}

.email {
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

.web {
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

.email:hover, .web:hover {
  text-decoration: underline;
}

/* Formulář */

#formular {
  background: #3b0100;
  border-top: 1px solid #4d0202;
  min-height: 300px;
  padding: 40px 0;
}

input {
  display: block;
  width: 48%;
  padding: 12px 20px;
  border: 0;
  margin: 10px 0;
  -webkit-box-shadow:inset 0 0 30px -10px #000;
  box-shadow:inset 0 0 30px -10px #000;
  font-style: italic;
}

textarea {
  width: 100%;
  padding: 5px 20px;
  border: 0;
  margin: 10px 0;
  -webkit-box-shadow:inset 0 0 30px -10px #000;
  box-shadow:inset 0 0 30px -10px #000;
  font-family: "Trebuchet MS" !important;
  font-style: italic;
}

.error {
  border: 2px solid #ff0000 !important;
}

span.roboti {
  float: left;
  display: block;
  width: 120px;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  margin-top: 5px;
}

span.pocitani {
  float: left;
  display: block;
  width: 140px;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  margin-top: 5px;
  margin-left: 20px;
}

input.overeni {
  width: 180px;
}

.submit {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #ffffff;
  padding: 12px 20px;
  background: -moz-linear-gradient(
    top,
    #be0101 0%,
    #900002);
  background: -webkit-gradient(
    linear, left top, left bottom,
    from(#be0101),
    to(#900002));
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #360200;
  -moz-box-shadow:
    0px 1px 0px rgba(000,000,000,0),
    inset 0px 1px 0px rgba(255,255,255,0.7);
  -webkit-box-shadow:
    0px 1px 0px rgba(000,000,000,0),
    inset 0px 1px 0px rgba(255,255,255,0.7);
  box-shadow:
    0px 1px 0px rgba(000,000,000,0),
    inset 0px 1px 0px rgba(255,255,255,0.7);
  text-shadow:
    0px -1px 1px rgba(000,000,000,0.2),
    0px 1px 0px rgba(255,255,255,0.3);
  cursor: hand; cursor: pointer;
}

/* Footer */

footer {
    width: 100%;
    background: #d7d7d7;
    color: #898989;
    text-align: center;
}

footer span {
  position: relative;
  top: -15px;
  font-size: 12px;
  font-style: italic;
  left: -10px;
}

#opweb {
    display: inline-block;
    background: url("./images/opweb.png") 0 -40px no-repeat;
    width: 41px;
    height: 40px;
    overflow: hidden;
    text-indent: -9999px;
    margin-top: 15px;
    margin: 15px auto 0 auto;
}

#opweb-color {
    display: inline-block;
    background: url("./images/opweb.png") 0 0px no-repeat;
    width: 41px;
    height: 40px;
    overflow: hidden;
    text-indent: -9999px;
    position: relative;
    top: 0px;
    right: 46px;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

#opweb-color:hover {
    opacity: 1;
}

/* Ostatní */

.schovany {
	display: none;
}

.zobrazeny {
	
}

.left {
    float: left;
}

.right {
    float: right;
}

.neuspesne_hlaseni {
  width: 100%;
  text-align: center;
  background: #ffdddc;
  border: 5px solid #840002;
  padding: 20px 0;
  color: #840002;
  font-size: 25px;
  margin-bottom: 30px;
}

.uspesne_hlaseni {
  width: 100%;
  text-align: center;
  background: #ccffe3;
  border: 5px solid #00843b;
  padding: 20px 0;
  color: #00843b;
  font-size: 25px;
  margin-bottom: 30px;
}



