/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/styles/main.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
/*
0 - 620px:      Phone
620 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where normal styles apply
1800px + :      Big desktop
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
:root {
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 17%);
  --blue-grey: hsl(205, 25%, 86%);
  --blue-grey-dark:	hsl(205, 25%, 69%);
  --background-menu: hsla(0, 0%, 0%, 0.54);
  --background-linka: hsla(46, 84%, 51%);
  --text-white: hsl(0, 0%, 100%, 0.94);
  --text-grey-dark: hsl(0, 0%, 24%);
  --text-grey: hsl(0, 0%, 42%);
  --text-menu: hsl(0, 0%, 94%);
  --button-text: hsla(0, 0%, 45%, 0.7);
  --button-text-hov: hsla(0, 0%, 42%, 0.9);
  --button-background-hov: hsla(0, 0%, 88%, 0.45);
  --button-shadow: hsl(0, 0%, 66%);
  --size-06: calc(0.84vw + 0.6rem);
  --size-07: calc(0.98vw + 0.7rem);
  --size-08: calc(1.12vw + 0.8rem);
  --size-09: calc(1.26vw + 0.9rem);
  --size-10: calc(1.4vw + 1rem);
  --size-11: calc(1.54vw + 1.1rem);
  --size-12: calc(1.68vw + 1.2rem);
  --size-13: calc(1.82vw + 1.3rem);
  --size-14: calc(1.96vw + 1.4rem);
  --size-15: calc(2.1vw + 1.5rem);
  --size-16: calc(2.24vw + 1.6rem);
  --size-17: calc(2.38vw + 1.7rem);
  --size-18: calc(2.52vw + 1.8rem);
  --size-19: calc(2.66vw + 1.9rem);
  --size-20: calc(2.8vw + 2rem);
  --size-21: calc(2.94vw + 2.1rem);
  --size-22: calc(3.08vw + 2.2rem);
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1 {
  font-size: var(--size-14);
  font-weight: 400;
}
@media only screen and (max-width: 38.75em) {
  h1 {
    font-size: var(--size-18);
    line-height: var(--size-12);
  }
}

h2 {
  font-size: var(--size-11);
  line-height: var(--size-10);
  font-weight: 300;
}
@media only screen and (max-width: 38.75em) {
  h2 {
    font-size: var(--size-16);
  }
}

h3 {
  font-size: var(--size-09);
  line-height: var(--size-07);
  font-weight: 300;
}
@media only screen and (max-width: 38.75em) {
  h3 {
    font-size: var(--size-12);
  }
}

h4 {
  font-size: var(--size-06);
  line-height: var(--size-08);
  font-weight: 300;
}
@media only screen and (max-width: 56.25em) {
  h4 {
    font-size: var(--size-08);
    line-height: var(--size-10);
  }
}
@media only screen and (max-width: 38.75em) {
  h4 {
    font-size: var(--size-10);
    line-height: var(--size-12);
  }
}

h5 {
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 300;
}

p {
  font-size: calc(0.84vw + 0.6rem);
  line-height: calc(1.2vw + 0.9rem);
  font-weight: 100;
}
@media only screen and (max-width: 56.25em) {
  p {
    font-size: var(--size-11);
    line-height: var(--size-15);
  }
}

.btn, .btn:link, .btn:visited {
  position: relative;
  display: inline-block;
  margin: 3rem 0;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 1.8rem;
  padding: calc(0.56vw + 0.4rem) calc(0.84vw + 0.6rem);
  transition: all 0.2s;
  font-size: calc(1vw + 0.7rem);
  color: var(--button-text);
  background-color: var(--button-background);
  border: 1px solid var(--button-text);
  border-radius: 6px;
  cursor: pointer;
}
@media only screen and (max-width: 38.75em) {
  .btn, .btn:link, .btn:visited {
    padding: 0.8rem 1rem;
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--button-text);
    border: 1px solid var(--button-text);
  }
}
.btn a {
  color: var(--button-text);
  text-decoration: none;
}
.btn:hover {
  color: var(--button-text-hov);
  background-color: var(--button-background-hov);
  border: 1px solid var(--button-text-hov);
  transform: translateY(-0.3rem);
  box-shadow: 0.4rem 0.4rem 1.2rem var(--button-shadow);
}
.btn:hover::after {
  transform: scaleX(1.2) scaleY(1.4);
  opacity: 0;
}
.btn:hover a {
  color: var(--button-text-hov);
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  color: var(--white);
  box-shadow: 0 0.5rem 1rem var(--button-shadow);
}

.container_galerie {
  width: 80%;
  margin: auto;
  text-align: center;
}
.container_galerie h1 {
  margin: 4rem 0 0;
  text-transform: uppercase;
  color: var(--text-grey);
}
.container_galerie .galerie {
  padding: 4rem 0;
  display: -ms-grid;
  display: grid;
  justify-content: center;
  -ms-grid-rows: (minmax(100px, -webkit-min-content))[2];
  -ms-grid-rows: (minmax(100px, min-content))[2];
  grid-template-rows: repeat(2, minmax(100px, -webkit-min-content));
  grid-template-rows: repeat(2, minmax(100px, min-content));
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  /**/
  row-gap: 4rem;
  /**/
}
.container_galerie .galerie img {
  width: 100%;
  height: auto;
  /**/
  box-shadow: 8px 4px 10px rgba(0, 0, 0, 0.2);
}
.container_galerie .galerie img:hover {
  opacity: 0.7;
  box-shadow: 4px 8px 14px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  transition: all 0.4s ease-out;
}

.line {
  width: 9vw;
  height: 2px;
  background-color: var(--menu-line);
  margin: calc(0.5vw + 1rem) auto calc(2.8vw + 2rem);
  border: none;
  align-items: center;
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .hamburger {
    display: block;
  }
}

.hamburger__checkbox {
  display: none;
}

.hamburger__button {
  background-color: white;
  height: 5rem;
  width: 5rem;
  border-radius: 5px;
  position: fixed;
  top: 1rem;
  right: 2rem;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}

.hamburger__icon {
  position: relative;
  margin-top: 2.4rem;
}

.hamburger__icon,
.hamburger__icon::before,
.hamburger__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #111;
  display: inline-block;
}

.hamburger__icon::before,
.hamburger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.4s;
}

.hamburger__icon::before {
  top: -0.8rem;
}

.hamburger__icon::after {
  top: 0.8rem;
}

.hamburger__button:hover .hamburger__icon::before {
  top: -1rem;
}

.hamburger__button:hover .hamburger__icon::after {
  top: 1rem;
}

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon {
  background-color: transparent;
}

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::before {
  transform: rotate(135deg);
  top: 0;
}

.hamburger__checkbox:checked + .hamburger__button .hamburger__icon::after {
  transform: rotate(-135deg);
  top: 0;
}

#mobil.show-navi {
  transform: translateX(0);
  transition: all 0.5s ease-out;
}

#mobil.navi-remove {
  transform: translateX(100%);
  transition: all 0.5s ease-out;
}

.neukazovat {
  display: none;
}

.to-top {
  display: block;
  position: fixed;
  bottom: 4.4vw;
  right: 0;
  width: 6rem;
  border: none;
  cursor: pointer;
  z-index: 20;
  padding: 1.4rem 1rem;
  background-color: var(--background-to-top);
}
@media only screen and (max-width: 56.25em) {
  .to-top {
    width: 6rem;
    padding: 1rem 1rem;
  }
}
@media only screen and (max-width: 38.75em) {
  .to-top {
    bottom: 0rem;
    border-radius: 8px 0 0 0;
  }
}
.to-top img:hover {
  opacity: 0.5;
}

.galerie li {
  list-style-type: none;
}

.pswp__bg {
  opacity: 0.85 !important;
}

.pswp__img {
  padding: 1rem;
}

@media only screen and (max-width: 27em) {
  .pswp__img {
    padding: 0.5rem;
  }
}
.pswp__caption__center {
  color: #d9d9d9;
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 38.75em) {
  .pswp__caption__center {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

.pswp__item {
  background-color: hsl(0deg, 0%, 15%);
}

.pswp__top-bar, .pswp__caption {
  background-color: rgba(27, 176, 22, 0) !important;
}

footer {
  background-color: var(--background-footer);
  text-align: center;
}
footer .footer-low {
  display: flex;
  height: 4.6vh;
  padding: 2rem 4rem 2rem;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px rgb(218, 218, 218);
}
@media only screen and (max-width: 38.75em) {
  footer .footer-low {
    display: block;
    padding: 1rem 0;
    text-align: center;
    justify-content: center;
    height: auto;
  }
}
footer .footer-low .copyright {
  transform: translate(-40%, 0%);
}
@media only screen and (max-width: 38.75em) {
  footer .footer-low .copyright {
    transform: none;
  }
}
footer .footer-low .social a {
  text-decoration: none;
}
footer .footer-low .social a img {
  display: none;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 0.9rem;
  opacity: 0.4;
}
footer .footer-low .social a img:hover {
  opacity: 0.2;
  transform: scale(1.3);
  transition: all 0.5s ease-out;
}
footer .footer-low p {
  font-size: calc(0.9vw + 0.6rem);
  color: var(--text-grey);
  padding: 0.2rem 0;
}
@media only screen and (max-width: 38.75em) {
  footer .footer-low p {
    font-size: calc(1.4vw + 1rem);
    line-height: calc(1.68vw + 1.2rem);
  }
}
footer .footer-low p a {
  color: var(--text-grey);
  text-decoration: none;
}

header {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 72vh;
}
@media only screen and (max-width: 38.75em) {
  header {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  header {
    margin-bottom: var(--size-16);
  }
}
header .hero-area {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  header .hero-area {
    display: block;
  }
}
@media only screen and (max-width: 38.75em) {
  header .hero-area {
    margin-top: 10rem;
  }
}
header .hero-area .hero-area-left {
  width: 44vw;
}
header .hero-area .hero-area-right {
  position: relative;
  width: auto;
  margin-top: 8vh;
}
@media only screen and (max-width: 56.25em) {
  header .hero-area .hero-area-right {
    width: 100%;
  }
}
header .hero-area .hero-area-right .logo {
  margin-bottom: 5vh;
}
@media only screen and (max-width: 56.25em) {
  header .hero-area .hero-area-right .logo {
    width: 100%;
  }
}
@media only screen and (max-width: 38.75em) {
  header .hero-area .hero-area-right .logo {
    width: 100%;
    margin-bottom: 10vh;
  }
}
header .hero-area .hero-area-right .logo img {
  width: 100%;
}
header .hero-area .hero-area-right .skew-wrapper {
  --shape-outside-height: 16vw;
  width: 46vw;
  height: auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: var(--size-06) 0;
  margin-left: 8%;
  transform: skew(-26deg);
  overflow: visible;
  z-index: 40;
}
@media only screen and (max-width: 56.25em) {
  header .hero-area .hero-area-right .skew-wrapper {
    width: calc(80vw + 0rem);
  }
}
@media only screen and (max-width: 38.75em) {
  header .hero-area .hero-area-right .skew-wrapper {
    width: 96%;
    margin: 0 auto;
    padding: var(--size-06);
    transform: none;
  }
}
header .hero-area .hero-area-right .skew-wrapper .skew-left {
  float: left;
  height: var(--shape-outside-height);
  width: 16vw;
  shape-outside: polygon(-30% 0, -30% 100%, 20% 0);
}
@media only screen and (max-width: 38.75em) {
  header .hero-area .hero-area-right .skew-wrapper .skew-left {
    display: none;
    shape-outside: none;
  }
}
header .hero-area .hero-area-right .skew-wrapper .skew-right {
  float: right;
  height: var(--shape-outside-height);
  width: 16vw;
  shape-outside: polygon(110% 0, 60% 100%, 110% 100%);
}
@media only screen and (max-width: 38.75em) {
  header .hero-area .hero-area-right .skew-wrapper .skew-right {
    display: none;
    shape-outside: none;
  }
}
header .hero-area .hero-area-right .skew-wrapper .skew-text {
  height: auto;
  font-family: sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: white;
  transform: skew(26deg);
}
@media only screen and (max-width: 38.75em) {
  header .hero-area .hero-area-right .skew-wrapper .skew-text {
    transform: none;
  }
}
header .hero-linka {
  position: absolute;
  bottom: -0.6vh;
  background: var(--background-linka);
  border: none;
  width: 100vw;
  height: 0.6vh;
}
@media only screen and (max-width: 56.25em) {
  header .hero-linka {
    display: none;
  }
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(hsla(0deg, 0%, 28%, 0.28) 40%, hsla(0deg, 0%, 40%, 0.42) 100%);
  pointer-events: none;
}

.container .blok_ikonky {
  display: flex;
  justify-content: center;
  margin: 5rem 0 10rem;
}
@media only screen and (max-width: 56.25em) {
  .container .blok_ikonky {
    display: block;
    width: 74%;
    margin: 2rem auto 2rem;
  }
}
.container .blok_ikonky a {
  width: 14%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (max-width: 56.25em) {
  .container .blok_ikonky a {
    margin-bottom: 2rem;
    width: auto;

  }
}
.container .blok_ikonky a:not(:last-child) {
  margin-right: 12rem;
}
@media only screen and (max-width: 56.25em) {
  .container .blok_ikonky a:not(:last-child) {
    margin-right: 0;
  }
}
.container .blok_ikonky a h3 {
  margin-top: 2.4rem;
  color: var(--blue-grey-dark);
  text-align: center;
  font-weight: 400;
}
.container .blok_ikonky a .kolecko {
  position: relative;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background-color: var(--blue-grey);
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .container .blok_ikonky a .kolecko {
    width: 8rem;
    height: 8rem;
  }
}
.container .blok_ikonky a .kolecko img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 66%;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}
.container .blok_ikonky a:hover {
  opacity: 0.6;
  transform: translateY(-0.4rem);
  transition: all 0.5s ease;
}

#blok_rozsah_oprav {
  display: flex;
  justify-content: space-between;
  background: var(--blue-grey);
  padding-left: calc(14vw + 10rem);
}
@media only screen and (max-width: 56.25em) {
  #blok_rozsah_oprav {
    padding-left: 14vw;
  }
}
#blok_rozsah_oprav h2 {
  color: var(--text-grey);
  font-weight: 400;
  padding: 10rem 0 6rem;
}
@media only screen and (max-width: 38.75em) {
  #blok_rozsah_oprav h2 {
    padding: 3rem 0 3rem;
  }
}
#blok_rozsah_oprav p {
  color: var(--text-grey);
  font-weight: 400;
  padding-bottom: 6rem;
}
#blok_rozsah_oprav .blok_ikona {
  width: 40%;
  text-align: right;
}
@media only screen and (max-width: 38.75em) {
  #blok_rozsah_oprav .blok_ikona {
    display: none;
  }
}
#blok_rozsah_oprav .blok_ikona img {
  right: 0;
  width: 100%;
  margin: 4rem 0;
  opacity: 0.1;
}

#blok_technologie_opravy {
  display: flex;
  justify-content: space-between;
}
#blok_technologie_opravy .blok_text {
  padding: 0 8%;
}
#blok_technologie_opravy .blok_text h2 {
  color: var(--text-grey);
  font-weight: 400;
  padding: 10vw 0 6rem;
}
@media only screen and (max-width: 38.75em) {
  #blok_technologie_opravy .blok_text h2 {
    padding: 3rem 0 3rem;
  }
}
#blok_technologie_opravy .blok_text p {
  color: var(--text-grey);
  font-weight: 400;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 38.75em) {
  #blok_technologie_opravy .blok_text p {
    padding-bottom: 2rem;
  }
}
#blok_technologie_opravy .blok_ikona {
  width: 70%;
  text-align: right;
}
@media only screen and (max-width: 38.75em) {
  #blok_technologie_opravy .blok_ikona {
    display: none;
  }
}
#blok_technologie_opravy .blok_ikona img {
  right: 0;
  width: 100%;
  margin: 4rem 0;
  opacity: 0.1;
}

#blok_cenik_oprav {
  position: relative;
  text-align: center;
  background: var(--blue-grey);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: 66vw;
  padding-bottom: 6rem;
  margin-top: 2rem;
}
#blok_cenik_oprav .blok_text h2 {
  color: var(--text-grey);
  font-weight: 400;
  padding: 7rem 0 5rem;
}
@media only screen and (max-width: 38.75em) {
  #blok_cenik_oprav .blok_text h2 {
    padding: 3rem 0 3rem;
  }
}
#blok_cenik_oprav .blok_text .is-style-regular {
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  color: var(--text-grey);
  line-height: 4rem;
  width: 60%;
  background: rgba(255, 255, 255, 0.74);
}
@media only screen and (max-width: 38.75em) {
  #blok_cenik_oprav .blok_text .is-style-regular {
    width: 100%;
    opacity: 0.6;
  }
}
@media only screen and (max-width: 56.25em) {
  #blok_cenik_oprav .blok_text .is-style-regular {
    width: 94%;
    opacity: 0.6;
  }
}
#blok_cenik_oprav .blok_text .is-style-regular tr {
  border-bottom: #cecece 1px solid;
}
@media only screen and (max-width: 38.75em) {
  #blok_cenik_oprav .blok_text .is-style-regular tr {
    font-size: 1.2rem;
  }
}
#blok_cenik_oprav .blok_ikona {
  position: absolute;
  top: 16%;
  right: 6%;
  width: 36%;
}
@media only screen and (max-width: 38.75em) {
  #blok_cenik_oprav .blok_ikona {
    display: none;
  }
}
#blok_cenik_oprav .blok_ikona img {
  width: 100%;
  opacity: 0.1;
}

#blok_zaruka {
  width: 50%;
  margin: 8rem auto 20rem;
  text-align: center;
}
@media only screen and (max-width: 38.75em) {
  #blok_zaruka {
    margin: 2rem auto 6rem;
  }
}
#blok_zaruka h2 {
  color: var(--text-grey);
  font-weight: 400;
  padding: 8rem 0 3rem;
}
@media only screen and (max-width: 38.75em) {
  #blok_zaruka h2 {
    padding: 6rem 0 2rem;
  }
}
#blok_zaruka p {
  color: var(--text-grey);
  font-weight: 300;
}

#nav {
  background: var(--background-menu);
  width: 100%;
  font-size: calc(1vw + 0.8rem);
  font-weight: 300;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 56.25em) {
  #nav {
    display: none;
  }
}
#nav ul {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-left: auto;
}
#nav ul li {
  position: relative;
  list-style: none;
  padding: 2rem 0;
}
#nav ul li a {
  text-decoration: none;
  color: var(--text-menu);
  border-bottom: 2px solid rgba(255, 255, 255, 0);
}
#nav ul li a:hover {
  opacity: 0.6;
  border-bottom: 2px solid var(--text-white);
}
#nav ul li ul {
  display: block;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 100;
  padding: 2rem 0 0.4rem;
}
#nav ul li ul li {
  width: calc(8.4vw + 6rem);
  padding: 0.5rem 0;
  background-color: hsla(0deg, 0%, 0%, 0.54);
}
#nav ul li ul li:hover {
  background-color: hsla(0deg, 0%, 100%, 0.52);
  transition: all 0.4s ease;
}
#nav ul li ul li a {
  display: block;
  color: rgb(229, 229, 229);
  padding: 0 1rem;
  margin-top: 0;
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  font-size: 2rem;
}
#nav ul li ul li a:hover {
  color: rgb(0, 0, 0);
  transition: all 0.2s ease;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  font-weight: 500;
}
#nav ul li:hover ul {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0rem);
}
#nav ul .ikonka-email {
  opacity: 0.5;
}
#nav ul .ikonka-email:hover {
  opacity: 0.3;
}

.custom-navi {
  width: 46%;
  margin: 0 auto;
}
.custom-navi #nav ul li a {
  color: #888;
}

.navigation-background {
  height: 7rem;
  background-color: #9b9b9b;
}

#mobil {
  display: none;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 3rem;
  z-index: 1000;
  transform: translateX(100%);
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 56.25em) {
  #mobil {
    display: block;
  }
}
#mobil ul {
  margin-top: 20%;
}
@media only screen and (max-width: 56.25em) {
  #mobil ul {
    margin-top: 40%;
  }
}
@media only screen and (max-width: 56.25em) {
  #mobil ul {
    margin: 10%;
  }
}
#mobil ul li {
  position: relative;
  display: inline-block;
  color: #333;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 56.25em) {
  #mobil ul li {
    display: block;
  }
}
#mobil ul li a {
  color: var(--text-grey-dark);
  text-decoration: none;
}
#mobil ul li ul {
  display: none;
  margin: auto;
}
#mobil ul li:hover {
  cursor: pointer;
}
#mobil ul li:hover ul {
  display: block;
  position: absolute;
  left: 0;
  width: 200px;
  margin-top: 1rem;
}
@media only screen and (max-width: 56.25em) {
  #mobil ul li:hover ul {
    width: 100%;
    position: relative;
  }
}
#mobil ul li:hover ul li {
  display: block;
  background: rgba(222, 193, 78, 0.66);
}
#mobil ul li:hover ul li a {
  color: #333;
}
#mobil ul li:hover ul li:hover {
  background: #c5c5c5;
  color: inherit;
}

#mobil.show-navi {
  transform: translateX(0);
  transition: all 0.5s ease-out;
}

.lang-switch {
  position: fixed;
  top: 0;
  left: 0;
  width: 14rem;
  font-size: 1.6rem;
  opacity: 0.6;
}
.lang-switch ul li a {
  padding: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .lang-switch {
    left: 50%;
    transform: translateX(-50%);
  }
}

.sticky {
  position: fixed;
  background-color: var(--background-menu);
  transition: 1s;
  z-index: 20;
  border-bottom: none;
}
@media only screen and (max-width: 38.75em) {
  .sticky {
    display: none;
  }
}
@media only screen and (max-width: 56.25em) {
  .sticky {
    display: none;
  }
}
.sticky #nav ul li a {
  color: var(--text-white);
}
.sticky .custom-arrow::before {
  border-right: calc(0.48vw + 0.2rem) solid #ffffff;
}

.text-center {
  text-align: center;
}

.wrapper {
  min-height: 95.4vh;
}
@media only screen and (max-width: 38.75em) {
  .wrapper {
    min-height: 91vh;
  }
}

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