@charset "UTF-8";
@import url("fonts.css");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  border: 0;
  outline: none;
}

.clr {
  clear: both;
  float: none;
}

body {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
}
body header #menu {
  background-color: #fff;
  height: 96px;
  width: 100%;
}
body header #menu .wrap {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 188px 1fr;
  grid-gap: 10px;
  height: 96px;
}
body header #menu .wrap #logo {
  display: block;
  width: 100%;
  height: 96px;
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body header #menu .wrap .menu_phone {
  display: grid;
  grid-template-columns: 1fr 136px;
  grid-gap: 60px;
  align-items: center;
  justify-items: end;
}
@media only screen and (max-width: 1000px) {
  body header #menu .wrap .menu_phone {
    grid-template-columns: 1fr;
  }
}
body header #menu .wrap .menu_phone #hamburger {
  display: none;
}
@media only screen and (max-width: 1000px) {
  body header #menu .wrap .menu_phone #hamburger {
    display: block;
    width: 40px;
    height: 30px;
    position: relative;
    cursor: pointer;
  }
  body header #menu .wrap .menu_phone #hamburger span {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: black;
    display: block;
    transition: 500ms;
  }
  body header #menu .wrap .menu_phone #hamburger span:nth-child(1) {
    top: 0px;
  }
  body header #menu .wrap .menu_phone #hamburger span:nth-child(2) {
    top: 15px;
  }
  body header #menu .wrap .menu_phone #hamburger span:nth-child(3) {
    top: 30px;
  }
  body header #menu .wrap .menu_phone #hamburger:hover span:nth-child(1) {
    transform: translateY(5px);
  }
  body header #menu .wrap .menu_phone #hamburger:hover span:nth-child(3) {
    transform: translateY(-5px);
  }
}
@media only screen and (max-width: 1000px) {
  body header #menu .wrap .menu_phone .menu {
    display: none;
  }
}
body header #menu .wrap .menu_phone .menu ul {
  list-style: none;
}
body header #menu .wrap .menu_phone .menu ul li {
  display: inline-block;
  margin-left: 40px;
}
@media only screen and (max-width: 1140px) {
  body header #menu .wrap .menu_phone .menu ul li {
    margin-left: 20px;
  }
}
body header #menu .wrap .menu_phone .menu ul li:first-of-type {
  margin-left: 0px;
}
body header #menu .wrap .menu_phone .menu ul li a {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 20.4px;
  letter-spacing: -0.5px;
  color: #131416;
  text-decoration: none;
  transition: 300ms;
  position: relative;
}
body header #menu .wrap .menu_phone .menu ul li a:hover::before, body header #menu .wrap .menu_phone .menu ul li a.active::before {
  transition: 300ms;
  content: "";
  background-color: #FEDF00;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0px;
  bottom: -14px;
}
@media only screen and (max-width: 1000px) {
  body header #menu .wrap .menu_phone .phone {
    display: none;
  }
}
body header #menu .wrap .menu_phone .phone a {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.3px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration: none;
}
body header #menu .wrap .menu_phone .phone a i {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-image: url("../img/phone_circle.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-right: 2px;
  transition: 500ms;
}
body header #menu .wrap .menu_phone .phone a:hover i {
  transform: scale(1.3);
}
body #mobile_menu {
  display: none;
}
body #mobile_menu.open {
  display: block;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
}
body #mobile_menu.open .wrap {
  padding: 30px;
  position: relative;
}
body #mobile_menu.open .wrap .zavrit {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 35px;
  right: 25px;
  cursor: pointer;
  background-image: url("../img/close_menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
}
body #mobile_menu.open .wrap ul {
  list-style: none;
  margin-top: 40px;
}
body #mobile_menu.open .wrap ul li {
  border-bottom: solid 1px #ececec;
}
body #mobile_menu.open .wrap ul li a {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  text-decoration: none;
  padding: 10px 0px;
  display: block;
  width: 100%;
  transition: 300ms;
}
body #mobile_menu.open .wrap ul li a:hover, body #mobile_menu.open .wrap ul li a.active {
  color: #007FC8;
}
body #mobile_menu.open .wrap .phone {
  margin-top: 40px;
}
body #mobile_menu.open .wrap .phone a {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration: none;
}
body #mobile_menu.open .wrap .phone a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background-image: url("../img/phone_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  margin-right: 7px;
  transition: 500ms;
}
body #mobile_menu.open .wrap .phone a:hover i {
  transform: scale(1.3);
}
body main .bread_navigace {
  font-family: "Inter light" !important;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 25px !important;
  letter-spacing: 0px;
  color: #979797 !important;
  text-align: right;
  max-width: 1368px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9px;
}
body main .bread_navigace a, body main .bread_navigace span {
  font-family: "Inter light" !important;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 25px !important;
  letter-spacing: 0px;
  color: #979797 !important;
  text-decoration: none;
}
body main .bread_navigace a:hover, body main .bread_navigace span:hover {
  text-decoration: underline;
}
body main .bread_navigace span:hover {
  text-decoration: none;
}
body main #home_intro {
  width: 100%;
  height: 942px;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  body main #home_intro {
    height: 900px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro {
    height: auto;
  }
}
body main #home_intro .intro_image {
  width: 100%;
  height: 730px;
  background-image: url("../img/slider.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image {
    height: auto;
    padding-bottom: 20px;
  }
}
body main #home_intro .intro_image .zarovnani {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 518px;
  height: 100%;
  position: relative;
  grid-gap: 50px;
}
@media only screen and (max-width: 980px) {
  body main #home_intro .intro_image .zarovnani {
    grid-template-columns: 1fr;
    height: initial;
    grid-gap: 0px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani {
    display: block;
    height: auto;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro {
  padding-top: 159px;
}
@media only screen and (max-width: 980px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro {
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro {
    padding-top: 25px;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
  max-width: 452px;
  padding-top: 15px;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro p {
    padding-top: 10px;
    font-family: "Inter light";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #FFF;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro p.vyrazne {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FEDF00;
  text-transform: uppercase;
  padding-bottom: 20px;
  padding-top: 0px;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro p.vyrazne {
    padding-bottom: 10px;
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #FEDF00;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro h1 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #FFF;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro h1 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: 0px;
    color: #FFF;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro a.poptat {
  background-color: #FEDF00;
  border-radius: 4px;
  display: block;
  margin-top: 26px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 14px 14px 20px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration: none;
  transition: 500ms;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .obsah_intro a.poptat {
    padding: 10px 10px 10px 15px;
    margin-top: 15px;
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #131416;
  }
}
body main #home_intro .intro_image .zarovnani .obsah_intro a.poptat i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_black_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 500ms;
}
body main #home_intro .intro_image .zarovnani .obsah_intro a.poptat:hover {
  background-color: white;
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy {
  margin-top: 219px;
  height: 160px;
  display: grid;
  grid-template-columns: 225px 225px;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 21px;
  grid-column-gap: 75px;
}
@media only screen and (max-width: 980px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    grid-column-gap: 50px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy {
    margin-top: 25px;
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 56px 56px;
    grid-template-rows: 100%;
    grid-gap: 20px;
  }
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #FFF;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy p {
    display: none;
  }
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .vpg {
  grid-row: span 2;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy .vpg {
    margin-bottom: 0px;
  }
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .vpg .vpg_img {
  display: block;
  width: 100%;
  height: 115px;
  margin-top: 15px;
  background-image: url("../img/VPG.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy .vpg .vpg_img {
    width: 100%;
    background-size: contain;
    margin-top: 0px;
    background-position-x: 0px;
  }
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .iso {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  grid-gap: 6px;
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .iso .iso_img {
  display: block;
  width: 100%;
  height: 56px;
  background-image: url("../img/iso.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy .iso {
    margin-bottom: 0px;
    grid-template-columns: 56px;
  }
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .uvv {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  grid-gap: 6px;
}
body main #home_intro .intro_image .zarovnani .ostatni_odkazy .uvv .uvv_img {
  display: block;
  width: 100%;
  height: 56px;
  background-image: url("../img/uvv.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .intro_image .zarovnani .ostatni_odkazy .uvv {
    margin-bottom: 0px;
    grid-template-columns: 56px;
  }
}
body main #home_intro .hero_section {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .hero_section {
    position: relative;
  }
}
body main #home_intro .hero_section .wrap {
  width: 100%;
  max-width: 1368px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  height: 374px;
  display: grid;
  grid-template-columns: 456px 1fr 1fr;
}
@media only screen and (max-width: 1100px) {
  body main #home_intro .hero_section .wrap {
    height: 320px;
    grid-template-columns: 400px 1fr 1fr;
  }
}
@media only screen and (max-width: 920px) {
  body main #home_intro .hero_section .wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .hero_section .wrap {
    display: block;
    height: auto;
  }
}
body main #home_intro .hero_section .wrap .video {
  background-image: url("../img/movie.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}
body main #home_intro .hero_section .wrap .video i {
  display: block;
  background-image: url("../img/play.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 127px;
  height: 127px;
  transition: 500ms;
}
@media only screen and (max-width: 1100px) {
  body main #home_intro .hero_section .wrap .video i {
    background-image: url("../img/play.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    width: 100px;
    height: 100px;
  }
}
body main #home_intro .hero_section .wrap .video:hover i {
  transform: scale(1.1);
}
@media only screen and (max-width: 920px) {
  body main #home_intro .hero_section .wrap .video {
    display: none;
  }
}
body main #home_intro .hero_section .wrap .products, body main #home_intro .hero_section .wrap .services {
  border-right: solid 1px #C7C7C7;
  display: block;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 580px) {
  body main #home_intro .hero_section .wrap .products, body main #home_intro .hero_section .wrap .services {
    border-right: none;
    border-bottom: solid 1px #C7C7C7;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
body main #home_intro .hero_section .wrap .products span, body main #home_intro .hero_section .wrap .services span {
  display: block;
  background-image: url("../img/products.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 53px;
  height: 31px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 85px;
}
@media only screen and (max-width: 1100px) {
  body main #home_intro .hero_section .wrap .products span, body main #home_intro .hero_section .wrap .services span {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .hero_section .wrap .products span, body main #home_intro .hero_section .wrap .services span {
    margin-top: 0px;
  }
}
body main #home_intro .hero_section .wrap .products h2, body main #home_intro .hero_section .wrap .services h2 {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #131416;
  text-align: center;
  padding-top: 23px;
}
body main #home_intro .hero_section .wrap .products p, body main #home_intro .hero_section .wrap .services p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.5px;
  color: #7D7E7F;
  text-align: center;
  padding-top: 19px;
  max-width: 264px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body main #home_intro .hero_section .wrap .products a, body main #home_intro .hero_section .wrap .services a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #007FC8;
  background: #007FC8;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  padding: 14px 14px 14px 20px;
  text-decoration: none;
  transition: 500ms;
}
body main #home_intro .hero_section .wrap .products a i, body main #home_intro .hero_section .wrap .services a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 500ms;
}
body main #home_intro .hero_section .wrap .products a:hover, body main #home_intro .hero_section .wrap .services a:hover {
  background-color: #000;
  border-color: #000;
}
body main #home_intro .hero_section .wrap .services {
  border-right: none;
}
body main #home_intro .hero_section .wrap .services span {
  background-image: url("../img/services.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 55px;
  height: 42px;
  margin-top: 77px;
}
@media only screen and (max-width: 1100px) {
  body main #home_intro .hero_section .wrap .services span {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 580px) {
  body main #home_intro .hero_section .wrap .services span {
    margin-top: 0px;
  }
}
body main .video_home {
  background-image: url("../img/movie.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  width: 100%;
  height: 300px;
  max-width: 500px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  display: none;
  position: relative;
}
body main .video_home i {
  display: block;
  background-image: url("../img/play.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 127px;
  height: 127px;
  transition: 500ms;
}
@media only screen and (max-width: 1100px) {
  body main .video_home i {
    background-image: url("../img/play.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    width: 100px;
    height: 100px;
  }
}
body main .video_home:hover i {
  transform: scale(1.1);
}
@media only screen and (max-width: 920px) {
  body main .video_home {
    display: grid;
  }
}
@media only screen and (max-width: 400px) {
  body main .video_home {
    height: 280px;
  }
}
body main #podstrana_intro {
  width: 100%;
  height: 293px;
  position: relative;
}
@media only screen and (max-width: 980px) {
  body main #podstrana_intro {
    height: auto;
  }
}
body main #podstrana_intro .podstrana_image {
  width: 100%;
  height: 293px;
  background-image: url("../img/slider.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: 42%;
}
@media only screen and (max-width: 980px) {
  body main #podstrana_intro .podstrana_image {
    height: 100%;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 518px;
  height: 100%;
  position: relative;
  grid-gap: 50px;
  align-items: center;
}
@media only screen and (max-width: 980px) {
  body main #podstrana_intro .podstrana_image .zarovnani {
    grid-template-columns: 1fr;
    height: initial;
    grid-gap: 0px;
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani {
    display: block;
    height: auto;
  }
}
@media only screen and (max-width: 980px) {
  body main #podstrana_intro .podstrana_image .zarovnani .obsah_intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .obsah_intro h1 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #FFF;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .obsah_intro h1 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: 0px;
    color: #FFF;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy {
  height: 160px;
  display: grid;
  grid-template-columns: 225px 225px;
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 21px;
  grid-column-gap: 75px;
}
@media only screen and (max-width: 980px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    grid-column-gap: 50px;
  }
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy {
    margin-top: 25px;
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 56px 56px;
    grid-template-rows: 100%;
    grid-gap: 20px;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #FFF;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy p {
    display: none;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .vpg {
  grid-row: span 2;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .vpg {
    margin-bottom: 0px;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .vpg .vpg_img {
  display: block;
  width: 100%;
  height: 115px;
  margin-top: 15px;
  background-image: url("../img/VPG.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .vpg .vpg_img {
    width: 100%;
    background-size: contain;
    margin-top: 0px;
    background-position-x: 0px;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .iso {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  grid-gap: 6px;
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .iso .iso_img {
  display: block;
  width: 100%;
  height: 56px;
  background-image: url("../img/iso.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .iso {
    margin-bottom: 0px;
    grid-template-columns: 56px;
  }
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .uvv {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  grid-gap: 6px;
}
body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .uvv .uvv_img {
  display: block;
  width: 100%;
  height: 56px;
  background-image: url("../img/uvv.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main #podstrana_intro .podstrana_image .zarovnani .ostatni_odkazy .uvv {
    margin-bottom: 0px;
    grid-template-columns: 56px;
  }
}
body main .content .zarovnani {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
body main .content .zarovnani .o_nas_30_let {
  display: grid;
  grid-template-columns: 1fr 689px;
  grid-gap: 82px;
  margin-top: 150px;
}
@media only screen and (max-width: 1360px) {
  body main .content .zarovnani .o_nas_30_let {
    grid-template-columns: 1fr 600px;
    grid-gap: 60px;
  }
}
@media only screen and (max-width: 1230px) {
  body main .content .zarovnani .o_nas_30_let {
    grid-template-columns: 1fr 500px;
    grid-gap: 60px;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .zarovnani .o_nas_30_let {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 400px) {
  body main .content .zarovnani .o_nas_30_let {
    margin-top: 30px;
  }
}
body main .content .zarovnani .o_nas_30_let .obsah {
  max-width: 526px;
}
@media only screen and (max-width: 980px) {
  body main .content .zarovnani .o_nas_30_let .obsah {
    max-width: 100%;
  }
}
body main .content .zarovnani .o_nas_30_let .obsah p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
  padding-top: 25px;
}
@media only screen and (max-width: 1360px) {
  body main .content .zarovnani .o_nas_30_let .obsah p {
    padding-top: 0px;
  }
}
body main .content .zarovnani .o_nas_30_let .obsah p.vyrazny {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #126CC8;
  padding-top: 39px;
}
body main .content .zarovnani .o_nas_30_let .obsah h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: 0px;
  color: #000;
  margin-top: 12px;
}
@media only screen and (max-width: 580px) {
  body main .content .zarovnani .o_nas_30_let .obsah h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000;
    padding-bottom: 20px;
  }
}
body main .content .zarovnani .o_nas_30_let .obsah a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 4px;
  background: #007FC8;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  padding: 14px 14px 14px 20px;
  text-decoration: none;
  transition: 500ms;
}
body main .content .zarovnani .o_nas_30_let .obsah a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 500ms;
}
body main .content .zarovnani .o_nas_30_let .obsah a:hover {
  background-color: #000;
}
body main .content .zarovnani .o_nas_30_let .obrazek {
  display: block;
  width: 100%;
  min-height: 689px;
  background-image: url("../img/30_years.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  position: relative;
}
@media only screen and (max-width: 1360px) {
  body main .content .zarovnani .o_nas_30_let .obrazek {
    aspect-ratio: 1;
    min-height: initial;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .zarovnani .o_nas_30_let .obrazek {
    display: none;
  }
}
body main .content .zarovnani .o_nas_30_let .obrazek .stamp {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #FEDF00;
  width: -moz-fit-content;
  width: fit-content;
}
body main .content .zarovnani .o_nas_30_let .obrazek .stamp .bigger {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: 0px;
  color: #000;
  text-align: center;
  display: block;
  padding-top: 55px;
}
body main .content .zarovnani .o_nas_30_let .obrazek .stamp .smaller {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0px;
  color: #000;
  text-align: center;
  display: block;
  text-transform: uppercase;
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 56px;
}
body main .content .software_na_miru {
  display: grid;
  grid-template-columns: 1006px 1fr;
  grid-gap: 107px;
  align-items: center;
  margin-top: 181px;
}
@media only screen and (max-width: 1480px) {
  body main .content .software_na_miru {
    grid-template-columns: 820px 1fr;
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 1280px) {
  body main .content .software_na_miru {
    grid-template-columns: 620px 1fr;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .software_na_miru {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
body main .content .software_na_miru .obrazek {
  display: block;
  width: 100%;
  min-height: 399px;
  background-image: url("../img/sw.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 1280px) {
  body main .content .software_na_miru .obrazek {
    background-position-x: 100%;
  }
}
@media only screen and (max-width: 680px) {
  body main .content .software_na_miru .obrazek {
    min-height: 200px;
  }
}
body main .content .software_na_miru .obsah {
  max-width: 526px;
}
@media only screen and (max-width: 980px) {
  body main .content .software_na_miru .obsah {
    margin-left: auto;
    margin-right: auto;
    width: 96%;
  }
}
body main .content .software_na_miru .obsah p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
  padding-top: 25px;
}
body main .content .software_na_miru .obsah p.vyrazny {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #126CC8;
  padding-top: 39px;
}
body main .content .software_na_miru .obsah h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: 0px;
  color: #000;
  margin-top: 12px;
}
@media only screen and (max-width: 580px) {
  body main .content .software_na_miru .obsah h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000;
  }
}
body main .content .software_na_miru .obsah a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 4px;
  background: #007FC8;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  padding: 14px 14px 14px 20px;
  text-decoration: none;
  transition: 500ms;
}
body main .content .software_na_miru .obsah a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 500ms;
}
body main .content .software_na_miru .obsah a:hover {
  background-color: #000;
}
body main .content .samoobsluzny_terminal {
  display: grid;
  grid-template-columns: 1fr 1006px;
  grid-gap: 94px;
  align-items: center;
  justify-items: end;
  margin-top: 181px;
}
@media only screen and (max-width: 1480px) {
  body main .content .samoobsluzny_terminal {
    grid-template-columns: 1fr 820px;
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 1280px) {
  body main .content .samoobsluzny_terminal {
    grid-template-columns: 1fr 620px;
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 1050px) {
  body main .content .samoobsluzny_terminal {
    grid-template-columns: 1fr 300px;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .samoobsluzny_terminal {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
body main .content .samoobsluzny_terminal .obrazek {
  display: block;
  width: 100%;
  min-height: 399px;
  background-image: url("../img/terminal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  grid-area: 1/2;
}
@media only screen and (max-width: 1280px) {
  body main .content .samoobsluzny_terminal .obrazek {
    background-position-x: 85%;
  }
}
@media only screen and (max-width: 1050px) {
  body main .content .samoobsluzny_terminal .obrazek {
    background-position-x: 100%;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .samoobsluzny_terminal .obrazek {
    grid-area: initial;
  }
}
@media only screen and (max-width: 680px) {
  body main .content .samoobsluzny_terminal .obrazek {
    min-height: 200px;
  }
}
body main .content .samoobsluzny_terminal .obsah {
  max-width: 624px;
}
@media only screen and (max-width: 1780px) {
  body main .content .samoobsluzny_terminal .obsah {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .samoobsluzny_terminal .obsah {
    max-width: 536px;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    padding-left: 0px;
  }
}
body main .content .samoobsluzny_terminal .obsah p {
  max-width: 526px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
  padding-top: 25px;
}
body main .content .samoobsluzny_terminal .obsah p.vyrazny {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #126CC8;
  padding-top: 39px;
}
body main .content .samoobsluzny_terminal .obsah h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: 0px;
  color: #000;
  margin-top: 12px;
}
@media only screen and (max-width: 580px) {
  body main .content .samoobsluzny_terminal .obsah h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #000;
  }
}
body main .content .samoobsluzny_terminal .obsah a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-radius: 4px;
  background: #007FC8;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  padding: 14px 14px 14px 20px;
  text-decoration: none;
  transition: 500ms;
}
body main .content .samoobsluzny_terminal .obsah a i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 500ms;
}
body main .content .samoobsluzny_terminal .obsah a:hover {
  background-color: #000;
}
body main .content .vyber_produktu.samostatna_poptavka {
  margin-top: 50px;
}
body main .content .vyber_produktu .table_like_products {
  width: 100%;
}
@media only screen and (max-width: 980px) {
  body main .content .vyber_produktu .table_like_products {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
body main .content .vyber_produktu .table_like_products tr th {
  border: none;
  border-right: 1px solid #FFF;
  background: #126CC8;
  padding: 13px 16px;
  vertical-align: top;
  text-align: left;
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
}
body main .content .vyber_produktu .table_like_products tr td {
  border: none;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background: #E7E7E7;
  padding: 20px 17px;
  vertical-align: top;
  text-align: left;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .table_like_products tr td.vmiddle {
  vertical-align: middle;
}
body main .content .vyber_produktu .table_like_products tr td label {
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
body main .content .vyber_produktu .table_like_products tr td label input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
body main .content .vyber_produktu .table_like_products tr td label::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #E7E7E7;
  border: solid 1px black;
  border-radius: 3px;
}
body main .content .vyber_produktu .table_like_products tr td .datovy_list {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #000;
  text-decoration: none;
}
body main .content .vyber_produktu .table_like_products tr td .datovy_list em {
  display: inline-block;
  vertical-align: middle;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .table_like_products tr td .datovy_list i {
  display: inline-block;
  vertical-align: middle;
  background-image: url("../img/datovy_list.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 18px;
  height: 22px;
  margin-right: 8px;
}
body main .content .vyber_produktu .table_like_products tr td .datovy_list:hover em {
  text-decoration: underline;
}
body main .content .vyber_produktu .table_like_products tr td .obrazek_produktu {
  display: block;
  max-width: 80px;
  height: auto;
}
body main .content .vyber_produktu .table_like_products tr.checked_btn td {
  background-color: #A2AEBB;
}
body main .content .vyber_produktu .table_like_products tr.checked_btn td label::before {
  background-color: #007FC8;
  border-color: #00539F;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body main .content .vyber_produktu .form_info {
  display: grid;
  grid-template-columns: 670px 1fr;
  grid-gap: 157px;
  width: 100%;
  padding-bottom: 54px;
}
@media only screen and (max-width: 1120px) {
  body main .content .vyber_produktu .form_info {
    grid-template-columns: 670px 1fr;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .vyber_produktu .form_info {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
  }
}
body main .content .vyber_produktu .form_info h2 {
  padding-top: 57px;
  padding-bottom: 18px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #126CC8;
}
body main .content .vyber_produktu .form_info p.poptavka_ok {
  background: #fedf00;
  padding: 10px;
  text-align: center;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 10px;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_2 label {
  margin-bottom: 20px;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_2 label p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_2 label p strong {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #F00;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_2 label input {
  display: block;
  width: 100%;
  border: none;
  padding: 20px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  background: #E7E7E7;
  outline: none;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_1 label {
  margin-bottom: 15px;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_1 label p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_1 label textarea {
  display: block;
  width: 100%;
  height: 127px;
  border: none;
  padding: 10px 20px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  background: #E7E7E7;
  outline: none;
  resize: none;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-gap: 55px;
  align-items: center;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta input {
  outline: none;
  margin: 0px;
  border: 1px solid #FFF;
  background: #126CC8;
  display: block;
  cursor: pointer;
  height: 62px;
  transition: 500ms;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  background-image: url("../img/arrow_big_toright_white_drop.svg");
  background-repeat: no-repeat;
  background-size: 8px;
  background-position-x: 167px;
  background-position-y: center;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta input:hover {
  background-color: #000;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta p a {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
body main .content .vyber_produktu .form_info .form_poptavka .grid_sub_cta p a:hover {
  text-decoration: none;
}
body main .content .vyber_produktu .info_produkty {
  padding-top: 72px;
}
@media only screen and (max-width: 980px) {
  body main .content .vyber_produktu .info_produkty {
    padding-top: 20px;
  }
}
body main .content .vyber_produktu .info_produkty .vypis_vybranych_produktu {
  display: none;
}
body main .content .vyber_produktu .info_produkty .vypis_vybranych_produktu h3 {
  padding-top: 56px;
  padding-bottom: 0px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .vyber_produktu .info_produkty .vypis_vybranych_produktu ul {
  list-style: none;
  padding-top: 16px;
  margin-left: 0px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
}
body main .content .vyber_produktu .info_produkty .vypis_vybranych_produktu ul li {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #126CC8;
}
body main .content .vyber_produktu .info_produkty .vypis_vybranych_produktu ul li::before {
  content: "•";
  margin-right: 5px;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info {
  padding-top: 56px;
}
@media only screen and (max-width: 980px) {
  body main .content .vyber_produktu .info_produkty .kontaktni_info {
    padding-top: 20px;
  }
}
body main .content .vyber_produktu .info_produkty .kontaktni_info h3 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #000;
  padding: 0px;
  margin-bottom: 32px;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam span, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam span, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se span {
  display: grid;
  width: 100%;
  height: 58px;
  background-color: #126CC8;
  align-items: center;
  justify-items: center;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam span i, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam span i, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se span i {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam h4, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam h4, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se h4 {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  padding: 0px;
  margin-bottom: 5px;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam a, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam a, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se a {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  text-decoration: none;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam a:hover, body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam a:hover, body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se a:hover {
  text-decoration: underline;
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zavolejte_nam span i {
  background-image: url("../img/phone.svg");
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .napiste_nam span i {
  background-image: url("../img/mail.svg");
}
body main .content .vyber_produktu .info_produkty .kontaktni_info .zastavte_se span i {
  background-image: url("../img/location.svg");
}
body main .content .hero_sekce_kategorie .o_nas_30_let {
  margin-top: 0px;
}
body main .content .hero_sekce_kategorie .samoobsluzny_terminal {
  margin-bottom: 208px;
}
body main .content .blog {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  margin-top: 144px;
  padding-bottom: 147px;
}
@media only screen and (max-width: 700px) {
  body main .content .blog {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
body main .content .blog.mensi_odsazeni {
  margin-top: 96px;
}
body main .content .blog h2 {
  text-align: center;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #131416;
  padding-bottom: 43px;
}
body main .content .blog .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 203px;
  grid-gap: 60px;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  body main .content .blog .wrap {
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 980px) {
  body main .content .blog .wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 700px) {
  body main .content .blog .wrap {
    grid-template-columns: 1fr;
  }
}
body main .content .blog .wrap .clanek {
  display: grid;
  grid-template-columns: 147px 1fr;
  grid-gap: 19px;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  body main .content .blog .wrap .clanek {
    grid-template-columns: 100px 1fr;
    grid-gap: 15px;
  }
}
body main .content .blog .wrap .clanek .obr {
  display: block;
  width: 100%;
  height: 103px;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 1100px) {
  body main .content .blog .wrap .clanek .obr {
    height: 80px;
  }
}
body main .content .blog .wrap .clanek .obsah .info {
  display: flex;
  align-items: center;
}
body main .content .blog .wrap .clanek .obsah .info .datum {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #7D7E7F;
}
body main .content .blog .wrap .clanek .obsah .info span {
  background-image: url("../img/point.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 3px;
  height: 3px;
  margin-left: 9px;
  margin-right: 9px;
}
body main .content .blog .wrap .clanek .obsah .info .autor {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #7D7E7F;
}
body main .content .blog .wrap .clanek .obsah .info .autor a {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #7D7E7F;
  text-decoration: underline;
}
body main .content .blog .wrap .clanek .obsah .info .autor a:hover {
  text-decoration: none;
}
body main .content .blog .wrap .clanek .obsah a {
  text-decoration: none;
}
body main .content .blog .wrap .clanek .obsah a h3 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #131416;
  margin-top: 5px;
}
body main .content .blog .wrap .clanek .obsah a:hover h3 {
  text-decoration: underline;
}
body main .content .blog .wrap .clanek .obsah p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.5px;
  letter-spacing: 0px;
  color: #131416;
  padding-top: 5px;
}
body main .content .blog .wrap .clanek .obsah p a {
  text-decoration: underline;
  color: #131416;
}
body main .content .blog .wrap .clanek .obsah p a:hover {
  text-decoration: none;
}
body main .content .blog .wrap .dalsi_clanky {
  background-color: #131416;
  padding: 24px 0px 20px 0px;
  width: 100%;
  height: 62px;
  border: solid 1px black;
  text-align: center;
  border-radius: 6px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #FFF;
  text-decoration: none;
  transition: 500ms;
}
@media only screen and (max-width: 980px) {
  body main .content .blog .wrap .dalsi_clanky {
    grid-column: span 2;
    max-width: 203px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 700px) {
  body main .content .blog .wrap .dalsi_clanky {
    grid-column: span 1;
  }
}
body main .content .blog .wrap .dalsi_clanky i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_top_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 8px;
  transition: 500ms;
}
body main .content .blog .wrap .dalsi_clanky:hover {
  background-color: white;
  color: black;
}
body main .content .blog .wrap .dalsi_clanky:hover i {
  background-image: url("../img/arrow_black_top_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body main .content.hlavni_kategorie .sjednani_schuzky {
  margin-top: 135px !important;
  margin-bottom: 50px !important;
}
body main .content.hlavni_kategorie h1 {
  text-align: center;
}
body main .content .vypis_kategorie {
  display: grid;
  justify-content: center;
  align-content: center;
  margin-top: 67px;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 20px;
}
@media only screen and (max-width: 900px) {
  body main .content .vypis_kategorie {
    grid-gap: 25px;
  }
}
@media only screen and (max-width: 1100px) {
  body main .content .vypis_kategorie {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 650px) {
  body main .content .vypis_kategorie {
    grid-template-columns: repeat(2, 1fr);
  }
}
body main .content .vypis_kategorie.podkategorie {
  margin-top: 0px;
}
body main .content .vypis_kategorie.podkategorie .kategorie {
  min-height: 223px;
  justify-content: center;
}
@media only screen and (max-width: 740px) {
  body main .content .vypis_kategorie.podkategorie .kategorie {
    min-height: 100px;
  }
}
body main .content .vypis_kategorie.podkategorie .kategorie.mensiObsah {
  padding: 44px 16px;
}
@media only screen and (max-width: 650px) {
  body main .content .vypis_kategorie.podkategorie .kategorie.mensiObsah {
    padding: 30px 10px;
  }
}
body main .content .vypis_kategorie.podkategorie .kategorie.mensiObsah h2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #FFF;
  text-align: center;
}
body main .content .vypis_kategorie.podkategorie .kategorie:hover {
  background-color: #FEDF00 !important;
}
body main .content .vypis_kategorie.podkategorie .kategorie:hover h2 {
  color: #000 !important;
}
body main .content .vypis_kategorie.grid_1 {
  grid-template-columns: repeat(1, 1fr);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 600px) {
  body main .content .vypis_kategorie.grid_1 {
    grid-template-columns: 1fr;
  }
}
body main .content .vypis_kategorie.grid_2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  grid-gap: 48px;
}
@media only screen and (max-width: 600px) {
  body main .content .vypis_kategorie.grid_2 {
    grid-template-columns: 1fr;
  }
}
body main .content .vypis_kategorie.grid_3 {
  grid-template-columns: repeat(3, 1fr);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 600px) {
  body main .content .vypis_kategorie.grid_3 {
    grid-template-columns: 1fr;
  }
}
body main .content .vypis_kategorie .kategorie {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 73px 76px 60px 76px;
  gap: 8px;
  text-decoration: none;
  background-color: #7D7E7F;
}
@media only screen and (max-width: 900px) {
  body main .content .vypis_kategorie .kategorie {
    padding: 70px 40px;
  }
}
@media only screen and (max-width: 740px) {
  body main .content .vypis_kategorie .kategorie {
    padding: 35px 10px;
  }
}
body main .content .vypis_kategorie .kategorie.mensiObsah {
  padding: 40px 30px;
}
body main .content .vypis_kategorie .kategorie h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #FFF;
  text-align: center;
}
body main .content .vypis_kategorie .kategorie p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.5px;
  color: #EFEFEF;
  text-align: center;
  max-width: 300px;
}
body main .content .vypis_kategorie .kategorie span {
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #EFEFEF;
  text-decoration: none;
  border: solid 1px white;
  border-radius: 4px;
  padding: 14px 14px 14px 20px;
  margin-top: 24px;
  transition: 300ms;
}
body main .content .vypis_kategorie .kategorie span i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-image: url("../img/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-left: 10px;
  transition: 300ms;
}
body main .content .vypis_kategorie .kategorie span.logo {
  border: none;
  border-radius: 0px;
  padding: 0px;
  margin-top: 0px;
  transition: initial;
  width: 100%;
  height: 42px;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  display: block;
}
body main .content .vypis_kategorie .kategorie:hover span {
  background-color: white;
  color: #000;
}
body main .content .vypis_kategorie .kategorie:hover span i {
  background-image: url("../img/arrow_black_right.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body main .content .vypis_kategorie .kategorie:hover span.logo {
  background-color: transparent;
}
body main .content .vypis_podkategorii {
  display: grid;
  grid-template-columns: 297px 337px 337px 337px;
  grid-gap: 0px;
  justify-items: center;
  align-items: top;
}
@media only screen and (max-width: 1360px) {
  body main .content .vypis_podkategorii {
    grid-template-columns: 297px 337px 337px;
  }
}
@media only screen and (max-width: 1020px) {
  body main .content .vypis_podkategorii {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 674px;
  }
}
@media only screen and (max-width: 500px) {
  body main .content .vypis_podkategorii {
    grid-template-columns: 1fr;
  }
}
body main .content .vypis_podkategorii .kategorie {
  padding: 18px 35px;
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: 500ms;
}
body main .content .vypis_podkategorii .kategorie:hover {
  transform: scale(1.005);
  background-color: white;
  box-shadow: #dddddd 20px 20px 20px 0px;
}
body main .content .vypis_podkategorii .kategorie:hover::after {
  display: none !important;
}
body main .content .vypis_podkategorii .kategorie:hover::before {
  display: none !important;
}
body main .content .vypis_podkategorii .kategorie::after {
  content: "";
  width: 1px;
  height: calc(100% - 70px);
  position: absolute;
  top: 35px;
  right: 0px;
  background-color: #C8C8C8;
}
body main .content .vypis_podkategorii .kategorie::before {
  content: "";
  height: 1px;
  width: calc(100% - 70px);
  position: absolute;
  bottom: 0px;
  left: 35px;
  background-color: #C8C8C8;
}
body main .content .vypis_podkategorii .kategorie:nth-child(4n)::after {
  display: none;
}
body main .content .vypis_podkategorii .kategorie:nth-child(1), body main .content .vypis_podkategorii .kategorie:nth-child(4n+1) {
  padding-left: 0px;
}
body main .content .vypis_podkategorii .kategorie:nth-child(1)::before, body main .content .vypis_podkategorii .kategorie:nth-child(4n+1)::before {
  left: 0px;
  width: calc(100% - 35px);
}
body main .content .vypis_podkategorii .kategorie.posledni_radek::before {
  display: none;
}
body main .content .vypis_podkategorii .kategorie .cislo {
  padding-left: 35px;
  padding-top: 20px;
  padding-bottom: 5px;
  display: block;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: initial;
  color: #00539F;
}
body main .content .vypis_podkategorii .kategorie h2 {
  padding-left: 35px;
  padding-top: 0px;
  font-family: "Inter bold";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: initial;
  color: #000;
  min-height: 52px;
}
body main .content .vypis_podkategorii .kategorie p {
  padding-left: 35px;
  padding-top: 0px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: initial;
  color: #000;
}
@media only screen and (max-width: 1360px) {
  body main .content .vypis_podkategorii .kategorie::after {
    display: block !important;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(1), body main .content .vypis_podkategorii .kategorie:nth-child(4n+1) {
    padding-left: 35px;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(1)::before, body main .content .vypis_podkategorii .kategorie:nth-child(4n+1)::before {
    left: 35px;
    width: calc(100% - 70px);
  }
  body main .content .vypis_podkategorii .kategorie::before {
    display: block !important;
    content: "";
    height: 1px;
    width: calc(100% - 70px);
    position: absolute;
    bottom: 0px;
    left: 35px;
    background-color: #C8C8C8;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(3n)::after {
    display: none !important;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(1), body main .content .vypis_podkategorii .kategorie:nth-child(3n+1) {
    padding-left: 0px;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(1)::before, body main .content .vypis_podkategorii .kategorie:nth-child(3n+1)::before {
    left: 0px;
    width: calc(100% - 35px);
  }
}
@media only screen and (max-width: 1020px) {
  body main .content .vypis_podkategorii .kategorie {
    padding-left: 35px !important;
  }
  body main .content .vypis_podkategorii .kategorie::after {
    display: block !important;
  }
  body main .content .vypis_podkategorii .kategorie::before {
    left: 35px !important;
    width: calc(100% - 70px) !important;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(3n)::after {
    display: block !important;
  }
  body main .content .vypis_podkategorii .kategorie::before {
    display: block !important;
    content: "";
    height: 1px;
    width: calc(100% - 70px);
    position: absolute;
    bottom: 0px;
    left: 35px;
    background-color: #C8C8C8;
  }
}
@media only screen and (max-width: 720px) {
  body main .content .vypis_podkategorii .kategorie {
    padding: 10px 20px;
  }
  body main .content .vypis_podkategorii .kategorie:nth-child(even)::after {
    display: none !important;
  }
  body main .content .vypis_podkategorii .kategorie::before {
    width: calc(100% - 40px);
    left: 20px;
  }
  body main .content .vypis_podkategorii .kategorie .cislo {
    padding-left: 0px;
  }
  body main .content .vypis_podkategorii .kategorie h2 {
    padding-left: 0px;
  }
  body main .content .vypis_podkategorii .kategorie p {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 500px) {
  body main .content .vypis_podkategorii .kategorie:nth-child(odd)::after {
    display: none !important;
  }
}
body main .content .vypis_sluzeb {
  display: grid;
  grid-template-columns: 297px 337px 337px 337px;
  grid-gap: 0px;
  justify-items: center;
  align-items: top;
  padding-bottom: 112px;
}
@media only screen and (max-width: 1360px) {
  body main .content .vypis_sluzeb {
    grid-template-columns: 297px 337px 337px;
  }
}
@media only screen and (max-width: 1020px) {
  body main .content .vypis_sluzeb {
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 674px;
  }
}
@media only screen and (max-width: 500px) {
  body main .content .vypis_sluzeb {
    grid-template-columns: 1fr;
  }
}
body main .content .vypis_sluzeb .sluzba {
  padding: 18px 35px;
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: 500ms;
}
body main .content .vypis_sluzeb .sluzba:hover {
  transform: scale(1.005);
  background-color: white;
  box-shadow: #dddddd 20px 20px 20px 0px;
}
body main .content .vypis_sluzeb .sluzba:hover::after {
  display: none !important;
}
body main .content .vypis_sluzeb .sluzba:hover::before {
  display: none !important;
}
body main .content .vypis_sluzeb .sluzba::after {
  content: "";
  width: 1px;
  height: calc(100% - 70px);
  position: absolute;
  top: 35px;
  right: 0px;
  background-color: #C8C8C8;
}
body main .content .vypis_sluzeb .sluzba::before {
  content: "";
  height: 1px;
  width: calc(100% - 70px);
  position: absolute;
  bottom: 0px;
  left: 35px;
  background-color: #C8C8C8;
}
body main .content .vypis_sluzeb .sluzba:nth-child(4n)::after {
  display: none;
}
body main .content .vypis_sluzeb .sluzba:nth-child(1), body main .content .vypis_sluzeb .sluzba:nth-child(4n+1) {
  padding-left: 0px;
}
body main .content .vypis_sluzeb .sluzba:nth-child(1)::before, body main .content .vypis_sluzeb .sluzba:nth-child(4n+1)::before {
  left: 0px;
  width: calc(100% - 35px);
}
body main .content .vypis_sluzeb .sluzba .cislo {
  padding-left: 35px;
  padding-top: 20px;
  padding-bottom: 5px;
  display: block;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: initial;
  color: #00539F;
}
body main .content .vypis_sluzeb .sluzba h2 {
  padding-left: 35px !important;
  padding-top: 0px !important;
  font-family: "Inter bold" !important;
  font-style: normal;
  font-weight: normal;
  font-size: 18px !important;
  line-height: 26px !important;
  letter-spacing: initial;
  color: #000 !important;
  min-height: 52px !important;
}
body main .content .vypis_sluzeb .sluzba p {
  padding-left: 35px !important;
  padding-top: 0px !important;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 13px !important;
  line-height: 19px !important;
  letter-spacing: initial;
  color: #000;
}
@media only screen and (max-width: 1360px) {
  body main .content .vypis_sluzeb .sluzba::after {
    display: block !important;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(1), body main .content .vypis_sluzeb .sluzba:nth-child(4n+1) {
    padding-left: 35px;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(1)::before, body main .content .vypis_sluzeb .sluzba:nth-child(4n+1)::before {
    left: 35px;
    width: calc(100% - 70px);
  }
  body main .content .vypis_sluzeb .sluzba::before {
    display: block !important;
    content: "";
    height: 1px;
    width: calc(100% - 70px);
    position: absolute;
    bottom: 0px;
    left: 35px;
    background-color: #C8C8C8;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(3n)::after {
    display: none !important;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(1), body main .content .vypis_sluzeb .sluzba:nth-child(3n+1) {
    padding-left: 0px;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(1)::before, body main .content .vypis_sluzeb .sluzba:nth-child(3n+1)::before {
    left: 0px;
    width: calc(100% - 35px);
  }
}
@media only screen and (max-width: 1020px) {
  body main .content .vypis_sluzeb .sluzba {
    padding-left: 35px !important;
  }
  body main .content .vypis_sluzeb .sluzba::after {
    display: block !important;
  }
  body main .content .vypis_sluzeb .sluzba::before {
    left: 35px !important;
    width: calc(100% - 70px) !important;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(3n)::after {
    display: block !important;
  }
  body main .content .vypis_sluzeb .sluzba::before {
    display: block !important;
    content: "";
    height: 1px;
    width: calc(100% - 70px);
    position: absolute;
    bottom: 0px;
    left: 35px;
    background-color: #C8C8C8;
  }
}
@media only screen and (max-width: 720px) {
  body main .content .vypis_sluzeb .sluzba {
    padding: 10px 20px;
  }
  body main .content .vypis_sluzeb .sluzba:nth-child(even)::after {
    display: none !important;
  }
  body main .content .vypis_sluzeb .sluzba::before {
    width: calc(100% - 40px);
    left: 20px;
  }
  body main .content .vypis_sluzeb .sluzba .cislo {
    padding-left: 0px;
  }
  body main .content .vypis_sluzeb .sluzba h2 {
    padding-left: 0px;
  }
  body main .content .vypis_sluzeb .sluzba p {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 500px) {
  body main .content .vypis_sluzeb .sluzba:nth-child(odd)::after {
    display: none !important;
  }
}
body main .content .vypis_sluzeb .sluzba.posledni_radek::before {
  display: none;
}
body main .content .format_textu .mapa_kontakt {
  float: right;
  display: block;
  width: 500px;
  height: auto;
  margin-top: 45px;
  margin-left: 20px;
  transition: 500ms;
}
body main .content .format_textu .mapa_kontakt:hover {
  transform: scale(1.02);
  box-shadow: #d3d3d3 20px 20px 20px 0;
}
body main .content .format_textu .mapa_kontakt img {
  display: block;
  width: 100%;
  height: auto;
}
body main .content .format_textu #kontaktni_formular h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #126CC8;
}
body main .content .format_textu #kontaktni_formular p.poptavka_ok {
  background: #fedf00;
  padding: 10px;
  text-align: center;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 10px;
}
body main .content .format_textu #kontaktni_formular .grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
body main .content .format_textu #kontaktni_formular .grid_2 label {
  margin-bottom: 20px;
}
body main .content .format_textu #kontaktni_formular .grid_2 label p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .format_textu #kontaktni_formular .grid_2 label p strong {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #F00;
}
body main .content .format_textu #kontaktni_formular .grid_2 label input {
  display: block;
  width: 100%;
  border: none;
  padding: 20px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  background: #E7E7E7;
  outline: none;
}
body main .content .format_textu #kontaktni_formular .grid_1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
}
body main .content .format_textu #kontaktni_formular .grid_1 label {
  margin-bottom: 15px;
}
body main .content .format_textu #kontaktni_formular .grid_1 label p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .format_textu #kontaktni_formular .grid_1 label textarea {
  display: block;
  width: 100%;
  height: 127px;
  border: none;
  padding: 10px 20px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  background: #E7E7E7;
  outline: none;
  resize: none;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-gap: 55px;
  align-items: center;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta input {
  outline: none;
  margin: 0px;
  border: 1px solid #FFF;
  background: #126CC8;
  display: block;
  cursor: pointer;
  height: 62px;
  transition: 500ms;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #FFF;
  background-image: url("../img/arrow_big_toright_white_drop.svg");
  background-repeat: no-repeat;
  background-size: 8px;
  background-position-x: 167px;
  background-position-y: center;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta input:hover {
  background-color: #000;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta p a {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #000;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
body main .content .format_textu #kontaktni_formular .grid_sub_cta p a:hover {
  text-decoration: none;
}
body main .content .format_textu h1 {
  padding-top: 35px;
  padding-bottom: 10px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: initial;
  color: #000;
}
@media only screen and (max-width: 600px) {
  body main .content .format_textu h1 {
    padding-top: 25px;
    font-family: "Inter medium";
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: initial;
    color: #000;
  }
}
body main .content .format_textu h2 {
  padding-top: 20px;
  padding-bottom: 5px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu h2.podkategorie_nazev {
  padding-top: 60px;
  padding-bottom: 5px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: initial;
  color: #126CC8;
}
body main .content .format_textu h2.sluzby_nazev {
  padding-top: 60px;
  padding-bottom: 5px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: initial;
  color: #126CC8;
}
body main .content .format_textu h3 {
  padding-top: 15px;
  padding-bottom: 7px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu h4 {
  padding-top: 12px;
  padding-bottom: 5px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu h5 {
  padding-top: 5px;
  padding-bottom: 0px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu h6 {
  padding-top: 25px;
  padding-bottom: 0px;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu p {
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu p.velky {
  font-size: 24px;
  line-height: 32px;
}
body main .content .format_textu p.vyrazny {
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #FEDF00;
  padding: 24px 27px;
  border-radius: 6px;
}
body main .content .format_textu p.vyrazny a {
  color: #000;
}
body main .content .format_textu p.vyrazny2 {
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #007FC8;
  padding: 24px 27px;
  border-radius: 6px;
  color: white;
}
body main .content .format_textu p.vyrazny2 a {
  color: white;
}
body main .content .format_textu p.maly_1 {
  font-size: 11px;
  line-height: 14px;
  padding-top: 15px;
  padding-bottom: 5px;
}
body main .content .format_textu p.maly_2 {
  font-size: 13px;
  line-height: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.maly_3 {
  font-size: 14px;
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.velky_1 {
  font-size: 18px;
  line-height: 22px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.velky_2 {
  font-size: 20px;
  line-height: 26px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.velky_3 {
  font-size: 24px;
  line-height: 32px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.nejvetsi {
  font-size: 36px;
  line-height: 44px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body main .content .format_textu p.smaller_pozice {
  max-width: 768px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: initial;
  color: #000;
  padding-top: 0px;
  padding-bottom: 15px;
}
body main .content .format_textu span {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu span.zobrazit_obsah_dole {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #126CC8;
  text-decoration: underline;
  cursor: pointer;
}
body main .content .format_textu span.zobrazit_obsah_dole:hover {
  text-decoration: none;
}
body main .content .format_textu p b, body main .content .format_textu p strong, body main .content .format_textu span b, body main .content .format_textu span strong {
  font-family: "Inter bold";
}
body main .content .format_textu ul {
  margin-left: 0px;
  width: 100;
  margin-top: 15px;
  margin-bottom: 25px;
  list-style: none;
}
body main .content .format_textu ul li {
  position: relative;
}
body main .content .format_textu ul li b, body main .content .format_textu ul li strong {
  font-family: "Inter bold";
}
body main .content .format_textu ul li.no_li, body main .content .format_textu ul li.li_none {
  position: relative;
}
body main .content .format_textu ul li::before {
  content: "•";
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 18px;
}
body main .content .format_textu ul li.no_li::before, body main .content .format_textu ul li.li_none::before {
  display: none;
}
body main .content .format_textu ol {
  margin-bottom: 64px;
  margin-left: 20px;
  width: 100%;
  margin-top: 0px;
  text-align: left;
}
body main .content .format_textu a {
  color: #000;
  text-decoration: underline;
}
body main .content .format_textu a:hover {
  text-decoration: none;
}
body main .content .format_textu a.a_vyrazny {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #126CC8;
}
body main .content .format_textu a.a_nevyrazny {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu a.a_cta {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px;
  background: #126CC8;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  color: white;
  cursor: pointer;
  font-size: 100%;
  font-weight: bold;
}
body main .content .format_textu a.a_cta:hover {
  background-color: #000;
}
body main .content .format_textu a.a_cta2 {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px;
  background: #FEDF00;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  color: black;
  cursor: pointer;
  font-size: 100%;
  font-weight: bold;
}
body main .content .format_textu a.a_cta2:hover {
  background-color: #000;
  color: white;
}
body main .content .format_textu a.a_cta3 {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 20px;
  background: #000;
  border: solid 1px black;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  color: white;
  cursor: pointer;
  font-size: 100%;
  font-weight: bold;
}
body main .content .format_textu a.a_cta3:hover {
  background-color: #fff;
  color: black;
}
body main .content .format_textu table {
  margin-top: 15px;
  margin-bottom: 15px;
  border-spacing: 4px;
  max-width: 100%;
  width: 100%;
  border-collapse: collapse;
}
body main .content .format_textu table .obsah_table {
  width: calc(100% - 150px);
  float: left;
  text-align: left;
  padding-top: 20px;
}
body main .content .format_textu table tr td ul {
  margin-left: 0px;
  width: 100;
  margin-top: 15px;
  margin-bottom: 25px;
  list-style: none;
  text-align: left;
}
body main .content .format_textu table tr td ul li {
  position: relative;
}
body main .content .format_textu table tr td ul li b, body main .content .format_textu table tr td ul li strong {
  font-family: "Inter bold";
}
body main .content .format_textu table tr td ul li.no_li, body main .content .format_textu table tr td ul li.li_none {
  position: relative;
}
body main .content .format_textu table tr td ul li::before {
  content: "•";
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 18px;
}
body main .content .format_textu table tr td ul li.no_li::before, body main .content .format_textu table tr td ul li.li_none::before {
  display: none;
}
body main .content .format_textu table tr td ol {
  margin-top: 15px;
  margin-bottom: 25px;
  width: 100%;
  margin-left: 20px;
  text-align: left;
}
body main .content .format_textu table.table_svetla th {
  background-color: #ededed;
  padding: 7px 15px;
}
body main .content .format_textu table.table_svetla td {
  border: solid 1px #ededed;
  text-align: center;
  padding: 7px 15px;
  margin: 3px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu table.table_svetla td p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: initial;
  color: #000;
}
body main .content .format_textu table.table_svetla td h1, body main .content .format_textu table.table_svetla td h2, body main .content .format_textu table.table_svetla td h3, body main .content .format_textu table.table_svetla td h4, body main .content .format_textu table.table_svetla td h5, body main .content .format_textu table.table_svetla td h6 {
  padding: 0px;
}
body main .content .format_textu table.table_svetla td h2 {
  font-size: 18px;
  line-height: 36px;
}
body main .content .format_textu table.table_tmava th {
  background-color: #0c4c8c;
  padding: 7px 15px;
  color: white;
}
body main .content .format_textu table.table_tmava td {
  text-align: center;
  padding: 7px 15px;
  color: white;
  border-color: white;
  background-color: #126CC8;
  font-size: 100%;
}
body main .content .format_textu table.table_tmava td p, body main .content .format_textu table.table_tmava td span {
  color: #fff;
}
body main .content .format_textu table.table_tmava td p b, body main .content .format_textu table.table_tmava td p strong, body main .content .format_textu table.table_tmava td span b, body main .content .format_textu table.table_tmava td span strong {
  color: #fff;
}
body main .content .format_textu table.table_tmava td a {
  color: #fff;
}
body main .content .format_textu table.table_tmava td ul li, body main .content .format_textu table.table_tmava td ol li {
  color: #fff;
}
body main .content .format_textu table.table_tmava td h1, body main .content .format_textu table.table_tmava td h2, body main .content .format_textu table.table_tmava td h3, body main .content .format_textu table.table_tmava td h4, body main .content .format_textu table.table_tmava td h5, body main .content .format_textu table.table_tmava td h6 {
  color: #fff;
  padding: 0px;
}
body main .content .format_textu table.table_tmava td h2 {
  font-size: 18px;
  line-height: 36px;
}
body main .content .format_textu table td {
  border: solid 1px black;
  text-align: center;
  padding: 7px 15px;
  margin: 3px;
  font-size: 100%;
}
body main .content .format_textu table td img {
  max-width: 100%;
}
body main .content .format_textu img.img_vpravo {
  float: right;
  margin: 30px;
  margin-right: 0px;
  max-width: 100%;
  height: auto;
}
body main .content .format_textu img.img_vlevo {
  float: left;
  margin: 30px;
  margin-left: 0px;
  max-width: 100%;
  height: auto;
}
body main .content .format_textu img.img_100 {
  width: 100%;
  height: auto;
  display: block;
}
body main .content .format_textu input[type=submit], body main .content .format_textu input button {
  transition: 0.5s;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  border: none;
  cursor: pointer;
  font-size: 44%;
  width: 200px;
  height: 40px;
  margin-top: 35px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: initial;
  color: #fff;
}
body main .content .format_textu input[type=submit]:hover, body main .content .format_textu input button:hover {
  background-color: #424242;
}
body main .content .format_textu .galerie {
  margin-top: 64px;
}
body main .content .format_textu .galerie .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 21px;
  grid-row-gap: 13px;
}
@media (max-width: 500px) {
  body main .content .format_textu .galerie .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
body main .content .format_textu .galerie .wrap a {
  aspect-ratio: 1.66;
  border-radius: 0px;
  transition: 500ms;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}
body main .content .format_textu .galerie .wrap a .stin {
  border-radius: 0px;
  transition: 500ms;
}
body main .content .format_textu .galerie .wrap a:hover {
  transform: scale(1.1);
  box-shadow: 1px 1px 20px 0px gray;
}
body main .content .format_textu .galerie .wrap a.video:hover {
  transform: initial;
  box-shadow: initial;
}
body main .content .format_textu .galerie .wrap a.video:hover .stin {
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1300px) {
  body main .content .format_textu .galerie .wrap a.video span {
    width: 88px;
    height: 88px;
    top: calc(50% - 44px);
    left: calc(50% - 44px);
  }
}
@media (max-width: 700px) {
  body main .content .format_textu .galerie .wrap a.video span {
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
  }
}
body main .content .format_textu .galerie .wrap a img {
  display: none;
}
body main .content .format_textu .sjednani_schuzky {
  background-color: #FEDF00;
  width: 100%;
  max-width: 1368px;
  margin-top: 216px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 191px;
  align-items: center;
  padding: 24px 27px;
  border-radius: 6px;
}
@media only screen and (max-width: 980px) {
  body main .content .format_textu .sjednani_schuzky {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 580px) {
  body main .content .format_textu .sjednani_schuzky {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
body main .content .format_textu .sjednani_schuzky h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  padding: 0px;
}
body main .content .format_textu .sjednani_schuzky h2 strong {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 690px) {
  body main .content .format_textu .sjednani_schuzky h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
  body main .content .format_textu .sjednani_schuzky h2 strong {
    font-family: "Inter bold";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
}
body main .content .format_textu .sjednani_schuzky a {
  border-radius: 4px;
  background-color: #FFF;
  padding: 16px 20px 16px 16px;
  text-decoration: none;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #131416;
  transition: 500ms;
  text-decoration: none;
}
body main .content .format_textu .sjednani_schuzky a i {
  display: inline-block;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  background-image: url("../img/make_meeting.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-right: 10px;
  transition: 500ms;
}
body main .content .format_textu .sjednani_schuzky a:hover {
  background-color: #000;
  color: #fff;
}
body main .content .format_textu .sjednani_schuzky a:hover i {
  background-image: url("../img/make_meeting_white.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main .content .format_textu .sjednani_schuzky a {
    max-width: 191px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
body main .content .format_textu .nemame_kate {
  background-color: #FEDF00;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 20px;
  align-items: center;
  padding: 24px 27px;
  border-radius: 6px;
  grid-column: span 4;
}
@media only screen and (max-width: 580px) {
  body main .content .format_textu .nemame_kate {
    max-width: 191px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
body main .content .format_textu .nejsou_kategorie {
  background-color: #FEDF00;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 20px;
  align-items: center;
  padding: 24px 27px;
  border-radius: 6px;
}
body main .content .format_textu .top_category_content {
  max-width: 1098px;
  padding-top: 37px;
}
body main .content .format_textu .top_category_content h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: initial;
  color: #126CC8;
  padding-top: 30px;
  padding-bottom: 18px;
}
body main .content .format_textu .top_category_content h2.h2_kategorie {
  padding-top: 30px;
  padding-bottom: 8px;
}
body main .content .format_textu .top_category_content h2:first-child {
  padding-top: 0px;
}
body main .content .format_textu .top_category_content img.img_vpravo {
  margin-top: 0px;
}
@media only screen and (max-width: 580px) {
  body main .content .format_textu .top_category_content img.img_vpravo {
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
body main .content .format_textu .bottom_category_content {
  padding-top: 81px;
  max-width: 1098px;
}
body main .content .format_textu .bottom_category_content h3 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: initial;
  color: #000;
  padding-top: 0px;
  padding-bottom: 0px;
}
body main .content .sjednani_schuzky_podkategorie .sjednani_schuzky {
  margin-top: 60px;
}
body main .content .sjednani_schuzky {
  background-color: #FEDF00;
  width: 100%;
  max-width: 1368px;
  margin-top: 216px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 191px;
  align-items: center;
  padding: 24px 27px;
  border-radius: 6px;
}
@media only screen and (max-width: 980px) {
  body main .content .sjednani_schuzky {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 580px) {
  body main .content .sjednani_schuzky {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
body main .content .sjednani_schuzky h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  padding: 0px;
}
body main .content .sjednani_schuzky h2 strong {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 690px) {
  body main .content .sjednani_schuzky h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
  body main .content .sjednani_schuzky h2 strong {
    font-family: "Inter bold";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
}
body main .content .sjednani_schuzky a {
  border-radius: 4px;
  background-color: #FFF;
  padding: 16px 20px 16px 16px;
  text-decoration: none;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #131416;
  transition: 500ms;
  text-decoration: none;
}
body main .content .sjednani_schuzky a i {
  display: inline-block;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  background-image: url("../img/make_meeting.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-right: 10px;
  transition: 500ms;
}
body main .content .sjednani_schuzky a:hover {
  background-color: #000;
  color: #fff;
}
body main .content .sjednani_schuzky a:hover i {
  background-image: url("../img/make_meeting_white.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main .content .sjednani_schuzky a {
    max-width: 191px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
body main .content.margin_bottom {
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
body main .content.vypis_blogu h1 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 63px;
  letter-spacing: initial;
  color: #000;
}
body main .content.vypis_blogu .blog .wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 600px) {
  body main .content.vypis_blogu .blog .wrap {
    grid-template-columns: 1fr;
  }
}
body main .content.vypis_blogu .blog.mensi_odsazeni {
  padding-bottom: 0px;
}
body main .content.vypis_blogu .strankovani {
  text-align: center;
}
body main .content.vypis_blogu .strankovani a {
  display: inline-block;
  vertical-align: middle;
  background-color: #fedf00;
  padding: 6px 12px;
  border-radius: 4px;
  margin: 0px 10px;
  text-decoration: none;
  font-family: "Inter bold";
  transition: 500ms;
}
body main .content.vypis_blogu .strankovani a:hover, body main .content.vypis_blogu .strankovani a.active {
  background-color: #000;
  color: #fff;
}
body main .content.detail_clanku {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}
body main .content.detail_clanku .info_linka {
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-gap: 20px;
  align-items: center;
  border-bottom: solid 1px #ededed;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
body main .content.detail_clanku .format_textu .sdileni h2, body main .content.detail_clanku .format_textu .dalsi_clanky h2 {
  font-size: 20px;
  line-height: 30px;
}
body main .content.detail_clanku .format_textu .sdileni ul, body main .content.detail_clanku .format_textu .dalsi_clanky ul {
  margin-top: 0px;
}
body main .content.sirsi_obsah {
  max-width: 1368px;
}
body main .content.sirsi_obsah .format_textu {
  width: 100%;
}
body main .content.sirsi_obsah .format_textu .zarovnani {
  width: 100%;
}
@media only screen and (max-width: 580px) {
  body main .content.sirsi_obsah .format_textu .zarovnani {
    width: 94%;
  }
}
body main .content.sirsi_obsah .format_textu .zarovnani h1 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 25px;
  letter-spacing: initial;
  color: #000;
  padding-top: 38px;
}
body main .content.sirsi_obsah .format_textu .zarovnani h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: initial;
  color: #126CC8;
  padding-top: 37px;
}
body main .content.sirsi_obsah .format_textu .zarovnani h3 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: initial;
  color: #000;
}
body main .content.sirsi_obsah .format_textu .zarovnani p {
  max-width: 1100px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: initial;
  color: #000;
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky {
  margin-top: 60px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 980px) {
  body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 580px) {
  body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky {
    margin-top: 30px;
  }
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  padding: 0px;
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky h2 strong {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #131416;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 690px) {
  body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky h2 {
    font-family: "Inter medium";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
  body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky h2 strong {
    font-family: "Inter bold";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: #131416;
  }
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky a {
  border-radius: 4px;
  background-color: #FFF;
  padding: 16px 20px 16px 16px;
  text-decoration: none;
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #131416;
  transition: 500ms;
  text-decoration: none;
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky a i {
  display: inline-block;
  width: 25px;
  height: 24px;
  vertical-align: middle;
  background-image: url("../img/make_meeting.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  margin-right: 10px;
  transition: 500ms;
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky a:hover {
  background-color: #000;
  color: #fff;
}
body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky a:hover i {
  background-image: url("../img/make_meeting_white.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
@media only screen and (max-width: 580px) {
  body main .content.sirsi_obsah .format_textu .zarovnani .sjednani_schuzky a {
    max-width: 191px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
body footer {
  border-top: solid 1px #EFEFEF;
  padding-top: 40px;
  position: relative;
}
body footer #toUp {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../img/arrow_black_top.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  cursor: pointer;
  top: 43px;
  right: 55px;
  transition: 500ms;
}
body footer #toUp:hover {
  transform: translateY(-5px) scale(1.1);
}
@media only screen and (max-width: 1800px) {
  body footer #toUp {
    right: 10px;
  }
}
body footer .zarovnani {
  max-width: 1368px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 1500px) {
  body footer .zarovnani {
    width: calc(96% - 100px);
  }
}
body footer .zarovnani .top {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 258px;
  grid-gap: 40px;
}
@media only screen and (max-width: 1260px) {
  body footer .zarovnani .top {
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1180px) {
  body footer .zarovnani .top {
    grid-template-columns: 1fr 1fr 2fr;
  }
}
@media only screen and (max-width: 980px) {
  body footer .zarovnani .top {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 820px) {
  body footer .zarovnani .top {
    grid-template-columns: 220px 1fr;
  }
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top {
    display: block;
  }
}
body footer .zarovnani .top h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0px;
  color: #131416;
}
body footer .zarovnani .top ul {
  list-style: none;
  margin-top: 24px;
}
body footer .zarovnani .top ul li {
  margin-bottom: 12px;
}
body footer .zarovnani .top ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/drop_arrow_black.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  vertical-align: top;
  padding-top: 12px;
}
body footer .zarovnani .top ul li a {
  margin-left: 4px;
  display: inline-block;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18.2px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  width: calc(100% - 20px);
}
body footer .zarovnani .top ul li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1180px) {
  body footer .zarovnani .top .sloupec3 {
    padding-left: 60px;
  }
}
@media only screen and (max-width: 980px) {
  body footer .zarovnani .top .sloupec3 {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 820px) {
  body footer .zarovnani .top .sloupec3 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 1500px) {
  body footer .zarovnani .top .uls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 820px) {
  body footer .zarovnani .top .uls {
    grid-template-columns: 220px 1fr;
  }
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top .uls {
    display: block;
  }
}
body footer .zarovnani .top .uls ul {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top .uls ul {
    display: block;
  }
}
body footer .zarovnani .top .uls ul:nth-child(2) {
  margin-left: 90px;
}
@media only screen and (max-width: 1500px) {
  body footer .zarovnani .top .uls ul {
    display: block;
    width: 100%;
  }
  body footer .zarovnani .top .uls ul:nth-child(2) {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top .uls ul:nth-child(2) {
    margin-top: 0px;
  }
}
body footer .zarovnani .top .sloupec1 p {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #131416;
  padding-top: 16px;
}
body footer .zarovnani .top .sloupec1 p.ic strong, body footer .zarovnani .top .sloupec1 p.dic strong {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #131416;
}
body footer .zarovnani .top .sloupec1 p.dic {
  padding-top: 4px;
}
body footer .zarovnani .top .sloupec1 a {
  padding-top: 4px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #007FC8;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
body footer .zarovnani .top .sloupec1 a:hover {
  text-decoration: none;
}
body footer .zarovnani .top .sloupec1 a.kontaktni_formular {
  border-radius: 4px;
  background: #FEDF00;
  margin-top: 16px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px 10px 16px;
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19.3px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration: none;
  transition: 500ms;
}
body footer .zarovnani .top .sloupec1 a.kontaktni_formular:hover {
  background-color: #000;
  color: white;
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top .sloupec2, body footer .zarovnani .top .sloupec3 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 1180px) {
  body footer .zarovnani .top .sloupec4 {
    display: grid;
    grid-template-columns: 268px 268px;
    grid-gap: 20px;
    justify-content: center;
    grid-column: span 3;
  }
}
@media only screen and (max-width: 980px) {
  body footer .zarovnani .top .sloupec4 {
    grid-template-columns: 268px;
    grid-column: span 1;
    justify-content: end;
  }
}
@media only screen and (max-width: 820px) {
  body footer .zarovnani .top .sloupec4 {
    display: grid;
    grid-template-columns: 268px 268px;
    grid-gap: 20px;
    justify-content: center;
    grid-column: span 2;
  }
}
@media only screen and (max-width: 600px) {
  body footer .zarovnani .top .sloupec4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    justify-content: center;
    grid-column: span 2;
  }
}
@media only screen and (max-width: 540px) {
  body footer .zarovnani .top .sloupec4 {
    grid-template-columns: 1fr;
    grid-column: span 1;
    justify-content: center;
    padding-top: 30px;
  }
}
body footer .zarovnani .top .sloupec4 .info {
  border-radius: 6px;
  background: #EFEFEF;
  margin-bottom: 15px;
  padding: 16px;
}
body footer .zarovnani .top .sloupec4 .info a {
  text-decoration: none;
}
body footer .zarovnani .top .sloupec4 .info a h2 {
  font-family: "Inter medium";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20.8px;
  letter-spacing: 0px;
  color: #131416;
}
body footer .zarovnani .top .sloupec4 .info p {
  margin-top: 8px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #131416;
}
body footer .zarovnani .top .sloupec4 .info p a {
  white-space: nowrap;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #131416;
}
body footer .zarovnani .top .sloupec4 .info p a em {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #131416;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-right: 2px;
}
body footer .zarovnani .top .sloupec4 .info p a em:hover {
  text-decoration: none;
}
body footer .zarovnani .bottom {
  display: grid;
  grid-template-columns: 1fr 200px;
  padding-top: 16px;
  padding-bottom: 40px;
}
body footer .zarovnani .bottom .copy {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14.2px;
  letter-spacing: 0px;
  color: #7D7E7F;
}
body footer .zarovnani .bottom .developed {
  text-align: right;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14.2px;
  letter-spacing: 0px;
  color: #7D7E7F;
}
body footer .zarovnani .bottom .developed a {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14.2px;
  letter-spacing: 0px;
  color: #7D7E7F;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
body footer .zarovnani .bottom .developed a:hover {
  text-decoration: none;
}
body.podstrana header {
  padding-bottom: 9px;
  border-bottom: solid 10px #126CC8;
}
body.neodeslani_poptavky #logo {
  display: block;
  width: 100%;
  height: 96px;
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
}
body.neodeslani_poptavky main .content .format_textu h1 {
  text-align: center;
  width: 100%;
}
body.neodeslani_poptavky main .content .format_textu p {
  padding-top: 50px !important;
  display: block;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter bold" !important;
  color: #c12f2f !important;
  text-align: center;
}
body.neodeslani_poptavky main .content .format_textu .cta_zpet {
  display: block;
  width: 210px;
  height: 60px;
  background-color: #126CC8;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  margin-top: 40px;
  text-align: center;
  text-decoration: none;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 60px;
  letter-spacing: 0px;
  color: #FFF;
  background-image: url("../img/arrow_big_toright_white_drop.svg");
  background-repeat: no-repeat;
  background-size: 8px;
  background-position-x: 167px;
  background-position-y: center;
  transition: 500ms;
}
body.neodeslani_poptavky main .content .format_textu .cta_zpet:hover {
  background-color: #000;
}/*# sourceMappingURL=style.css.map */