/*@import 'mixins';
@import 'responsive';*/
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

header {
  /* hamburger */
}
@media only screen and (max-width: 992px) {
  header {
    display: flex;
    flex-direction: column;
  }
  header > div.strip {
    order: 2;
    background-color: #F2F2F2;
  }
  header > div.navbar-wrapper {
    order: 1;
  }
}
header .strip {
  background-color: #E20613;
  color: #FFFFFF;
}
header .strip a {
  color: #FFFFFF;
}
header .strip .row > div {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  header .strip .row .col-lg-5 {
    max-width: 28%;
  }
}
header .strip .contacts ul.contact-list {
  margin: 0;
  padding: 4px 0.5rem 0 0.5rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 993px) {
  header .strip .contacts ul.contact-list {
    background-color: #fff;
  }
}
header .strip .contacts ul.contact-list li {
  height: 100%;
  display: block;
  padding: 1rem 0;
}
@media only screen and (min-width: 993px) {
  header .strip .contacts ul.contact-list li {
    margin: 0 0.5rem;
    padding: 0;
  }
}
header .navbar {
  padding: 2rem 0 1rem 0;
}
@media only screen and (max-width: 767px) {
  header .navbar {
    justify-content: center;
    padding: 0;
  }
}
header .navbar .navbar-brand {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  header .navbar .navbar-brand {
    margin-top: 1rem;
  }
  header .navbar .navbar-brand img {
    height: 50px;
    width: auto;
  }
}
header .navbar .navbar-collapse {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(227, 6, 19, 0.9);
  z-index: 99999;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  transition: all 1s;
}
header .navbar .navbar-collapse li.nav-item {
  text-align: center;
}
header .navbar .navbar-collapse li.nav-item a.nav-link {
  transition: all 0.5s;
  transition-delay: 1s;
  font-size: 2em;
  color: white;
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
header .navbar .navbar-collapse li.nav-item a.nav-link img {
  transition: all 0.4s;
}
header .navbar .navbar-collapse li.nav-item a.nav-link:hover:after {
  width: 100%;
  left: 0;
}
header .navbar .navbar-collapse li.nav-item a.nav-link:hover.noafter img {
  transform: scale(1.4);
}
header .navbar .navbar-collapse li.nav-item a.nav-link:after {
  transition: all 1s;
  content: "";
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  background-color: white;
}
header .navbar .navbar-collapse li.nav-item a.nav-link.noafter:after {
  content: none;
}
header .navbar .navbar-collapse.active {
  top: 0;
}
header .navbar .navbar-collapse.active a.nav-link {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .navbar .navbar-collapse.active #closemenu {
  transform: rotate(180deg);
}
header .navbar .navbar-collapse #closemenu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: block;
  transition: all 0.6s;
  transition-delay: 0.9s;
}
header .navbar .navbar-collapse #closemenu span {
  display: block;
  background-color: white;
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 3px;
  transform: rotate(-45deg);
}
header .navbar .navbar-collapse #closemenu span:first-of-type {
  transform: rotate(45deg);
}
header .hamburger {
  float: right;
  position: relative;
  border: 0;
  font-size: 2em;
  position: absolute;
  top: 3rem;
  right: 0rem;
}
@media only screen and (max-width: 767px) {
  header .hamburger {
    top: 2rem;
  }
}
header .hamburger .text {
  display: block;
  position: absolute;
  /*left:-90px;
  top:-.2rem;*/
  left: -18px;
  top: 15px;
  font-size: 0.95rem;
  color: #000;
  /*font-weight:bold;*/
}
header .hamburger .toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  /* @media only screen and (max-width: 767px)  {
       width:40px; 
   }*/
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border: none;
  outline: 0;
  /*  &.active {
        span {
            transform: rotate(45deg);
             width:100%;                           
            transition-property:transform, width;
            transition-delay:.5s;
            transition-duration:.5s;
            &:first-of-type {
                transform: rotate(-45deg);
                width:100%;           
                top:50%;
                transition-property:transform, top;
                transition-delay:.5s;
                transition-duration:.5s;

            }
            &:last-of-type {
                transform:translate(100%,0);
                transition-delay:0s;
                transition-duration:0.5s;

            }
        }
    }*/
}
header .hamburger .toggle:hover, header .hamburger .toggle:active {
  background-color: transparent !important;
}
header .hamburger .toggle span {
  position: absolute;
  right: 0;
  top: 50%;
  width: 80%;
  height: 3px;
  background: #E20613;
  transition-property: transform;
  transition-delay: 0s, 1s;
  transition-duration: 0.5s, 0.5s;
  /*     &:last-of-type {
           top:75%;            
           width:60%;
       }*/
}
header .hamburger .toggle span:first-of-type {
  top: 26%;
  /*                    width:100%;*/
}
header .droplang {
  position: absolute;
  right: 12rem;
  top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  header .droplang {
    right: auto;
    left: 0;
    top: 1.5rem;
  }
}
header .droplang a {
  color: #000;
  text-decoration: none;
}
header .droplang a.dropdown-toggle {
  display: block;
  width: 40px;
  overflow: hidden;
}
header .droplang a.dropdown-toggle::after {
  width: 15px;
  height: 8px;
  background-image: url(/images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  vertical-align: 0.15em;
}
header .droplang .dropdown-menu {
  width: auto;
  max-width: 18rem;
  min-width: 1rem;
  border-radius: 0;
  margin-top: -3px;
}
@media only screen and (min-width: 1200px) {
  header .droplang .dropdown-menu {
    right: 0;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  header .droplang .dropdown-menu {
    border: 0;
  }
}
header .droplang .dropdown-menu a.dropdown-item {
  color: #E20613;
}
header .droplang .dropdown-menu a.dropdown-item:hover, header .droplang .dropdown-menu a.dropdown-item:focus, header .droplang .dropdown-menu a.dropdown-item:active {
  color: #000 !important;
  background-color: transparent;
}

.exit {
  height: 100%;
  background-image: url(/images/exit.svg);
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-color: #008045;
  background-size: auto 80%;
  padding-right: 6rem;
  padding-left: 1rem;
}
.exit:hover {
  text-decoration: none;
}

.what a {
  display: block;
  transition: all 0.3s;
}
.what a img {
  transition: all 0.4s;
}
.what a:hover, .what a:focus, .what a:active {
  text-decoration: none;
  color: #E20613;
}
.what a:hover img, .what a:focus img, .what a:active img {
  transform: translateY(-10%);
}

.news .row {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .news .row h1 {
    font-size: 1.7rem;
  }
  .news .row h3 {
    font-size: 1.5rem;
  }
}
.news .row .col-md-8 {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .news .row .col-md-8 {
    border-right: 5px solid white;
  }
}
@media only screen and (max-width: 767px) {
  .news .row .col-md-8 {
    border-bottom: 5px solid white;
  }
}
.news .row .catalog {
  height: 100%;
  position: relative;
  background-size: cover;
  min-height: 230px;
}
@media only screen and (max-width: 767px) {
  .news .row .catalog {
    min-height: 230px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .news .row .catalog {
    min-height: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .news .row .catalog {
    background-position: left -250px center;
  }
}
.news .row .catalog.darkover:after {
  position: absolute;
  content: "";
  background-color: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 10;
}
.news .row .catalog a.catalog-link {
  display: block;
  width: 100%;
  height: 100%;
}
.news .row .catalog a.catalog-link span {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  margin-bottom: 0;
  color: white;
  display: inline-block;
  padding-right: 5rem;
  color: white;
  text-decoration: none;
}
.news .row h3 {
  font-size: 2.25em;
}
.news .row h1 {
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  z-index: 20;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .news .row h1 {
    top: 5%;
  }
}
@media only screen and (min-width: 768px) {
  .news .row h1 p {
    max-width: 70%;
  }
}

.news-hp-list .news-hp-item {
  padding: 0;
  padding-left: 0;
  color: white;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  /* a {
       overflow:hidden;
       display:inline-block;
       padding-right:5rem;
       &.black {
           color:black;
       }
       img {
           display:inline-block;
           position:relative;
       }
       &:hover {
           img {
               animation-name: arrow;
               animation-duration: .6s;
               animation-iteration-count: 1;
           }
       }
   }*/
}
.news-hp-list .news-hp-item .hp-news-background {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: left;
  transition: transform 0.5s ease-in-out;
  z-index: 1;
  position: absolute;
}
.news-hp-list .news-hp-item:hover .hp-news-background {
  transform: scale(1.1);
}
.news-hp-list .news-hp-item a {
  padding: 2rem;
  display: block;
  min-height: 320px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .news-hp-list .news-hp-item {
    min-height: 230px;
    padding: 0;
  }
}
.news-hp-list .news-hp-item .link {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  margin-bottom: 0;
  z-index: 3;
}
.news-hp-list .news-hp-item .link img {
  margin-left: 2rem;
}
.news-hp-list .news-hp-item a, .news-hp-list .news-hp-item h3, .news-hp-list .news-hp-item img {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

@keyframes arrow {
  0% {
    left: 0px;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .hp .news-hp-item {
    border-top: 5px solid white;
  }
}
@media only screen and (min-width: 768px) {
  .hp .news-hp-item {
    border-left: 6px solid white;
  }
}
.hp .news-hp-item + .news-hp-item {
  border-top: 5px solid white;
}

.in .news-hp-item {
  border: 2px solid white;
}

.photo {
  color: black;
  text-decoration: none;
}
.photo img {
  transition: all 0.3s;
}
.photo:hover {
  color: black;
  text-decoration: none;
}
.photo:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ccc;
}

footer .footer-social {
  background-image: url(/images/footer.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  min-height: 16rem;
  background-size: cover;
  position: relative;
  /*@media only screen and (min-width: 768px) and (max-width: 992px)  {
      min-height: 20rem;
  }*/
}
@media only screen and (max-width: 767px) {
  footer .footer-social {
    background-size: cover;
    min-height: 12rem;
  }
}
footer .footer-social > div {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}
footer .footer-social > div a {
  color: white;
}

.map {
  position: relative;
  padding-bottom: 25%;
  height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .map {
    padding-bottom: 60%;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.topin {
  padding-top: 20%;
}

/* back to top */
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #E20613 url(/images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
}

/* MAC HACK */
.row:before, .row:after {
  display: none !important;
}

/*
.switch {
    width:100%;
    .droplang  {
        display: block;
        position: static;
    }
    .wrapper {
        width:100%;
        @media only screen and (min-width: 768px)  {
            display: table;

        }
        .column {
            height: 100vh;
            @media only screen and (min-width: 768px)  {
                width: 50%;
                display: table-cell;
                -webkit-transition: width 0.5s ease ;
                transition: width 0.3s ease ;            
            }
            img {
                @media only screen and (max-width: 767px)  {
                    width:40px;
                    height:auto;
                }   
            }
            a {
                display: block;
                width: 100%;
                height: 100%;
                color:white;
                font-size: 2.5em;
                font-weight: bold;
                text-decoration: none;
                font-family: $font-family;      

                p,span {
                    display: block;
                    @media only screen and (min-width: 768px)  {
                        margin-right:3rem;
                    }
                    line-height: 1.1;  

                }

                @media only screen and (max-width: 767px)  {
                    font-size: 1.5em;
                }

            }
            &.left {
                background-image: url(/images/upload/homepage/rozcestnik1.jpg);
                background-size: cover;
                background-position: right center;
                @media only screen and (max-width: 767px)  {
                    height:calc(33.3vh - 14px);
                }

                a {
                    p {
                        padding:1rem 3rem 0 3rem;

                        @media only screen and (min-width: 768px)  {
                            padding:3rem;
                            float:right;
                        }                        
                        img {
                            margin-top: 2rem;
                        }
                    }
                }
            }

            &.right {
                padding:0;
                @media only screen and (max-width: 767px)  {
                    height:calc(66.6vh - 27px);
                }
                &>div {
                    height: 50%;
                    background-size: cover;
                    background-position: left center;
                    position:relative;
                }
                .righttop {          

                    background-image: url(/images/upload/homepage/rozcestnik2a.jpg?1);     
                    span {
                        position:absolute;
                        bottom:1rem;
                        left:3rem;
                    }
                }
                .rightbottom {                        
                    background-image: url(/images/upload/homepage/rozcestnik2b.jpg?1);
                    span {
                        position:absolute;                            
                        left:3rem;
                        top: 1rem;
                    }
                }
                a {
                    p {
                        padding-top: 4rem;
                        float:right;
                        img {
                            margin-top: 2rem;
                        }
                    }
                }
            }
        }
    }
}

*/
.parkingcount {
  min-width: 100%;
  background-color: white;
  padding-top: 0.7em !important;
  padding-bottom: 0.7em !important;
  color: #0A4681;
}
@media only screen and (min-width: 993px) {
  .parkingcount {
    position: absolute;
    left: 50%;
    transform: translateX(-70%);
    top: 3.9rem;
    min-width: 400px;
  }
}
.parkingcount .borderp {
  border: 1px solid #0A4681;
}
.parkingcount .letterp {
  background-color: #0A4681;
  padding: 0.6em 0.4em;
  height: 100%;
}
@media only screen and (min-width: 993px) {
  .parkingcount .letterp {
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
  }
}
.parkingcount .text {
  line-height: 1;
  font-weight: bold;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
}
@media only screen and (min-width: 993px) {
  .parkingcount .text {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.parkingcount .numbers {
  padding: 0 0;
}
.parkingcount .numbers .numbers-in {
  background-color: black;
  color: #9DC41E;
  font-size: 1.7em;
  font-family: "Liquid Crystal";
  padding: 0.1em 0.2em;
  line-height: 1;
}
@media only screen and (min-width: 993px) {
  .parkingcount .numbers .numbers-in {
    font-size: 2.1em;
  }
}
.parkingcount .truck {
  padding: 0 1em;
}

@font-face {
  font-family: "Liquid Crystal";
  src: url("/font/LiquidCrystal-BoldItalic.woff2") format("woff2"), url("/font/LiquidCrystal-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.switch {
  background-color: #394049;
  color: white;
  background-image: url(/images/switchD1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
}
.switch .droplang {
  position: relative;
  top: -2em;
}
@media only screen and (min-width: 768px) {
  .switch .droplang {
    top: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .switch .droplang {
    display: block;
  }
}
.switch .droplang a.dropdown-toggle {
  color: white;
}
.switch .header {
  background-color: #252930 !important;
  border-bottom: none;
  position: relative;
}
.switch .header .exit2 {
  font-size: 1em;
  background-color: #008341;
  color: white;
  width: auto;
  display: inline-flex;
  min-width: fit-content;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.2em 0.5em;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .switch .header .exit2 {
    font-size: 1.5em;
    padding: 0.5em 1em;
  }
}
.switch .header .exit2 img {
  width: 50px;
}
@media only screen and (min-width: 768px) {
  .switch .header .exit2 img {
    width: auto;
  }
}
.switch .switch-main {
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
}
.switch .switch-main a {
  color: black;
}
.switch .switch-main .switch-container .switch-block {
  background-color: white;
  border-radius: 0.5em;
  overflow: hidden;
  box-shadow: 0px 14px 20px #222;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .switch .switch-main .switch-container .switch-block {
    max-width: 270px;
  }
}
.switch .switch-main .switch-container .switch-block .header-block {
  height: 76px;
  font-size: 1.5em;
  background-color: #b2995f;
  color: white;
  width: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0.5em 1em;
}
.switch .switch-main .switch-container .switch-block a.btn {
  background-color: #b2995f;
  border-color: #b2995f;
}
.switch .switch-main .switch-container .switch-block.block-red .header-block {
  background-color: #E10B17;
}
.switch .switch-main .switch-container .switch-block.block-red a {
  color: #E10B17;
}
.switch .switch-main .switch-container .switch-block.block-red a:hover {
  color: #E10B17;
}
.switch .switch-main .switch-container .switch-block.block-red a.btn {
  color: white;
  background-color: #E10B17;
}
.switch .switch-main .switch-container .switch-block .text {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
.switch .switch-main .switch-container .switch-block .text a {
  display: block;
  padding: 0.3em 0;
}
.switch .switch-main .switch-container .switch-block .text a:hover {
  color: black;
}
@media only screen and (max-width: 767px) {
  .switch .switch-main .switch-container .switch-block .image {
    max-height: 170px;
    overflow: hidden;
  }
  .switch .switch-main .switch-container .switch-block .image img {
    margin-top: -20px;
  }
}
.switch .switch-main .switch-container .switch-block .switch-button {
  min-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.switch .switch-main .switch-container .switch-block .switch-button a {
  min-width: 70%;
  color: white;
}
.switch .switch-main .switch-container .switch-block .autopark-img {
  height: 20px;
}
.switch .switch-main .switch-container .switch-block .truckpark-img {
  height: 20px;
}
.switch .btn-full {
  border-radius: 0.5em;
  border: 1px solid #E20613;
  background-color: #E20613;
  color: white;
}
.switch .maincolor {
  color: #E20613;
}
.hoteld1 {
  border-radius: 1em;
  border: 1px solid #A69362;
}
.hoteld1 a {
  color: #A69362;
}

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