.wrap-content {
  text-align: left;
  margin: 0 auto; }

@media screen and (max-width: 1199px) {
  .wrap-content {
    width: 100%; } }
@media screen and (min-width: 1200px) {
  .wrap-content {
    width: 1200px; } }
.content {
  padding-left: 4%;
  padding-right: 4%; }

.vcontent {
  padding-top: 6em;
  padding-bottom: 6em; }

body {
  font-family: "Poppins", "Open Sans", Arial, Helvetica; }

.header {
  background-color: rgba(58, 94, 68, 0.95);
  width: 100%;
  position: fixed;
  z-index: 3;
  box-shadow: 0px -22px 20px 20px #000; }

.header ul {
  list-style: none;
  overflow: hidden; }

.header li a {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 20px 17.5px;
  margin-left: 0px;
  text-decoration: none;
  font-weight: 600; }

.header li a:hover,
.header .menu-btn:hover {
  color: #198871; }

.header .logo {
  display: block;
  float: left;
  width: 100px;
  height: 100px;
  text-decoration: none; }
  .header .logo img {
    width: 219px;
    height: 100%;
    object-fit: contain; }

.header .logo:hover {
  cursor: pointer; }

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out; }

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 32px 20px;
  position: relative;
  margin-top: 17px; }

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px; }

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%; }

.header .menu-icon .navicon:before {
  top: 5px; }

.header .menu-icon .navicon:after {
  top: -5px; }

/* menu btn */
.header .menu-btn {
  display: none; }

.header .menu-btn:checked ~ .menu {
  max-height: 400px; }

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent; }

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg); }

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg); }

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0; }

/* 48em = 768px */
@media (min-width: 1100px) {
  .header li {
    float: left;
    height: 100%;
    display: flex;
    align-items: center; }

  .header li a {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    margin-left: 17.5px; }

  .header li a::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden; }

  .header-content-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }

  .header .menu {
    clear: none;
    float: right;
    max-height: none; }

  .header .menu-icon {
    display: none; } }
footer {
  background: #3A5E44;
  background: linear-gradient(90deg, #3a5e44 0%, #3b804e 50%, #35a655 100%); }
  footer .footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    footer .footer-content .footer-block {
      width: 30%; }
      footer .footer-content .footer-block h2 {
        font-size: 1.25em;
        margin-bottom: 0.5em;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600; }
    footer .footer-content .footer-first img {
      width: 150px;
      height: 150px;
      object-fit: contain; }
    footer .footer-content .footer-second ul li {
      font-size: 1.1em;
      line-height: 1.6;
      color: #fff; }
    footer .footer-content .footer-third {
      color: #fff; }
      footer .footer-content .footer-third p {
        line-height: 1.3; }
  footer .links-copy-author {
    margin-top: 4em;
    font-size: 0.9em; }
    footer .links-copy-author .links {
      text-align: center; }
    footer .links-copy-author .copy-author {
      margin-top: 4em;
      text-align: right; }
    footer .links-copy-author p {
      line-height: 1.25;
      color: #fff; }
    footer .links-copy-author a {
      color: #fff; }
    footer .links-copy-author a:hover {
      color: #e6e6e6; }

@media only screen and (max-width: 800px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center; }
    footer .footer-content .footer-block {
      width: 100%;
      margin-bottom: 2em; }
    footer .footer-content .footer-first {
      display: flex;
      justify-content: center; }

  .links-copy-author .copy-author {
    text-align: center !important; } }
.language-switcher {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem; }
  .language-switcher a {
    display: inline-block;
    width: 30px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    margin-left: 8px !important;
    margin-right: 0 !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    transition: all 0.2s ease; }
    .language-switcher a:hover {
      opacity: 1;
      transform: scale(1.05); }
    .language-switcher a.active {
      opacity: 1;
      box-shadow: 0 0 0 2px #00000020; }
    .language-switcher a img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }

@media (max-width: 1100px) {
  .language-switcher {
    padding-bottom: 2rem; } }
.cookies-wrap .cookies-content {
  padding-top: 4em;
  color: #333333; }
  .cookies-wrap .cookies-content h1, .cookies-wrap .cookies-content h2, .cookies-wrap .cookies-content h3 {
    text-transform: uppercase; }
  .cookies-wrap .cookies-content h1 {
    font-size: 1.6em;
    font-weight: 600; }
  .cookies-wrap .cookies-content h2 {
    font-size: 1.4em;
    margin: 1em 0; }
  .cookies-wrap .cookies-content h3 {
    font-size: 1.25em;
    margin: 1em 0; }
  .cookies-wrap .cookies-content ul {
    margin-top: 1em; }
    .cookies-wrap .cookies-content ul li {
      font-size: 1.2em;
      list-style-type: circle;
      line-height: 1.2;
      margin-left: 1.2em; }
  .cookies-wrap .cookies-content p {
    font-size: 1.2em;
    line-height: 1.2; }
  .cookies-wrap .cookies-content .cookies-links {
    margin-top: 1em; }
    .cookies-wrap .cookies-content .cookies-links a {
      font-size: 1.35em;
      color: #4287f5;
      margin-right: 0.3em;
      line-height: 1.2; }
    .cookies-wrap .cookies-content .cookies-links a:hover {
      color: #083f96; }

.chyba-wrap .chyba-content {
  padding-top: 6em;
  height: 50vh;
  color: #333333;
  text-align: center; }
  .chyba-wrap .chyba-content h1 {
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 600; }
  .chyba-wrap .chyba-content p {
    font-size: 1.2em;
    line-height: 1.2; }
  .chyba-wrap .chyba-content a {
    font-size: 1.35em;
    color: #4287f5;
    margin-right: 0.3em;
    line-height: 1.2; }
  .chyba-wrap .chyba-content a:hover {
    color: #083f96; }

.oos-wrap .oos-content {
  padding-top: 4em;
  color: #333333; }
  .oos-wrap .oos-content h1, .oos-wrap .oos-content h2 {
    text-transform: uppercase; }
  .oos-wrap .oos-content h1 {
    font-size: 1.6em;
    margin: 1em 0; }
  .oos-wrap .oos-content h2 {
    font-size: 1.6em;
    margin: 1em 0; }
  .oos-wrap .oos-content p {
    font-size: 1.2em;
    line-height: 1.2; }

.vop-wrap .vop-content {
  margin-top: 4em;
  margin-bottom: 4em;
  color: #333; }
  .vop-wrap .vop-content h1 {
    font-size: 2em;
    text-align: center;
    margin: 1em 0; }
  .vop-wrap .vop-content .vop-head p strong {
    line-height: 1.3;
    font-weight: 600; }
  .vop-wrap .vop-content .vop-block {
    margin-top: 3em; }
    .vop-wrap .vop-content .vop-block h2 {
      font-size: 1.2em;
      font-weight: 600;
      text-align: center;
      margin-bottom: 1em; }
    .vop-wrap .vop-content .vop-block p {
      line-height: 1.3; }
    .vop-wrap .vop-content .vop-block ol {
      list-style-type: decimal;
      margin-left: 16px; }
      .vop-wrap .vop-content .vop-block ol li {
        line-height: 1.3;
        margin-top: 1em; }

section {
  height: 600px; }

.uvod-1-wrap {
  background-image: url("../image/static/bck-1.jpg");
  /* The image used */
  background-color: #cccccc;
  /* Used if the image is unavailable */
  height: 800px;
  /* You must set a specified height */
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */ }
  .uvod-1-wrap .div-center {
    height: 100%;
    display: flex;
    align-items: center; }
  .uvod-1-wrap .uvod-1-content {
    max-width: 600px; }
    .uvod-1-wrap .uvod-1-content h1 {
      color: #fff;
      font-size: 3em;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 2px 2px 4px #000000;
      line-height: 1.1; }
    .uvod-1-wrap .uvod-1-content p {
      color: #fff;
      margin: 2em 0 4em;
      line-height: 1.3;
      font-size: 18px;
      text-shadow: 2px 2px 4px #000000; }
      .uvod-1-wrap .uvod-1-content p strong {
        font-weight: 600;
        color: #1c9c80; }
    .uvod-1-wrap .uvod-1-content a {
      padding: 12px 36px;
      background-color: #198871;
      color: #fff;
      text-decoration: none; }
      .uvod-1-wrap .uvod-1-content a i {
        margin-left: 1em; }
    .uvod-1-wrap .uvod-1-content a:hover {
      background-color: #21b395; }
  @media (max-width: 550px) {
    .uvod-1-wrap .uvod-1-content h1 {
      font-size: 2em;
      text-align: center; }
    .uvod-1-wrap .uvod-1-content p {
      text-align: center; }
    .uvod-1-wrap .uvod-1-content a {
      display: block;
      max-width: 230px;
      margin: 0 auto;
      text-align: center; } }

.uvod-2-wrap {
  background-color: #fff;
  background-image: url("../image/static/decor-img.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 600px auto;
  padding: 3em 0; }
  .uvod-2-wrap .uvod-2-content h2 {
    font-size: 2em;
    color: #3a5e44;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1em;
    text-align: center;
    line-height: 1.2; }
  .uvod-2-wrap .uvod-2-content .uvod-sluzby-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap; }
    .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell {
      width: 45%;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      padding: 12px; }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-image {
        display: block;
        width: 100%;
        height: 300px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        text-decoration: none;
        position: relative;
        border-radius: 5px;
        transition: all 0.2s ease-in-out; }
        .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-image .uvod-sluzby-nazev {
          width: 100%;
          text-transform: uppercase;
          color: #fff;
          background-color: rgba(58, 94, 68, 0.75);
          position: absolute;
          bottom: 0;
          text-align: center;
          padding: 10px 0;
          font-size: 20px;
          border-bottom-right-radius: 5px;
          border-bottom-left-radius: 5px;
          letter-spacing: 1px;
          line-height: 1.2; }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-image:hover {
        transform: scale(1.05, 1.05); }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-cell-popis {
        color: #333333;
        margin: 1em 0;
        line-height: 1.4;
        flex: 1 1 auto; }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-link {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        color: #fff !important;
        background-color: #3a5e44;
        border-radius: 5px;
        padding: 17.5px 30px;
        margin: 0 auto;
        line-height: 1.4; }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-link:hover {
        background: #131f16 !important; }
  @media (max-width: 993px) {
    .uvod-2-wrap .uvod-2-content .uvod-sluzby-list {
      justify-content: space-around; } }
  @media (max-width: 667px) {
    .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell {
      min-width: 0;
      width: 100%; }
      .uvod-2-wrap .uvod-2-content .uvod-sluzby-list .uvod-sluzby-cell .uvod-sluzby-image {
        height: 225px; } }

@media (max-width: 600px) {
  .uvod-2-wrap {
    background-size: 300px auto; } }
.uvod-3-wrap {
  background: #3A5E44;
  background: linear-gradient(90deg, #3a5e44 0%, #3b804e 50%, #35a655 100%); }
  .uvod-3-wrap .uvod-3-content .uvod-3-content-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-left {
      width: 35%; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-left img {
        display: block;
        width: 100%;
        height: auto;
        border: 8px solid #fff;
        box-shadow: 5px 5px 30px #333; }
    .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right {
      width: 60%; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right h2 {
        font-size: 2em;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 1em;
        line-height: 1.2; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right p {
        color: #fff;
        line-height: 1.3;
        margin-bottom: 1em; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right .uvod-3-icons-wrap {
        margin: 1em 0 2em; }
        .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right .uvod-3-icons-wrap .uvod-3-icon {
          margin-top: 0.5em; }
          .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right .uvod-3-icons-wrap .uvod-3-icon i {
            color: #fff;
            font-size: 1.2em;
            margin-right: 0.3em;
            width: 24px;
            text-align: center; }
          .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right .uvod-3-icons-wrap .uvod-3-icon span {
            color: #fff;
            font-weight: 600; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right a {
        display: inline-block;
        padding: 16px 36px;
        background-color: #21b395;
        color: #fff;
        text-decoration: none;
        box-shadow: 5px 5px 30px #333; }
        .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right a i {
          margin-left: 1em; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right a:hover {
        background-color: #198871; }
  @media (max-width: 900px) {
    .uvod-3-wrap .uvod-3-content .uvod-3-content-list {
      flex-direction: column; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-left {
        width: 100%; }
        .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-left img {
          max-width: 400px;
          height: auto;
          margin: 0 auto 2em; }
      .uvod-3-wrap .uvod-3-content .uvod-3-content-list .uvod-3-right {
        width: 100%;
        text-align: center; } }

.uvod-4-wrap .uvod-4-content h2 {
  font-size: 2em;
  color: #3a5e44;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.2; }
.uvod-4-wrap .uvod-4-content .uvod-4-content-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left {
    width: 60%; }
    .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left p {
      color: #333333;
      margin-bottom: 1em;
      line-height: 1.3;
      font-size: 18px; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left p strong {
        font-weight: 600;
        color: #3a5e44; }
    .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns {
      display: flex;
      flex-direction: column; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns a {
        padding: 12px 36px;
        background-color: #198871;
        color: #fff;
        text-decoration: none;
        margin-top: 1em;
        margin-right: 12px;
        max-width: 450px;
        line-height: 1.4;
        text-align: center; }
        .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns a i {
          color: #fff;
          margin-right: 1em; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns a:hover {
        background-color: #21b395; }
    @media (max-width: 1050px) {
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns {
        display: flex;
        flex-direction: column;
        margin-top: 2em; }
        .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns a {
          margin-top: 1em; } }
  .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-right {
    width: 35%; }
    .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-right img {
      width: 100%;
      height: auto; }
@media (max-width: 900px) {
  .uvod-4-wrap .uvod-4-content .uvod-4-content-list {
    flex-direction: column; }
    .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left {
      width: 100%; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left p {
        text-align: center; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns {
        margin: 0; }
        .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-left .uvod-4-btns a {
          margin: 2em auto 0; }
    .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-right {
      width: 100%; }
      .uvod-4-wrap .uvod-4-content .uvod-4-content-list .uvod-4-right img {
        display: block;
        max-width: 500px;
        margin: 2em auto 0; } }

.uvod-5-wrap {
  background-color: #f0f0f0; }
  .uvod-5-wrap .uvod-5-content h2 {
    font-size: 2em;
    color: #3a5e44;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1em;
    text-align: center;
    line-height: 1.2; }
    .uvod-5-wrap .uvod-5-content h2 span {
      color: #3a5e44;
      font-size: 14px; }
  .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.2em; }
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left {
      width: 47.5%; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p {
        line-height: 1.3;
        margin: 0.5em 0; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p strong {
          font-weight: 600; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p a {
          color: #3a5e44;
          text-decoration: none; }
          .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p a i {
            font-size: 1.2em; }
          .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p a .rotate {
            transform: rotate(90deg); }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p i {
          color: #3a5e44; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left p a:hover {
          color: #4d7e5b; }
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right {
      width: 47.5%; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p {
        line-height: 1.3;
        margin: 0.5em 0; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p strong {
          font-weight: 600; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p a {
          color: #3a5e44;
          text-decoration: none; }
          .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p a i {
            font-size: 1.2em; }
          .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p a .rotate {
            transform: rotate(90deg); }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p i {
          color: #3a5e44; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right p a:hover {
          color: #4d7e5b; }
  @media (max-width: 850px) {
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap {
      flex-direction: column;
      text-align: center; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-left {
        width: 100%; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-wrap .uvod-5-kontakt-right {
        width: 100%; } }
  .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left {
      width: 47.5%; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left p {
        font-size: 1.2em;
        line-height: 1.3; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left p strong {
          font-weight: 600; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left p i {
          color: #3a5e44; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left .mapa {
        margin-top: 1em; }
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right {
      width: 47.5%; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right p {
        font-size: 1.2em;
        line-height: 1.3; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right p strong {
          font-weight: 600; }
        .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right p i {
          color: #3a5e44; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right .mapa {
        margin-top: 1em; }
  @media (max-width: 850px) {
    .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa {
      flex-direction: column; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-left {
        width: 100%;
        margin-top: 2em;
        text-align: center; }
      .uvod-5-wrap .uvod-5-content .uvod-5-kontakt-mapa .uvod-5-kontakt-mapa-right {
        width: 100%;
        margin-top: 3em;
        text-align: center; } }

/*# sourceMappingURL=style.css.map */
