/**
* Template Name: Bitservis
* Template URL: https://www.bitservis.cz/
* Updated: 14.8.2024
* Author: Fresh Mill studio
* License: https://freshmill.cz
*/




/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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&family=Readex+Pro:wght@160..700&display=swap');

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Readex Pro', sans-serif;
}
p {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.hlavicka {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header {
  background-color: #fff;
  color: #000;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.5s;
  z-index: 997;
  -webkit-box-shadow: 0px 0px 17px -14px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 17px -14px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 17px -14px rgba(0,0,0,0.75); 
  margin: 35px 100px;
  border-radius: 80px;
  padding: 5px 15px;
  transition: top 1s;
  top: 0;
}
.header .logotyp img {
  width: auto;
  height: 25px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 777px) {
  .header {
    margin: 35px 5px;
  }  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
nav {
  width: 100%;
  top: 50px;
  text-align: center;
}
nav a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 15px;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);  
}
nav a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  top: 50%;
  animation: out 0.2s cubic-bezier(1, 0, 0.28, 0.5) 1 both;
}
nav a:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}

nav a:hover:before {
  animation: in 0.2s cubic-bezier(1, 0, 0.28, 0.5) 1 both;
}

@keyframes in {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  100% {
    left: 0;
    right: auto;
    width: 100%;
  }
}
@keyframes out {
  0% {
    width: 100%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0;
    left: auto;
    right: 0;
  }
}
@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 15px;
    font-size: 15px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: #fff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: #fff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}



.hlavicka .other {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* POPUP CT */
button.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #000;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  font-family: 'Readex Pro', sans-serif;
  font-size: 13px;
  color: #000;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

/* HAMBURGER */
.hamburger-icon {
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  background: #000;
  margin-right: 15px;
}

.hamburger-icon div {
  width: 50%;
  height: 3px;
  background-color: #fff; /* Výchozí barva je bílá */
  margin: 5px 0;
  transition: all 0.3s ease;
  position: relative;
  top: 20%;
  left: 25%;
}

.hamburger-icon.white div {
  background-color: white; /* Barva po kliknutí - bílá */
}

/* Po kliknutí na hamburger - změní se na křížek a barva se změní na bílou */
.hamburger-icon.a div,
.hamburger-icon.b div,
.hamburger-icon.c div {
  background-color: white; /* Po kliknutí se barva změní na bílou */
}

.a {
  transform: rotate(45deg) translate(5px, 5px);
}

.b {
  transform: rotate(-45deg) translate(6px, -6px);
}

.c {
  opacity: 0;
}

.menu-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background-color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s ease-in-out;
  z-index: 99;
  overflow: hidden;
}
.menu-overlay.active {
  transform: translate(-50%, -50%) scale(10);
}
.menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease 0.7s;
}
.menu-overlay.active .menu {
  opacity: 1;
}
.hammenu {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.15);
  transition: transform 0.7s ease-in-out;
}
.hammenu .left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding-right: 150px;
}
.hammenu .left .sluzbyover {
  text-align: left;
  line-height: 2.1;
}
.hammenu .left .sluzbyover h4 {
  font-size: 13px;
  font-weight: 800;
  color: #969696;
}
.hammenu .left .sluzbyover a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.hammenu .right {
  border-left: 1px solid #1b1b1b;
  padding-left: 50px;
  text-align: left;
}
.hammenu .right .social {
  line-height: 2.2;
}
.hammenu .right .social span {
  font-family: 'Readex Pro', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #969696;
}
.socialicon svg {
  display: block;
  border: 1px solid #fff;
  background-color: #000;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: relative;
  text-align: center;
  padding: 15px;
}
.socialicon svg {
  color: #fff;
  font-size: 10px;
}
.socialicon svg a {
    margin: 0;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 1, 0.8, 1);
}
.socialicon a {
    color: #fff;
    margin: 0;
}
.socialicon svg:hover {
  background-color: #fff;
}
.socialicon svg:hover {
  color: #000;
}
.hammenu .right .email {
  line-height: 1.2;
}
.hammenu .right .email span {
  font-family: 'Readex Pro', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #969696;
}
.hammenu .right .email a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.hammenu .right .social, .hammenu .right .email {
  font-family: 'Readex Pro', sans-serif;
  color: #fff;
  font-size: 25px;
}
.menu ul {
  list-style-type: none;
  padding: 0;
}
.menu ul li {
  margin: 0;
  height: 10px;
}

.menu ul li a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s, transform 0.7s ease-in-out;
  transform: scale(0.15); /* Initial scale */
}

.menu-overlay.active .menu ul li a {
  transform: scale(1); /* Scale to normal size when active */
}
@media only screen and (max-width: 850px) {
  .hammenu .left {
    padding-right: 25px;
  }
  .hammenu .left .sluzbyover a {
    font-size: 16px;
  }
  .hammenu .left .sluzbyover h4 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 610px) {
  .hammenu .left {
    padding-right: 25px;
  }
  .hammenu .right {
    padding-left: 25px;
  }
  .hammenu .left .sluzbyover a {
    font-size: 14px;
  }
  .hammenu .left .sluzbyover h4 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 525px) {
  .hammenu .left {
    padding-right: 10px;
  }
  .hammenu .right {
    padding-left: 10px;
  }
  .hammenu .left .sluzbyover a {
    font-size: 13px;
  }
  .socialicon svg {
    width: 12px;
    height: 12px;
  }
  .hammenu .right .email a {
    font-size: 11px;
  }
}
@media only screen and (max-width: 520px) {
  button.learn-more .button-text {
    font-size: 12px;
    margin-top: 0;
  }
  .header .logotyp img {
    height: 20px;
  }
  button.learn-more .circle {
    height: 2.5rem;    
  }
  span.circle {
    height: 2.5rem;  
  }
  .hamburger-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hamburger-icon div {
    margin: 4px 0;
  }
}
@media only screen and (max-width: 425px) {
  .popupct .learn-more .button-text {
    display: none; 
  }
  button.learn-more {
    width: 3rem;
  }
  .hammenu .left .sluzbyover a {
    font-size: 11px
  }
  .socialicon svg {
    width: 10px;
    height: 10px;
    padding: 8px;
  }
  .hammenu .right .email a {
    font-size: 10px;
    font-weight: 400;
  }
  .hammenu .right .social span {
    font-size: 8px;
  }
  .hammenu .right .email span {
    font-size: 8px;
  }
  .hammenu .left .sluzbyover h4 {
    font-size: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .header .logotyp img {
    height: 15px;
  }
  .hammenu {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
  }
  .hammenu .right {
    padding-left: 0;
    border-left: 0;
  }
  .hammenu .left .sluzbyover {
    display: flex;
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
/* WHITE CTA */
.button span.arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
}
.button span.arrow svg {
  color: #000;
  opacity: 1;
}
.button {
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #000;
  background: #fff;
  padding: 25px 120px 25px 50px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: flex;
}
.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button--telesto {
  overflow: hidden;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.button--telesto span {
  display: block;
  position: relative;
  z-index: 1;
}
.button--telesto > span {
  overflow: hidden;
  mix-blend-mode: difference;
}
.button--telesto:hover > span > span {
  animation: MoveRightInitial 0.5s forwards, MoveRightEnd 0.3s forwards 0.5s;
}
@keyframes MoveRightInitial {
  to {
    transform: translate3d(105%, 0, 0);
  }
}
@keyframes MoveRightEnd {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.button--telesto::before,
.button--telesto::after {
  content: "";
  background: #000;
}
.button--telesto::before {
  width: 135%;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
  transform: translate3d(-100%, 0, 0);
}
.button--telesto:hover::before {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto::after {
  width: 105%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telesto:hover::after {
  transform: translate3d(0, 0, 0);
  transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

/* BLACK CTA */
.buttonwh span.arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
}
.buttonwh span.arrow svg {
  color: #000;
  opacity: 1;
}
.buttonwh {
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #fff;
  background: #000;
  padding: 25px 120px 25px 50px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: flex;
}
.buttonwh::before,
.buttonwh::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button--telestowhite {
  overflow: hidden;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.button--telestowhite span {
  overflow: hidden;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;  
  display: block;
  position: relative;
  z-index: 1;
}
.button--telestowhite > span {
  overflow: hidden;
  mix-blend-mode: difference;
}
.button--telestowhite:hover > span > span {
  animation: MoveRightInitial 0.5s forwards, MoveRightEnd 0.3s forwards 0.5s;
}
@keyframes MoveRightInitial {
  to {
    transform: translate3d(105%, 0, 0);
  }
}
@keyframes MoveRightEnd {
  from {
    transform: translate3d(-100%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.button--telestowhite::before,
.button--telestowhite::after {
  content: "";
  background: #fff;
}
.button--telestowhite::before {
  width: 135%;
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
  transform: translate3d(-100%, 0, 0);
}
.button--telestowhite:hover::before {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telestowhite::after {
  width: 105%;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.button--telestowhite:hover::after {
  transform: translate3d(0, 0, 0);
  transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.tlacitko {
  margin-top: 40px;
}
.tlacitko {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .tlacitko {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .tlacitko {
    margin-top: 20px;
  }
  .button {
    font-size: 15px;
    padding: 22px 120px 22px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .tlacitko {
    margin-top: 15px;
  }
  .buttonwh {
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #fff;
  background: #000;
  padding: 20px 120px 20px 50px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: flex;
  }
  .button--telestowhite span {
    font-size: 13px;
  }
  .button--telesto {
    padding: 20px 120px 20px 50px;
  }
  .button--telesto span {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# KURZOR
--------------------------------------------------------------*/
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 997;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
}
.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgb(89 89 89 / 30%);
}
@media only screen and (max-width: 575px) {
  .cursor-dot {
    display: none;
  }
  .cursor-dot-outline {
    display: none;
  }
}
/*--------------------------------------------------------------
# ELEMENTS
--------------------------------------------------------------*/
/* BLACK */
.smalltitle {
  font-size: 15px;
  line-height: calc(5px + 25px);
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #acacac;
  position: relative;
  margin-bottom: 15px;
}
.smalltitle::after {
  content: '';
  position: absolute;
  left: -112px;
  top: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: #acacac;
  margin: auto;
}
.title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1345px) {
  .smalltitle::after {
    width: 40px;
    left: -50px;
  }  
}
@media only screen and (max-width: 1199px) {
  .title h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .title h2 {
    font-size: 30px;
  }
  .smalltitle {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 625px) {
  .smalltitle::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .title h2 {
    font-size: 28px;
  }
  .smalltitle {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .title h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 425px) {
  .title h2 {
    font-size: 20px;
  }
}

/* WHITE */
.title.white .smalltitle {
  font-size: 15px;
  line-height: calc(5px + 25px);
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #acacac;
  position: relative;
  margin-bottom: 15px;
}
.title.white .smalltitle::after {
  content: '';
  position: absolute;
  left: -112px;
  top: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: #acacac;
  margin: auto;
}
.title.white h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1345px) {
  .title.white .smalltitle::after {
    width: 40px;
    left: -50px;
  }  
}
@media only screen and (max-width: 1199px) {
  .title.white h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .title.white h2 {
    font-size: 30px;
  }
  .title.white .smalltitle {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .title.white h2 {
    font-size: 28px;
  }
  .title.white .smalltitle {
    font-size: 14px;
  }
}
@media only screen and (max-width: 625px) {
  .title.white .smalltitle::after {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .title.white h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 425px) {
  .title.white h2 {
    font-size: 20px;
  }
}

/* SECTION */
section {
  padding-top: 120px;
  padding-bottom: 120px;
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* BANNER */
section.bann-bg {
  padding-bottom: 0;
  padding-top: 0;
}
.bann .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding-left: 200px;
}
.bann .left-side .item-desc {
  height: 100vh;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
}
.bann .left-side h1 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  line-height: 1.5;
}
.bann .left-side h1 span {
  color: #5d5d5d;
}
.bitlogo {
  padding-top: 150px;
}
.bann .left-side .bitlogo img {
  width: auto;
  height: 35px;
  object-fit: contain;
  margin-bottom: 25px;
}
.bg-our-story {
  background-size: 33%;
  min-height: 100vh;
  background-color: #202020;
  background-repeat: repeat;
}
@media only screen and (max-width: 575px) {
  .bg-our-story {
    display: none;
  }
}

/* ARROW SRCOLL */
.banndesc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}
.banndesc p {
  width: 70%;
}
.banndesc p img {
  width: auto;
  height: 30px;
  object-fit: contain;
}
section.otherarclanky-bg {
background-color: #000;
}
.btn-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: moveUpDown 2s infinite ease-in-out;
}
.btn-circle:hover {
  background: rgb(0 0 0 / 11%);
}
.btn-circle:hover svg {
  color: black;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media only screen and (max-width: 1399px) {
  .bann .left-side h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .bann .left-side h1 {
    font-size: 40px;
  }
  .bann .left-side {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .bann .left-side h1 {
    font-size: 35px;
  }  
}
@media only screen and (max-width: 767px) {
  .bann .left-side h1 {
    font-size: 25px;
  }  
  .banndesc p {
    width: 80%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-our-story {
    background-size: cover;
    min-height: 150px;
  } 
}

/* KLIENTI */
section.klient-bg {
  background-color: #000;
}
.klient {
  padding-bottom: 80px;
}
.slick-slide img {
  background-color: #ffffff;
  width:  100%;
  height: 194px;
  object-fit: contain;
  padding: 40px;
  filter: grayscale(100%);
}
.slick-slide img:hover {
  filter: grayscale(0%);
}
button.slick-next.slick-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -100px;
}
button.slick-next.slick-arrow svg {
  color: #fff;
  font-size: 20px;
}
.slick-next:before {
    content: none !important;
}
.logo-slider .slick-slide {
  padding: 0 10px;
}
.logo-slider {
  margin: 0 -10px;
}
@media only screen and (max-width: 1199px) {
  section.klient-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .slick-slide img {
    height: 120px;
    padding: 10px;
  }
  .klient {
    padding-bottom: 35px;
  }
  button.slick-next.slick-arrow {
    display: none !important;
  }
}

/* HODNOTY */
section.vyhody-bg {
  background-color: #e6e6e6;
}
.text-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 180px;
  margin-bottom: 180px;
}
.text-block .text-content {
  margin-left: 35px;
}
.text-block .text-content h3 {
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 15px;
}
.text-block .text-content p {
  font-size: 18px;
  font-weight: 400;
}
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #e6e6e6;
  font-family: 'Readex Pro', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  flex-shrink: 0;
}
.text-content {
  max-width: 90%;
}
.vyhody-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, rgb(0 0 0), rgba(0,0,0,0));
  padding: 100px 0; /* Zvýšený padding pro více prostoru */
}

.text-block {
  opacity: 0;
  transform: translateY(150px); /* Zvýšený vertikální posun pro výraznější efekt */
  transition: opacity 0.8s ease, transform 0.8s ease; /* Zpomalení animace pro větší plynulost */
  color: black; /* Výchozí barva textu je černá */
}

.text-block.show {
  opacity: 1;
  transform: translateY(0);
  animation: colorToWhite 1.5s ease forwards; /* Spuštění animace změny barvy */
}

@keyframes colorToWhite {
  0% {
    color: black; /* Na začátku je text černý */
  }
  100% {
    color: white; /* Na konci animace je text bílý */
  }
}

@media only screen and (max-width: 1199px) {
  section.vyhody-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .text-block {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .text-block .text-content h3 {
    font-size: 23px;
  }
  .text-block .text-content p {
    font-size: 15px;
    margin-bottom: 0;
  }
  .circle {
    width: 60px;
    height: 60px;
    font-size: 15px;
  }
  .text-block {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .text-block .text-content h3 {
    font-size: 20px;
  }
  .text-block .text-content p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .circle {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }
}

/* O NAS */
section.onas-bg {
  background-color: #000000;
}
.onas .tlaticko {
  margin-top: 120px;
  margin-bottom: 120px;
}
.onas .desc p {
  font-size: 22px;
  font-weight: 500;
  color:  #fff;
  width: 80%;
  line-height: 1.8;
}
.onas .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.onas .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.countbox {
  background-color: #1b1b1b;
  border-top: 8px solid #151515;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  text-align: start;
  position: relative;
  padding: 80px 80px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.countbox h3 {
  font-family: 'Readex Pro', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.countbox span {
  font-family: 'Readex Pro', sans-serif;
  font-size: 60px;     
  font-weight: 800;
  color: #fff;  
  left: 15px;
  position: relative;
}
.odpocet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.countbox p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.countbox.widthsmall {
  width: 80%;
  padding: 50px;
}
.countbox.whidhtbig {
  width: 120%;
}
@media only screen and (max-width: 1399px) {
  .countbox.whidhtbig {
    width: 100%;
  }
  .countbox h3 {
    font-size: 50px;
  }
  .countbox span {
    font-size: 30px;
  }
  .countbox {
    padding: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  section.onas-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }  
  .onas .desc p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .onas .tlaticko {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .onas .desc p {
    width: 100%;
    font-size: 15px;
  }
  .countbox {
    width: 100%;
    padding: 25px;
  }
  .countbox.widthsmall {
    width: 100%;
    margin-top: 0;
    padding: 25px;
  }
  .onas .right-side {
    display: block;
  }
  .countbox h3 {
    font-size: 30px;
  }
  .countbox span {
    font-size: 15px;
  }
  .countbox p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

/* SLUZBY */
section.sluzby-bg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.sluzby .scroll-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 600px;
}
.sluzby .text-container {
  width: 75%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.sluzby .image-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sluzby .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sluzby img {
  max-width: 550px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
}
.sluzby .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.sluzby .image-wrapper img.active {
  opacity: 1;
}
.sluzby .image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Výška obrázku */
  overflow: hidden;
}
p#scroll-text {
  font-family: 'Readex Pro', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #000;  
}
p#scroll-description {
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;  
}
a#scroll-link {
  font-weight: 700;
  font-family: 'Readex Pro', sans-serif;
  margin-top: 40px;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  border-bottom: 2px solid #000;
}
a#scroll-link {
  display: inline-block;
  position: relative;
  color: #343434;
  text-decoration: none;
  padding: 0 6px;
}
a#scroll-link:before, a:after {
  will-change: transform;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
a#scroll-link:before {
  transition: 100ms ease-out 50ms;
  transform-origin: 0 24px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
}

a#scroll-link:hover:before {
  transition: 100ms ease-out;
  transform: scaleY(0.18);
  background: #f1f1f1;
}
a#scroll-link:hover:after {
  transition: 50ms ease-out 100ms;
  transform: none;
}
a#scroll-link:active:before {
  transition: 100ms ease-in;
  background: #f1f1f1;
}
a#scroll-link:active:after {
  transition: 100ms ease-in;
  border-left-color: #f1f1f1;
}
@media only screen and (max-width: 1199px) {
  section.sluzby-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .sluzby img {
    height: 450px;
    width: 100%;
  }
  .sluzby .image-wrapper, .sluzby .image-container {
    height: 450px;
  }
  .sluzby .scroll-container {
    height: 450px;
  }
  p#scroll-text {
    font-size: 30px;
  }  
}
@media only screen and (max-width: 575px) {
  p#scroll-description {
    font-size: 16px;
  }
  p#scroll-text {
    font-size: 25px;
  } 
  .sluzby img {
    height: 350px;
    width: 100%;
  }
  .sluzby .image-wrapper, .sluzby .image-container {
    height: 350px;
  }
  .sluzby .scroll-container {
    height: 350px;
  }
}
@media only screen and (max-width: 425px) {
  .sluzby .text-container {
    width: 100%;
    margin-bottom: 15px;
  }
  .sluzby img {
    height: 250px;
    width: 100%;
  }
  .sluzby .image-wrapper, .sluzby .image-container {
    height: 250px;
    width: 100%;
  }
  .sluzby .scroll-container {
    height: auto;
  }
  .sluzby .scroll-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sluzby .image-wrapper img {
    width: 100%;
  }
  p#scroll-text {
    font-size: 20px;
  } 
}

/* BLOG HP */
.blogboxhp {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #404040;
}
.blogboxhp:hover .desc {
  width: 100%;
  padding-left: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px;
  background: rgba(0, 0, 0, 0.212);
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease; /* Zpomalení přechodu */
}
.blogboxhp .thumb {
  width: 100%;
  height: 100%;
  overflow: hidden; 
  transition: all 1s ease; /* Zpomalení přechodu */
  border-radius: 0;
}
.blogboxhp .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 1s ease; /* Zpomalení přechodu */
}
.blogboxhp .arrow {
  transition: opacity 1s ease; /* Zpomalení přechodu */
}
.blogboxhp:hover .thumb {
  width: 100%;
  height: 100%;
}
.blogboxhp:hover .desc {
  opacity: 1;
}
.blogboxhp:hover .arrow {
  opacity: 0;
}

section.bloghp-bg {
  background-color: #000;
}
.blogboxhp {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #404040;
}
.blogboxhp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blogboxhp .desc {
  width: 80%;
  padding-left: 50px;
}
.blogboxhp .desc h3 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
}
.blogboxhp .desc span.date {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.blogboxhp .thumb {
  width: 20%;
}
.blogboxhp .thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}
.blogboxhp .thumb {
  height: 200px; 
  overflow: hidden; 
}
.blogboxhp .arrow svg {
  font-size: 16px;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  section.bloghp-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .blogboxhp .desc h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blogboxhp .desc h3 {
    font-size: 18px;
  }
}



/* SPECIALIZACE */
section.hodnoty-bg {
  background-color: #fff;
}
.hodnoty .left-side {
  justify-self: flex-start;
  align-items: center;
  display: flex;
}
.hodnoty .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.hodnoty .left-side .title {
  padding-bottom: 80px;
}
.hodnoty .right-side p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;
}
.cta__line {
  background-color: #fff;
  width: 56vw;
  height: 2.4vw;
  position: absolute;
  top: 100%;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  section.hodnoty-bg{
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .hodnoty .left-side .title {
    padding-bottom: 0;
  }
  .hodnoty .left-side {
    margin-bottom: 15px;
  }
  .hodnoty .right-side p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .hodnoty .right-side p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .hodnoty .right-side p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
main.main {
  height: auto;
  background: #fff;
  z-index: 10;
  margin-bottom: 350px;
  position: relative;
}
footer {
  width: 100%;
  height: 400px;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  bottom: 0px;
  z-index: 0;
}

footer.paticka {
  background-color: #000;
}

footer.paticka .up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}
footer.paticka .up .left img {
  width: auto;
  height: 55px;
  object-fit: contain;
}
footer.paticka .up .right a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
footer.paticka .up .right a:hover {
  text-decoration: none;
}

footer.paticka .down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 40px;
}
footer.paticka .down .left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
footer.paticka .down .left p {
  margin-bottom: 0;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6a6a6a;
}
footer.paticka .down .left p a {
  color: #939393;
}
footer.paticka .down .left p a:hover {
  color: #fff;
  text-decoration: underline;
}
footer.paticka .down .right nav.fotmenu {
  text-align: center;
  justify-content: center;
  display: flex;
  padding-bottom: 0;
}
footer.paticka .down .right nav.fotmenu li {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
}
footer.paticka .down .right nav.fotmenu li a {
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 500;
  padding: 0px 0 0 20px;
  text-decoration: none;
}
footer.paticka .down .right nav.fotmenu li a:hover {
  color: #fff;
  text-decoration: none;
}
footer.paticka .down .right nav.fotmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  footer.paticka .up .left img {
    width: auto;
    height: 30px;
  }
  footer.paticka .up .right a {
    font-size: 25px;
  }  
}
@media only screen and (max-width: 991px) {
  footer.paticka .down .left p {
    font-size: 13px;
    margin-bottom: 0;
  }
  footer.paticka .down .right nav.fotmenu li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    height: 350px;
  }
  footer.paticka .up {
    padding-bottom: 15px;
  }
  main.main {
    margin-bottom: 280px;
  }
  footer.paticka .up .left img {
    height: 20px;
  }
  footer.paticka .up .right a {
    font-size: 18px;
  }   
}
@media only screen and (max-width: 575px) {
  footer.paticka .down {
    display: grid;
    justify-content: flex-start;
  }
  footer.paticka .down .right nav.fotmenu {
    justify-content: flex-start;
  }
  footer.paticka .down .right nav.fotmenu li a {
    padding: 0;
    margin-left: 0;
  }
  footer.paticka .down .left p, footer.paticka .down .right nav.fotmenu li a{
    font-size: 12px;
  }  
  footer.paticka .up {
    padding: 20px;
  }
}
@media only screen and (max-width: 425px) {
  footer.paticka .up .right a {
    font-size: 15px;
  }  
}

/*--------------------------------------------------------------
# KONTAKT
--------------------------------------------------------------*/
/* BREAD */
section.bread-bg {
  background-repeat: repeat;
  background-size: 12%;
  background-position: center;
  padding-top: 180px;
  padding-bottom: 40px;
  transition: opacity 2s ease-out;
}
.bread-bg.hidden {
  opacity: 0;
  pointer-events: none; /* Optional: Disable interaction when hidden */
}
.bread h1 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  padding-bottom: 50px;
}
.bread p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  width: 70%;
  padding-bottom: 50px;
}

.contactinfo .contactrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 80px;
}
.contactinfo .contactrow a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
  padding-right: 70px;
}
.contactinfo .contactrow a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .bread h1 {
    font-size: 45px;
    padding-bottom: 20px;
  }
  .bread p {
    font-size: 18px;
    width: 100%;
    padding-bottom: 20px;
  }
  section.bread-bg {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 991px) {
  section.bread-bg {
    padding-top: 140px;
  }
  .bread h1 {
    font-size: 35px;
  }
  .bread p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .contactinfo .contactrow a {
    font-size: 20px;
  }
  .contactinfo .contactrow {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .bread h1 {
    font-size: 30px;
  }
  .bread p {
    font-size: 14px;
  }  
  .contactinfo .contactrow a {
    font-size: 16px;  
    padding-right: 25px;
  }  
}
@media only screen and (max-width: 575px) {
  .bread h1 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .bread p {
    font-size: 13px;
  }  
}
@media only screen and (max-width: 425px) {
  .bread h1 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .bread p {
    font-size: 12px;
  }  
}

/* FORMULAR */
section.formular-bg {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}
.formular p {
  font-size: 25px;
  color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: transparent;
  border: none;
  color: #fff;
  padding: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.item-form .cta p {
  margin-bottom: 0
}
.form .cta {
text-align: center;
}
.buttonred {
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  padding: 25px 50px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: flex;
  font-size: 17px; 
}
.buttonred:hover {
  background-color: #fff;
  color: #000;
  transition: .5s ease-in;
}
.wpcf7 .wpcf7-validation-errors,.wpcf7 .wpcf7-acceptance-missing {
  border: 5px solid red;
  margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
font-family: 'Readex Pro', sans-serif;
background-color: #000000;
color: #f40000;
font-size: 12px;
padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border: 5px solid #dce5fe;
  margin-top: -30px;
}
div.wpcf7-response-output {
  margin: 2em .5em 1em;
  padding: 1em;
  font-size: 14px;
}
.wpcf7-form-control.wpcf7-text {
background-color: #000000;
border-bottom: 2px solid #5a5a5a;
border-left: 0;
border-top: 0;
border-right: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}
.wpcf7-form-control.wpcf7-select {
background-color: #000000;
border-bottom: 2px solid #5a5a5a;
border-left: 0;
border-top: 0;
border-right: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}
.wpcf7-form-control {
  margin-top: 15px
}

.wpcf7-form-control.wpcf7-textarea {
background-color: #000000;
border-bottom: 2px solid #5a5a5a;
border-left: 0;
border-top: 0;
border-right: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
background-color: #000000;
border-bottom: 2px solid #5a5a5a;
border-left: 0;
border-top: 0;
border-right: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}
.wpcf7 :focus {
  color: #fff;
  background-color: #000000!important;
  outline: 0;
  border-bottom: 2px solid #fff!important;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.wpcf7-form-control.wpcf7-number {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 15px;
height: 60px;
font-family: 'Poppins', sans-serif;
  font-weight: 700;
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: 'Readex Pro',sans-serif;
  font-size: 15px;
  font-weight: 700
}
::-webkit-input-placeholder {
  color: #b3b3b3!important;
  opacity: 1
}
:-moz-placeholder {
  color: #b3b3b3!important;
  opacity: 1
}
::-moz-placeholder {
  color: #b3b3b3!important;
  opacity: 1
}
:-ms-input-placeholder {
  color: #b3b3b3!important;
  opacity: 1
}
.ochrana-os p {
  color: #fff;
  text-align: left;
  font-size: 12px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.ochrana-os p a {
  color: #ffffff;
  text-decoration: underline;
}
.ochrana-os p a:hover {
color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  section.formular-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .formular p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .formular p {
    font-size: 17px;
  }
  .formular p {
    display: grid;
  }
  .wpcf7-form-control.wpcf7-text {
    width: 100%;
  }
  .formular .ochrana-os p {
    font-size: 14px;
  }
  .buttonred {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .formular p {
    font-size: 14px;
  }
  .buttonred {
    text-align: center !important;
  }
}

/* KONTAKTY*/
section.kontakty-bg {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 120px;
}
.kontakty .left-side {

}
.kontakty .left-side img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
.kontakty .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  padding-left: 80px;
}
.kontakty .right-side h3 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  padding-bottom: 15px;
  padding-top: 25px;
}
.kontakty .right-side p {
  font-size: 18px;
  font-weight: 400;
  color: #525252;
  line-height: 1.6;
}
.kontakty .right-side hr.lineblack {
  width: 15px;
  height: 15px;
  background-color: #000;
  opacity: 1;
  margin-top: 25px;
  margin-bottom: 25px;
}
.kontakty .right-side .linkdownload {
  display: grid;
}
.kontakty .right-side .linkdownload a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.9;
}
.kontakty .right-side .linkdownload a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  section.kontakty-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .kontakty .left-side img {
    height: 400px;
  }
  .kontakty .right-side h3 {
    padding-bottom: 0;
  }
  .kontakty .right-side p {
    font-size: 15px;
  }
  .kontakty .right-side .linkdownload a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .kontakty .right-side h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 425px) {
  .kontakty .left-side img {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
/* NOVINKY*/
section.blog-bg {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
}

.blogbox {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #404040;
}
.blogbox .headarticle {
  width: 70%;
  padding-left: 250px;
}
.blogbox .headarticle h3 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
}
.blogbox .headarticle span.date {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.blogbox .thumb {
  margin-top: 60px;
  margin-bottom: 60px;
}
.blogbox .thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}
.blogbox .thumb {
  height: 280px; 
  overflow: hidden; 
}
.blogbox .thumb img {
  transition: transform .5s ease;
}
.blogbox .thumb:hover img {
  transform: scale(.9);
}
.blogbox .footarticle {
  width: 70%;
  padding-left: 250px;
}
.blogbox .footarticle p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 25px;
}
.blogbox .footarticle .link a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.link-arrow {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  font-size: 20px;
  font-family: "Montserrat";
  color: black;
  text-decoration: none;
}
.link-arrow span {
  position: absolute;
  left: 0;
  top: 10px;
  right: -20px;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: 0.3s ease-out 0.3s;
}
.link-arrow span:after, .link-arrow span:before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: inline-block;
  height: 1px;
  width: 10px;
  background-color: currentColor;
  transition: 0.3s ease-out;
}
.link-arrow span:before {
  transform-origin: 100% 0%;
  transform: rotate(0deg);
}
.link-arrow span:after {
  transform-origin: 100% 100%;
  transform: rotate(0deg);
}
.link-arrow:after, .link-arrow:before {
  position: absolute;
  content: "";
  top: 10px;
  display: inline-block;
  height: 1px;
  width: 5px;
  background-color: currentColor;
}
.link-arrow:after {
  right: -15px;
}
.link-arrow:before {
  left: 0;
}
.link-arrow:hover span, .link-arrow:focus span {
  transform: scaleX(1);
  transition: 0.3s ease-out;
}
.link-arrow:hover span:before, .link-arrow:focus span:before {
  transform: rotate(40deg);
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.36, 1.44) 0.3s;
}
.link-arrow:hover span:after, .link-arrow:focus span:after {
  transform: rotate(-40deg);
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.36, 1.44) 0.3s;
}

.blogbox:hover .thumb img {
  transform: scale(.9);
}
.blogbox:hover .link-arrow span, .link-arrow:focus span {
  transform: scaleX(1);
  transition: 0.3s ease-out;
}
.blogbox:hover .link-arrow span:before, .link-arrow:focus span:before {
  transform: rotate(40deg);
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.36, 1.44) 0.3s;
}
.blogbox:hover .link-arrow span:after, .link-arrow:focus span:after {
  transform: rotate(-40deg);
  transition: 0.3s cubic-bezier(0.17, 0.67, 0.36, 1.44) 0.3s;
}
@media only screen and (max-width: 1199px) {
  section.blog-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .blogbox {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .blogbox .headarticle h3 {
    font-size: 22px;
  }
  .blogbox .thumb {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .blogbox .footarticle p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .blogbox .headarticle {
    padding-left: 25px;
  }
  .blogbox .footarticle {
    padding-left: 25px;
  }
  .blogbox {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .blogbox .footarticle p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .blogbox .thumb img {
    height: 200px;
  }
  .blogbox .thumb {
    height: 200px;
  }
  .blogbox .headarticle h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .blogbox .footarticle p {
    font-size: 13px;
  }
  .blogbox .headarticle h3 {
    font-size: 18px;
  }
  .blogbox .headarticle span.date {
    font-size: 13px;
  }
  .blogbox .footarticle .link a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 425px) {
  .blogbox .thumb img {
    height: 150px;
  }
  .blogbox .thumb {
    height: 150px;
  }
  .blogbox .thumb {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* PROZKOUMAT */
section.prozkoumat-bg {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
.prozkoumat {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #d3d3d3;
}
.prozkoumatbox h3 {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  padding-bottom: 15px;
}
.prozkoumatbox p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  width: 50%;
  max-width: 50%;
  display: inline-block;
  padding-bottom: 25px;
}
.prozkoumatbox .tlacitko button {
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  section.prozkoumat-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .prozkoumat {
    margin-top: 20px;
    padding-top: 20px;
  }
  .prozkoumatbox p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .prozkoumatbox {
    margin-bottom: 40px;
  }
  .prozkoumatbox p {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .prozkoumatbox h3 {
    font-size: 22px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .prozkoumatbox h3 {
    font-size: 20px;
  }
}

/* PAGINATION */
.pagination {
  margin-top: 40px;
}
.pagination a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  float: left;
  padding: 18px 20px;
  text-decoration: none;
  transition: background-color .3s;
}
span.page-numbers.dots {
  color: #fff;
  padding: 18px 20px;
}
.page-numbers.current {
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  background-color: #fff;
  border-radius: 50px;
  float: left;
  padding: 18px 20px;
  text-decoration: none;
  transition: background-color .3s;
}
.pagination a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  .page-numbers.current {
    padding: 15px 20px;
    font-size: 13px;
  }
  .pagination a {
    padding: 15px 20px;
    font-size: 13px;
  }
  .pagination {
    display: flex;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# DETAIL CLANKU
--------------------------------------------------------------*/
.clanekdetailbread-bg {
  background-repeat: repeat;
  background-size: 12%;
  background-position: center;
  padding-top: 180px;
  padding-bottom: 40px;
  transition: opacity 2s ease-out;
}
.clanekdetailbread-bg h1 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  padding-bottom: 50px;  
}
.clanekdetailbread-bg p {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
}
.clanekdetail {
border-bottom: 1px solid #dadada;
padding-bottom: 25px;
padding-top: 25px;
}
.clanekdetail .left-side {
justify-content: flex-start;
align-items: center;
display: flex;
padding-left: 35px;
}
.clanekdetail .left-side a {
background-color: #dadada;
font-family: 'Readex pro', sans-serif;
font-weight: 500;
font-size: 15px;
padding: 14px 25px;
color: #000;
border-radius: 5px;
text-transform: uppercase;
margin-right: 5px;
}
.clanekdetail .middle-side {
justify-content: center;
align-items: center;
display: flex;
}
.clanekdetail .middle-side span {
font-size: 15px;
font-family: 'Readex Pro', sans-serif;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: #acacac;  
text-transform: uppercase;
}
.clanekdetail .right-side {
justify-content: flex-end;
align-items: center;
display: flex;
padding-right: 35px;
}
.clanekdetail .right-side a {
background-color: #dadada;
font-family: 'Readex pro', sans-serif;
font-weight: 500;
font-size: 15px;
color: #000;
border-radius: 5px;
text-transform: uppercase;
height: 25px;
display: inline-flex;
align-items: center;
padding: 21px 0;
}
.clanekdetail .right-side a svg {
background-color: #000;
color: #fff;
padding: 13px;
border-radius: 5px 0 0 5px;
margin-right: 15px;
width: 18px;
}
.clanekdetail .right-side a span {
  padding-right: 15px;
}
.clanekdetail .right-side a:hover {
  background: #000;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .clanekdetailbread-bg {
    font-size: 45px;
    padding-bottom: 20px;
  }
  .clanekdetailbread-bg p {
    font-size: 18px;
    padding-bottom: 20px;
  }
  section.clanekdetailbread-bg {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 991px) {
  section.clanekdetailbread-bg {
    padding-top: 140px;
  }
  .clanekdetailbread-bg h1 {
    font-size: 35px;
  }
  .clanekdetailbread-bg p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .clanekdetail .left-side {
    justify-content: center;
    padding-left: 0;
  }
  .clanekdetail .right-side {
    justify-content: center;
  }
  .clanekdetail .middle-side {
    margin: 25px 0;
  }
  .clanekdetail .left-side a {
    font-size: 13px;
  }
  
}
@media only screen and (max-width: 767px) {
  .clanekdetailbread-bg h1 {
    font-size: 30px;
  }
  .clanekdetailbread-bg p {
    font-size: 14px;
  }  
}
@media only screen and (max-width: 575px) {
  .clanekdetailbread-bg h1 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .clanekdetailbread-bg p {
    font-size: 13px;
  }  
  .clanekdetail .right-side a {
    font-size: 13px;
  }  
}
@media only screen and (max-width: 425px) {
  .clanekdetailbread-bg h1 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .clanekdetailbread-bg p {
    font-size: 12px;
  }  
}

/* OBSAH CLANKU */
section.clanekdetail-bg {
padding-bottom: 50px;
padding-top: 50px;
}
.detailsingle {
padding-top: 100px;
}
.detailsingle .thumb img {
width: 100%;
height: 450px;
object-fit: cover;
}
.detailsingle .clanek {
padding: 30px;
}
.detailsingle .clanek p {
font-size: 16px;
font-weight: 500;
line-height: 1.9;
color: #000;
}
.detailsingle .clanek em {
font-size: 16px;
font-weight: 500;
line-height: 1.9;
color: #000;
}
.detailsingle .clanek li {
font-family: 'poppins', sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 1.9;
color: #000;
}
.detailsingle .clanek h2 {
font-size: 25px;
font-weight: 800;
padding-top: 15px;
}
.detailsingle .clanek h3 {
font-size: 22px;
font-weight: 700;
padding-top: 15px;
}
.detailsingle .clanek img {
  border-radius: 5px;
}
@media only screen and (max-width: 1199px) {
  section.clanekdetail-bg {
    padding-top: 0;
    padding-bottom: 0;
  }
  .detailsingle {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .detailsingle .clanek p {
    font-size: 14px;
    line-height: 1.5;
  }
  .detailsingle .clanek li {
    font-size: 14px;
    line-height: 1.5;
  }
  .detailsingle .clanek h2 {
    font-size: 20px;
  }
  .detailsingle .clanek h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .detailsingle .clanek p {
    font-size: 13px;
    line-height: 1.5;
  }
}


/* OSTATNI CLANKY */
section.otherarclanky-bg {
background-color: #000;
}
@media only screen and (max-width: 1199px) {
  section.otherarclanky-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# SCROLL
--------------------------------------------------------------*/
/* SCROLLBAR */
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background-color: #000;
}
::-webkit-scrollbar-thumb {
  background: #fff;
}

/*--------------------------------------------------------------
# KARIERA
--------------------------------------------------------------*/
/* SLOVO MAJITELE */
section.slovomaj-bg {
  background-color: #000;
}
.slovomaj .left-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.slovomaj .left-side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.slovomaj .right-side {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.slovomaj .right-side p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
}
.slovomaj .right-side span {
  font-size: 60px;
  display: block;
  font-family: 'Poppins', sans-serif;
}
@media only screen and (max-width: 1199px) {
  section.slovomaj-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slovomaj .right-side p {
    font-size: 16px;
  }
  .slovomaj .left-side img {
    height: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .slovomaj .right-side span {
    font-size: 15px;
  }
  .slovomaj .right-side {
    padding-top: 20px;
  }  
}
@media only screen and (max-width: 767px) {
  .slovomaj .right-side p {
    font-size: 14px;
  }
}

/* KARIERA */
section.kariera-bg {
  background-repeat: repeat;
  background-size: 12%;
  background-position: center;
}
.karbox-link {
  text-decoration: none; 
  display: block;
}
.karbox {
  border: 1px solid #cbcbcb;
  border-radius: 15px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: none; /* Skryje standardní kurzor */
  height: 200px;
}

/* Přidání efektu kolečka s textem */
.karbox:hover::after {
  font-family: 'Readex Pro', sans-serif;
  content: 'detail';
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: var(--mouse-x);
  top: var(--mouse-y);
  transition: all 0.2s ease-in-out;
  z-index: 10;
}

.karbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.karbox .nadpis {
  width: 20%;
}
.karbox .nadpis h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}
.karbox .desc {
  width: 40%;
}
.karbox .desc p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000; 
  margin-bottom: 0;
}
.karbox .benefits {
  display: flex;
  width: 25%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.karbox .benefits button {
  margin: 5px 0;
}
.karbox .benefits button.btn-benef {
  background-color: #e6e6e6;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.karbox .detail button.btn-more {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.karbox .sipka {
  width: 3%;
  justify-content: center;
  display: flex;
}
.karbox {
  border: 1px solid #cbcbcb;
  border-radius: 15px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.karbox:hover {
  background-color: #000;
}
.karbox .nadpis h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  transition: color 0.4s ease-in-out;
}
.karbox:hover .nadpis h3 {
  color: #fff;
}
.karbox .desc,
.karbox .benefits {
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.karbox:hover .desc,
.karbox:hover .benefits {
  opacity: 0;
  visibility: hidden;
}
.karbox .detail {
  transition: opacity 0.4s ease-in-out;
  width: 20%;
  display: none;
}
.karbox:hover .detail {
  opacity: 1;
  visibility: visible;
  display: block;
}
.karbox .sipka {
  width: 3%;
  justify-content: center;
  display: flex;
  transition: all 0.4s ease-in-out;
}
.karbox:hover .sipka {
  color: #fff;
  transform: rotate(-45deg);
}

.vacancybox {
  background-color: #000;
  border-radius: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  height: 210px;
  width: 100%;
  flex-direction: column;
  padding: 45px;
  margin-bottom: 35px;
}
.vacancybox h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  padding-bottom: 35px;
}
.vacancybox button.btn-border {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;  
}
.mob-load-more .circle-btn {
  margin-left: auto;
  margin-right: auto;
}
.circle-btn b {
  font-family: 'readex Pro', sans-serif;
  font-size: 15px;
  color: #000;
  padding-left: 10px;
}
.circle-btn {
  display: flex;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000000;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #1F2122;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 600;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.circle-btn:hover {
  background-color: #000;
}
.circle-btn:hover b {
  color: #fff;
}
.circle-btn:hover svg  {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  section.kariera-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
} 
@media only screen and (max-width: 991px) {
  .karbox {
    padding: 20px;
  }
  .karbox .benefits button.btn-benef {
    padding: 10px 20px;
    font-size: 13px;
  }
  .karbox .desc p {
    font-size: 14px;
  }
  .karbox .nadpis h3 {
    font-size: 20px;
  }
  .vacancybox {
    padding: 20px;
    height: 190px;
  }
  .vacancybox h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .karbox {
    display: grid;
    height: auto;
  }
  .karbox .nadpis {
    width: 100%;
  }
  .karbox .nadpis h3 {
    padding-bottom: 15px;
    font-size: 18px;
  }
  .karbox .desc {
    width: 100%;
    margin-bottom: 15px;
  }
  .karbox .benefits {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .vacancybox h3 {
    font-size: 18px;
  }
  .vacancybox button.btn-border {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* CO NABIZI */
section.proc-bg {
  background-color: #fff;
}
.zacitunas .left-side {
  justify-content: flex-start;
  align-items: flex-start;
}
.zacitunas .left-side img {
  width: 90%;
  height: 470px;
  object-fit: cover;
}
.smallimg {
  position: relative;
  top: -100px;
  left: 80px;
}
.smallimg img {
  width: 350px !important;
  height: 410px !important;
  -webkit-box-shadow: 0px 0px 23px -14px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 23px -14px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 23px -14px rgba(0,0,0,0.75);
}
.zacitunas .right-side {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;  
}
.zacitbox {
  border-top: 1px solid #dcdcdc;
  padding-top: 15px;
  padding-bottom: 25px;
}
.zacitbox h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  height: 70px;
}
.zacitbox p {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  section.proc-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .zacitunas .right-side {
    padding-top: 0;
  }
  .zacitbox h3 {
    height: auto;
  }
}
@media only screen and (max-width: 860px) {
  .smallimg {
    display: none;
  }
  .zacitunas .left-side img {
    width: 100%;
    margin-bottom: 0;
  }  
}
@media only screen and (max-width: 767px) {
  .zacitbox h3 {
    font-size: 20px;
  }
  .zacitbox p {
    font-size: 14px;
  }
  section.kariera-bg {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .zacitbox h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# DETAIL POZICE
--------------------------------------------------------------*/
/* BREAD */
section.pozicebread-bg {
  padding-bottom: 40px;
  padding-top: 180px;
  background-position: center;
  background-size: 12%;
  background-repeat: repeat;
}
.pozicebread-bg {
  background-repeat: repeat;
  background-size: 12%;
  background-position: center;
  padding-top: 180px;
  padding-bottom: 40px;
  transition: opacity 2s ease-out;
}
.pozicebread-bg h1 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  padding-bottom: 50px;  
}
.pozicebread .benefs button.btn-benef {
  background-color: #e6e6e6;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* POZICE */
section.detailpozice-bg {
  padding-bottom: 50px;
  padding-top: 50px;
  background-position: center;
  background-size: 12%;
  background-repeat: repeat;
}
.detailpozice ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;   
}
.socialshare {
  padding-top: 40px;
}
button.btn-soc {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 254, 253, 0.15);
  margin-right: 4px;
  margin-top: 5px;
  transition: 0.2s;
  position: relative;
  overflow: hidden; 
  border: 1px solid black;
  border-radius: 5px;
  background: transparent;
  margin-right: 0;
}
button.btn-soc:before {
  content: "";
  width: 200%;
  height: 200%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #000000;
  transition: 1s;
  z-index: 0; 
}
button.btn-soc:hover:before {
  transform: translate(-50%, -50%) scale(1);
}
button.btn-soc svg {
  color: #000; 
  position: relative;
  z-index: 1; 
  transition: color 0.2s;
}
button.btn-soc:hover svg {
  color: #fff; 
}
@media only screen and (max-width: 1199px) {
  .pozicebread-bg {
    font-size: 45px;
    padding-bottom: 20px;
  }
  section.pozicebread-bg {
    padding-top: 150px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  section.pozicebread-bg {
    padding-top: 140px;
  }
  .pozicebread h1 {
    font-size: 35px;
    padding-bottom: 0
  }
  .pozicebread .benefs button.btn-benef {
    font-size: 13px;
  }
  .clanek p {
    font-size: 14px;
    line-height: 1.5;
  }
  .clanek li {
    font-size: 14px;
    line-height: 1.5;
  }
  .clanek h2 {
    font-size: 20px;
  }
  .clanek h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .pozicebread h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .pozicebread h1 {
    font-size: 22px;
  } 
  .detailpozice p {
    font-size: 13px;
    line-height: 1.5;
  }
  .detailpozice li {
    font-size: 13px;
  }
  .detailpozice h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 425px) {
  .pozicebread h1 {
    font-size: 20px;
  } 
}

/* POPTAT */
section.socialshare {
  background-color: #fff;
}
.modern-button {
  display: flex;
  width: 100%;
  padding: 100px 100px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Readex Pro', sans-serif;
  color: #fff;
  background-color: #000;
  /* width: fit-content; */
  text-decoration: none;
  border-radius: 250px; /* Kulaté rohy pro moderní styl */
  font-size: 60px;
  font-weight: 700;
  transition: all 0.4s ease; /* Hladší přechod efektu */
  position: relative;
  cursor: pointer;
}
.modern-button::before {
  content: "poslat CV";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  color: #fff;
}
.modern-button:hover::before {
  opacity: 1;
}
.modern-button:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(93, 93, 93, 0.5); /* Poloprůhledná barva pro efekt vlny */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.6s ease-out;
  z-index: 0;
}
.modern-button:hover::after {
  width: 300%;
  height: 300%;
}
.modern-button::after {
  content: '';
}
.modern-button:hover {
  color: transparent; /* Skrýt původní text při hover efektu */
}
.modern-button span {
  position: relative;
  z-index: 1; /* Uchovává text nad vlnou */
}
.modern-button:hover span {
  opacity: 0;
}
.modern-button:hover::before {
  opacity: 1;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  section.poslatcv-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modern-button {
    font-size: 50px;
    padding: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .modern-button {
    font-size: 30px;
    padding: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .modern-button {
    font-size: 20px;
    padding: 35px;
  }
}
@media only screen and (max-width: 425px) {
  .modern-button {
    font-size: 15px;
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# POPUP POPTAVKA
--------------------------------------------------------------*/
.rychlapoptavka {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-content {
  background-color: #202020;
  width: 100%;
  margin: 25px;
  border-radius: 10px;
  padding: 45px;
}
.popup-content.left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 460px;
  width: 410px;
}
.popup-content.left h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
} 
.popup-content.left a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; 
}
.popup-content.left a:hover {
  text-decoration: underline;
}
.popup-content.right h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
} 
.popup-content.right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 460px;
  width: 750px;
}
.popup-content.right .wpcf7-form-control.wpcf7-text {
  background: transparent;
  width: 100%;
}

#popup-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  transition: transform 0.3s ease-in-out;
}
#popup-window.show {
  transform: translate(-50%, -50%) scale(1);
}
.rychlapoptavka {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-content {
  background-color: #202020;
  width: 100%;
  margin: 25px;
  border-radius: 10px;
  padding: 45px;
}
.popup-content.left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 470px;
  width: 410px;
}
.popup-content.left h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
} 
.popup-content.left a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; 
}
.popup-content.left a:hover {
  text-decoration: underline;
}
.popup-content.right h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
} 
.popup-content.right span#close-popup.close-popup {
  font-size: 15px;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  border-radius: 50px;
  background-color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-content.right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 470px;
  width: 750px;
}
.popup-content.right .wpcf7-form-control.wpcf7-text {
  background: transparent;
  width: 100%;
  margin-top: 0;
  height: 70px;
  color: #fff;
}
.popup-content.right .buttonred {
  padding: 20px 50px;
  font-size: 13px;
  background: transparent;
}
.popup-content.right .buttonred:hover {
  background-color: #fff;
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
}
.popup-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  width: 100%;
  max-width: 1214px;
  z-index: 9999;
  border-radius: 8px;
}
.popup-content {
  position: relative;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output {
  display: none;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-family: 'Readex Pro', sans-serif;
  background-color: transparent;
  color: #cb4646;
  font-size: 11px;
  padding: 0;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .rychlapoptavka {
    display: flex;
    flex-direction: column;
  }
  .popup-content.left {
    height: auto;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
  .popup-content.right {
    width: 100%;
  }
  .popup-content.left h3 {
    font-size: 22px;
  }
  .popup-content.left a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .popup-content.left h3 {
    font-size: 18px;
  }
  .popup-content.left a {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# O NAS
--------------------------------------------------------------*/
section.bread-bg.black {
  background-color: #000;
}
.bread-bg.black h1 {
  color: #fff;
}
.bread-bg.black p {
  color: #fff;
}

/* V CEM JSME NEJLEPSI */
section.vcem-bg {
  padding-bottom: 30px;
}
.vcemboxy {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
}
.vcemboxy .boxy {
  padding: 35px 0;
}
.vcemboxy .boxy h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.vcemboxy .boxy p {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;  
}
@media only screen and (max-width: 1199px) {
  section.vcem-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }  
}
@media only screen and (max-width: 991px) {
  .vcemboxy .boxy {
    padding: 15px 0;
  }
  .vcemboxy .boxy h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .vcemboxy .boxy h3 {
    font-size: 18px;
  }
  .vcemboxy .boxy p {
    font-size: 14px;
  }
  section.vcem-bg {
    padding-bottom: 45px;
  }
  .vcemboxy {
    display: inline-grid;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .vcemboxy .boxy p {
    font-size: 13px;
  }
}

/* RECENZE */
section.recenze-bg {
  background-color: #000;
}
.recenzebox {
  border: 2px solid #1b1b1b;
  border-radius: 15px;
  padding: 45px;
}
.recenzebox .quote {
  font-family: 'Readex Pro', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}
.recenzebox p {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;  
}
.recenzebox .name {
  padding-top: 30px;
}
.recenzebox .name h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;  
}
.recenzebox .name p {
  font-size: 15px;
  font-weight: 400;
  color: #f4f4f4;
}
.recenze-slider .recenzebox {
  margin: 0 15px;
}
.recenze-slider {
  cursor: none; 
  position: relative; 
}
#custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  color: #000;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0; 
  transition: opacity 0.2s, transform 0.1s;
}
@media only screen and (max-width: 1199px) {
  section.recenze-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .recenzebox {
    padding: 25px;
  }
  .recenzebox .name h4 {
    font-size: 18px;
  }
  .recenzebox .name p {
    font-size: 14px;
  }
  .recenzebox p {
    font-size: 14px;
  }
  .recenzebox .quote {
    font-size: 30px;
  }
}

/* MISE */
section.mise-bg {
  padding-bottom: 0;
}
.misebox {
  background-color: #f4f4f4;
  padding: 45px;
  border-radius: 10px;
  margin: 50px 0;
}
.misebox .topflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}
.misebox .topflex h3 {
  font-size: 30px;
  font-weight: 600;
  color: #000;  
  margin-bottom: 0;
}
.misebox .topflex button {
  border: none;
  background-color: #1b1b1b;
  color: #fff;
  font-family: 'Readex Pro', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 45px;
  border-radius: 15px;
}
.misebox p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: #000; 
}
@media only screen and (max-width: 1199px) {
  section.mise-bg {
    padding-top: 60px;
  }  
}
@media only screen and (max-width: 991px) {
  .misebox {
    margin: 25px 0;
    padding: 25px;
  }
  .misebox .topflex h3 {
    font-size: 20px;
  }
  .misebox .topflex {
    padding-bottom: 10px;
  }
  .misebox .topflex button {
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 5px;
  }
  .misebox p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .misebox .topflex h3 {
    font-size: 18px;
  }  
  .misebox p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .misebox p {
    font-size: 13px;
  }
}

/* NASI KLIENTI */
section.nasiklient-bg {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  section.nasiklient-bg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# SLUZBY
--------------------------------------------------------------*/
.sluzbabox {
  border: 1px solid #cbcbcb;
  border-radius: 15px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}
.sluzbabox .nadpis h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 25px;
  transition: color 0.4s ease-in-out;
}
.sluzbabox .desc p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #000; 
  margin-bottom: 0;
}
.sluzbabox .left {
  width: 75%;
}
.sluzbabox:hover {
  background-color: #000;
}
.sluzbabox:hover .nadpis h3 {
  color: #fff;
}
.sluzbabox:hover .desc p {
  color: #fff;
}
.sluzbabox-link {
  position: relative;
  text-decoration: none;
}
.sluzbabox-link:hover .sluzbabox {
  cursor: none; /* Skryjeme standardní kurzor myši */
}
.sluzbabox-link {
  position: relative;
  text-decoration: none;
}
.vypsluzeb .hover-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: none; /* Skryté ve výchozím stavu */
  align-items: center;
  justify-content: center;
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}
@media only screen and (max-width: 1199px) {
  section.vypsluzeb-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .sluzbabox {
    padding: 25px;
  }
  .sluzbabox .desc p {
    font-size: 14px;
  }
  .sluzbabox .left {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sluzbabox .desc p {
    font-size: 14px;
  }
  .sluzbabox .nadpis h3 {
    font-size: 22px;
  }
  .sluzbabox {
    margin: 10px 0;
  }
}
@media only screen and (max-width: 575px) {
  .sluzbabox .nadpis h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .sluzbabox .nadpis h3 {
    font-size: 18px;
  }
  .sluzbabox .desc p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# DETAIL SLUZBY
--------------------------------------------------------------*/
/* BREAD DETAIL SLUZBY */
h1.detailservices {
  padding-top: 150px;
}
.descsluzba p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;    
  width: 90%;
}
.descsluzba li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;    
  width: 90%;
}
@media only screen and (max-width: 1399px) {
  .descsluzba p, .descsluzba li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .descsluzba p, .descsluzba li {
    font-size: 14px;
  } 
}
@media only screen and (max-width: 425px) {
  .descsluzba p, .descsluzba li {
    font-size: 13px;
  }
}

/* KRATKY POPIS SLUZBY */
section.kratkypopissluzby-bg {
  padding-top: 80px;
}
.kratkypopissluzby p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;  
}
.kratkypopissluzby li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #000;  
}
.kratkypopissluzby h2 {
  font-size: 25px;
  font-weight: 800;
  padding-top: 15px;  
}
.kratkypopissluzby h3 {
  font-size: 22px;
  font-weight: 700;
  padding-top: 15px;
}
@media only screen and (max-width: 1199px) {
  section.kratkypopissluzby-bg {
    padding-top: 60px;
    padding-bottom: 40px;
  }  
}
@media only screen and (max-width: 991px) {
  .kratkypopissluzby p, .kratkypopissluzby li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .kratkypopissluzby h3 {
    font-size: 20px;
  }
  .kratkypopissluzby h2 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 425px) {
  .kratkypopissluzby h3 {
    font-size: 18px;
  }
  .kratkypopissluzby h2 {
    font-size: 20px;
  }
}

/* OSTATNI SLUZBY */
.ostatnisluzby .hover-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: none; /* Skryté ve výchozím stavu */
  align-items: center;
  justify-content: center;
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}
@media only screen and (max-width: 1199px) {
  section.ostatnisluzby-bg {
    padding-top: 60px;
    padding-bottom: 40px;
  }  
}


/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Překryje obsah stránky */
}

#preloader-logo {
  width: 150px; /* Velikost loga, upravte podle potřeby */
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/*--------------------------------------------------------------
# WP LOGIN
--------------------------------------------------------------*/
body.login {
  background-image: url("/wp-content/uploads/2024/10/bg-login.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
#login h1 a {
background-image: url("/wp-content/uploads/2024/08/bitservis-logo.png");
background-size: 250px;
  height: 50px !important;
width: auto;
}
.login form {
box-shadow: none;
padding: 20px;
background: #ffffff;
}
#login {
  background: #ffffff;
  margin: 50px auto;
  padding: 40px 20px;
  width: 400px;
  border-radius: 0;
}
.login label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #00539f;
  font-size: 14px
}
.login form .forgetmenot {
  float: none
}
#login form p.submit {
  margin-top: 15px
}
.login.wp-core-ui .button-primary {
  background-color: #00539f ;
  padding: 18px 35px;
  color: #fff;
  border: 2px solid #00539f ;
  font-family: 'Readex Pro', sans-serif;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
width: 100%;
  transition: .5s;
  border-radius: 50px;
}
.login.wp-core-ui .button-primary:hover {
background-color: #d90b2c;
color: #ffffff;
}
.login form {
  border: none
}
.login form .input,.login form input[type=checkbox],.login input[type=text] {
  background: #d9dbe1;
}
.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 #00539f;
  border-radius: 0;
}
p#backtoblog {
  display: none;
}
.privacy-policy-page-link a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #00539f;
  font-weight: 700
}
.login #nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #00539f;
text-decoration: underline;
}
.login #nav a:hover {
  color: #d90b2c;
}

/*--------------------------------------------------------------
# PODSTRÁNKA
--------------------------------------------------------------*/
.obsahpods p, .obsahpods li {
  font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 1.9;
color: #000;  
}
.obsahpods ul {
  padding-left: 45px;
}
@media only screen and (max-width: 1199px) {
  section.obsahpods-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .obsahpods p, .obsahpods li {
    font-size: 15px;
  }
}
@media only screen and (max-width. 575px) {
  .obsahpods p, .obsahpods li {
    font-size: 14px;
  }
}


.cmplz-cookiebanner .cmplz-message, .cmplz-cookiebanner .cmplz-categories, .cmplz-cookiebanner .cmplz-links, .cmplz-cookiebanner .cmplz-buttons, .cmplz-cookiebanner .cmplz-divider {
  font-family: 'Poppins', sans-serif;
}