#lay-nav {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background: white;
  color: #110301;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
#lay-nav .visible {
  height: 100px;
  position: relative;
}
#lay-nav #logo {
  display: flex;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}
#lay-nav #logo a {
  display: block;
}
#lay-nav #logo img {
  height: 60px;
  object-fit: contain;
}
#lay-nav .resp-menu {
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9;
  transform: none;
  padding: 20px;
  padding-top: 120px;
  background: white;
  color: #110301;
  transition: transform 1s ease;
}
#lay-nav .resp-menu.active {
  transform: translateX(-100%);
}
#lay-nav .resp-menu ul {
  list-style: none;
}
#lay-nav .resp-menu ul li {
  margin: 20px 0;
}
#lay-nav .resp-menu .link {
  position: relative;
  padding: 3px 0;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 300;
}
#lay-nav .resp-menu .link:before {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  position: absolute;
  border-radius: 5px;
  background-color: #CFA968;
  transition: width 0.4s ease;
}
#lay-nav .resp-menu .link:before {
  top: 100%;
  left: 0;
}
#lay-nav .resp-menu .link:hover:before {
  width: 100%;
}
#lay-nav #hmb {
  height: 31px;
  width: 40px;
  position: absolute;
  top: 35px;
  right: 30px;
  z-index: 11;
  border: 0;
  background: 0;
  transition: transform 0.5s ease;
  pointer-events: all;
}
#lay-nav #hmb.active {
  transform: rotate(180deg);
}
#lay-nav #hmb.active span {
  background: #110301;
}
#lay-nav #hmb.active span:nth-of-type(1) {
  transform: rotate(45deg);
  left: 8px;
  top: -2px;
}
#lay-nav #hmb.active span:nth-of-type(2) {
  width: 0;
  left: 20px;
}
#lay-nav #hmb.active span:nth-of-type(3) {
  left: 8px;
  transform: rotate(-45deg);
}
#lay-nav #hmb span {
  display: block;
  height: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  border-radius: 5px;
  background: #110301;
}
#lay-nav #hmb span:nth-of-type(1) {
  top: 0;
  transform-origin: top left;
  transition: left 0.5s ease, transform 0.5s ease, background-color 0.5s ease;
}
#lay-nav #hmb span:nth-of-type(2) {
  top: 13px;
  left: 0;
  transition: width 0.3s ease, left 0.3s ease, background-color 0.5s ease;
}
#lay-nav #hmb span:nth-of-type(3) {
  bottom: 1px;
  transform-origin: bottom left;
  transition: left 0.5s ease, transform 0.5s ease, background-color 0.5s ease;
}

#main {
  margin-top: 100px;
}

#hdr {
  width: 100%;
  height: calc(300px + 150px);
  position: relative;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#hdr:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: radial-gradient(#0004, #0008);
}
#hdr #bg-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
#hdr #bg-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-image: url(../img/hdr-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#hdr #bg-slider .slide.active {
  opacity: 1;
}
#hdr #hd-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
#hdr #hd-slider .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#hdr #hd-slider .slide .center {
  position: relative;
  top: -30px;
  opacity: 0;
  transition: opacity 1.5s ease, top 1.5s ease;
}
#hdr #hd-slider .slide.active .center {
  top: 0;
  opacity: 1;
}
#hdr .center {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding: 0 5px;
  text-align: center;
}
#hdr .center h1 {
  margin-bottom: 30px;
  font-size: 40px;
}
@media all and (max-width: 1000px) {
  #hdr .center h1 {
    font-size: 34px;
  }
}
@media all and (max-width: 700px) {
  #hdr .center h1 {
    font-size: 30px;
  }
}
@media all and (max-width: 500px) {
  #hdr .center h1 {
    font-size: 26px;
  }
}
@media all and (max-width: 400px) {
  #hdr .center h1 {
    font-size: 24px;
  }
}
#hdr .center h2 {
  font-weight: 300;
  font-size: 24px;
  text-transform: none;
}
@media all and (max-width: 1000px) {
  #hdr .center h2 {
    font-size: 22px;
  }
}
@media all and (max-width: 700px) {
  #hdr .center h2 {
    font-size: 21px;
  }
}
@media all and (max-width: 500px) {
  #hdr .center h2 {
    font-size: 19px;
  }
}
@media all and (max-width: 400px) {
  #hdr .center h2 {
    font-size: 18px;
  }
}
#hdr .center p {
  max-width: 700px;
}
@media all and (max-width: 400px) {
  #hdr .center p {
    font-size: 15px;
  }
}
#hdr .center .btn.def {
  margin-top: 35px;
  background: brown;
}
#hdr .center .btn.def:hover {
  background: #912525;
}
#hdr .scroll {
  width: 36px;
  height: 36px;
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 50%;
  border-radius: 999px;
  background: #a00000;
  transform: translateX(-50%);
  animation: swing 2s ease-in-out infinite;
}
@media all and (max-height: 420px) {
  #hdr .scroll {
    display: none;
  }
}
#hdr .scroll:after {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
  border-bottom: 4px solid white;
  border-right: 4px solid white;
  transform: rotate(45deg);
}
@keyframes swing {
  0% {
    transform: translateX(-50%) translateY(-3px);
  }
  50% {
    transform: translateX(-50%) translateY(3px);
  }
  100% {
    transform: translateX(-50%) translateY(-3px);
  }
}

#hp #hdr {
  height: calc(100vh - 100px);
}
#hp #hdr .center h1 {
  margin-bottom: 20px;
}

#ftr {
  overflow: hidden;
  position: relative;
  background-image: url(../img/hdr-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: white;
}
#ftr:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
}
#ftr .cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 50px 0;
}
@media all and (max-width: 1150px) {
  #ftr .cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 575px) {
  #ftr .cols {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
#ftr .col {
  position: relative;
  padding: 0 0 80px;
}
@media all and (max-width: 1150px) {
  #ftr .col {
    padding-bottom: 30px;
  }
}
#ftr .col h1 {
  margin-bottom: 10px;
  font-size: 30px;
}
@media all and (max-width: 800px) {
  #ftr .col h1 {
    font-size: 27px;
  }
}
@media all and (max-width: 600px) {
  #ftr .col h1 {
    font-size: 24px;
  }
}
#ftr .col li, #ftr .col p {
  line-height: 22px;
}
@media all and (max-width: 1000px) {
  #ftr .col li, #ftr .col p {
    line-height: 20px;
  }
}
@media all and (max-width: 800px) {
  #ftr .col li, #ftr .col p {
    line-height: 19px;
  }
}
#ftr .col p {
  padding: 10px 0;
}
#ftr .col a {
  color: inherit;
}
#ftr .col a:hover {
  text-decoration-line: underline;
}
#ftr .col strong {
  display: inline-block;
  text-transform: uppercase;
}
#ftr .col#ftr-contact h2 {
  margin: 0;
  padding: 10px 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
}
#ftr #map {
  height: 0;
  padding: 50% 0;
}
#ftr .credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 30px;
  padding-bottom: 20px;
}
#ftr .credits p {
  padding: 2px 0;
}
#ftr .credits p:first-child {
  margin-right: 20px;
}

.grecaptcha-badge {
  display: none;
}

#debug-window {
  display: none;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background: white;
  font-family: "Courier New", Courier, monospace;
}
#debug-window.active {
  display: block;
}

#debug-btn {
  height: 30px;
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  padding: 0 10px;
  border: 2px solid black;
  border-radius: 4px;
  background: white;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  line-height: 26px;
  color: black;
}

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