@charset "UTF-8";
body {
  margin: 0;
  padding: 0 0 70px 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000000;
  font-size: 18px;
  color: white; }

a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: white; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

p {
  margin: 0;
  padding: 15px 0 0 0; }

h1 {
  text-align: center;
  font-size: 50px;
  padding: 0 0 10px 0; }
  @media (max-width: 750px) {
    h1 {
      font-size: 30px;
      padding: 0 0 5px 0; } }

.buttons {
  padding: 20px 0 0 0;
  text-align: center; }
  .buttons a {
    display: inline-block;
    padding: 8px 30px;
    background-color: #161616;
    border: 1px solid #5f5f5f;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px; }

#change_language {
  z-index: 999;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal; }
  #change_language img {
    height: 40px; }
  @media (max-width: 750px) {
    #change_language {
      top: 120px;
      height: 60px; } }

#top {
  text-align: center;
  padding: 0;
  height: 150px;
  line-height: 150px;
  position: relative; }
  @media (max-width: 750px) {
    #top {
      height: 100px;
      line-height: 100px; } }
  #top img.logo {
    padding: 0 10px 0 10px; }

#top_mobile {
  color: white;
  background-color: white; }
  #top_mobile .navbar {
    background-color: black;
    padding: 0; }
  #top_mobile .navbar-brand {
    max-width: calc(100% - 80px);
    padding: 0; }
  #top_mobile .navbar-toggler {
    margin: 0 5px 0 0; }
  #top_mobile .navbar-toggler .fa-bars {
    color: #000 !important; }
  #top_mobile a {
    color: white; }
  #top_mobile img.logo {
    max-width: 100%;
    padding: 15px 0; }
  #top_mobile .navbar-nav a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border-top: 1px solid #2d2d2d; }
    #top_mobile .navbar-nav a i {
      color: #f29201; }
    #top_mobile .navbar-nav a img.flag {
      max-width: 20px; }

@media (min-width: 768px) {
  #pc_menu {
    display: none; } }
#pc_menu .menu_links {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  height: 46px;
  width: 100%; }
  #pc_menu .menu_links a.menu_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 22px; }
    #pc_menu .menu_links a.menu_item i {
      margin: 0 10px 0 0;
      color: #f29201; }
    #pc_menu .menu_links a.menu_item.border_right {
      border-right: 1px solid black; }
    #pc_menu .menu_links a.menu_item .icon {
      font-size: 22px; }

#bottom_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f29201;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) {
    #bottom_nav {
      display: none; } }
  #bottom_nav a.menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px; }
    #bottom_nav a.menu_item.border_right {
      border-right: 1px solid #c57700; }
    #bottom_nav a.menu_item .icon {
      display: block;
      font-size: 22px; }
    #bottom_nav a.menu_item.active {
      color: #007aff;
      font-weight: bold; }

#content_box {
  padding: 0 0 50px 0; }

.slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - 140px);
  overflow: hidden;
  vertical-align: top; }
  @media (max-width: 750px) {
    .slideshow {
      height: calc(100vh - 100px - 60px); } }
  .slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0;
    transition: opacity 1s ease-in-out; }
    .slideshow img.active {
      opacity: 1; }

.main_line {
  width: 100%;
  height: 2px;
  font-size: 1px;
  background: linear-gradient(to right, black 0%, orange 25%, white 50%, orange 75%, black 100%); }

#instagram {
  text-align: center;
  padding: 20px 0; }
  #instagram .title {
    color: gray; }
  #instagram .instagram_button {
    font-weight: 700; }
    #instagram .instagram_button a {
      text-decoration: none; }
  #instagram img {
    max-height: 130px; }

#bottom_call_us {
  padding: 10px 0 20px 0;
  text-align: center;
  line-height: 40px;
  font-size: 30px; }
  @media (max-width: 750px) {
    #bottom_call_us {
      line-height: 30px;
      padding: 20px 0 20px 0; } }
  #bottom_call_us .title {
    color: gray; }
  #bottom_call_us .phone {
    font-size: 50px;
    padding: 10px 0 0 0; }
    @media (max-width: 750px) {
      #bottom_call_us .phone {
        font-size: 30px; } }

a.btn_imdb {
  display: block;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(to right, #f5c518, #e3a700, #f5c518);
  border-radius: 5px;
  transition: background 0.3s;
  text-align: center; }

@media (max-width: 749px) {
  #tracy-debug {
    display: none !important; } }
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 */ }

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#home_banner img {
  height: calc(100vh - 140px);
  overflow: hidden;
  min-width: 100%; }

#homepage .homepage_text {
  padding: 15px 10px 15px 10px; }
  #homepage .homepage_text h1 {
    padding: 0 0 10px 0; }
    @media (max-width: 750px) {
      #homepage .homepage_text h1 {
        padding: 0 0 5px 0; } }
#homepage .stunt_performer_list {
  padding: 15px 0 0 0; }
  #homepage .stunt_performer_list a {
    text-decoration: none; }
  #homepage .stunt_performer_list .stunt_performer {
    padding: 5px 0 5px 0; }
    #homepage .stunt_performer_list .stunt_performer .photo {
      padding: 0 5px 1px 5px; }
      #homepage .stunt_performer_list .stunt_performer .photo .photo_wrapper {
        aspect-ratio: 9 / 13;
        width: 100%;
        /* nebo max-width podle potřeby */
        overflow: hidden; }
        #homepage .stunt_performer_list .stunt_performer .photo .photo_wrapper img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    #homepage .stunt_performer_list .stunt_performer .name {
      text-align: center;
      line-height: 18px; }
      #homepage .stunt_performer_list .stunt_performer .name a {
        color: #f29201;
        line-height: 28px;
        text-align: center;
        display: block;
        padding: 8px 0;
        font-size: 26px; }
        @media (min-width: 750px) {
          #homepage .stunt_performer_list .stunt_performer .name a {
            font-size: 28px;
            line-height: 33px; } }
        #homepage .stunt_performer_list .stunt_performer .name a span {
          color: white; }

#stunt_performer {
  padding: 15px 0 0 0; }
  #stunt_performer h1 {
    text-align: center;
    font-size: 50px; }
    @media (max-width: 750px) {
      #stunt_performer h1 {
        font-size: 30px; } }
  #stunt_performer .params {
    padding: 10px 0 10px 0; }
    #stunt_performer .params table {
      width: 100%; }
      #stunt_performer .params table tr td {
        padding: 5px 10px;
        border-bottom: 1px solid #2f2f2f; }
        @media (min-width: 750px) {
          #stunt_performer .params table tr td {
            padding: 10px 10px; } }
        #stunt_performer .params table tr td.td_left {
          color: #f29201; }
        #stunt_performer .params table tr td.td_right {
          font-weight: 600; }
          @media (max-width: 750px) {
            #stunt_performer .params table tr td.td_right {
              text-align: right; } }
  #stunt_performer .imdb {
    padding: 15px 0 15px 0; }
    #stunt_performer .imdb a {
      font-size: 18px; }
  #stunt_performer .photos {
    padding: 20px 0 0 0; }
  #stunt_performer .description {
    padding: 30px 0 0 0; }
    @media (max-width: 750px) {
      #stunt_performer .description {
        padding: 10px 0 0 0; } }
    #stunt_performer .description .description_content {
      padding: 5px 30px 20px 30px;
      background-color: #111111; }
      @media (max-width: 750px) {
        #stunt_performer .description .description_content {
          padding: 5px 15px 20px 15px; } }

#stunt_performer_list h1 {
  padding: 0 0 15px 0; }
#stunt_performer_list a {
  text-decoration: none; }
#stunt_performer_list .stunt_performer {
  padding: 5px 0 5px 0; }
  #stunt_performer_list .stunt_performer .photo {
    padding: 0 5px 1px 5px; }
    #stunt_performer_list .stunt_performer .photo .photo_wrapper {
      aspect-ratio: 9 / 13;
      width: 100%;
      /* nebo max-width podle potřeby */
      overflow: hidden; }
      #stunt_performer_list .stunt_performer .photo .photo_wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  #stunt_performer_list .stunt_performer .name {
    text-align: center;
    line-height: 18px; }
    #stunt_performer_list .stunt_performer .name a {
      color: #f29201;
      line-height: 18px;
      text-align: center;
      display: block;
      padding: 5px 0; }
      @media (min-width: 750px) {
        #stunt_performer_list .stunt_performer .name a {
          font-size: 25px;
          line-height: 27px; } }
      #stunt_performer_list .stunt_performer .name a span {
        color: white; }
  #stunt_performer_list .stunt_performer .photos {
    padding: 20px 0 0 0; }

#text {
  padding: 15px 0 0 0; }

@media (min-width: 750px) {
  #contact h2 {
    font-size: 40px; } }
#contact .contact_text {
  padding: 20px 0 0 0; }
  @media (min-width: 750px) {
    #contact .contact_text {
      font-size: 35px; }
      #contact .contact_text a {
        font-size: 35px; } }
#contact ul {
  padding: 10px 0 0 0;
  margin: 0; }
  #contact ul li {
    list-style-type: none;
    padding: 5px 0 0 25px;
    margin: 0; }
    #contact ul li i {
      color: #f29201; }

#photo {
  text-align: center; }

/*# sourceMappingURL=style.css.map */
