@font-face {
    font-family: "cooper_hewittbook";
    src: url("/templates/loydgroup/font/CooperHewitt-Book-webfont.ttf");   
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}
@font-face {
    font-family: "cooper_hewittlight";
    src: url("/templates/loydgroup/font/CooperHewitt-Light-webfont.ttf");   
    font-weight: normal;
    font-style: normal;
   font-stretch: normal;
}
@font-face {
    font-family: "cooper_hewittsemibold";
    src: url("/templates/loydgroup/font/cooperhewitt-semibold-webfont.ttf");   
    font-style: normal;
    font-stretch: normal;
}
@font-face {
    font-family: "cooper_hewittthin";
    src: url("/templates/loydgroup/font/cooperhewitt-thin-webfont.ttf");   
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}
body {
  font-family: "cooper_hewittlight";
    font-size: 1em;
    line-height: 1.5;
    color: #333333;
}
h1, #nav, .font-semibold {
    font-family: cooper_hewittsemibold;
    font-weight: normal;
}
h1 {
    margin-bottom: .5em;
    font-size: 2.75em;
    font-weight: normal;
}
h2 {
  font-family: cooper_hewittbook;
  font-weight: normal;
 font-size: 2em;
}
h3 {
 font-family: cooper_hewittlight;
  font-weight: normal;
  font-size: 1.5em;
}
#jazyk > .inner {
  padding-top: 39px;
  text-align: center;
}
#zapati-cerna{
    font-family: cooper_hewittbook;
    font-weight: normal;
}
.eu-flag {
  margin: -1px 4px 4px 4px;
}
.sluzba-kotva {
  margin: 0px;
  padding: 0px;
}
.rsform-block label {
    display: none;
}
.mb-3.rsform-block {
  margin: 5px !important;
}
#mapa p {
  margin: 0px;
  padding: 0px;
}
.slide-content {
  color: #000;
}
[data-rlta-element="panel"] {
  overflow: visible !important;
}
.blok-cerna {
  padding: 4em 0 2em;
  color: #B2B2B2;
  background: #3C4041;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
.blok-cerna h2 {
  text-align: center;
  margin-bottom: 2em;
}
#pata-cerna a {
  color: #fff;
 }
.blok-ikony {
  max-width: 1160px;
  margin: 0px auto;
  text-align: center;
  padding: 5px;
}
.blok-flex-ful {
    position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
.flex-ful {
  margin: 0px auto;
  display: flex;
  align-items: stretch;
}
.flex-ful p {
  margin: 0px;
  padding: 0px;
}
.flex-img, .flex-zelena, .flex-orange, .flex-blue, .flex-lila   {
  flex: 50%;
  text-align: center;
  display: block;
  height: auto;
  max-width: 100%;
}
.flex-zelena {
  background-color: #BEE1B1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.flex-orange {
  background-color: #FFC395;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.flex-blue {
  background-color: #B5C9D4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.flex-lila{
  background-color: #c2b5d4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.list-text {
  margin: 4em 0;
}
@media (max-width: 768px) {
.flex-ful {
    flex-direction: column; /* zobrazí obrázek nahoře, text pod ním */
  }
  .container img,
  .flex-zelena {
    width: 100%;
    min-height: 200px;    /* oba prvky přes celou šířku */
  }
}
.blok-ikony .row > [class*="col-"] {
  margin-bottom: 4em; 
}
/* vyjizdeci prvek */
.image-box {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

/* Obrázek zachovává svou původní velikost */
.image-box img {
  display: inline-block;
  height: auto;
  width: auto;
  max-width: 100%; /* zůstane responzivní, ale nebude přetékající */
  cursor: pointer;
}

/* Okno pod obrázkem (neposouvá layout) */
.popup-window {
  position: absolute;
  top: 100%; /* těsně pod obrázkem */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: left;
  padding: 12px 12px 4px 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: max-content;
  max-width: 90%;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  z-index: 20;
}

/* Trojúhelník (nahoru směrem k obrázku) */
.popup-window::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 16px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  z-index: 21;
}

/* Po najetí na obrázek */
.image-box:hover .popup-window {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 85px);
}

/* Responzivita */
@media (max-width: 768px) {
  /* Levý popup (1., 3., 5. atd.) */
  .row .col-6:nth-child(odd) .popup-window {
    left: 70%;
    transform: translateX(-50%);
  }

  /* Pravý popup (2., 4., 6. atd.) */
  .row .col-6:nth-child(even) .popup-window {
    left: 30%;
    transform: translateX(-50%);
  }
}

[data-rlta-alias="technicke-poradenstvi"], [data-rlta-alias="technical-consulting"] {
  background-color: #BEE1B1 !important; /* green*/
  color: #000;
padding: 2em 0.5em;
}
[data-rlta-alias="ekonomicke-poradenstvi"], [data-rlta-alias="economical-consulting"] {
  background-color: #FFC395 !important; /* orange*/
  color: #000;
padding: 2em 0.5em;
}
[data-rlta-alias="manazerske-poradenstvi"], [data-rlta-alias="management-consulting"] {
  background-color: #B5C9D4 !important; /* blue */
  color: #000;
padding: 2em 0.5em;
}
[data-rlta-alias="vyberova-rizeni"] {
  background-color: #c2b5d4 !important; /* lila */
  color: #000;
padding: 2em 0.5em;
}
[data-rlta-alias="technicke-poradenstvi"]:hover {
  background-color: #CAECBE;
}
[data-rlta-alias="ekonomicke-poradenstvi"]:hover {
  background-color: #FFC89E;
}
[data-rlta-alias="manazerske-poradenstvi"]:hover {
  background-color: #C2D7E3;
}
[data-rlta-alias="vyberova-rizeni"]:hover {
  background-color: #d6c7ea;
}
.list-onas {
  padding: 4em 0;
}
.list-onas h2 {
  text-align: center;
  margin: 2em 0;
  color: #f1612b;
}
.list-partner {
  max-width: 1060px;
  margin: 4em auto 0;
}
.list-certifikaty-stranka {
  padding: 4em 0;
}
.list-certifikaty {
  margin-bottom: 6em;
}
.flex-certifikate {
  display: flex;
  flex-wrap: wrap;
}
.flex-certifikate .certifikate{
  flex: 1 1 20%; /* např. 4 sloupce na desktopu */
}
/* Mobilní rozlišení – 2 sloupce */
@media (max-width: 768px) {
  .flex-certifikate .certifikate {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
.certifikate {
  padding: 10px;
}
.list-reference, .list-aliance {
  background: #fff;
  padding: 2em 2em;
  margin-bottom: 6em;
}
.list-reference img, .list-aliance img {
  max-width: 150px;
  height: auto;
}
.list-reference .col-12.col-md-3, .list-aliance .col-12.col-md-3 {
  display: flex;
  justify-content: center; /* vodorovně */
  align-items: center;     /* svisle */
}
.list-reference .col-12.col-md-3 p, .list-aliance .col-12.col-md-3 p {
  margin: 0; /* odstraní zbytečné mezery kolem <p> */
}
.list-kontakt {
  padding: 4em 0;
}
/* === SLIDESHOW NA CELOU VÝŠKU === */
.mod_jo_slideshow,
.mod_jo_slideshow .swiper-container,
.mod_jo_slideshow .swiper-wrapper,
.mod_jo_slideshow .swiper-slide {
  width: 100% !important;
  height: 100vh !important;        /* celá výška obrazovky */
  min-height: 100vh !important;
  box-sizing: border-box;
  position: relative;
}
/* Obrázek na pozadí — vyplní celý slide */
.mod_jo_slideshow .swiper-slide img {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;     /* vyplní prostor, ořízne přebytek */
  object-position: top center !important;
  display: block;
  max-width: none !important;
  z-index: 1;
}

/* Vrstva s textem uprostřed */
.mod_jo_slideshow .slide-layer {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Obsah textu */
.mod_jo_slideshow .slide-content {
  background-color: rgba(255, 255, 255, 0.6); /* lehké průhledné pozadí */
  backdrop-filter: blur(6px); /* jemné rozmazání za textem */
  padding: 40px 50px;
  max-width: 90%;
  border-radius: 16px;
  box-sizing: border-box;
}
.mod_jo_slideshow .slide-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}
.mod_jo_slideshow .slide-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #222;
}
/* === MOBILNÍ ÚPRAVY === */
@media (max-width: 768px) {
  .mod_jo_slideshow .slide-content {
    padding: 20px 25px;
    background-color: rgba(255, 255, 255, 0.75);
  }

  .mod_jo_slideshow .slide-content h1 {
    font-size: 1.6rem;
  }

  .mod_jo_slideshow .slide-content p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
/* === DESKTOP: menší výška (volitelné) === */
@media (min-width: 992px) {
  .mod_jo_slideshow,
  .mod_jo_slideshow .swiper-container,
  .mod_jo_slideshow .swiper-wrapper,
  .mod_jo_slideshow .swiper-slide {
    height: 80vh !important;
    min-height: 600px !important;
  }
}
[data-id="mobilemenuck-1"] .mobilemenuck-bar-title {
  background: #f5f5f5;
}
[data-id="mobilemenuck-1"] .mobilemenuck-title {
  background: #f5f5f5;
  height: 43px;
}
[data-id="mobilemenuck-1"].mobilemenuck a {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1em;
}
[data-id="mobilemenuck-1"] .mobilemenuck-item > .level1 {
  background: #f5f5f5;
  -moz-border-radius: 0px 0px 0px 0px;
  -o-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
  color: #000;
}
[data-id="mobilemenuck-1"] .mobilemenuck-item > .level1 a {
  color: #000;
}
[data-id="mobilemenuck-1"].mobilemenuck {
  background: #f5f5f5;
  font-size: 1em;
  }
 [data-id="mobilemenuck-1"] .mobilemenuck-item > .level1.open {
  background: #d5d5d5;
   }
[data-id="mobilemenuck-1"].mobilemenuck {
  color: #000;
  }
[data-id="mobilemenuck-1"] .mobilemenuck-item > .level1:not(.headingck):hover {
  background: #e4e4e4;
}
}