/*

Tooplate 2137 Barista

https://www.tooplate.com/view/2137-barista-cafe

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #9ECA9E;
  --secondary-color:              #325A32;
  --bottom-color:                 #646464;  
  --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #FF5126;
  --custom-btn-bg-hover-color:    #9ECA9E;
  --dark-color:                   #DEDEDE;
  --p-color:                      #000000;
   --span-color:                   #DEDEDE;
  --border-color:                 #7fffd4;
  --link-hover-color:             #9ECA9E;

  --body-font-family:             georgia;

  --h1-font-size:                 28px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 22px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                14px;
  --form-btn-font-size:           18px;
  --menu-font-size:               19px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h4 {
  color: var(--secondary-color);
}
h3,
h5,
h6 {
  color: var(--white-color);
}
h2 {
  color: var(--secondary-color);
}
h1,
h2,
h3,
h4,
h5{
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 100px;
  border-top: medium solid #325A32;
}

.section-bg {
  background-image: url('../images/reference.png');
}

.section-overlay {
  background-image: linear-gradient(to bottom, rgba(200, 200, 200, 0.9), rgba(184, 184, 184, 0.1)), url('../images/back_2.png');
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #7c5c52;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 5px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .container {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 5px;
}

.navbar {
  background: transparent;
  z-index: 999999;
  padding-top: 30px;
  padding-bottom: 30px;
}

.navbar .container {
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--border-radius-medium);
  padding: 5px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  display: block;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  height: auto;
  margin-right: 10px;
}

.navbar .custom-btn {
  padding: 1px 2px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 5px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  padding-top: 10px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  text-shadow: 1px 1px 3px #000;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  min-height: 620px;
  text-align: center;
}

.hero-section::after {
  background-color: rgba(0, 105, 70, 0.8);
  border: 1px solid #ffffff;
  border-radius: var(--border-radius-medium);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 500px;
  height:220px;
  pointer-events: none;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }
}

.hero-section h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.hero-section .container {
  position: relative;
  z-index: 9;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: absolute !important;
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

.opening-hours-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
}

.opening-hours-list li .underline {
  background-color: rgba(255, 255, 255, 0.75);
  width: 35%;
  height: 1px;
  margin: auto 15px 0 15px;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/dokument.png');
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
}

.team-block-wrap:hover .team-block-image {
  border-radius: var(--border-radius-medium);
  transform: scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
}

.team-block-image {
  border: 1px solid #ffffff;
  border-radius: var(--border-radius-medium);
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.team-block-info {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/dokument.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
text-align:left;
  border: 1px solid #325A32;
 box-shadow:1px 1px 7px #000000; 
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  padding: 25px 80px 28px 80px;
}

.menu-block .border-top {
  border-top-color: rgba(0, 0, 0, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background-image: url('../images/odkazy.png');
}

.reviews-block {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.reviews-block-image-wrap {
  background-image: url('../images/mid-section-waitress-wiping-espresso-machine-with-napkin-cafa-c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size: var(--btn-font-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-group i {
  color: var(--white-color);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/mapa.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(100, 100, 100, 1)), url('../images/mapa.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(100);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 10px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 7px;
  padding-bottom: 7px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--bottom-color);
  padding-bottom: 10px;
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
	color: rgba(255, 200, 160, 0.75);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}
#home {
	font-family:Georgia;
	background: #9ECA9E;
	width:1800px;
	height:auto;
	margin: 0 auto;
	overflow-y:auto;
	overflow-x: hidden;
	}
.nadpis {
	background: #9ECA9E;
	width:1600px;
	height:32px;
	color:#325A32;
	margin-left:200px;
	padding-top:20px;
	font-size:200%;
	font-family:Georgia;
	font-weight: bold;
	text-align:left;
	text-shadow: 1px 2px 3px #ffffff;
	}

#obal {
	font-family:Georgia;
	display: block;
	background: #E8E8E8;
	width:900px;
	height:auto;
	margin: 0 auto;
	overflow-y:auto;
	overflow-x: hidden;
	}
.obsah {
	background: #ffffff;
	border: 3px solid #587958;
	border-radius:8px;
	width:890px;
	margin-top:15px;
	margin-bottom:15px;	
	}	
.table_1 {
	margin-top:10px;
	border-collapse: collapse;
	width:1800px;
	height:1880px;	
	background-image:url(../images/komplet_13.png);	
	border-top: 1px solid #000000;
}
.radek {
	color:#E6C9A5;
	width:50px;
	font-size: 9px;
	padding:0;
	margin:0;
	height:12px;
	text-align:center;
}
.radek_bottom {
	font-size: 9px;
	padding:0;
	margin:0;
	height:12px;
	text-align:center;
}
.radek_12 {
	color:#000000;
	background: linear-gradient(180deg,#83B88B,#ffffff);
	padding:5px;
	font-size:110%;
	text-align:left;
	padding-left:300px;
	border-top: 1px solid #587958;
}
.radek_2 {
	font-size: 85%;
	width:160px;
	padding-right:5px;
	height:25px;
	text-align:right;
	padding-top:3px;
	padding-bottom:3px;
}
.radek_22 {
	font-size: 85%;	
	width:190px;
	padding-right:5px;
	height:25px;
	text-align:right;
	padding-top:3px;
	padding-bottom:3px;
}
.radek_222 {
	font-size: 85%;	
	width:500px;
	padding-left:10px;
	height:25px;
	text-align:left;
}
.radek_32 {
	font-size:85%;
	padding-left:10px;
	height:25px;
	text-align:left;
	font-style:italic;
}
.radek_42 {
	height:12px;
	border-bottom: 1px solid #587958;
}
.radek_nadpis {
	color:#000000;
	font-weight: bold;
	font-size: 160%;
	height:42px;
	text-align:center;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
.href {
	padding:0;
	margin:0;
}
.table_2 {
	border-radius:10px;
	background: #ffffff;
	color:#587958;
	border-collapse: collapse;
	width:890px;
	margin: 0 auto; 	
}
.table_3 {
	border-collapse: collapse;
	width:1000px;
	height:1563px;	
}
#home_hz {
	font-family:Georgia;
	background: #9ECA9E;
	width:1650px;
	height:auto;
	margin: 0 auto;
	overflow-y:auto;
	overflow-x: hidden;
	}
#obal_hz {
	font-family:Georgia;
	display: block;
	background: #E8E8E8;
	width:1650px;
	height:auto;
	margin: 0 auto;
	overflow-y:auto;
	overflow-x: hidden;
	}
.obsah_hz {
	width:1650px;
	height:1511px;
	border-top: 1px solid #000000;
	margin-bottom:15px;	
	background-image:url(../images/nove_zahradky_okolo.png);
}
.nadpis_hz {
	background: #9ECA9E;
	width:1450px;
	height:42px;
	color:#325A32;
	margin-left:200px;
	padding-top:20px;
	font-size:200%;
	font-family:Georgia;
	font-weight: bold;
	text-align:left;
	text-shadow: 1px 2px 3px #ffffff;
	}
#zapati {
	width:100%;
	color:#000000;	
	height:26px;
	text-align: center;	
	background: linear-gradient(360deg,#83B88B,#ffffff);
	position: fixed;
	bottom:0px;
	border-top: 1px solid #587958;
}
a.odkaz:hover {
	color:#83B88B;
	font-style:italic;
	text-decoration: none;
}
.odkaz a:active{
	margin-top:1px;
}
a.odkaz {
	color:#587958;
}
.caption {
	width:100%;
	color:#000000;	
	height:26px;
	text-align: center;	
	background: linear-gradient(360deg,#83B88B,#ffffff);
	position: fixed;
	bottom:0px;
	border-top: 1px solid #587958;
}
 /*vybor*/
.vybor {
	line-height:1.4;
	width: 350px;
	height: 105px;
	margin: 0 auto;
	padding: 10px 40px;
background-image: radial-gradient(circle at 20% 80%,#ffffff,#83B88B);
	border: 1px solid #000000;
	box-shadow:1px 1px 5px #000000;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border-radius:14px;
	overflow: hidden;
}
.vybor2 {
	line-height:1.4;
	width: 270px;
	height: 95px;
	margin: 0 auto;
	padding: 10px 10px;
background-image: radial-gradient(circle at 20% 80%,#ffffff,#83B88B);
	border: 1px solid #000000;
	box-shadow:1px 1px 5px #000000;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border-radius:14px;
}
.vybor3 {
	text-align:center;
	line-height:1.4;
	width: 270px;
	height: 55px;
	margin: 0 auto;
	padding: 10px 10px;
background-image: radial-gradient(circle at 20% 80%,#ffffff,#83B88B);
	border: 1px solid #000000;
	box-shadow:1px 1px 5px #000000;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border-radius:14px;
}
.table_vybor {
	margin-left:3px;
	line-height:1.4;
	font-size: 99%;
	font-family:Georgia;
}
.nadpis_vybor {
	margin-bottom:10px;
	padding-top:7px;
	color:#000000;
	font-weight: bold;
	font-size: 140%;
	height:24px;
	text-align:center;
	border-top: 1px solid #587958;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
.nadpis_vybor_2 {
	margin-bottom:10px;
	padding-top:7px;
	padding-left:70px;
	color:#000000;
	font-weight: bold;
	font-size: 140%;
	height:24px;
	text-align:left;
	border-top: 1px solid #587958;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
 /*schuze*/
.nadpis_schuze {
	margin-bottom:10px;
	padding-top:7px;
	color:#000000;
	font-weight: bold;
	font-size: 180%;
	height:32px;
	text-align:center;
	border-top: 1px solid #587958;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
.text_schuze {
	line-height:1.4;
	padding-left:20px;
	color:#000000;
	font-size: 100%;
}
.text_schuze ul li ol {
	width:610px;
	line-height:1.5;
	text-align:justify;
	margin-left:20px;
}
.text_schuze ul {
	width:770px;
	line-height:1.5;
	text-align:justify;
	margin-left:20px;
} 
.text_schuze ul li ul{
	margin-left:50px;
	width:680px;
	line-height:1.5;
	text-align:justify;
}
.zapisy_schuze {
	margin-left:50px;
	width:680px;
	line-height:1.5;
	text-align:justify;
	font-size: 120%;	
}
.schuze_rok{
	margin-left:50px;
}
a.odkaz_schuze:hover {
	color:#83B88B;
	font-style:italic;
	text-decoration: none;
}
.odkaz_schuze a:active{
	margin-top:1px;
}
a.odkaz_schuze {
	color:#587958;
	text-decoration: none;
}
 /*stanovy*/
a.stanovy:hover {
	color:#83B88B;
	font-style:italic;
	text-decoration: none;
}
.stanovy a:active{
	margin-top:1px;
}
a.stanovy {
	color:#587958;
}
.stanovy_text {
	line-height:1.4;
	padding-left:50px;
	color:#000000;
	font-size: 110%;
	margin-bottom:10px;
}
 /*osadni rad*/
.nadpis_rad {
	margin-bottom:10px;
	padding-top:7px;
	padding-left:70px;
	color:#ffffff;
	font-weight: bold;
	font-size: 160%;
	height:32px;
	text-align:left;
	border-top: 1px solid #587958;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
.nadpis_rad_2 {
	margin-bottom:5px;
	padding-top:7px;
	color:#000000;
	font-weight: bold;
	font-size: 120%;
	height:32px;
	text-align:center;
}
.nadpis_rad_3 {
	padding-top:7px;
	color:#000000;
	font-weight: bold;
	font-size: 120%;
	text-align:center;
}
.text_rad {
	line-height:1.4;
	margin-bottom:5px;
	color:#000000;
	font-size: 110%;
	text-align:left;
}
 /*studna vodarna*/
.text_vodarna {
	line-height:1.4;
	margin-left:20px;
	margin-bottom:5px;
	color:#000000;
	font-size: 100%;
	text-align:left;
}
.nadpis_vodarna {
	margin-bottom:10px;
	padding-top:7px;
	padding-left:70px;
	color:#000000;
	font-weight: bold;
	font-size: 140%;
	height:26px;
	text-align:left;
	border-top: 1px solid #587958;
	border-bottom: 1px solid #587958;
	background: linear-gradient(180deg,#83B88B,#ffffff);	
}
.table_studna {
	margin-left:10px;
	line-height:1.4;
	font-size: 105%;
	font-family:Georgia;
}
a.vodarna:hover {
	color:#83B88B;
	font-style:italic;
	text-decoration: none;
}
.vodarna a:active{
	margin-top:1px;
}
a.vodarna {
	color:#587958;
}

.table_letecky {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	width:576px;
	height:650px;	
	border: 1px solid #000000;
	box-shadow:1px 1px 5px #000000;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border-radius:14px;
}
#obal_letecky {
	font-family:Georgia;
	display: block;
	background: #E8E8E8;
	width:582px;
	height:auto;
	margin: 0 auto;
	overflow-y:auto;
	overflow-x: hidden;
	}
.obsah_letecky {
	width:582px;
	margin-top:15px;
	margin-bottom:15px;	
	}
.dvbdystudnavodarna {
	padding-top: 10px;	
	background-image:url(../images/studnavodarnaelektrika.png);
	border: 2px solid #000000;
	box-shadow:1px 1px 5px #000000;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	overflow: hidden;			
    width:600px;
    height:240px;	
	margin-top:5px;				
}
.dvhdrstudnavodarna  {
	background:#9ECA9E;
    text-align:center;		
    font-size:13px;
    font-weight:bold;
    border:1px solid #002563;
    padding:5px;
    width:490px;
	border-radius:8px;
	margin-left:50px;
         }
