@charset "UTF-8";

/*! eso9.css */
/* Small (smaller than 640px) */
/* Medium (641px to 1007px) */
/* Large (1008px and larger) */ 

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@100;200;300;400;500;700;900&display=swap');
/* https://fonts.google.com/specimen/Nunito+Sans?preview.text=&preview.text_type=custom#standard-styles */

:root {
  --font-family-roboto: 'Roboto', sans-serif;
  --font-family-verdana: verdana, sans-serif;  
  --font-family-public-sans: 'Public Sans', sans-serif;
  --font-family-nunito: 'Nunito Sans', sans-serif;
  --content-width: 1600px;
  --gray: rgb(114, 114, 114); /* #727272 */
  --gray-light: rgb(160, 160, 160); /* #A0A0A0 */
  --gray-deep: rgb(51, 51, 51); /* #333333 */
  --gray-dark: rgb(70, 70, 70); /* #464646 */
  --orange: rgb(250, 155, 30); /* #fa9b1e */
  --white: #fff;
}

@media (prefers-reduced-motion: no-preference) { :root { scroll-behavior: smooth; } }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Roboto', sans-serif; /* IE11*/
  font-family: var(--font-family-nunito);
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-size: 0.875rem;
  font-size: 1.25rem;
  line-height: 1.5; 
  background-color: rgb(255, 255, 255);
  color: rgb(70, 70, 70); /* IE11 */
  color: var(--gray-deep);
}

a { color: rgb(70, 70, 70); color: var(--gray-dark); text-decoration: none; background-color: transparent; }
a:hover { color: rgb(250, 155, 30); color: var(--orange); text-decoration: underline; }
a.arrow-link:hover,
a.arrow-link:focus {
  text-decoration: none;
}
a.arrow-link:hover span,
a.arrow-link:focus span {
  text-decoration: underline;
}
a > code { color: inherit; }
.strong { font-weight: bolder; }

h1, .h1 { font-size: calc(1.375rem + 1.5vw); } 
h2, .h2 { font-size: calc(1.325rem + 0.9vw); }
h3, .h3 { font-weight: 700 !important; font-size: calc(1.3rem + 0.6vw); font-style: normal; font-stretch: normal; }
h4, .h4 { font-size: calc(1.275rem + 0.3vw); }
@media (min-width: 1200px) { h1, .h1 { font-size: 3rem; } }
@media (min-width: 1200px) { h2, .h2 { font-size: 1.875rem; } }
@media (min-width: 1200px) { h3, .h3 { font-size: 1.5rem; } }
@media (min-width: 1200px) { h4, .h4 { font-size: 1.25rem; } }
@media (min-width: 1200px) { .text-xl-justify { text-align: justify !important; } }

/* small, .small { font-size: 0.875em; } */
iframe { border: 0; }

.w-10 { width: 10% !important; }
.w-15 { width: 15% !important; }
.w-20 { width: 20% !important; }
.w-25 { width: 25% !important; }
.w-30 { width: 30% !important; }
.w-33 { width: 33% !important; }
.w-40 { width: 40% !important; }
.w-50 { width: 50% !important; }

.ml-1_5 { margin-left: 0.125rem !important; }

.border-top { border-top: 1px solid rgb(70, 70, 70) !important; border-top-color: var(--gray-deep) !important; }
.border-top-white { border-top: 1px solid rgb(222, 225, 230) !important; border-top-color: var(--white) !important; }
.border-bottom { border-bottom: 1px solid rgb(70, 70, 70) !important; border-bottom-color: var(--gray-deep) !important; }
.border-bottom-white { border-bottom: 1px solid rgb(222, 225, 230) !important; border-bottom-color: var(--white) !important; }

/* header main_nav */
header, #navig {
  font-family: var(--font-family-nunito); 
  font-weight: 400;
  font-style: normal;
  font-size: 1.05rem;  
  letter-spacing: 0.031rem; 
  width: 100%;
}
header .navbar-light {
  background-color: rgba(250, 176, 67, 0.95) !important;
}
header .navbar .container, #navig .navbar .container {
  max-width: var(--content-width);
}
header .navbar-brand {
  height: 3.5rem;
  padding-top: 0.813rem;
} 
header .navbar-brand .logo-white, header .navbar-brand:hover .logo-black  {
  display: block;
  height: 1.875rem;
  width: 5.125rem;
}
header .navbar-brand .logo-black, header .navbar-brand:hover .logo-white  {
  display: none;
}
header #main_nav .nav-link {
  color: #727272 !important;
  color: var(--gray)  !important;
}
header #main_nav .nav-link img {
  height: 1.25rem;
  width: 1.25rem;
}
header #main_nav .divider  {
  padding-right: 1rem !important;
}
header .dropdown-item:focus, header .dropdown-item:hover{
  color: rgb(250, 155, 30);
} 
header .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border: .3em solid;
  border-width: 0 .15em .15em 0;
  width: .5em;
  height: .5em;
  transform: rotateZ(45deg)
}

/* #navig sec_nav */
#navig {
  top: 4rem;
  z-index: 1020;
}
#navig #sec_nav .nav-link {
  /* border-bottom: .2rem solid rgb(250, 155, 30); */
  color: #a0a0a0 !important;
  color: var(--gray-light) !important;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px; 
  border-bottom: none;
}
#navig #sec_nav .nav-link:hover {
  border-bottom: .2rem solid rgb(250, 155, 30) !important;
  color: rgb(250, 155, 30) !important;
  color: var(--orange) !important;
}
#navig #sec_nav .divider  {
  padding-right: 2rem !important;
}

@media (max-width: 576px) {
  #navig {
    position: fixed !important;
    top: 4.5rem;
    background-color:  rgba(250, 176, 67, 0.95) ;
  }
  #navig #sec_nav .nav-link  {
    color: #fff !important;
    text-align: center;
    /* font-size: 3rem; */
    font-size: 2.5rem;
    line-height: normal ;
  }
  #navig #sec_nav .nav-link, #navig #sec_nav .nav-link:hover  {
    border-bottom: none !important;
  }
  #navig #sec_nav .nav-link:active  {
    color: #000 !important;
  }
}

/* footer */
footer {
  font-family: var(--font-family-nunito); 
  font-weight: 400;
  font-style: normal;
  font-size: 1rem; 
  letter-spacing: 0.031rem;
  width: 100%;
  background-color: rgb(51, 51, 51);
  background-color: var(--gray-deep);
}
footer .navbar .container  {
  max-width: var(--content-width);
}
footer .divider  {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
footer .nav-link {
  display: inline-block;
  color: #ffffff !important;
}
footer #TopBtn {
  position: fixed; 
  bottom: 100px; 
  right: 25px; 
  display: none; 
  padding: .625rem .875rem;
  /* z-index: 99;  */
}
footer .chevron-up:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering:  auto;
  line-height: 1;
  display: inline-block;
  content: "";
  border: .15rem solid;
  border-width: 0 .15rem .15rem 0;
  width: .5rem;
  height: .5rem;
 
  transform: rotateZ(225deg)
}
@media (max-width: 767px) {
  footer .nav-item-md, footer ul  {
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  footer #TopBtn {
  display: none !important;
  }
}

/* container */
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 99%;
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1600px; /* IE11 */
    max-width: var(--content-width);
  }
}

/* top-banner */
#top-banner  { 
  background-image: url("../images/img-1480_1920.jpg") !important; 
  background-image: -webkit-image-set(url("../images/img-1480_1920.webp")1x ) !important; 
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  }
@media only screen and (max-width: 767px) {
  #top-banner { 
    background-image: url("../images/img-1480_640.jpg") !important;
    background-image: -webkit-image-set(url("../images/img-1480_640.webp")1x ) !important;}      
  }
#top-banner .bg-overlay {
  background: linear-gradient( 90deg, rgba(0, 0, 0, .4) 43%, rgba(76, 76, 76, .1) 63%);
  z-index: 1 !important;
}
#top-banner .jumbo {
  font-family: var(--font-family-nunito);
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;  
  opacity: 0.85;
  color: #ffffff !important;
  position: relative;
  z-index: 1000 !important;
  padding: 10rem 4rem 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 99%;
  min-height: 15rem;
}
#top-banner .perex {
  max-width: 70% !important;
}
@media (max-width: 768px) {
  #top-banner .jumbo, #top-banner .jumbo h1 {
    text-align: center !important;
    padding-top: 3rem;
    padding-right: 0 !important;
    padding-bottom: 2rem;
    padding-left: 0 !important;
    margin-right: 0 !important; 
    margin-left: 0 !important;
  } 
  #top-banner .jumbo .row {
      text-align: center !important;
      padding-right: 0 !important;
      padding-left: 0 !important;
      margin-right: 0 !important; 
      margin-left: 0 !important;
    } 
  #top-banner .perex {
    max-width: 100% !important;
  }
} 
@media (min-width: 1400px) {
  #top-banner .jumbo {
    max-width: 1600px; /* IE11 */
    max-width: var(--content-width);
  }
}
@media (min-width: 1608px) { 
  #top-banner .jumbo {
    padding-left: 1.125rem !important;
  } 
}
@media (min-width: 1920px) {
  #top-banner .jumbo {
   min-height: 27rem;
  }
} 
#top-banner .arrow {
  height: 1.25rem;
  width: 1.25rem;
}
#top-banner h1 {
  font-weight: 400;
  font-size: 2.5rem !important;
}
#top-banner h2 {
  line-height: 1.5 !important;
  font-size: 1.5rem !important;
}
#top-banner h3 {
  font-size: 1rem !important; 
}
#top-banner .nav-link {
  display: block;
  padding: 0 1rem 0 0;
}
#top-banner a, #top-banner a:visited {
  color: #ffffff !important;
  text-decoration: none ; 
}
#top-banner a:hover, #top-banner a:focus {
  color: #ffffff !important;
  text-decoration:underline solid;
 }
 #top-banner a.not-under, #top-banner a.not-under:hover, #top-banner a.not-under:focus {
   text-decoration: none !important; 
 }

 /* vertical line */
 .vl {
  border-left: 3px solid rgb(250, 155, 30) !important;
  border-left-color: var(--orange) !important; 
  height: 180px;
  position: relative;
  left: 50%;
  z-index: 1020;
  margin-top: 3rem;
  margin-bottom: 3rem; 
}
.vl-top {
  margin-bottom: 0; 
  top: -100px;
  margin-bottom: -100px; 
}

/* box-content */ 
#box-content .card-deck .card {
  font-family: var(--font-family-nunito);
  margin-bottom: 1rem; 
  border-radius: 0.8rem;
  min-height: 23rem;
  min-width: 18rem;
  color: #ffffff;
}
#box-content .card-text { 
  font-size: 0.875rem;
}
#box-content .card-footer { 
  font-size: 80%;
}


#box-content .arrow {
  height: 1.25rem;
  width: 1.25rem;
}
@media (min-width: 576px) {
  #box-content .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -2.5rem;
    margin-left: -2.5rem;
  }
  #box-content .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 2.5rem;
    /* margin-bottom: 0; */
    margin-left: 2.5rem;
    max-width: 23rem;
  }
}
#box-content .card-header {
  background-color: rgb(51, 51, 51);
  background-color: var(--gray-deep);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#box-content .card-header:first-child {
  border-radius: calc(.8rem - 1px) calc(.8rem - 1px) 0 0;
  border-top-left-radius: calc(0.8rem - 1px);
  border-top-right-radius: calc(0.8rem - 1px);
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
#box-content .card-body  {
  background-color: rgb(70, 70, 70);
  background-color: var(--gray-dark); 
}
#box-content .card-footer  {
  background-color: rgb(70, 70, 70);
  background-color: var(--gray-dark); 
  border-top: 0;
  padding-bottom: 3rem;
}
#box-content .card-footer:last-child {
  border-radius: 0 0 calc(.8rem - 1px) calc(.8rem - 1px);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: calc(0.8rem - 1px);
  border-bottom-left-radius: calc(0.8rem - 1px);
}
#box-content a, #box-content a:visited, #box-content a:hover, #box-contenta:focus {
  color: #ffffff !important;
  text-decoration: none ; 
}

/* news */
#news.container {
  max-width: 44rem; 
}
#news .arrow {
  height: 1.25rem;
  width: 1.25rem;
}
#news h3 {
  font-weight: 700 !important;
  font-style: normal;
  font-stretch: normal;
}
#news h4 {
  font-weight: 700 !important;
  font-style: normal;
  font-stretch: normal;
}
#news .card {
  border: none;
}
#news .card-text {
  padding-top: 1.5rem;
}

/* produkty */ 
#produkty .card {
  font-family: var(--font-family-nunito);
  border-radius: 0.8rem;
  min-height: 23rem;
  min-width: 18rem;
  color: #ffffff;
}
@media (min-width: 576px) {
  #produkty .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    max-width: 40rem;
  }
}
#produkty .card-header {
  text-transform: uppercase ;
  background-color: rgb(51, 51, 51);
  background-color: var(--gray-deep); 
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
#produkty .card-header:first-child {
  border-radius: calc(.8rem - 1px) calc(.8rem - 1px) 0 0;
  border-top-left-radius: calc(0.8rem - 1px);
  border-top-right-radius: calc(0.8rem - 1px);
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
#produkty .card-body  {
  background-color: rgb(51, 51, 51);
  background-color: var(--gray-deep); 
  padding-top: 0;
  padding-left: 5rem;
  padding-right: 5rem;
}
#produkty .card-subtitle { 
  text-transform: uppercase ;
  padding-top: 1.5rem;
  margin-top: 2rem;
  margin-bottom: .5rem;
}
#produkty .card-text { 
  font-size: 1rem;
}
#produkty .card-footer  {
  background-color: rgb(51, 51, 51);
  background-color: var(--gray-deep); 
  border-top: 0;
  padding-bottom: 3rem;
}
#produkty .card-footer:last-child {
  border-radius: 0 0 calc(.8rem - 1px) calc(.8rem - 1px);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: calc(0.8rem - 1px);
  border-bottom-left-radius: calc(0.8rem - 1px);
}

/* mdash */
ul.mdash  { list-style-type: none; }
ul.mdash li { margin-bottom: 1rem; } 
ul.mdash li:before {
  content: '\2014';
  color: var(--gray);
  display: inline-block; 
  width: 2em;
  margin-left: -2em;
}  
@media (min-width: 768px) { 
  ul.mdash li { 
    padding-left: 3rem!important; 
  } 
}  

/* list-mdash */
ul.list-mdash  { 
  list-style-type: '\2014 \00a0';
  list-style-position: inside;
  /* padding-left: 0; */
}
ul.list-mdash-out {
  list-style-type: '\2014 \00a0';
  list-style-position: outside;
  /* padding-left: 0; */
}
ul.list-mdash li::marker, ul.list-mdash-out li::marker {
  color: var(--gray) !important ;
} 

/* pipe */
.pipe {
  font-weight: 700;
}
h4.pipe {
  font-size: 1.875rem;
  text-transform: uppercase;
}
.pipe::before {
  content: 'ǀ';
  color: var(--gray);
  font-size: 2rem;  
  vertical-align: middle;
  margin-right: .75rem;
}
h4.pipe::before {
  font-size: 2.8rem;  
  margin-right: 1.25rem;
}
ul.list-pipe  { 
  list-style-type: '\007c \00a0';
  list-style-position: inside;
  padding-left: 0;
  text-indent: -24px;
  padding-left: 24px;
}
ul.list-pipe-out  { 
  list-style-type: '\007c \00a0';
  list-style-position: outside;
  padding-left: 0;
}
ul.list-pipe li::marker, ul.list-pipe-out.li::marker {
  color: var(--gray) ;
} 

/* reference */
#reference h4 { 
  font-size: 1rem; 
}
#studie h4 { 
  font-weight: 700; 
}
#reference .pipe { 
  text-transform: none !important; 
  margin-bottom: .1rem; 
}
#studie img { 
  height: 2.2rem;
}
#reference img.arrow, #studie img.arrow {
  height: 1.25rem !important;
  width: 1.25rem !important;
}
#reference .table td, #reference .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top:none;
    border-bottom: 1px solid var(--gray-light);
}

/* skoleni */
#skoleni-u h4, #skoleni-s h4 { 
  font-size: 1rem; 
}
#skoleni-u .pipe, #skoleni-s .pipe { 
  text-transform: none !important; 
  margin-bottom: .1rem; 
}
#skoleni-u p, #skoleni-s p { 
  padding-left: 2rem; 
}
#skoleni-u img.arrow, #skoleni-s img.arrow { 
  height: 1.375rem;
  width: 1.375rem;
}
#skoleni-u .termin, #skoleni-s .termin { 
  font-size: 1rem;
  padding-left: 2rem; 
  color: var(--gray-dark);
}
#skoleni-uzivatel .btn-header-link, #skoleni-spravce .btn-header-link { 
  display: block; padding: 8px; 
  cursor: pointer;
} 
#skoleni-uzivatel .btn-header-link::before, #skoleni-spravce .btn-header-link::before { 
  content: url(../images/check-white.png); 
  padding-right: 2rem; 
  vertical-align: middle;
}
#skoleni-uzivatel .btn-header-link.collapsed::before, #skoleni-spravce .btn-header-link.collapsed::before { 
  content: url(../images/arrow-right.png) !important;
} 
#skoleni-uzivatel .card-header, #skoleni-spravce .card-header  {
  background-color: var(--gray-deep);
  color: #fff;
}
#skoleni-uzivatel .bg-light, #skoleni-spravce .bg-light  {
  background-color: rgb(249, 249, 249) !important;
}

/* o nas */
#o-nas.container, #volnamista.container {
  max-width: 56rem !important;
}
#vedeni h4, #volnamista h4 { 
  font-weight: 700; 
  font-size: 1rem; 
  font-size: 1.5rem;
}
#vedeni .pipe, #volnamista .pipe { 
  text-transform: none !important; 
  margin-bottom: .1rem; 
}

/* kontakty */
#cr h4, #sr h4, #dalsi-staty h4 { 
  font-weight: 700; 
  font-size: 1rem; 
  font-size: 1.5rem;
}
#cr .pipe, #sr .pipe, #dalsi-staty .pipe { 
  text-transform: none !important; 
  margin-bottom: .1rem; 
}
#cr img.arrow, #sr img.arrow, #dalsi-staty img.arrow {
  height: 1.375rem;
  width: 1.125rem;
}


@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl ,.container-xxl {
    max-width: 1320px;
  }
}
