/**
* Template Name: Ordinacinaklic
* Template URL: https://ordinacinaklic.cz/
* Updated: 1.2.2025
* Author: Fresh Mill studio
* License: https://freshmill.cz/
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&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');

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: #000;
  background-color: #f1f7f8;
  font-family: 'Poppins', sans-serif
}

a {
  color: #ff8a4f;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #000;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: 'Exo', sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .header-container {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 15px;
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  margin: 0 50px;
}
.header .logo img {
  width: auto;
  height: 45px;
  object-fit: contain;
  margin-left: 25px;
}
.header .navigace {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .navigace .menu {
  padding-left: 25px;
}
.header .navigace .other-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-tel  {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .header-tel .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header-tel .icon i {
  color: #007b81;
  font-size: 30px;
  font-weight: 600;
}
.header .header-tel .desc {
  margin-left: 15px;
}
.header .header-tel .desc span {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.header .header-tel .desc a {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.header .header-tel .desc a:hover {
  color: #000;
  text-decoration: underline;
}
.poptat-btn {
  margin-left: 100px;
}
.poptat-btn button.btn-poptat {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background-color: #007b81;
  border: none;
  border-radius: 0 20px 20px 0;
  padding: 30px 45px;
  transition: .5s;
}
.poptat-btn button.btn-poptat:hover {
  background-color: #000;
}
.__mPS2id._mPS2id-h.mPS2id-highlight.mPS2id-highlight-first {
  color: #ff8a4f;
}
@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}
@media only screen and (max-width: 1199px) {
  .poptat-btn button.btn-poptat {
    font-size: 14px;
    padding: 18px 35px
  }  
  .header .logo img {
    margin-left: 0;
    margin-right: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-tel .desc a {
    font-size: 15px;
  }
  .header .header-tel .icon i {
    font-size: 25px;
  }
  .header .logo img {
    height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .poptat-btn button.btn-poptat {
    display: none;
  }
}
@media only screen and (max-width: 601px) {
  .header .navigace .other-menu {
    display: none;
  }
}

/*--------------------------------------------------------------
# POPUP OKNO
--------------------------------------------------------------*/
/* Overlay efekt */
#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
/* Popup box */
#popup-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  max-width: 95%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  z-index: 1001;
  text-align: center;
}
/* Obsah popupu */
#popup-content {
  position: relative;
}
/* Zavírací tlačítko mimo popup */
#close-popup {
  position: absolute;
  top: -40px;
  right: -10px;
  background: white;
  border: 2px solid #ccc;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 1002;
}
#close-popup i {
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
/* Efekt při najetí */
#close-popup:hover {
  background: #ff8a4f;
  border-color: #ff8a4f;
}
#close-popup:hover i {
  color: white;
}
/* Responsivita pro mobily */
@media (max-width: 480px) {
  #popup-box {
      width: 90%;
  }
  #close-popup {
      font-size: 28px;
      top: 5px;
      right: 5px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 20px;
    font-size: 15px;
    font-family: 'Readex pro', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    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: #ff8a4f;
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #000;
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover a {
    color: #007b81;
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    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: #fff;
    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: #000;
    padding: 10px 20px;
    font-family: 'Readex Pro', sans-serif;
    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: #007b81;
    color: #007b81;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #007b81;
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #fff;
    color: #007b81;
    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%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .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;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #007b81;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background-color: #ff8a4f;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
@media only screen and (max-width: 1499px) {
  .navmenu a,
  .navmenu a:focus  {
    padding: 18px 15px;
    font-size: 13px;
  }  
}
@media only screen and (max-width: 1199px) {
  .navmenu ul#menu-main-menu-cz {
    display: block;
  }
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# ELEMENTS
--------------------------------------------------------------*/
.nadpis h2 {
  font-size: 38px;
  font-weight: 800;
  color: #000;
  padding-bottom: 25px;
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.cta {
  padding-top: 20px;
}
button.btn-border-white {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #003336;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 25px 45px;
  transition: .5s;
}
button.btn-border-white:hover {
  background-color: #fff;
  color: #003336;
}
button.btn-orange {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #ff8a4f;
  border: none;
  border-radius: 50px;
  padding: 25px 45px;
  transition: .5s;
}
button.btn-orange:hover {
  background-color: #c75c27;
  color: #fff;
}

button.btn-black {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 50px;
  padding: 25px 45px;
  transition: .5s;
}
button.btn-black:hover {
  background-color: #ff8a4f;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  button.btn-black, button.btn-orange, button.btn-border-white {
    font-size: 15px;
    padding: 18px 25px;
  }
}

/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* BANNER */
section.banner-bg {
  background-color: #f1f7f8;
}
.banner .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.banner h1 {
  font-size: 50px;
  font-weight: 800;
  color: #000;
  padding-bottom: 50px;
}
.banner h1 span {
  color: #007b81;
}
.banner p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
}
.banner .right-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .banner h1 {
    font-size: 35px;
    padding-bottom: 30px;
  }  
}
@media only screen and (max-width: 991px) {
  section.banner-bg {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .banner .left-side {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .banner h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .banner p {
    font-size: 15px;
  }
  .banner .left-side {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
@media only screen and (max-width: 575px) {
  iframe {
    width: 100%;
  }
}
@media only screen and (max-width: 485px) {
  .banner h1 {
    font-size: 25px;
    margin-bottom: 0;
    text-align: center;
  }
  .banner p {
    font-size: 15px;
    text-align: center;
  }  
  .banner .cta {
    text-align: center;
  }
  section.banner-bg {
    padding-top: 30px;
  }
}

/* O NAS */
section.onas-bg {
  background-color: #003336;
}
.onas-nadpis h2 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  padding-bottom: 50px;  
}
.onas-nadpis h2 span {
  color: #ff8a4f;
}
.onas .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.onas .left-side span {
  font-family: 'Exo', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #ff8a4f;
}
.onas .left-side p {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 400;
  color: #ff8a4f;
}
.onas .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.onas .right-side p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8; 
  margin-bottom: 0;
}
.onas .right-side p a {
  color: #ff8a4f;
  text-decoration: underline;
}
.onas .right-side p a:hover {
  color: #fff;
}
.onas .right-side p strong {
  color: #ff8a4f;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .onas-nadpis h2 {
    font-size: 35px;
  }  
}
@media only screen and (max-width: 991px) {
  .onas-nadpis h2 {
    font-size: 25px;
    padding-bottom: 25px;
  }
  .onas .left-side {
    padding-bottom: 25px;
  }  
  .onas .right-side p {
    font-size: 15px;
  }
  section.onas-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .onas-nadpis h2 {
    margin-bottom: 0;
  }
  .onas .right-side p {
    font-size: 14px;
  }
  .onas .left-side p {
    font-size: 14px;
  }
  .onas .left-side span {
    font-size: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .onas-nadpis h2 {
    margin-bottom: 0;
    font-size: 20px;
  }
  .onas .left-side span {
    font-size: 20px;
  }
}

/* SLUZBY */
section.sluzby-bg {
  background: rgb(241,247,248);
  background: -moz-linear-gradient(0deg, rgba(241,247,248,1) 0%, rgba(241,247,248,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(241,247,248,1) 0%, rgba(241,247,248,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
  background: linear-gradient(0deg, rgba(241,247,248,1) 0%, rgba(241,247,248,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1f7f8",endColorstr="#ffffff",GradientType=1);
  }
.sluzby .item-box {
  gap: 25px;
  display: inline-grid;
}
.servicebox {
  padding: 45px;
  border-radius: 20px;
}
.servicebox:hover {
  cursor: pointer;
}
.servicebox.three {
  padding: 0;
}
.servicebox.three img {
  width: 100%;
  height: 1100px;
  object-fit: cover;
  border-radius: 20px;
}
.servicebox h3 {
  font-size: 25px;
  font-weight: 800;
  padding-bottom: 25px;
}
.servicebox p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}
.servicebox.one {
  background-color: #f1f7f8;
}
.servicebox.one h3, .servicebox.one p {
  color: #000;
}
.servicebox.two {
  background-color: #ff8a4f;
}
.servicebox.two h3, .servicebox.two p, .servicebox.two ul {
  color: #fff;
}

.servicebox.four {
  background-color: #007b81;
}
.servicebox.four h3, .servicebox.four p, .servicebox.four ul {
  color: #fff;
}
.servicebox.five {
  background-color: #e9fef5;
}
.servicebox.five h3, .servicebox.five p, .servicebox.five ul {
  color: #000;
}
@media only screen and (max-width: 1199px) {
  section.sluzby-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .servicebox {
    padding: 25px;
  }
  .servicebox ul li {
    font-size: 14px;
  }
  .servicebox h3 {
    font-size: 20px;
  }
  .servicebox.three img {
    height: 775px;
  }
}
@media only screen and (max-width: 991px) {
  .servicebox {
    width: 100%;
  }
  .sluzby .left-side, .sluzby .right-side {
    display: grid;
  }
  .servicebox.three img {
    height: 250px;
  }
  .sluzby .middle-side {
    display: grid;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* POSTUP */
section.postup-bg {
  background-color: #f1f7f8;
  text-align: center;
  padding: 50px 0;
  position: relative;
}
.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}
.step-circle {
    width: 100px;
    height: 100px;
    border: 1px dashed #007b81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #007b81;
    background-color: #f1f7f8;
    margin-bottom: 25px;
}
.step-line {
    position: absolute;
    top: 50px;
    width: 60%;
    height: 3px;
    background-color: #007b81;
    z-index: 1;
}
.postup p {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
/* Spojovací čára bude jen na desktopu */
@media (max-width: 768px) {
  .step-line {
      display: none;
  }
}
@media only screen and (max-width: 991px) {
.postup p {
  font-size: 15px;
}
}
@media only screen and (max-width: 767px) {
.step-circle {
  margin-bottom: 25px;
}
}


/* NEZAVAZNA KONZULTACE */
section.adv-banner-bg {
  background-color: #003336;
  padding-bottom: 0;
  padding-top: 0;
}
.advbanner .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.advbanner .left-side img {
  width: auto;
  height: 462px;
  object-fit: contain;
  position: relative;
}
.advbanner .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.advbanner .right-side h3 {
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
}
.advbanner .right-side p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
}
@media only scree and (max-width: 1199px) {
  section.adv-banner-bg {
    padding-top: 20px;
  }  
}
@media only screen and (max-width: 991px) {
  .advbanner .right-side {
    justify-content: center;
    text-align: center;
  }
  .advbanner .left-side {
    align-items: center;
    justify-content: center;
  }
  section.adv-banner-bg {
    padding-bottom: 50px;
  } 
}
@media only screen and (max-width: 767px) {
  .advbanner .left-side img {
    height: 250px;
    padding-bottom: 15px;
  }
  .advbanner .right-side h3 {
    padding-bottom: 0;
    font-size: 22px;
  }
  .advbanner .right-side p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .advbanner .right-side h3 {
    padding-bottom: 0;
    font-size: 19px;
  }
  .advbanner .right-side p {
    font-size: 14px;
  }
}

/* RECENZE */
section.recenze-bg {
  background-color: #fff;
}
.recbox {
  background-color: #f1f7f8;
  border-radius: 15px;
  padding: 35px;
}
.recbox .stars {
  margin-bottom: 15px;
}
.recbox .checked {
  color: orange;
}
.recbox p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 50px;
}
.recbox .author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.recbox .author .avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50px;
}
.recbox .author .name {
  margin-left: 15px;
}
.recbox .author .name h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}
.recbox .author .name span {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
@media only screen and (max-width: 1199px) {
  section.recenze-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .recbox p {
    font-size: 14px;
  }
  .recbox .author .name h4 {
    font-size: 16px;
  }
  .recbox .author .name span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .recbox {
    padding: 25px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .recbox p {
    margin-bottom: 20px;
  }
}

/* KONTAKT */
section.kontakt-bg {
  background-color: #fff;
}
.kontakt-nadpis h2 {
  font-size: 50px;
  font-weight: 800;
  color: #000;
  padding-bottom: 50px;
  padding-left: 80px;
  line-height: 1.5;
}
.kontakt-nadpis h2 span {
  font-weight: 800;
  color: #007b81;
}
.kontakt .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.kontakt .left-side p {
  font-size: 21px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  padding-bottom: 40px;
}
.kontakt .left-side ol {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  padding-bottom: 40px;
}
.kontakt .left-side ol li {
  margin: 20px 0
}
.kontakt-info .kontakt-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0;
}
.kontakt-info .kontakt-row .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #bfdedf;
  width: 80px;
  height: 80px;
}
.kontakt-info .kontakt-row.borderone .icon {
  border-radius: 10px 0 10px 10px;
}
.kontakt-info .kontakt-row.bordertwo .icon {
  border-radius: 10px 10px 10px 0;
}
.kontakt-info .kontakt-row .icon i {
  color: #003336;
  font-size: 25px;
  font-weight: 600;
}
.kontakt-info .kontakt-row .desc {
  margin-left: 15px;
}
.kontakt-info .kontakt-row .desc span {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.kontakt-info .kontakt-row .desc a {
  font-family: 'Exo', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.kontakt-info .kontakt-row .desc a:hover {
  color: #000;
  text-decoration: underline;
}
.kontakt .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.kontakt .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.kontakt .formular {
  background-color: #f1f7f8;
  padding: 40px;
  border-radius: 15px;
}
.kontakt .formular h3 {
  font-size: 25px;
  font-weight: 800;
  color: #000;
  padding-bottom: 20px;
}

/* FORMULAR */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #20201e;
  border-color: #20201e;
  color: #fff;
  padding: 15px;
  font-weight: 700;
}
.item-form .cta p {
  margin-bottom: 0
}
.buttonred {
  border: 2px solid #ff8f56;
  background-color: #ff8f56;
  border-radius: 50px;
  color: #fff;
  padding: 0 30px;
  line-height: 3em;
  height: 5em;
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition-property: all;
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
width: 100%;
}
.buttonred:hover {
background-color: #c75c27;
border: 2px solid #c75c27;
color: #fff;
  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: #ff0000;
color: #ffffff;
font-size: 12px;
padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border: 5px solid #fff;
  margin-top: -30px;
}
div.wpcf7-response-output {
  margin: 2em .5em 1em;
  padding: 1em;
  font-size: 14px;
}
.wpcf7-form-control.wpcf7-text {
border: 2px solid #fff;
background-color: #f1f7f8;
height: 60px;
font-family: 'Exo', sans-serif;
  font-weight: 700;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
border-radius: 15px;
}
.wpcf7-form-control.wpcf7-select {
border: 2px solid #fff;
background-color: #f1f7f8;
height: 60px;
font-family: 'Exo', sans-serif;
  font-weight: 700;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
border-radius: 15px;
}
.wpcf7-form-control {
  margin-top: 15px
}

.wpcf7-form-control.wpcf7-textarea {
border: 2px solid #fff;
background-color: #f1f7f8;
height: 180px;
font-family: 'Exo', sans-serif;
  font-weight: 700;
  width: 100%;
  padding-left: 25px;
  padding-top: 15px;
  height: 100px;
  font-size: 14px;
border-radius: 15px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
border: 2px solid #fff;
background-color: #f1f7f8;
height: 60px;
font-family: 'Exo', sans-serif;
  font-weight: 700;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
  border-radius: 15px;
}

.wpcf7 :focus {
  color: #000;
  background-color: #ffffff!important;
  outline: 0;
  border: 2px solid #fff!important;
}

.wpcf7-form-control.wpcf7-number {
border: 2px solid #fff;
background-color: #f1f7f8;
height: 60px;
font-family: 'Exo', sans-serif;
  font-weight: 700;
width: 100%;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
border-radius: 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: #000000!important;
  opacity: 1
}
:-moz-placeholder {
  color: #000000!important;
  opacity: 1
}
::-moz-placeholder {
  color: #000000!important;
  opacity: 1
}
:-ms-input-placeholder {
  color: #000000!important;
  opacity: 1
}
.ochrana-os p {
  color: #000000;
  font-size: 14px;
}
.ochrana-os p a {
  color: #ff8a4f;
  text-decoration: underline;
}
.ochrana-os p a:hover {
color: #000;
}
@media only screen and (max-width: 1199px) {
  section.kontakt-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .kontakt-nadpis h2 {
    padding-bottom: 30px;
    padding-left: 0;
    font-size: 35px;
  }
  .kontakt .left-side ol {
    font-size: 16px;
  }
  .kontakt .left-side ol {
    padding-bottom: 20px;
  }
  .kontakt-info .kontakt-row .desc span {
    font-size: 16px;
  }
  .kontakt-info .kontakt-row .desc a {
    font-size: 17px;
  }
  .kontakt .formular h3 {
    font-size: 20px;
    padding-bottom: 15px;
  }  
}
@media only screen and (max-width: 991px) {
  .kontakt-nadpis h2 {
    margin-bottom: 0;
    font-size: 25px;
    padding-bottom: 10px;
  }
  .kontakt .left-side ol {
    font-size: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .kontakt .formular h3 {
    margin-bottom: 0;
    font-size: 18px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .kontakt .left-side ol {
    font-size: 14px;
  }
  .kontakt-nadpis h2 {
    font-size: 20px;
    padding-bottom: 0;
  }
  .kontakt-info .kontakt-row .desc a {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer {
  background-color: #003336;
}
section.paticka-bg {
  padding-bottom: 25px;
}
.paticka {
  padding: 0 50px;
}
/* PATICKA */
.paticka h5 {
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.paticka .sloupec1 p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  width: 80%;
}
.paticka ul li {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  list-style: none;
  line-height: 2.2;
}
.paticka ul {
  padding-left: 0;
}
.paticka ul li a {
  color: #fff;
}
.paticka ul li a:hover {
  color: #ff8a4f;
}


.paticka-sloupec4 .clanek h3 {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  list-style: none;
  line-height: 2.2;  
}
.paticka-sloupec4 .clanek:hover h3 {
    text-decoration: underline;
}
.paticka-sloupec4 .clanek .link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ff8a4f;
}
.paticka-sloupec4 .clanek:hover .link {
    color: #ff8a4f;
    text-decoration: underline;
}
.paticka-sloupec4 .clanek {
    padding-bottom: 15px;
    width: 90%;
}
.paticka-sloupec4 .clanek h3 {
    font-family: 'Exo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
.paticka-sloupec4 .clanek:hover h3 {
    text-decoration: underline;
}

/* SOCKET */
section.socket-bg {
  height: 290px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 35px;
}
.socket p {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
}
.socket p a {
  text-decoration: underline;
}
.socket p a:hover {
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .paticka .sloupec1 p {
    font-size: 15px;
  }
  .paticka h5 {
    font-size: 20px;
  }
  .paticka ul li {
    font-size: 15px;
  }  
}
@media only screen and (max-width: 991px) {
  .paticka-sloupec4 {
    padding-bottom: 20px;
  }
  .paticka .sloupec1 p {
    width: 100%;
  }
  .paticka .sloupec2, .paticka .sloupec1 {
    padding-bottom: 20px;
  } 
  section.paticka-bg {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .paticka h5 {
    padding-bottom: 10px;
  }
  section.paticka-bg {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .paticka .sloupec1 {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .paticka h5 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# PODSTRANKA
--------------------------------------------------------------*/
/* BREADCRUMBS */
section.bread-bg {
  background-color: #f1f7f8;
  padding-bottom: 0;
}
.bread span {
  font-family: 'Exo', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}
.bread h1 {
  font-size: 50px;
  font-weight: 800;
  color: #000;
}
.bread .category a {
  color: #fa984f;
  font-weight: 700;
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .bread h1 {
    font-size: 35px;
  }
  section.bread-bg {
    padding-top: 35px;
  }
  .bread span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .bread h1 {
    font-size: 30px;
  }
  section.bread-bg {
    padding-top: 25px;
  }
  .bread span {
    font-size: 13px;
  }
}
  .bread h1 {
    font-size: 25px;
  }
  section.bread-bg {
    padding-top: 25px;
  }
  .bread span {
    font-size: 11px;
  }
}

/* PODSTRANKA */
section.pages-bg {
  background-color: #f1f7f8;
}
.pages .left-side {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.pages .left-side .item-menu {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 50px;
}
.pages .left-side .item-menu ul {
  padding-left: 0;
}
.pages .left-side .item-menu ul li a {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  list-style: none; 
}
.pages .left-side .item-menu ul li {
  margin-bottom: 10px;
}
.pages .left-side .item-menu ul li a:hover {
  color: #ff8a4f;
  text-decoration: underline;
}
.pages .left-side .item-menu .current_page_item a {
  color: #ff8a4f;
}
.pages .right-side {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
}
.pages .right-side p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}
.pages .right-side ul {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}
@media only screen and (max-width: 991px) {
  .pages .right-side {
    padding: 30px;
  }
  .pages .right-side p, .pages .right-side ul {
    font-size: 14px;
  }
  .pages .left-side .item-menu {
    display: none;
  }
  section.pages-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
section.blog-bg {
  background-color: #f1f7f8;
}
.blogbox {
  background-color: #fff;
  border-radius: 15px;
}
.blogbox .thumb {
  border-radius: 15px 15px 0 0;
}
.blogbox .thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.blogbox .thumb {
  overflow: hidden;
}
.blogbox .thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blogbox:hover .thumb img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.blogbox .desc {
  padding: 25px;
}
.blogbox .desc span {
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.blogbox .desc h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-top: 8px;
}
.blogbox .more-link {
  padding: 0 25px 25px 25px;
}
.blogbox .more-link i {
  width: 2.8em;
  height: 2.8em;
  font-size: .9em;
  text-align: center;
  vertical-align: middle;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 10em;
  border-style: solid;
  border-width: 1px;
  border-color: #ff8a4f;
  background-color: #ff8a4f;
  color: #fff;
  transition: .3s;  
}
.blogbox .more-link span {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding-left: 10px;
}
.blogbox-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blogbox:hover h3 {
  color: #ff8a4f;
}
.blogbox:hover span {
  color: #ff8a4f;
}
.blogbox:hover i {
  border-color: #000;
    background-color: #000;
}
@media only screen and (max-width: 1199px) {
  section.blog-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blogbox .desc h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .blog .col-lg-4 {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# DETAIL CLANKU
--------------------------------------------------------------*/
.singleblog {
  padding-bottom: 70px;
}
.blogtitle .postinfo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
}
.blogtitle .postinfo i {
  color: #fa984f;
}
.blogtitle .postinfo span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #00000091;
  margin: 0 10px;
}
.blogimage img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}
.blogdesc {
  padding: 35px 70px;
}
.blogdesc p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
}
.blogdesc p strong {
  font-weight: 700;
}
.blogdesc a {
  color: #ff8a4f;
  text-decoration: underline;
}
.blogdesc a:hover {
  text-decoration: none;
}
.blogdesc h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;  
}
.blogdesc h3 {
  font-size: 25px;
  font-weight: 600;
  color: #000;  
}
section.relatedposts-bg {
  background-color: #ffffff;
}
.blogbottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blogbottom .tagsline a {
  font-family: 'Lora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;  
}
.blogbottom .tagsline a:hover {
  color: #fa984f;
  text-decoration: underline;
}
.share {
  display: flex;
  gap: 15px;
}
.share a {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Mezera mezi ikonou a textem */
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white; /* Barva textu */
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.share a i {
  font-size: 18px;
}
/* Facebook styl */
.share a.facebook {
  background-color: #1877f2; /* Facebook modrÃ¡ */
}
.share a.facebook:hover {
  background-color: #145dbf; /* TmavÅ¡Ã­ modrÃ¡ pÅ™i hoveru */
  transform: translateY(-2px);
}
/* Twitter styl */
.share a.twitter {
  background-color: #1da1f2; /* Twitter modrÃ¡ */
}
.share a.twitter:hover {
  background-color: #0d8be6; /* TmavÅ¡Ã­ modrÃ¡ pÅ™i hoveru */
  transform: translateY(-2px);
}
@media only screen and (max-width: 991px) {
  .blogdesc p, .blogdesc ul, .blogdesc ol {
    font-size: 14px;
  }
  .blogdesc {
    padding: 35px 0;
  }
  .blogimage img {
    height: 250px;
    border-radius: 10px;
  }  
}
@media only screen and (max-width: 767px) {
  .bread h1 {
    font-size: 20px;
    padding-top: 15px;
  }  
}

/*--------------------------------------------------------------
# SCROLLBAR
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background: #007b81;
}


/*--------------------------------------------------------------
# WP LOGIN
--------------------------------------------------------------*/
body.login {
  background-color: #003336;
}
#login h1 a {background-image: url("/wp-content/uploads/2025/02/logo-2048x630.png");background-size: 180px;width: auto;border-radius: 15px;background-color: #fff;}
.login form {
box-shadow: none;
padding: 20px;
background: #254446;
}
#login {
  background: #254446;
  margin: 50px auto;
  padding: 40px 20px;
  width: 400px;
  border-radius: 25px;
}
.login label {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 14px
}
.login form .forgetmenot {
  float: none
}
#login form p.submit {
  margin-top: 15px
}
.login.wp-core-ui .button-primary {
  background-color: #ff8a4f;
  padding: 18px 35px;
  color: #fff;
  border: none;
  font-family: 'Readex Pro', sans-serif;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
width: 100%;
  transition: .5s;
}
.login.wp-core-ui .button-primary:hover {
background-color: #c75c27;
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 #ffffff;
  border-radius: 15px;
}
p#backtoblog {
  display: none;
}
.privacy-policy-page-link a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700
}
.login #nav a {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
text-decoration: underline;
}
.login #nav a:hover {
  color: #ff8a4f;
}
