
.footer-item.footer-item-newsletter {
  display: flex;
  width: 100% !important;
  padding: 30px 20px !important;
}

@media only screen and (min-width: 1200px) {
  .footer-item.footer-item-newsletter {
    justify-content: space-between;
  }
}

.footer-rows > .site-name {
  display: none !important;
}

#formNewsletterWidget {
  margin-left: 0;
  padding: 0 8px;
  max-width: 60%;
  flex: 0 0 80%;
}

@media only screen and (max-width: 992px) {
  #formNewsletterWidget {
    flex: unset;
    max-width: unset;
  }
}

@media only screen and (max-width: 768px) {
  .footer-item.footer-item-newsletter {
    display: unset;
  }
  .custom-fieldset {
    justify-content: space-around;
  }
}

.custom-fieldset {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

#newsletter-submit-button {
  margin-top: 0;
  margin-left: 16px;
}

@media only screen and (max-width: 476px) {
  .custom-fieldset {
    flex-direction: column;
    justify-content: space-around;
  }

  #newsletter-submit-button {
    margin-left: 0;
  }
}

.text-block {
  font-family: 'Source Sans 3', sans-serif;
  display: flex;
  gap: 16px;
  width: 100%;
}

#about-us-block {
  justify-content: space-between;
}

.text-block__column, .text-block__column--with-video {
  padding: 16px;
}

.text-block__column--with-video {
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.text-block__column__title {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 36px;
}

.text-block__column__text {
  padding: 25px 20px;
  border-radius: 20px;
  background-color: var(--color-tertiary);
  font-size: 12pt;
}

.text-block__column__text > ul > li {
  /*font-size: 18px;*/
  margin: 8px 0;
}

/*.text-block__column__text__paragraph {
  font-size: 24px;
}*/

.text-block__column__video {
  position: relative;
  max-width: 450px;
  width: 100%;
  /*aspect-ratio: 1;*/
  outline-offset: 6px;
  border-radius: 20px;
  box-shadow: inset 0 0 64px #0000008c;
}

.text-block__column__video:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  /*background: url(deer_border.webp);
  background-size: cover;
  background-repeat: no-repeat;*/
  background-color: #211710;
  box-shadow: inset 0 0 64px #0000008c;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  z-index: -1;
  /*filter: brightness(0.7);*/
}

.text-block__column__video video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center /*10% 50%*/;
  border-radius: 20px;
  z-index: -1;
  overflow: hidden;
}

/*.text-block__column__video:before {
  background: url(https://www.falconeurope.cz/user/documents/upload/assets/deer_border.jpg);
}*/

@media (min-width: 768px) {
    .in-index .position--benefitHomepage {
      margin-top: 20px !important;
    }
}

@media only screen and (max-width: 1000px) {
  .text-block__column__title {
    width: 100%;
    text-align: center;
  }

  .text-block {
    flex-direction: column;
  }
  
  .text-block__column, .text-block__column--with-video {
    width: 100% !important;
  }

  .text-block__column__video {
    max-width: calc(100% - 20px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

@media only screen and (max-width: 512px) {
  .text-block__column__video {
    aspect-ratio: unset;
    object-fit: cover;
  }  
  
  .text-block__column__title {
    font-size: 28px;
  }

}

.product-parameters-container {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  .product-parameters-container {
    gap: 32px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
  }

  .product-parameters-container:has(> table:nth-child(2)) > table {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .header-top {
    padding-top: 20px !important;
  }
}