@font-face {
  font-family: QuickSand;
  src: url(../../res/font/Quicksand-VariableFont_wght.ttf);
}
@font-face {
  font-family: Anton;
  src: url(../../res/font/Anton-Regular.ttf);
}
@font-face {
  font-family: Bebas Neue;
  src: url(../../res/font/BebasNeue-Regular.ttf);
}
* {
  padding: 0;
  margin: 0;
  font-family: QuickSand, sans-serif;
}

body {
  background-color: #111010;
}

.btn {
  display: inline-block;
  margin: 2rem;
  background-color: red;
  color: white;
  padding: 0.35rem;
  font-weight: bold;
  font-size: 0.8rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border: 5px solid #000000;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
img[newsrc] {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.main_section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.main_section .notifications .notification {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.85rem;
  font-weight: bold;
}
.main_section .notifications .notification.blue {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 170, 255)), color-stop(51%, rgb(0, 149, 255)), to(rgb(0, 179, 191)));
  background: linear-gradient(180deg, rgb(0, 170, 255) 0%, rgb(0, 149, 255) 51%, rgb(0, 179, 191) 100%);
}
.main_section .notifications .notification.red {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 0, 0)), color-stop(51%, rgb(196, 57, 57)), to(rgb(163, 21, 21)));
  background: linear-gradient(180deg, rgb(255, 0, 0) 0%, rgb(196, 57, 57) 51%, rgb(163, 21, 21) 100%);
}
.main_section nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: flex;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: linear-gradient(231deg, rgb(43, 43, 43) 0%, rgb(13, 13, 13) 51%, rgb(36, 36, 36) 100%);
}
@media screen and (min-width: 40.01rem) {
  .main_section nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
}
.main_section nav .logo_container {
  height: 15vh;
}
.main_section nav .logo_container img.logo {
  position: relative;
  height: 65%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.main_section nav ul.menu_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.8rem;
}
@media screen and (max-width: 40rem) {
  .main_section nav ul.menu_items.pc_menu .menu_item:not(.hamburger) {
    display: none;
  }
  .main_section nav ul.menu_items.pc_menu .menu_item.hamburger {
    display: list-item;
  }
}
@media screen and (min-width: 40.01rem) {
  .main_section nav ul.menu_items.pc_menu .menu_item:not(.hamburger) {
    display: list-item;
  }
  .main_section nav ul.menu_items.pc_menu .menu_item.hamburger {
    display: none;
  }
}
.main_section nav ul.menu_items li.menu_item {
  list-style: none;
  font-weight: bold;
  text-transform: capitalize;
}
.main_section nav ul.menu_items li.menu_item.like_button {
  background: linear-gradient(308deg, rgb(0, 170, 255) 0%, rgb(0, 149, 255) 51%, rgb(0, 179, 191) 100%);
  border-radius: 0.3rem;
  position: relative;
}
.main_section nav ul.menu_items li.menu_item.like_button.hamburger {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main_section nav ul.menu_items li.menu_item.like_button.hamburger::before {
  content: "";
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  border-radius: 0.18rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #111010;
}
.main_section nav ul.menu_items li.menu_item:not(.like_button):hover {
  text-decoration: underline;
}
.main_section nav ul.menu_items li.menu_item a {
  padding: 1rem;
  line-height: 2.5rem;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: white;
  position: relative;
  z-index: 2;
}
.main_section .image_page_container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: black;
  position: relative;
  overflow: hidden;
}
.main_section .image_page_container .main_image {
  position: absolute;
  top: 0;
  left: -50%;
  width: 150%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 2;
}
.main_section .image_page_container .image_page_container_content {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  z-index: 2;
  text-align: right;
  right: -100%;
  -webkit-transition: all 1s;
  transition: all 1s;
  color: white;
}
.main_section .image_page_container .image_page_container_content h1.title {
  font-family: "Anton";
  text-transform: uppercase;
  font-weight: 100;
  text-shadow: 1px -1px 0.4rem #0f0e0e;
}
.main_section .image_page_container .image_page_container_content p.sub_title {
  font-family: "Bebas Neue";
  font-weight: 400;
  position: relative;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  text-shadow: 1px -1px 0.4rem #0f0e0e;
}
@media screen and (max-width: 37.5rem) {
  .main_section .image_page_container .image_page_container_content {
    margin: 0 1rem 0 0.5rem;
  }
  .main_section .image_page_container .image_page_container_content h1.title {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 0.6rem;
  }
  .main_section .image_page_container .image_page_container_content p.sub_title {
    font-size: 1.1rem;
    line-height: 1.2rem;
    max-width: 15rem;
  }
}
@media screen and (min-width: 37.51rem) and (max-width: 75rem) {
  .main_section .image_page_container .image_page_container_content {
    margin-right: 2.5rem;
  }
  .main_section .image_page_container .image_page_container_content h1.title {
    font-size: 3.5rem;
  }
  .main_section .image_page_container .image_page_container_content p.sub_title {
    font-size: 1.4rem;
    line-height: 1.8rem;
    max-width: 22rem;
  }
}
@media screen and (min-width: 75.01rem) and (max-width: 100rem) {
  .main_section .image_page_container .image_page_container_content {
    margin-right: 2.5rem;
  }
  .main_section .image_page_container .image_page_container_content h1.title {
    font-size: 4.7rem;
  }
  .main_section .image_page_container .image_page_container_content p.sub_title {
    font-size: 1.7rem;
    line-height: 2.2rem;
    max-width: 25rem;
  }
}
@media screen and (min-width: 100.01rem) {
  .main_section .image_page_container .image_page_container_content {
    margin-right: 14rem;
  }
  .main_section .image_page_container .image_page_container_content h1.title {
    font-size: 5.5rem;
  }
  .main_section .image_page_container .image_page_container_content p.sub_title {
    font-size: 2.1rem;
    line-height: 2.6rem;
    max-width: 30rem;
  }
}
.main_section .image_page_container #mobile_menu {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: rgba(29, 29, 29, 0.9098039216);
  color: white;
  z-index: 3;
  padding-bottom: 2rem;
}
.main_section .image_page_container #mobile_menu.open {
  left: 0%;
}
.main_section .image_page_container #mobile_menu:not(.open) {
  left: -100%;
}
.main_section .image_page_container #mobile_menu .close_btn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 2rem 0 1rem;
}
.main_section .image_page_container #mobile_menu .close_btn_container .close_btn {
  height: 2.4rem;
  color: white;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 2.5rem;
  border-radius: 0.25rem;
  border: 0.2rem solid #39a3f5;
  padding: 0 0.8rem;
  font-weight: 100;
}
.main_section .image_page_container #mobile_menu h2 {
  font-family: "Bebas Neue";
  text-align: center;
  font-size: 3rem;
}
.main_section .image_page_container #mobile_menu ul {
  list-style: none;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding: 0.4rem;
  margin: 0.25rem 0.25rem 0.25rem 1rem;
}
.main_section .image_page_container #mobile_menu ul li a {
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main_section .icon_scroll_container {
  position: absolute;
  z-index: 2;
  bottom: 8vh;
  left: 0;
  width: 100%;
}
.main_section .icon_scroll_container .icon-scroll {
  width: 7vh;
  height: 11vh;
  border: 0.2rem solid #81d5ff;
  border-radius: 4rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.1098039216);
  -webkit-box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.2392156863);
          box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.2392156863);
}
.main_section .icon_scroll_container .icon-scroll::before {
  content: "";
  width: 1.5vh;
  height: 1.5vh;
  background: #81d5ff;
  top: 3vh;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 4px 3px rgba(255, 255, 255, 0.231372549);
          box-shadow: 0 0 4px 3px rgba(255, 255, 255, 0.231372549);
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: icon-scroll-scrolling;
          animation-name: icon-scroll-scrolling;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0vh);
          transform: translate(-50%, 0vh);
}
@-webkit-keyframes icon-scroll-scrolling {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 5vh);
            transform: translate(-50%, 5vh);
  }
}
@keyframes icon-scroll-scrolling {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 5vh);
            transform: translate(-50%, 5vh);
  }
}

section.white_bg {
  background: linear-gradient(231deg, rgb(255, 255, 255) 0%, rgb(250, 254, 255) 51%, rgb(240, 252, 255) 100%);
}
section.white_bg > h1 {
  color: black;
}

section.black_bg {
  background: linear-gradient(131deg, rgb(0, 0, 0) 0%, rgb(46, 46, 46) 50%, rgb(0, 0, 0) 100%);
}
section.black_bg > h1 {
  color: white;
}

section > h1 {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  font-weight: 100;
  width: 100%;
  text-align: center;
  padding: 3rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.sluzby {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 96rem) {
  section.sluzby {
    gap: 2rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 96.01rem) and (max-width: 112rem) {
  section.sluzby {
    gap: 2.5rem;
    padding-bottom: 3.8rem;
  }
}
@media screen and (min-width: 112.01rem) {
  section.sluzby {
    gap: 4rem;
    padding-bottom: 4.5rem;
  }
}
section.sluzby .sluzba {
  background: linear-gradient(131deg, rgb(245, 251, 255) 1%, rgb(255, 255, 255) 50%, rgb(232, 247, 255) 100%);
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 30rem) {
  section.sluzby .sluzba {
    width: calc(100% - 0.8rem);
  }
}
@media screen and (min-width: 30.01rem) and (max-width: 40.62rem) {
  section.sluzby .sluzba {
    width: 25rem;
  }
}
@media screen and (min-width: 40.63rem) and (max-width: 50rem) {
  section.sluzby .sluzba {
    width: calc(50% - 3rem);
  }
}
@media screen and (min-width: 50.01rem) and (max-width: 62.5rem) {
  section.sluzby .sluzba {
    width: 23.75rem;
  }
}
@media screen and (min-width: 62.51rem) and (max-width: 75rem) {
  section.sluzby .sluzba {
    width: calc(25% - 1.8rem);
  }
}
@media screen and (min-width: 75.01rem) and (max-width: 87.5rem) {
  section.sluzby .sluzba {
    width: 18rem;
  }
}
@media screen and (min-width: 87.51rem) {
  section.sluzby .sluzba {
    width: 20.62rem;
  }
}
section.sluzby .sluzba .image_container {
  width: 100%;
  padding-top: 60%;
  position: relative;
}
section.sluzby .sluzba .image_container img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
section.sluzby .sluzba h2 {
  padding: 1.2rem 0.8rem 0.6rem 1.2rem;
  font-family: Bebas Neue;
  font-size: 1.85rem;
}
section.sluzby .sluzba p {
  padding: 0 0.8rem 1.6rem 1.2rem;
  font-weight: bold;
}

section.stats {
  background-color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
section.stats p.mame_za_sebou {
  max-width: 70rem;
  padding: 0 0.8rem;
  margin-bottom: 2.4rem;
  margin: 0 auto 1.8rem auto;
  font-size: 2rem;
}
section.stats .stats_flex_container {
  max-width: 70rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.stats .stats_flex_container .item {
  padding: 1rem 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 50rem) {
  section.stats .stats_flex_container .item {
    width: 100%;
    margin-bottom: 1rem;
  }
  section.stats .stats_flex_container .item img.bg_image {
    top: 33%;
    left: 35%;
    width: 10rem;
    height: 86%;
    -webkit-transform: translate(-52%, -40%);
            transform: translate(-52%, -40%);
  }
}
@media screen and (min-width: 50.01rem) {
  section.stats .stats_flex_container .item {
    width: 33.33%;
  }
  section.stats .stats_flex_container .item img.bg_image {
    top: 33%;
    left: 21%;
    width: 10rem;
    height: 86%;
    -webkit-transform: translate(-35%, -45%);
            transform: translate(-35%, -45%);
  }
}
section.stats .stats_flex_container .item img.bg_image {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
section.stats .stats_flex_container .item .cislo {
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
section.stats .stats_flex_container .item .cislo .value {
  font-family: "Anton";
}
section.stats .stats_flex_container .item .cislo .unit {
  font-family: "Anton";
}
section.stats .stats_flex_container .item .popis {
  font-size: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

section.galerie {
  padding-bottom: 4rem;
}
section.galerie .galerie_block_container {
  max-width: 60rem;
  width: calc(100% - 1rem);
  margin: 0 auto;
  position: relative;
}
section.galerie .galerie_block_container .photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.galerie .galerie_block_container .photos .image_container {
  width: 20%;
  padding-top: 15%;
  position: relative;
}
section.galerie .galerie_block_container .photos .image_container img.galerie_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.galerie .galerie_block_container .btn_open_gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
  padding: 1.2rem 2.6rem;
  font-weight: bold;
  border-radius: 0.8rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: linear-gradient(308deg, rgb(0, 170, 255) 0%, rgb(0, 149, 255) 51%, rgb(0, 179, 191) 100%);
}
section.galerie .galerie_block_container .btn_open_gallery::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  background-color: rgb(20, 20, 20);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
  border-radius: 0.4rem;
}
section.galerie .galerie_block_container .btn_open_gallery:hover {
  color: black;
}
section.galerie .galerie_block_container .btn_open_gallery:hover::before {
  opacity: 0;
}
section.galerie .galerie_block_container .btn_open_gallery:not(:hover) {
  color: white;
}
section.galerie .galerie_block_container .btn_open_gallery:not(:hover)::before {
  opacity: 1;
}
section.galerie .galerie_block_container .btn_open_gallery p {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

section.kontakty {
  padding-bottom: 8rem;
}
section.kontakty .contacts_flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 1rem);
  max-width: 66rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
section.kontakty .contacts_flex_container .flex_column {
  padding: 0 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 56rem) {
  section.kontakty .contacts_flex_container .flex_column {
    width: 100%;
  }
  section.kontakty .contacts_flex_container .flex_column:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 56.01rem) {
  section.kontakty .contacts_flex_container .flex_column {
    width: 50%;
  }
}
section.kontakty .contacts_flex_container .flex_column .contact_cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
section.kontakty .contacts_flex_container .flex_column .contact_cell .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(231deg, rgb(0, 102, 255) 0%, rgb(72, 0, 255) 51%, rgb(170, 0, 255) 100%);
  position: relative;
}
section.kontakty .contacts_flex_container .flex_column .contact_cell .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
section.kontakty .contacts_flex_container .flex_column .contact_cell .text {
  width: calc(100% - 2rem);
}
section.kontakty .contacts_flex_container .flex_column .contact_cell .text .value {
  padding-left: 1rem;
  color: white;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group {
  position: relative;
  margin-bottom: 1rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group p.label {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding-left: 1rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group input[type=text], section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group textarea {
  border: 1rem solid;
  border-image-slice: 1;
  border-width: 0.3rem;
  border-image-source: linear-gradient(231deg, rgb(0, 102, 255) 0%, rgb(72, 0, 255) 51%, rgb(170, 0, 255) 100%);
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.45rem;
  outline: none;
  font-size: 1.1rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group input[type=text] {
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 0.8rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .text_input_group textarea {
  resize: none;
  height: 8rem;
  padding: 0.45rem 0.8rem;
  line-height: 1.3rem;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .submit_btn {
  background: linear-gradient(231deg, rgb(0, 102, 255) 0%, rgb(72, 0, 255) 51%, rgb(170, 0, 255) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
  text-align: center;
}
section.kontakty .contacts_flex_container .flex_column .form_cell #contact_form .submit_btn:hover {
  text-decoration: underline;
}
section.kontakty .contacts_flex_container .flex_column .map_header {
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding-left: 1rem;
}
section.kontakty .contacts_flex_container .flex_column .map_adress_text {
  color: white;
  font-weight: normal;
  font-size: 0.9rem;
  padding-left: 1rem;
  margin-top: 0.5rem;
}
section.kontakty .contacts_flex_container .flex_column .map_container {
  margin-top: 1rem;
}

section.footer {
  min-height: 20rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(60, 62, 63)), to(rgb(15, 15, 15)));
  background: linear-gradient(180deg, rgb(60, 62, 63) 0%, rgb(15, 15, 15) 100%);
  clip-path: polygon(0 2rem, 33% 0, 100% 1rem, 100% 100%, 0 100%);
  position: relative;
  top: -2rem;
  padding-top: 4rem;
}
section.footer * {
  color: white;
}
section.footer .footer_flex_container {
  max-width: 60rem;
  width: calc(100% - 1rem);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 43rem) {
  section.footer .footer_flex_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.footer .footer_flex_container .footer_flex_item {
    width: calc(100% - 0.8rem);
    max-width: 19rem;
  }
  section.footer .footer_flex_container .footer_flex_item:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 43.01rem) {
  section.footer .footer_flex_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
  section.footer .footer_flex_container .footer_flex_item .logo_section {
    width: 30%;
  }
  section.footer .footer_flex_container .footer_flex_item .links_section {
    width: 40%;
  }
  section.footer .footer_flex_container .footer_flex_item .contact_section {
    width: 40%;
  }
}
section.footer .footer_flex_container .footer_flex_item {
  padding: 0.8rem;
}
section.footer .footer_flex_container .footer_flex_item.logo_section * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
section.footer .footer_flex_container .footer_flex_item.logo_section img.footer_logo {
  max-width: 5rem;
  width: calc(100% - 3rem);
  height: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
section.footer .footer_flex_container .footer_flex_item.logo_section .nadpis {
  font-family: "Bebas Neue";
  font-size: 1.4rem;
  text-align: center;
}
section.footer .footer_flex_container .footer_flex_item.links_section * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
section.footer .footer_flex_container .footer_flex_item.links_section h2 {
  font-family: "Anton";
  font-weight: 100;
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 0.45rem;
}
section.footer .footer_flex_container .footer_flex_item.links_section h2::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(231deg, rgb(0, 102, 255) 0%, rgb(72, 0, 255) 51%, rgb(170, 0, 255) 100%);
}
section.footer .footer_flex_container .footer_flex_item.links_section h2:not(:first-of-type) {
  margin-top: 1.2rem;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul {
  list-style: none;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li {
  position: relative;
  line-height: 1.7rem;
  cursor: pointer;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li:not(.icon) {
  padding-left: 0.5rem;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li.icon {
  padding-left: 3rem;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li.icon::before {
  height: 1rem;
  line-height: 1rem;
  font-size: 0.7rem;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0.1rem solid white;
  border-radius: 0.2rem;
  padding: 0 0.15rem;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li.icon.icon_pdf::before {
  content: "PDF";
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li:hover {
  text-decoration: underline;
}
section.footer .footer_flex_container .footer_flex_item.links_section ul li a {
  text-decoration: none;
}
section.footer .footer_flex_container .footer_flex_item.contact_section p {
  font-size: 0.9rem;
  line-height: 1.5rem;
}
section.footer .footer_flex_container .footer_flex_item.contact_section img.footer_contact_icon {
  display: inline-block;
  vertical-align: top;
  height: 1.5rem;
  width: 1.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
section.footer .footer_flex_container .footer_flex_item.contact_section span.footer_contact_value {
  display: inline-block;
  vertical-align: top;
}

section.footer_bottom_line {
  text-align: center;
  padding: 0 0.4rem 0.9rem 0.4rem;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}/*# sourceMappingURL=global.css.map */