@charset "UTF-8";
html,
body {
  background-color: var(--white);
  color: var(--black);
  font-variant-ligatures: none;
  font-size: min(1em, 14.4px);
  font-size: 1vw;
  position: relative;
  width: 100%;
  font-family: "Bicyclette", sans-serif;
  font-display: swap;
  font-weight: normal;
  overflow-x: hidden;
}
@media (min-width: 1600px) {
  html,
  body {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  html,
  body {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 1.2vw;
  }
}
@media (max-width: 500px) {
  html,
  body {
    font-size: 3.5vw;
  }
}

/*body::before {
    content: '';
    display: block;
    height: $header-height;
}*/
body * {
  box-sizing: border-box;
}

section,
main,
footer {
  position: relative;
}

header {
  position: absolute;
}

.middle {
  margin: 0px auto;
  width: 70rem;
  position: relative;
}
@media (max-width: 500px) {
  .middle {
    width: 25rem !important;
  }
}

.fullpage {
  min-height: calc(100vh - 7.5rem);
}

.is-half {
  width: 50%;
}
@media (max-width: 500px) {
  .is-half {
    width: 100%;
  }
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li, ol li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1em;
}
ul li::before, ol li::before {
  position: absolute;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  left: 0;
}

ul li::before {
  content: "●";
  color: pink;
}

ol {
  counter-reset: list-counter;
}
ol li {
  counter-increment: list-counter;
}
ol li::before {
  content: counter(list-counter) ".";
}

.text-container p {
  margin-bottom: 1.5rem;
}

.notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}
.notices.is-bottom-right {
  flex-direction: column-reverse;
  align-items: flex-end;
}
.notices .notification {
  animation-duration: 0.15s;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  /* border-radius: 4px; */
  pointer-events: auto;
  min-height: 3em;
  position: relative;
  transform: translateX(calc(100% + 2em));
  transition: all 0.5s, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35), opacity 0.3s ease, height 0.5s ease;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}
.notices .notification.active {
  transform: translateX(0%);
}
.notices .notification.is-success {
  background-color: #333333;
}
.notices .notification.is-danger {
  background-color: var(--err);
}
.notices .notification.is-warning {
  background-color: var(--err);
}
.notices .notification.is-info {
  background-color: var(--black);
}
.notices .notification .progress {
  margin-top: 0.5em;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}
.notices .notification .progress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.3);
}
.notices .notification .progress::-webkit-progress-value {
  background-color: #fff;
}
.notices .notification .progress::-moz-progress-bar {
  background-color: #fff;
}
.notices .notification .delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notices .notification .delete:before {
  content: "×";
  font-size: 1.2rem;
  line-height: 1;
  color: inherit;
  display: block;
}
.notices .notification .delete:hover {
  color: #fff;
}
.notices .notification.is-closing {
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 500px) {
  .notices {
    padding: 0;
    position: fixed !important;
  }
  .notices .notification {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .notices .notification {
    min-width: 350px;
    max-width: 600px;
    overflow: hidden;
  }
}
.mustang {
  background-image: url(../images/mustang-logo.svg);
  background-size: 100% auto;
  background-position: left top;
  background-repeat: no-repeat;
  aspect-ratio: 25/18;
}
.mustang.reverse {
  background-image: url(../images/mustang-reverse.svg);
}

header {
  color: var(--white);
  z-index: 1;
}
header .mustang {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 10rem;
  z-index: 10;
}
header .middle {
  display: flow-root;
}

.service .mustang {
  top: 2.5rem;
}
@media (max-width: 500px) {
  .service .mustang {
    top: 1.5rem;
  }
}

.hamburger {
  position: absolute;
  right: 0;
  top: 1.5rem;
  width: 3rem;
  height: 2.5rem;
  display: none;
  cursor: pointer;
}
@media (max-width: 500px) {
  .hamburger {
    display: block;
  }
  .ismodal .hamburger {
    display: none;
  }
}
.hamburger > div {
  position: absolute;
  width: 100%;
  left: 0;
  height: 2px;
  background-color: var(--white);
}
.hamburger > div:nth-of-type(1) {
  top: 0;
}
.hamburger > div:nth-of-type(2) {
  top: calc(50% - 1px);
}
.hamburger > div:nth-of-type(3) {
  bottom: 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.25rem;
  user-select: none;
}
.ismodal nav {
  display: none;
}
nav > * {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: bold;
  position: relative;
}
nav > * + * {
  margin-left: 3rem;
}
@media (max-width: 500px) {
  nav > * + * {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media (max-width: 500px) {
  nav > *::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 0.25rem);
    width: 4rem;
    height: 0.5rem;
    background-image: url(../images/uliner-white.svg);
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
  }
}
nav > *:hover, nav > *:focus {
  text-decoration: none;
}
nav > *:hover::before, nav > *:focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 0.25rem);
  width: 4rem;
  height: 0.5rem;
  background-image: url(../images/uliner.svg);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  nav > *:hover::before, nav > *:focus::before {
    background-image: url(../images/uliner-white.svg);
  }
}
@media (max-width: 500px) {
  nav {
    position: fixed;
    right: -26rem;
    top: 0;
    width: 25rem;
    height: 100vh;
    transition: 0.5s;
    z-index: 999;
    background-color: var(--red);
    margin-top: 0;
    padding: 6rem 2rem 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  nav.open {
    right: 0;
  }
}
nav .close {
  display: none;
  cursor: pointer;
}
@media (max-width: 500px) {
  nav .close {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    width: 3rem;
    height: 3rem;
    margin: 0;
  }
  nav .close > div {
    position: absolute;
    width: 100%;
    left: 0;
    height: 2px;
    top: calc(50% - 1px);
    background-color: var(--white);
  }
  nav .close > div:nth-of-type(1) {
    transform: rotate(-45deg);
  }
  nav .close > div:nth-of-type(2) {
    transform: rotate(45deg);
  }
  nav .close::before {
    display: none;
  }
}

footer {
  font-size: 0.9rem;
  line-height: 150%;
  color: var(--black);
  padding: 2rem 0 6rem;
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.5rem;
  background-color: var(--red);
}
footer p {
  margin-bottom: 1.25rem;
}
footer .disclaimer {
  color: var(--red);
  font-weight: bold;
}
footer .flex {
  justify-content: flex-start;
  text-transform: uppercase;
}
footer .flex > * + * {
  margin-left: 1.5rem;
}
@media (max-width: 500px) {
  footer .flex > * + * {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
footer .flex > *:focus {
  outline: 1px dotted var(--black);
}
@media (max-width: 500px) {
  footer .flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .podpora {
  text-transform: none;
}
footer .podpora a {
  text-transform: uppercase;
}

.modal {
  position: fixed;
  width: 100vw;
  left: 0;
  top: 0;
  background-color: var(--black);
  display: none;
}
.ismodal .modal {
  display: block;
}
.modal .middle {
  height: 100vh;
}
.modal p {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 150%;
  width: 100%;
}
.modal p + div {
  width: 100%;
  margin-top: 2rem;
}