/**
* Template Name: Petrkostejn
* Template URL: https://petrkostejn.cz/
* Author: https://freshmill.cz/
* License: https://freshmill.cz/ Fresh Mill studio
*/
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Work sans", sans-serif;
  color: #444444;
  background-color: #fcfcfc;
}

a {
  color: #0e4376;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "roboto", sans-serif;
}

/* SCROLLBAR */
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: #6cdc82;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f0fcf2;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #6cdc82;
  line-height: 0;
}
.back-to-top:hover {
  background: #19122e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header.header-scrolled {
  padding: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  width: 100%;
  height: auto;
}
h1.logo.me-auto {
  margin: 0;
  width: 125px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
a.button.fill-map.mobile svg {
    margin-right: 0;
}
@media only screen and (min-width: 990px) {
  #header span.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  #header span.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  #header span.mobile {
    display: block;
  }
}

.button.fill-map.mobile {
  padding: 15px 25px;
  margin-top: 7px;
}
a.button.fill-map.mobile svg {
    margin-right: 0;
}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  font-family: "Work sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #9c99a3;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #6cdc82;
  border-radius: 0px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e03a3c;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(0 0 0 / 52%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 250px;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #6cdc82;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e03a3c;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

@media only screen and (min-width: 990px) {
  ul.mobile-menu {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  ul.desktop-menu {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  ul.mobile-menu {
    display: block;
  }
}
/*--------------------------------------------------------------
# PETR KOSTEJN - UVOD
--------------------------------------------------------------*/
/* BANNER */

section.uvod-bg {
  padding-bottom: 0;
  padding-top: 0px;
  background-color: #19122e;
  margin: auto;
  margin-top: 150px;
  overflow: visible;
}

.container.uvod {
  position: relative;
}

@media (min-width: 1400px) {
  section.uvod-bg {
    width: 1320px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px){
  section.uvod-bg {
    width: 1140px;
  }
}

@media (min-width: 992px) and (max-width: 1199px){
  section.uvod-bg {
    width: 960px;
  }
}

@media (max-width: 991px){
  section.uvod-bg {
    margin-top: 0px
  }
}

.banner {
  height: 600px;
  position: relative;
}

.banner.desktop img {
  position: absolute;
  bottom: -72px;
  height: 120%;
  width: auto;
  z-index: 10;
  clip-path: polygon(10% 100%,25% 90%,100% 90%,100% 0%,0% 0%,0% 90%,10% 90%);
}

.banner.mobile img {
  position: absolute;
  bottom: -50px;
  height: 500px;
  width: auto;
  z-index: 10;
  clip-path: polygon(10% 100%,25% 90%,100% 90%,100% 0%,0% 0%,0% 90%,10% 90%);
}

@media (min-width: 396px) and (max-width: 425px){
  .banner.mobile img {
    bottom: -35px;
    height: 350px;
  }
}

@media (max-width: 396px){
  .banner.mobile img {
    height: 300px;
    bottom: -30px;
  }
}

@media (max-width: 320px){
  .banner.mobile img {
    height: 275px;
    bottom: -27px;
  }
}

.banner .right-side {
  padding-right: 190px;
  padding-top: 140px;
}

@media (min-width: 992px) and (max-width: 1199px){
  .banner .right-side {
    padding-left: 100px;
    padding-right: 10px;
    padding-top: 140px;
  }
}

.banner .right-side h1 {
  font-family: 'Work sans', sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 35px;
  line-height: 1.2;
}
.banner .right-side h1 strong {
  color: #6cdc82;
  font-weight: 500;
}
.banner .right-side p {
  font-family: 'Work sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}
.banner .right-side p strong {
  font-weight: 700;
}
@media only screen and (min-width: 990px) {
  .banner.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .banner.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  section.uvod-bg {
    padding-top: 40px;
  }
  .banner.mobile {
    display: block;
  }
  .banner.mobile {
    background-color: #19122e;
    padding: 45px;
    background-image: none;
    padding-top: 75px;
    height: 745px;
  }
  .banner.mobile .right-side {
    padding: 0;
  }
  .banner.mobile h1 {
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .banner.mobile p {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .banner.mobile img {
    /*width: 100%;*/
    margin: 0 auto;
  }
}
@media only screen and (max-width: 575px) {
  .banner.mobile h1 {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 425px) {
  .banner.mobile h1 {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .banner.mobile {
    height: 600px;
  }
}
@media only screen and (max-width: 320px) {
  .banner.mobile h1 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  .banner.mobile p {
    font-size: 12px;
  }
  .banner.mobile {
    height: 550px;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - SLUZBY
--------------------------------------------------------------*/
.sluzby-bg {
  background-color: #fcfcfc;
}
.sluzby .text h2 {
  font-family: 'Work sans', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #19122e;
  padding-bottom: 25px;
  padding-top: 60px;
}
.sluzby .text p {
  font-family: 'Work sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #9c99a3;
  padding-bottom: 35px;
}
.sluzby .box {
  background-color: #fff;
  padding: 45px 45px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.sluzby .box .ikonka {
  height: 80px;
}
.sluzby .box .ikonka img {
  width: 38%;
  height: 70px;
}
.sluzby .box h3 {
  font-family: 'Work sans', sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #19122e;
  height: 75px;
}
.sluzby .box p {
  font-family: 'Work sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #9c99a3;
  line-height: 1.6;
  height: 160px;
}
.sluzby .box a.button {
  margin: 20px;
  font-size: 15px;
}
.sluzby .box .arrow {
  font-family: 'Work sans', sans-serif;
  font-weight: 600;
  color: #9c99a3;
  margin: 1em 0;
}
.sluzby .box .arrow::after {
  display: inline-block;
  padding-left: 8px;
  content: "➞";
  transition: transform 0.3s ease-out;
}
.sluzby .box .arrow:hover {
  color: #0c5449;
}
.sluzby .box .arrow:hover::after {
  transform: translateX(4px);
}
.sluzby .box:hover {
  box-shadow: 0 0 29px 0 rgb(42 42 42 / 16%);
}
.sluzby .box:hover .arrow {
  color: #6cdc82;
}

@media only screen and (max-width: 1399px) {
  .sluzby .box h3 {
    font-size: 20px;
    height: 60px;
  }
  .sluzby .box p {
    font-size: 14px;
    line-height: 1.3;
    height: 100px;
  }
  .sluzby .box {
    padding: 20px 15px;
  }
  .sluzby .text h2 {
    font-size: 25px;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .sluzby .text p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .sluzby .box p {
    height: 130px;
  }
  .sluzby .text .button.fill {
    font-size: 14px;
    padding: 15px;
  }
}
@media only screen and (min-width: 990px) {
  .sluzby-bg.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .sluzby-bg.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .sluzby-bg.mobile {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .sluzby-bg.mobile .sluzby .box .ikonka img {
    position: relative;
    margin: 0 auto;
    width: 25%;
    object-fit: contain;
  }
  .sluzby-bg.mobile .sluzby .box {
    box-shadow: 0 0 29px 0 rgb(42 42 42 / 16%);
  }
  .sluzby-bg.mobile .sluzby .box h3 {
    font-size: 20px;
    padding-top: 15px;
  }
  .sluzby-bg.mobile .sluzby .box p {
    height: 80px;
  }
  .sluzby-bg.mobile .swiper-container2 {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 425px) {
  .sluzby-bg.mobile .sluzby .box p {
    height: 110px;
    font-weight: 400;
  }
  .sluzby-bg.mobile .sluzby .box h3 {
    font-size: 18px;
    padding-top: 15px;
    font-weight: 600;
    height: auto;
    padding-bottom: 18px;
  }
}
@media only screen and (max-width: 320px) {
  .sluzby-bg.mobile .sluzby .box p {
    height: 150px;
  }
}
/*--------------------------------------------------------------
# PETR KOSTEJN - NAPISTE MI
--------------------------------------------------------------*/
.napistemi .right-side {
  padding-top: 85px;
}
.napistemi .right-side h2 {
  font-family: 'Work sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #19122e;
  padding-bottom: 35px;
}
.napistemi .right-side h2 strong {
  font-weight: 700;
  color: #6cdc82;
}
.napistemi .right-side p {
  font-family: 'Work sans', sans-serif;
  font-size: 15px;
  color: #9c99a3;
  line-height: 1.6;
  margin-bottom: 45px;
}
.napistemi .left-side img.pomohu {
  width: 100%;
  height: 450px;
  object-fit: cover;
  position: relative;
  top: -80px;
}
.napistemi .left-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.napistemi .left-side .bublina1 {
  position: relative;
  width: 15%;
  right: 50px;
  top: 150px;
  z-index: 9;
}
.napistemi .left-side .bublina2 {
  position: relative;
  width: 15%;
  left: 380px;
  top: 400px;
  z-index: 9;
}
.button.fill {
  text-decoration: none;
  color: #fff;
  background-color: #6cdc82;
  font-family: "work sans";
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 15px 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
}
.button.fill:before, .button.fill:after {
  position: absolute;
  content: "";
  display: block;
}
.button.fill:before {
  top: -120px;
  left: 50px;
  z-index: -1;
  width: calc(100% + 140px);
  height: 100px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
  transform: skew(70deg);
  background: #19122e;
}
.button.fill:after {
  top: 0;
  left: 0;
  z-index: -2;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.button.fill:hover:before {
  left: -50px;
  top: -20px;
}
@media only screen and (max-width: 1199px) {
  .napistemi .right-side {
    padding-top: 30px;
  }
  .napistemi .right-side h2 {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .napistemi .right-side .button.fill {
    font-size: 14px;
    padding: 15px;
  }
}
@media only screen and (min-width: 990px) {
  .napistemi-bg.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .napistemi-bg.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .napistemi-bg.mobile {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .napistemi-bg.mobile {
    display: block;
    padding-top: 0;
  }
  .napistemi .right-side h2 {
    font-size: 30px;
  }
  .napistemi .right-side .button.fill {
    margin-bottom: 25px;
  }
  .napistemi .right-side p {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .napistemi-bg.mobile {
    display: block;
    padding-top: 0;
  }
  .napistemi .right-side h2 {
    font-size: 25px;
  }
  .napistemi .right-side .button.fill {
    margin-bottom: 10px;
  }
  .napistemi .right-side p {
    margin-bottom: 25px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  .napistemi .right-side h2 {
    font-size: 22px;
  }
  napistemi .right-side p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - O MNE
--------------------------------------------------------------*/
section.omne-bg {
  padding-bottom: 0;
}
.omne-bg {
  background-color: #fff;
}
.omne .left-side {
  padding-top: 50px;
}
.omne .left-side h2 {
  font-family: 'Work sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #19122e;
  padding-bottom: 35px;
}
.omne .left-side h2 strong {
  font-weight: 700;
  color: #6cdc82;
}
.omne .left-side p {
  font-family: 'Work sans', sans-serif;
  font-size: 15px;
  color: #19122e;
  line-height: 1.6;
}
.omne .left-side p strong {
  font-weight: 700;
  color: #19122e;
}
.omne .right-side img {
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .omne .left-side {
    padding-top: 0;
  }
  .omne .left-side h2 {
    padding-bottom: 20px;
  }
  .omne .left-side p {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .omne .left-side h2 {
    font-size: 25px;
    padding-bottom: 10px;
  }
  .omne .left-side p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .omne .left-side p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  .omne .left-side h2 {
    font-size: 22px;
  }
  .omne .left-side p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - PROC JA
--------------------------------------------------------------*/
section.procja-bg {
  padding-top: 80px;
}
.procja .box {
  text-align: center;
  padding: 35px 45px;
}
.procja .box .ikonka {
  height: 90px;
}
.procja .box .ikonka img {
  width:32%;
  height: 70px;
}
.procja .box h3 {
  font-family: 'Work sans', sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #19122e;
  height: 80px;
  width: 70%;
  position: relative;
  margin: 0 auto;
}
.procja .box p {
  font-family: 'Work sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #9c99a3;
  line-height: 1.6;
  height: 160px;
}
@media only screen and (max-width: 1440px) {
  .procja .box h3 {
    font-size: 19px;
    height: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .procja .box .ikonka {
    height: 60px;
  }
  .procja .box h3 {
    font-size: 17px;
    font-weight: 600;
    height: 70px;
  }
  .procja .box {
    padding: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .procja .box .ikonka {
    height: 70px;
  }
}
@media only screen and (min-width: 990px) {
  .procja-bg.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .procja-bg.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .procja-bg.mobile {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .procja-bg.mobile .swiper-slide {
    background-color: transparent;
    text-align: left;
  }
  .procja-bg.mobile .left-side h3 {
    font-family: 'work sans', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: #19122e;
    padding-top: 60px;
  }
  .procja-bg.mobile .right-side p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .procja-bg.mobile .right-side .ikonka img {
    width: 25%;
    padding-bottom: 15px;
    height: 60px;
    object-fit: contain;
  }
  .procja-bg.mobile .ikonka img {
    width: 25%;
  }
  .procja-bg.mobile .left-side {
    width: 50%;
  }
  .procja-bg.mobile .right-side {
    width: 50%;
  }
}
@media only screen and (max-width: 425px) {
  .procja-bg.mobile .left-side h3 {
    font-weight: 600;
  }
}
/*--------------------------------------------------------------
# PETR KOSTEJN - REFERENCE
--------------------------------------------------------------*/
.reference-bg {
  background-color: #fff;
}
.reference h2 {
  font-family: 'Work sans', sans-serif;
  color: #19122e;
  font-weight: 700;
  line-height: 1.6;
}
.reference .left-side {
  padding-top: 25px;
}
.reference .left-side img {
  width: 130%;
  height: auto;
  object-fit: cover;
}
/* TESTIMONIAL BOX */
.reference .swiper-slide{
  justify-content: left !important;
}
.reference .autor-recenze {
  text-align: left;
  padding-top: 25px;
}
.reference .autor-recenze h4 {
  font-family: 'Work sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #19122e;
}
.reference .autor-recenze p {
  font-family: 'Work sans', sans-serif;
  font-size: 15px;
  color: #9b99a2;
  font-weight: 500;
}

.recenze-box .swiper-slide {
  background-color: transparent;
  padding: 25px;
}
.recenze-box .text-recenze {
  padding: 25px;
  -webkit-box-shadow: 0px 0px 39px -27px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 39px -27px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 39px -27px rgba(0,0,0,0.75);
  background-color: #fff;
}
.recenze-box .text-recenze {
  position: relative;
  top: -80px;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background-color: #9c99a3 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6cdc82 !important;
}
.swiper {
        width: 100%;
        height: 100%;
}
.swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
}

.swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}

/*--------------------------------------------------------------
# PETR KOSTEJN - REFERENCE FACEBOOK
--------------------------------------------------------------*/
.fb-main {
  padding: 12px;
  border: 1px solid #dddfe2;
  font-size: 12px;
  line-height: 16px;
}
.fb-main .fb-person-img {
  width: 45px;
  object-fit: contain;
}
.text-recenze {
  text-align: left;
}
.fb-person {
  margin-right: 8px;
  float: left;
}
.fb-person-img {
  display: block;
}
.fb-icon {
  float: right;
}
.fb-icon-app {
  width: 24px;
  height: 24px;
  background-position: 0 0;
  background-image: url('https://zsf.cz/obrazek/2019/12/facebook-import.svg');
  background-size: auto;
  background-repeat: no-repeat;
  display: inline-block;
}
.fb-person-name-in {
  display: inline-block;
}
.fb-person-name-vert {
  vertical-align: middle;
  display: inline-block;
}
.fb-person-name-typo {
  font-weight: 600;
  font-size: 14px;
  margin-top:6px;
  line-height: 18px;
  letter-spacing: .15px;
}
.fb-person-name-typo a {
  cursor: pointer;
  color: #90949c;
  text-decoration: none;
}
.fb-person-name-typo a:hover {
  text-decoration:underline;
}
.fb-datum {
  color: #90949c;
  text-decoration:none;
}
.fb-message-style {
  margin-top: 6px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.38;
}
.fb-message-style p {
  margin: 6px 0;
}
abbr[title], dfn[title], acronym {
  border-bottom: none;
  cursor: pointer;
}
fb-abb {
  color: #90949c;
}
@media only screen and (max-width: 1120px) {
  .reference .left-side img {
  }
  .recenze-box .text-recenze {
    position: relative;
    top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .reference .left-side img {
    display: none;
  }
  .recenze-box .text-recenze {
    position: relative;
    top: 0;
  }
}
@media only screen and (min-width: 990px) {
  .reference .mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .reference .left-side img {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .reference .mobile {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .reference .mobile img {
    width: 100%;
  }
  .reference .mobile {
    position: relative;
    top: -340px;
    margin-bottom: -340px;
  }
}
@media only screen and (min-width: 990px) {
  .reference .reference-mobile .swiper-pagination {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .reference .swiper-pagination {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .reference .reference-mobile .swiper-pagination {
    display: flex;
    text-align: left;
    position: relative;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - BLOG
--------------------------------------------------------------*/
.blog-bg h2 {
  font-family: 'Work sans', sans-serif;
  color: #19122e;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 15px;
}
.blog-bg .tlacitko-blog {
  padding-top: 35px;
}
.blog-box {
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.blog-box:hover {
  background-color: #fff;
  box-shadow: 0 0 29px 0 rgb(42 42 42 / 16%);
}
.blog-box:hover h5 {
  color: #6cdc82;
}
.blog-box img {
  width: 100%;
  height: 250px;
  object-fit: cover
}
.blog-box .blog-info {
  padding: 25px;
}
.blog-box span.datum {
  font-family: 'work sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #19122e;
}
.blog-box h5 {
  font-family: 'work sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #19122e;
  padding-top: 10px;
  padding-bottom: 15px;
  height: 70px;
  line-height: 1.2;
}
.blog-box .blog-info p {
  font-family: 'Work sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #9c99a3;
  line-height: 1.5;
  margin-bottom: 35px;
}

.blog-box .blog-info a.button {
  font-size: 15px;
}
.blog-box .blog-info .arrow {
  font-family: 'Work sans', sans-serif;
  font-weight: 600;
  color: #9c99a3;
  margin: 1em 0;
}
.blog-box .blog-info .arrow::after {
  display: inline-block;
  padding-left: 8px;
  content: "➞";
  transition: transform 0.3s ease-out;
}
.blog-box .blog-info .arrow:hover::after {
  transform: translateX(4px);
}
.blog-box .blog-info:hover {
  box-shadow: 0 0 29px 0 rgb(42 42 42 / 16%);
}
.blog-box .blog-info:hover .arrow {
  color: #6cdc82;
}
@media only screen and (min-width: 990px) {
  .blog-bg.mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .blog-bg.desktop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .blog-bg.mobile {
    display: block;
  }
  .blog-bg.mobile .blog-nadpis h2 {
    text-align: left;
  }
  .blog-bg.mobile .tlacitko-blog {
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .blog-bg.mobile .swiper-slide {
    margin-top: 0;
    padding-top: 0;
  }
  .blog-bg.mobile .blog-box h5 {
    font-size: 18px;
  }
  .blog-bg.mobile .blog-box p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .blog-bg.mobile .blog-nadpis h2 {
    font-size: 22px;
  }
  .blog-bg.mobile .tlacitko-blog a {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - S KYM SPOLUPRACUJI
--------------------------------------------------------------*/
.spoluprace-bg {
  background-color: #19122e;
}
.spoluprace h2 {
  font-family: 'Work sans', sans-serif;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  right: 20px;
}
.spoluprace .hp-leva {
  background-color: #19122e;
  z-index: 9;
}
.spoluprace .swiper-slide {
  background-color: #f7f8fa;
}
@media only screen and (max-width: 1440px) {
  .spoluprace h2 {
    font-size: 25px;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .spoluprace h2 {
    display: none;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - KONTAKT
--------------------------------------------------------------*/
section.kontakt-bg {
  padding-bottom: 150px;
}
.kontakt-bg {
  background-color: #fff;
}
.kontakt .left-side h2 {
  font-family: 'Work sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #19122e;
  padding-bottom: 65px;
}
.kontakt .left-side p {
  font-family: 'Work sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #19122e;
  margin-bottom: 0;
  line-height: 1.6;
}
.kontakt .left-side a {
  color: #19122e;
}
.kontakt .left-side a:hover {
  color: #6cdc82;
  text-decoration: underline;
}
a.button.fill-map {
  color: #6cdc82;
}
a.button.fill-map svg {
  margin-right: 15px;
}
.button.fill-map {
  text-decoration: none;
  text-transform: uppercase;
  color: #6cdc82;
  background-color: #f0fcf2;
  font-family: "work sans";
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 15px 45px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
  margin-top: 11px;
}
a.button.fill-map:hover {
  text-decoration: none;
}
.button.fill-map:before, .button.fill-map:after {
  position: absolute;
  content: "";
  display: block;
}
.button.fill-map:before {
  top: -120px;
  left: 50px;
  z-index: -1;
  width: calc(100% + 140px);
  height: 100px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.2, 1);
  transform: skew(70deg);
  background: #19122e;
}
.button.fill-map:after {
  top: 0;
  left: 0;
  z-index: -2;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.button.fill-map:hover:before {
  left: -50px;
  top: -20px;
}
.kontakt .right-side h2 {
  font-family: 'Work sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #19122e;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  section.kontakt-bg {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .kontakt .left-side h2 {
    padding-bottom: 15px;
  }
  .kontakt .left-side p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
  }
  .kontakt .button.fill-map {
    padding: 15px 35px;
    font-size: 14px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .kontakt .left-side h2 {
    font-size: 28px;
  }
  .kontakt .right-side h2 {
    font-size: 28px;
    padding-bottom: 0;
    padding-top: 25px;
  }
}
@media only screen and (max-width: 425px) {
  .kontakt .left-side h2 {
    font-weight: 600;
    font-size: 25px;
    padding-bottom: 10px;
  }
  .kontakt .right-side h2 {
    font-weight: 600;
    font-size: 25px;
  }
}

/* FORMULAR */
p.ochrana-os {
  font-family: 'work sans', sans-serif;
  font-size: 14px;
  color: #9c99a3;
  line-height: 1.5;
  font-weight: 400;
  padding-top: 18px;
}
p.ochrana-os a {
  font-weight: 700;
  color: #9c99a3;
  text-decoration: underline;
}
p.ochrana-os a:hover {
  color: #6cdc82;
}
.buttonred {
  font-family: 'work sans', sans-serif;
  background-color: #19122e;
  border: none;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  clear: both;
  padding: 15px 30px;
  display: inline-block;
  transition: all 0.5s, color 0.3s 0.3s;
  cursor: pointer;
  color: #fff;
}
.buttonred:hover {
  background-color: #6cdc82;
}
.wpcf7 label {
  font-family: 'work sans', sans-serif;
  font-size: 14px;
  color: #9c99a3;
  padding-top: 25px;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
	border: 5px solid red;
	margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
	background-color: #f3f2f2;
	color: #333;
	font-size: 12px;
	padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
	border: 5px solid white;
	margin-top: -30px;
}

div.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 1em;
    font-size: 14px;
}
.wpcf7-form-control.wpcf7-text {
    border: 2px solid #c8c6cd;
    background-color: #ffffff;
    height: 60px;
    font-family: 'Work sans', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 2px;
}
.wpcf7-form-control {
    margin-top: 15px;
}
.wpcf7-form-control.wpcf7-textarea {
    border: 2px solid #c8c6cd;
    background-color: #ffffff;
    height: 180px;
    font-family: 'Work sans', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 2px;
}
.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
    border: 2px solid #c8c6cd;
    background-color: #ffffff;
    height: 60px;
    font-family: 'Work sans', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 2px;
}
.wpcf7 :focus {
	color: #19122e;
	background-color: #c8c6cd !important;
	outline:0;
  border: none;
}

.wpcf7-form-control.wpcf7-number {
    border: 2px solid #c8c6cd;
    background-color: #ffffff;
    height: 60px;
    font-family: 'Work sans', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    margin-top: 15px;
}
.wpcf7-form-control-wrap.yourmessage:before {
  width: 0rem !important;
  position: relative;
}
.wpcf7-form-control-wrap.your-name:before {
  width: 0rem !important;
  position: relative;
}
.wpcf7-form-control-wrap.last-name:before {
  width: 0rem !important;
}
.wpcf7-form-control-wrap.phone-number:before {
  width: 0rem !important;
}
.wpcf7-form-control-wrap.youremail:before {
  width: 0rem !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #ca0e0eb3;
    border: 2px solid #ca0e0e;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #fff;
    font-family: 'Work sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color: #19122e !important;
    opacity: 1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #19122e !important;
    opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #19122e !important;
    opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #19122e !important;
    opacity: 1;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #6cdc82;
  padding: 20px;
  margin: 25px 0;
  border: #9c99a3
  font-family: 'work sans', sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-color: #6cdc82;
}

/*--------------------------------------------------------------
# PETR KOSTEJN - FOOTER
--------------------------------------------------------------*/
footer {
  background-color: #f9f9fa;
  padding-top: 35px;
  padding-bottom: 0px;
}
.paticka .copy img {
  width: 15%;
  position: relative;
  top: -15px;
}
.paticka .author p {
  font-family: 'Work sans', sans-serif;
  font-size: 14px;
  color: #9c99a3;
  font-weight: 500;
  text-align: right;
}
.paticka .author p a {
  font-weight: 600;
  color: #9c99a3;
  border-bottom: 2px solid #9c99a3;
}
.paticka .author p a:hover {
  color: #6cdc82;
  border-color: #6cdc82;
}
@media only screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
  .paticka .author p {
    text-align: center;
    padding-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .paticka .author p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .paticka .author p {
    font-weight: 300;
  }
}
@media only screen and (max-width: 425px) {
  .paticka .author p {
    font-weight: 300;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - POPUP
--------------------------------------------------------------*/
.modal-content {
  background-color: #fcfcfc;
  padding: 25px;
  text-align: center;
}
.modal-content h4.modal-title {
  font-family: 'work sans', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #19122e;
}
button.close {
  background-color: #6cdc82;
  border: none;
  color: #fff;
  padding: 13px 20px;
}
button.close:hover {
  background-color: #19122e;
}
.modal-dialog.modal-lg {
  padding: 0;
}

/*--------------------------------------------------------------
# PETR KOSTEJN - ERROR 404
--------------------------------------------------------------*/
.error-bg {
  padding-top: 220px;
  padding-bottom: 220px;
}
.error h1 {
  font-family: 'Work sans', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #19122e;
  padding-bottom: 50px;
}
.error h3 {
  font-family: 'Work sans', sans-serif;
  font-size: 35px;
  color: #6cdc82;
  font-weight: 800;
  padding-bottom: 15px;
}
.error p {
  font-family: 'work sans', sans-serif;
  font-size: 20px;
  color: #9c99a3;
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
  .error h1 {
    font-size: 100px;
  }
  .error h3 {
    font-size: 30px;
  }
  .error p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .error-bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .error h1 {
    font-size: 70px;
  }
  .error h3 {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# PETR KOSTEJN - DETAIL CLANKU
--------------------------------------------------------------*/
/* BREADCRUMBS */
.breadcrumbs-bg {
  background-color: #19122e;
}
.breadcrumbs h1 {
  font-family: 'work sans', sans-serif;
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  padding-top: 45px;
  padding-bottom: 15px;
  line-height: 1.3;
}
.breadcrumbs span.datum {
  font-family: 'work sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #6cdc82;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs h1 {
    font-size: 30px;
  }
  .breadcrumbs span.datum {
    font-size: 15px;
  }
  section.breadcrumbs-bg {
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbs h1 {
    font-size: 27px;
    padding-bottom: 10px;
  }
  section.breadcrumbs-bg {
    padding-top: 20px;
  }
  .breadcrumbs span.datum {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .breadcrumbs h1 {
    font-size: 20px;
    padding-bottom: 0;
  }
  .breadcrumbs span.datum {
    font-weight: 500;
    font-size: 13px;
  }
}

/* OBSAH CLANKU */
.detail-clanku {
  background-color: #fff;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog-text img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-text p {
    font-family: 'work sans', sans-serif;
    font-size: 17px;
    color: #9c99a3;
    font-weight: 500;
    line-height: 1.8;
}
.blog-text ul {
    font-family: 'work sans', sans-serif;
    font-size: 17px;
    color: #9c99a3;
    font-weight: 500;
    line-height: 1.8;
}
.blog-text strong {
  font-weight: 800;
}
.blog-text a {
  color: #9c99a3;
  font-weight: 600;
  text-decoration: underline;
}
.blog-text a:hover {
  color: #6cdc82;
  text-decoration: none;
}
.blog-text h1 {
  font-family: 'work sans', sans-serif;
  font-size: 35px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
.blog-text h2 {
  font-family: 'work sans', sans-serif;
  font-size: 30px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
.blog-text h3 {
  font-family: 'work sans', sans-serif;
  font-size: 25px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
.blog-text h4 {
  font-family: 'work sans', sans-serif;
  font-size: 22px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
.blog-text h5 {
  font-family: 'work sans', sans-serif;
  font-size: 20px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
.blog-text h4 {
  font-family: 'work sans', sans-serif;
  font-size: 18px;
  color: #19122e;
  font-weight: 700;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .detail-clanku {
    padding: 25px;
  }
  .detail-clanku img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .detail-clanku p {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
  }
  .detail-clanku h1 {
    font-size: 25px;
  }
  .detail-clanku h3 {
    font-size: 22px;
  }
  .detail-clanku h3 {
    font-size: 20px;
  }
  .detail-clanku h4 {
    font-size: 18px;
  }
  .detail-clanku h5 {
    font-size: 16px;
  }
  .detail-clanku h6 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  @media (min-width: 576px) {
  .container.detail-clanku, .container-sm {
    max-width: 100%;
  }
  .wp-block-cover .wp-block-cover__inner-container p  {
    font-size: 22px !important;
    font-weight: 300;
  }
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 25px;
  }
}
}
@media only screen and (max-width: 425px) {
  .detail-clanku {
    padding: 25px;
  }
  .detail-clanku img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .detail-clanku p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
  }
  .detail-clanku h1 {
    font-size: 24px;
  }
  .detail-clanku h3 {
    font-size: 21px;
  }
  .detail-clanku h3 {
    font-size: 19px;
  }
  .detail-clanku h4 {
    font-size: 17px;
  }
  .detail-clanku h5 {
    font-size: 15px;
  }
  .detail-clanku h6 {
    font-size: 13px;
  }
}
@media only screen and (max-width: 425px) {
  .wp-block-cover .wp-block-cover__inner-container p  {
    font-size: 18px !important;
    font-weight: 300;
  }
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 25px;
  }
}


/* AUTOR */
.detail-clanku-bg .author {
  background-color: #f0fcf2;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 100px;
  padding-right: 100px;
}
.detail-clanku-bg .author h3 {
  font-family: 'work sans', sans-serif;
  font-size: 25px;
  color: #19122e;
  font-weight: 600;
  padding-bottom: 15px;
}
.detail-clanku-bg .author p {
  font-family: 'work sans', sans-serif;
  font-size: 16px;
  color: #19122e;
  line-height: 1.2;
}
.detail-clanku-bg .author img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}
section.prejit-zpet-bg {
  padding-top: 0;
}
@media only screen and (max-width: 1024px) {
  .author-description h3 {
    font-size: 21px;
  }
  .author-description {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .author-description {
    text-align: center;
  }
  .author-description h3 {
    font-size: 15px;
    padding-bottom: 0;
    padding-top: 15px;
  }
  .author-description {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 425px) {
  .author-description h3 {
    font-size: 14px;
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------
# PETR KOSTEJN - VYPIS CLANKU - BLOG
--------------------------------------------------------------*/
.vypis-clanku-bg .blog-box {
  margin-bottom: 20px;
}
/* STRANKOVANI */
span.page-numbers.current {
  background-color: #9c99a3;
  padding: 15px 25px;
  border-radius: 5px;
  color: #fff;
  font-family: 'work sans', sans-serif;
  font-weight: 700;
  margin: 5px;
}
a.page-numbers {
  background-color: #c4f1cc;
  padding: 15px 25px;
  border-radius: 5px;
  color: #0e4276 !important;
  font-family: 'work sans', sans-serif;
  font-weight: 700;
  margin: 5px;
}
.pagination a.page-numbers:hover {
  background-color: #6cdc82;
  color: #fff;
}
.pagination a.next.page-numbers {
  display: none;
}
.pagination a.prev.page-numbers {
  display: none;
}

/*--------------------------------------------------------------
# PETR KOSTEJN - LOGIN
--------------------------------------------------------------*/
body.login {
  background-color: #19122e;
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-position:center;
}
#login h1 a {
  background-image: url("/wp-content/uploads/2021/10/LOGOTYP_V_CERNA.svg");
  background-size: 160px;
  width: auto;
}
.login form{
  box-shadow:none;
  padding:20px;
}
#login {
  background: #FFF;
  margin: 120px auto;
  padding: 40px 20px;
  width: 400px;
}
.login label {
  font-family: 'work sans', sans-serif;
  font-weight: 700;
  color: #9c99a3;
  font-size: 14px;
}
.login form .forgetmenot{
  float:none;
}
#login form p.submit{
  margin-top:15px;
}
.login.wp-core-ui .button-primary {
  background: #6cdc82;
  border-color:#6cdc82;
  box-shadow: 0 1px 0 #6cdc82;
  color: #fff;
  text-shadow: none;
  float: none;
  clear: both;
  display: block;
  width: 100%;
  padding: 7px;
  height: auto;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.login.wp-core-ui .button-primary:hover {
  background: #19122e;
  border-color:#19122e;
  box-shadow: 0 1px 0 #19122e;
  color: #fff;
  transition: 1s;
}
.login form {
    border: none;
}
.login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: #b6ebc0;
}
.login form .input, .login input[type=password], .login input[type=text] {
    font-size: 24px;
    line-height: 1.33333333;
    width: 100%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    border: 2px solid #19122e;
    border-radius: 3px;
}
p#backtoblog {
  display: none;
}
.privacy-policy-page-link a {
    font-family: 'work sans', sans-serif;
    font-size: 16px;
    color: #9c99a3;
    font-weight: 400;
}
.login #nav a {
  font-family: 'work sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #6cdc82;
}
.login #nav a:hover {
  color: #19122e;
}


/*--------------------------------------------------------------
# PETR KOSTEJN - OSTATNI PRVKY NA WEBU
--------------------------------------------------------------*/
table.has-fixed-layout {
 border: 2px solid #19122e;
}
table.has-fixed-layout th {
  background-color: #19122e;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 15px;
  color: #fff;
  font-family: 'work sans', sans-serif;
  text-transform: uppercase;
  font-size: 17px;
}
table.has-fixed-layout td {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  font-family: 'work sans', sans-serif;
  font-size: 16px;
  color: #19122e;
  border: 1px solid #19122e;
}
figcaption {
  font-family: 'work sans', sans-serif;
  font-size: 15px;
  background-color: #81e094;
  padding: 15px;
  line-height: 1.5;
}


/* RECAPTCHA */
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}

.grecaptcha-badge:hover {
width: 256px !important;
}


.clickable {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Social Icons - Header
--------------------------------------------------------------*/
.pk-social-header {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.pk-social-header ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.pk-social-header ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.pk-social-header ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
    border-radius: 50%;
}

/*--------------------------------------------------------------
# Social Icons - Kontakt
--------------------------------------------------------------*/
.pk-social-kontakt {
    margin: 15px 0;
}

.pk-social-kontakt ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.pk-social-kontakt ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.pk-social-kontakt ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    border-radius: 50%;
}
