#lay-nav {
  width: 100%;
  height: 180px;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, white 90px, #0089b6 90px);
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
  color: #180d00;
  transition: top 0.4s ease;
}
@media all and (min-width: 1141px) {
  #lay-nav {
    /*&:after{
        content: "";
        display: block;
        height: 5px;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: $blue_700;
    }*/
  }
}
@media all and (max-width: 1140px) {
  #lay-nav {
    height: 80px;
    background: #004f6a;
    color: white;
  }
}
#lay-nav #sladovna {
  display: flex;
  position: fixed;
  top: 35%;
  right: -5px;
  transform: translateX(50%) rotate(-90deg);
  transform-origin: bottom center;
  padding: 10px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: #231F20;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: white;
  transition: right 0.3s ease;
}
@media all and (max-width: 700px) {
  #lay-nav #sladovna {
    display: none;
  }
}
#lay-nav #sladovna:hover {
  right: 0;
}
#lay-nav #sladovna img {
  height: 45px;
}
#lay-nav .logo {
  display: block;
  height: 90px;
  position: relative;
  /*img{
      display: block;
      max-width: 100%;
      max-height: 100%;
      margin-right: 20px;
  }*/
}
@media all and (max-width: 1140px) {
  #lay-nav .logo {
    display: block;
    max-width: 200px;
    top: 55px;
    line-height: 25px;
  }
}
#lay-nav .logo h1 {
  text-transform: none;
  white-space: nowrap;
  word-spacing: -0.3em;
  font-size: 33px;
  letter-spacing: 2px;
  color: #0089b6;
}
@media all and (max-width: 1140px) {
  #lay-nav .logo h1 {
    white-space: normal;
    font-size: 20px;
    color: white;
  }
}
#lay-nav .logo h1 .darker {
  color: #004f6a;
}
@media all and (max-width: 1140px) {
  #lay-nav .logo h1 .darker {
    height: auto !important;
    margin-left: 2px;
    color: #0089b6;
  }
}
#lay-nav .resp-menu {
  float: left;
  width: 100%;
  height: 0;
  position: relative;
  z-index: 1;
  top: calc(50% - 10px);
}
@media all and (min-width: 1141px) {
  #lay-nav .resp-menu {
    height: 180px;
    top: 0;
    text-align: right;
  }
}
#lay-nav .resp-menu .top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  position: relative;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu .top {
    justify-content: start;
    top: -90px;
  }
}
#lay-nav .resp-menu .top .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 18px;
  padding: 5px;
  line-height: 18px;
  text-align: left;
  font-size: 22px;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu .top .item:not(:first-of-type) {
    display: none;
  }
}
#lay-nav .resp-menu .top .item:nth-of-type(2) {
  margin: 0 auto;
}
#lay-nav .resp-menu .top .item#opening {
  text-transform: uppercase;
}
#lay-nav .resp-menu .top .item .row {
  margin: 0 15px 10px;
  white-space: nowrap;
  line-height: 22px;
}
#lay-nav .resp-menu .top .item img {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  font-size: 0;
}
#lay-nav .resp-menu .top .item span {
  display: inline-block;
  vertical-align: middle;
  height: 22px;
  word-spacing: 0em;
}
#lay-nav .resp-menu .content {
  position: relative;
  white-space: nowrap;
  word-spacing: calc(1px - 0.3em);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu .content {
    flex-direction: column;
    height: calc(100% - 65px);
    overflow: auto;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 100%;
    transform: none;
    margin-top: 65px;
    box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    padding-right: 60px;
    transition: transform 0.8s ease;
    background: #0089b6;
  }
  #lay-nav .resp-menu .content ul {
    padding-left: 4px;
  }
}
#lay-nav .resp-menu .content .item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 25px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  word-spacing: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu .content .item {
    display: block;
    width: 100%;
    height: auto;
    margin: 15px 0;
    padding: 0 10px;
    line-height: 30px;
    text-align: left;
    font-size: 20px;
    color: white;
  }
  #lay-nav .resp-menu .content .item .submenu {
    white-space: nowrap;
    font-size: 17px;
    line-height: 19px;
    font-weight: 400;
  }
  #lay-nav .resp-menu .content .item .submenu li {
    margin: 8px 0;
  }
}
@media all and (min-width: 1141px) {
  #lay-nav .resp-menu .content .item:not(.img).active, #lay-nav .resp-menu .content .item:not(.img):hover {
    border-color: white;
  }
  #lay-nav .resp-menu .content .item:not(.img).active .submenu, #lay-nav .resp-menu .content .item:not(.img):hover .submenu {
    opacity: 1;
    pointer-events: all;
  }
  #lay-nav .resp-menu .content .item .submenu {
    position: absolute;
    top: calc(100% + 20px);
    padding: 15px;
    opacity: 0;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: opacity 0.3s ease;
    background: #004f6a;
    white-space: nowrap;
    pointer-events: none;
    color: white;
  }
  #lay-nav .resp-menu .content .item .submenu:before {
    content: "";
    display: block;
    width: 100%;
    height: 22px;
    position: absolute;
    bottom: 100%;
    left: 0;
  }
  #lay-nav .resp-menu .content .item .submenu li {
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
  }
  #lay-nav .resp-menu .content .item .submenu li a:hover {
    text-decoration-line: underline;
  }
}
#lay-nav .resp-menu .content .item .icon {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}
#lay-nav .resp-menu .content .item .link {
  padding: 5px;
  line-height: 24px;
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 30px;
  transition: background 0.3s ease;
}
#lay-nav .resp-menu .content .item .link:hover {
  background: #004f6a;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu .content .item .link {
    display: inline-block;
  }
}
#lay-nav .resp-menu .content .item img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center center;
}
#lay-nav .resp-menu #hmb {
  height: 21px;
  width: 30px;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 11;
  border: 0;
  background: 0;
  transition: transform 0.5s ease;
}
@media all and (min-width: 1140px) {
  #lay-nav .resp-menu #hmb {
    display: none;
  }
}
#lay-nav .resp-menu #hmb span {
  display: block;
  height: 3px;
  width: 90%;
  position: absolute;
  left: 0;
  background: white;
}
#lay-nav .resp-menu #hmb span:nth-of-type(1) {
  top: 0;
  transform-origin: top left;
  transition: left 0.5s ease, transform 0.5s ease;
}
#lay-nav .resp-menu #hmb span:nth-of-type(2) {
  top: 9px;
  left: 0;
  transition: width 0.3s ease, left 0.3s ease;
}
#lay-nav .resp-menu #hmb span:nth-of-type(3) {
  bottom: 0;
  transform-origin: bottom left;
  transition: left 0.5s ease, transform 0.5s ease;
}
@media all and (max-width: 1140px) {
  #lay-nav .resp-menu.active .content {
    transform: translateX(-100%);
  }
  #lay-nav .resp-menu.active #hmb {
    transform: rotate(180deg);
  }
  #lay-nav .resp-menu.active #hmb span:nth-of-type(1) {
    transform: rotate(45deg);
    left: 5px;
  }
  #lay-nav .resp-menu.active #hmb span:nth-of-type(2) {
    width: 0;
    left: 15px;
  }
  #lay-nav .resp-menu.active #hmb span:nth-of-type(3) {
    left: 5px;
    transform: rotate(-45deg);
  }
}

@media all and (min-width: 1141px) {
  [data-scrolled="1"] #lay-nav {
    top: -90px;
  }
  [data-scrolled="1"] #main {
    padding-top: 90px;
  }
}

#lay-hdr {
  height: 300px;
  position: relative;
  background: rgba(0, 137, 182, 0.7);
}
#lay-hdr #bg-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  background-color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  transition: background-position 15s linear, opacity 1s ease;
}
#lay-hdr #bg-slider .slide.active {
  opacity: 1;
}
#lay-hdr #hd-slider {
  height: 100%;
  position: relative;
}
#lay-hdr #hd-slider .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 35px;
  transition: opacity 0.3s ease, top 0.3s ease;
  pointer-events: none;
}
@media all and (max-width: 500px) {
  #lay-hdr #hd-slider .slide {
    align-items: start;
  }
}
#lay-hdr #hd-slider .slide.active {
  opacity: 1;
  top: 50%;
  pointer-events: all;
  transition-delay: 0.3s;
}
#lay-hdr #hd-slider .slide h1 {
  font-size: 5vw;
  color: white;
}
@media all and (max-width: 600px) {
  #lay-hdr #hd-slider .slide h1 {
    font-size: 32px;
  }
}
#lay-hdr #hd-slider .slide p {
  width: 50%;
  min-width: 400px;
  line-height: 32px;
  font-size: 20px;
  text-align: center;
  color: white;
}
@media all and (max-width: 800px) {
  #lay-hdr #hd-slider .slide p {
    width: 100%;
    min-width: unset;
  }
}
@media all and (max-width: 500px) {
  #lay-hdr #hd-slider .slide p {
    text-align: left;
  }
}
#lay-hdr #hd-slider .slide .btn.def {
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#main {
  padding-top: 180px;
  transition: padding-top 0.4s ease;
}
@media all and (max-width: 1140px) {
  #main {
    padding-top: 80px;
  }
}

#ftr {
  position: relative;
  margin-top: 80px;
  padding-top: 30px;
  box-shadow: inset 0 0 25px 5px rgba(0, 79, 106, 0.1);
  background: #0089b6;
  color: white;
}
#ftr:after {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-image: url(../img/flat-hill-dark.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#ftr .cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 50px 0;
}
@media all and (max-width: 800px) {
  #ftr .cols {
    grid-template-columns: 1fr;
  }
}
#ftr .cols .col {
  padding: 20px;
  position: relative;
  border-radius: 3px;
  /*&:before{
      content: "";
      display: block;
      width: calc(100%);
      height: calc(50% + 5px);
      position: absolute;
      z-index: -1;
      top: -5px;
      left: -5px;
      border-radius: 5px;
      background: $blue_400;
  }
  &:after{
      content: "";
      display: block;
      width: 10px;
      height: 5px;
      position: absolute;
      top: -5px;
      border-radius: 5px;
      background: $blue_400;
  }
  &:nth-child(1){
      &:before{
          left: 5px;
          background: $blue_400;
      }
      &:after{
          left: 0;
      }
  }
  &:nth-child(2){
      &:before{
          width: calc(100% + 10px);
          top: 50%;
      }
      &:after{
          display: none;
      }
  }
  &:nth-child(3){
      &:before{
          right: 5px;
      }
      &:after{
          right: 0;
          background: #659A8B;
      }
  }*/
}
#ftr .cols .col h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
#ftr .cols .col p {
  padding: 7px 0;
}
#ftr .cols .col img {
  border-radius: 10px;
}
#ftr #map {
  width: 100%;
  max-width: 100%;
  height: 300px;
  background: #e6e6e6;
}
#ftr img {
  width: 100%;
}
#ftr .credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 30px;
  padding: 20px;
}
#ftr .credits:before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #004f6a;
}
#ftr .credits p {
  margin: 10px 0;
  padding: 2px 0;
}
#ftr .credits p:first-child {
  margin-right: 20px;
}

.grecaptcha-badge {
  display: none;
}

/*
.popup-backdrop{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999999999;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity .2s ease;
    pointer-events: none;
    &.active{
        opacity: 1;
        pointer-events: all;
        .popup{
            animation: showPopup .2s ease;
            animation-fill-mode: both;
            pointer-events: all;
        }
    }
    &.hiding{
        .popup{
            animation: hidePopup .2s ease;
            animation-fill-mode: both;
        }
    }
}
.popup{
	width: calc(100% - 20px);
	max-width: 1000px;
	max-height: 90vh;
	position: fixed;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 30px 40px 20px;
	border-radius: 4px;
	background: white;
	opacity: 0;
	transition: opacity .5s ease;
	box-shadow: 0 0 15px 4px rgba(0,0,0,.08);
    pointer-events: none;
    &.active{
        opacity: 1;
	    pointer-events: all;
    }
    .btn.close{
		width: 30px;
		height: 30px;
		position: absolute;
		top: 10px;
		right: 10px;
		margin: 0;
		padding: 0;
		//border: 1px solid rgb(230,230,230);
		border: 0;
		border-radius: 0;
		background: white;
		cursor: pointer;
        line-height: auto;
        img{
			width: 14px;
			height: 14px;
			object-fit: contain;
			position: absolute;
			top: calc(50% - 7px);
			left: calc(50% - 7px);
			filter: brightness(0);
		}
    }
    .popup-content{
        max-height: calc(90vh - 50px);
        overflow-y: auto;
    }
    .btn-area{
		padding: 20px 0;
        text-align: center;
        .btn{
            border-color: #7fba00;
            font-weight: 700;
            font-size: 18px;
            background-color: #7fba00;
            color: white;
            transition: background-color 0.3s ease;
            &:hover{
                background-color: #5c8700;
            }
        }
	}
}
@keyframes showPopup{
	0%{transform: translate(-50%, -50%) scale(1.2);opacity: 0;}
	100%{transform: translate(-50%, -50%) scale(1);opacity: 1;}
}
@keyframes hidePopup{
	0%{transform: translate(-50%, -50%) scale(1);opacity: 1;}
	100%{transform: translate(-50%, -50%) scale(.8);opacity: 0;}
}
*/
#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 */
