body {
  border-top: 10px solid #d45d15;
}

nav {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  nav .navbar-brand img {
    max-width: 6rem;
  }
}
nav .navbar-toggler {
  border: 0;
  font-family: Trebuchet MS, Helvetica, sans-serif;
}
nav .navbar-toggler .navbar-toggler-text {
  position: relative;
  top: 3px;
}
nav .navbar-nav li {
  margin-left: 1.3em;
  border-bottom: 5px solid white;
}
nav .navbar-nav li.menuon {
  border-bottom: 5px solid #f19235;
}
nav .navbar-nav li.menuon a {
  color: #f19235;
}
nav .navbar-nav li:hover {
  border-bottom: 5px solid #f19235;
}
nav .navbar-nav li a {
  font-family: Trebuchet MS, Helvetica, sans-serif;
  color: #222;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
}
nav .navbar-nav li a:hover {
  text-decoration: none;
}

/* hamburger */
.hamburger {
  float: right;
  position: relative;
  padding-right: 60px;
  border: 0;
  font-size: 1em;
}
.hamburger .toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
.hamburger .toggle.active span {
  box-shadow: 50px -12px 0 #262626, -50px 12px 0 #262626;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(-315deg);
  transition-property: box-shadow, transform;
  transition-delay: 0s, 0.5s;
  transition-duration: 0.5s, 0.5s;
}
.hamburger .toggle.active span:before {
  top: 50%;
  transition-delay: 1s;
}
.hamburger .toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: calc(100% - 14px);
  height: 3px;
  background: #262626;
  box-shadow: 0 -12px 0 #262626, 0 12px 0 #262626;
  transition-property: transform, box-shadow;
  transition-delay: 0s, 1s;
  transition-duration: 0.5s, 0.5s;
}
.hamburger .toggle span:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 36px;
  background: #262626;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.photogallery .slick-prev, .photogallery .slick-next {
  height: 80px;
  width: 80px;
  z-index: 999;
}
.photogallery .slick-list {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.photogallery .slick-list div {
  transition: transform 500ms ease;
}
.photogallery .slick-list div.slick-center {
  transform: scale(1.2);
}
.photogallery .slick-list div.slick-center img {
  opacity: 1;
}
.photogallery .slick-list div img {
  opacity: 0.3;
  transition: opacity 500ms ease;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .itempadding {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.itempadding .responsive-item {
  padding: 0 3rem;
}
@media only screen and (max-width: 767px) {
  .itempadding .responsive-item {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}

.numbers {
  background-color: #d45d15;
  padding: 1rem 0 2rem 0;
  color: white;
}
.numbers .number {
  font-size: 3em;
  margin-bottom: 0;
}

.formheader {
  text-align: center;
  margin-bottom: 2em;
}

.progres_form .form-control {
  border: 0;
  border-bottom: 1px solid #d45d15;
  border-radius: 0;
  padding-left: 0;
  margin-bottom: 2rem;
}
.progres_form .form-control::placeholder {
  color: #222;
}
.progres_form .form-control:focus {
  box-shadow: none;
}
.progres_form textarea {
  height: 12rem;
}
.progres_form .button {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.progres_form .button a.btn {
  padding: 0.6rem 5rem;
}

/* back to top */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #d45d15 url(/images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
}

.photo img {
  width: 100%;
  height: auto;
}

#obr p {
  padding: 0;
  margin: 0;
}

.btn {
  text-decoration: none;
  border-radius: 0;
}

.news {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.news > div {
  background-color: white;
  background-repeat: no-repeat;
  padding: 0;
  min-height: 300px;
}
.news > div .text {
  padding: 2.5em 2.5em 0 2.5em;
}
.news > div .text h3 {
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 1.5em;
}
.news > div .text a {
  text-decoration: none;
  color: #222;
}
.news > div a {
  border-bottom: solid 1px #ccc;
  -webkit-transition: color 0.2s ease-out, border-bottom-color 0.2s ease-out;
  transition: color 0.2s ease-out, border-bottom-color 0.2s ease-out;
}
.news > div a:hover {
  border-bottom: solid 1px #222;
}
.news > div p.date {
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-in, .news-in-detail {
  padding-top: 1rem;
}
.news-in p.date, .news-in-detail p.date {
  font-style: italic;
}

.news-in + .news-in {
  border-top: 1px dotted grey;
}

.origine1, .origine2, .origine3 {
  padding: 4em;
  background-size: cover;
  background-position: center;
  color: black;
  position: relative;
  transition: background-color 0.5s ease-in-out;
  min-height: 20rem;
}
.origine1 a, .origine2 a, .origine3 a {
  display: inline-block;
  padding: 0.5em 2em;
  color: black;
  text-decoration: none;
  border: 1px solid #222;
  transition: background-color 1s, color 0.6s ease-in-out;
}
.origine1 a:hover, .origine2 a:hover, .origine3 a:hover {
  color: white;
  background-color: #222;
}
.origine1:before, .origine2:before, .origine3:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: inherit;
  content: " ";
}
.origine1 .align-self-center, .origine2 .align-self-center, .origine3 .align-self-center {
  position: absolute;
  z-index: 999;
}

.origine1 {
  background-image: url(/images/upload/origine1.jpg);
}
.origine1:hover {
  background-color: rgb(246, 176, 116);
}

.origine2 {
  background-image: url(/images/upload/origine2.jpg);
}
.origine2:hover {
  background-color: rgb(241, 146, 53);
}

.origine3 {
  background-image: url(/images/upload/code.jpg);
}
.origine3:hover {
  background-color: rgb(212, 93, 21);
}

#novinky {
  padding-bottom: 3rem;
}

.filtr-container {
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .filtr-container .filtr-item {
    width: 33%;
  }
}
.filtr-container .filtr-item img {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.filters {
  padding: 1rem 0;
}
@media only screen and (max-width: 767px) {
  .filters {
    text-align: center;
  }
}
.filters li {
  cursor: pointer;
  padding: 0.3em 1.5em;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 767px) {
  .filters li {
    width: 100%;
  }
}
.filters li.filtr-active {
  background-color: #d45d15;
  color: white;
}

a.magnific {
  position: relative;
  text-decoration: none;
}
a.magnific:hover {
  text-decoration: none;
}
a.magnific:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
a.magnific img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.card {
  border-radius: 0;
}
.card .card-header {
  padding-left: 4em;
}
.card .card-header h3 button {
  position: relative;
  white-space: normal;
  text-align: left;
}
.card .card-header h3 button:before {
  transition: all 500ms;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%) rotate(90deg);
  background-image: url(/images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.card .card-header h3 button.collapsed:before {
  transform: translateY(-50%) rotate(0deg);
}

.hide {
  display: none;
}

.progrescol {
  background-repeat: no-repeat;
}

.menu-left ul {
  padding-left: 0;
  padding-top: 1rem;
}
.menu-left ul li {
  list-style: none;
  padding: 0.3rem 0 0.3rem 0;
}
.menu-left ul li a {
  color: #222;
}
.menu-left ul li.menuon > a {
  color: #d45d15;
}

/*# sourceMappingURL=sass.css.map */
