@font-face {
  font-family: "DaxPro";
  src: url("../fonts/DaxPro-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "DaxPro";
  src: url("../fonts/DaxPro-Medium.ttf");
  font-style: normal;
  font-weight: 600;
}
html {
  font-size: 18px;
}
body {
  font-family: "DaxPro", serif;
  font-weight: 400;
  line-height: 24px;
}
h1 {
  font-size: 90px;
  color: #AFA084;
  line-height: 100%;
  font-weight: 400;
}
h2 {
  font-weight: 600;
  font-size: 2.22rem;
  color: #000;
}
a {
  color: black;
  text-decoration: underline;
  font-weight: 600;
}
.bg-linde-red {
  background-color: #A00020;
}
.bg-yellow {
  background-color: #FFF6E6;
}
.bg-gold {
  background: #AFA084;
}
.c-linde-red {
  color: #A00020;
}
.c-white {
  color: white;
}
.c-gold {
  color: #AFA084;
}
.ptb50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
header nav {
  position: fixed;
  width: 90%;
  height: 100px;
  left: 5%;
  top: 20px;
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  padding: 0 50px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  transition: all 0.3s ease-out;
  box-shadow: 0px 0px 57px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
header nav a {
  text-decoration: none;
}
header nav a:hover {
  text-decoration: underline;
}
header nav.scrolled {
  /*box-shadow: 0px 5px 15px gray;
			top: 5px;
			height: 70px;*/
}
header nav ul,
header nav li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
header nav ul {
  display: flex;
}
header nav ul > li {
  display: block;
  position: relative;
  padding: 5px;
  margin: 0 10px;
}
header nav ul > li > ul {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 30px;
  left: -35px;
  width: 100px;
  border-radius: 10px;
  transition: all 0.3s;
}
header nav ul > li > ul li a {
  display: flex;
  padding: 15px;
  justify-content: center;
}
header nav ul > li:hover > ul {
  display: flex;
}
footer {
  padding-top: 50px;
  font-size: 16px;
}
footer .container.colored {
  background: #AFA084;
  padding: 60px;
  border-radius: 50px;
}
footer .container.white {
  color: #808080;
  padding-top: 30px;
  padding-bottom: 50px;
}
footer a {
  text-decoration: none;
}
section {
  padding: 50px 0;
}
section#jak-pomoc-funguje {
  padding: 100px 0;
}
.banner {
  position: relative;
  width: 100%;
  background-image: url("../images/banner.jpg");
  overflow: hidden;
  /*max-height: 90vh;
	background-size: 100% auto;
	background-position: 0% 55%;*/
  height: 90vh;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 2160/1262;
}
.banner .container {
  position: relative;
  height: 100%;
}
.banner .container h1 {
  position: absolute;
  bottom: 0px;
}
.banner .btn-help {
  display: inline-block;
  position: absolute;
  background: white;
  color: black;
  right: 10%;
  bottom: 3%;
  border: 0;
}
.banner .btn-help:hover {
  background: #A00020;
  color: white;
}
.btn {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 50px;
}
.btn-outline-dark {
  border: 2px solid #A00020;
}
.btn-outline-dark:hover {
  background: #A00020;
  border: 2px solid #A00020 !important;
}
.btn-secondary {
  background: white;
  color: #A00020;
  border: 1px solid #A00020;
  padding: 15px 35px;
}
.btn-secondary:hover {
  background: #A00020;
  color: white;
  border: 1px solid #A00020;
}
.help {
  background: #FFF6E6;
  padding: 50px;
  border-radius: 35px;
  height: 100%;
}
.help h2 {
  text-transform: uppercase;
}
.safety-first {
  padding: 0px;
  border-radius: 35px;
  color: white;
}
.box {
  background: white;
  border-radius: 45px;
  height: 100%;
}
.box div.content {
  padding: 30px;
}
.box div.content h2 {
  margin: 25px 0;
  line-height: 40px;
}
.box div.content a {
  color: #A00020;
}
#safety {
  aspect-ratio: 2880/856;
  border: 0;
  background-image: url("../images/safety.jpg");
  background-size: cover;
}
div.row {
  overflow: hidden;
}
.modal {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 40%;
  left: calc(50% - 285px);
  width: 570px;
  height: auto;
  border-radius: 10px;
  padding: 50px 50px 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s;
  transform: translateY(-1000px);
}
.modal .btnClose {
  position: absolute;
  top: 10px;
  right: 10px;
}
.modal p {
  font-size: 22px;
  text-align: center;
}
.modal .btn {
  display: inline-block;
  width: 50%;
  margin: auto;
}
.modal .btn:hover {
  background: #A00020;
  color: white;
}
.modal.show {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .banner .container h1 {
    font-size: 56px;
    bottom: 20px;
  }
  .banner .btn-help {
    bottom: 8%;
    right: 7%;
  }
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .banner .container h1 {
    font-size: 36px;
    bottom: 0px;
    /*text-shadow: 0 0px 3px black;*/
  }
  .banner .btn-help {
    bottom: 3%;
    right: 2.5%;
    font-size: 12px;
    padding: 6px 15px;
    /*display: none;*/
  }
  header nav {
    padding: 0 15px;
    height: 80px;
  }
  header nav .btn {
    font-size: 12px;
    padding: 8px 30px;
  }
  #logo {
    height: 22px;
    width: auto;
  }
  .modal {
    width: 400px;
    left: calc(50% - 200px);
  }
  .modal .btn {
    width: 75%;
  }
}
/*# sourceMappingURL=custom.css.map */