/*
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%);
  --background: hsl(38, 24%, 56%);
  --background-menu: hsla(0, 0%, 14%, 0.8);
  --background-footer: hsla(0, 0%, 84%, 0.7);
  --background-hero-box: hsla(0, 0%, 10%, 0.56);
  --menu-line: hsl(0, 0%, 88%);
  --background-box-image: hsla(210, 38%, 63%, 0.3);
  --background-to-top: hsla(0, 0%, 14%, 0.2);
  --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%, 54%);
  --button-text: hsl(0, 0%, 100%, 0.7);
  --button-text-hov: hsla(0, 0%, 100%, 0.9);
  --button-background: hsl(0, 0%, 51%, 0.2);
  --button-background-hov: hsla(0, 0%, 51%, 0.45);
  --button-shadow: hsl(0, 0%, 17%);
  --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;
}

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-07);
  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: 38.75em) {
  h4 {
    font-size: var(--size-10);
    line-height: var(--size-11);
  }
}

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: 38.75em) {
  p {
    font-size: var(--size-10);
    line-height: var(--size-13);
  }
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  p {
    font-size: var(--size-08);
    line-height: var(--size-11);
  }
}

.btn, .btn:link, .btn:visited {
  position: relative;
  display: inline-block;
  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);
}

.portfolio {
  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(30rem, 1fr));
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 4rem;
  margin-bottom: 14rem;
}

@media only screen and (max-width: 27em) {
  .portfolio {
    margin-bottom: 3rem;
  }
}
.portfolio a {
  text-decoration: none;
}

.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;
  /**/
}

.galerie img {
  width: 100%;
  height: auto;
  /**/
  box-shadow: 8px 4px 10px rgba(0, 0, 0, 0.2);
}

.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;
}

.card {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 1rem 0 1rem;
  color: #868686;
  background-color: rgba(180, 180, 180, 0.3);
  box-shadow: 8px 4px 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
  background-color: whitesmoke;
  box-shadow: 4px 8px 14px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
  transition: all 0.8s ease-out;
}

.card:hover h4 {
  background-color: white;
  border-top: 1px solid gainsboro;
  border-bottom: 1px solid gainsboro;
  box-shadow: 4px 8px 14px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem 2rem;
  /* */
  opacity: 1;
  transition: all 0.5s ease-out;
}

.card:hover img {
  opacity: 0.05;
  /* */
  transition: all 0.5s ease-out;
}

.card img {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
}

.card h4 {
  position: absolute;
  width: 100%;
  padding: 2rem 1rem 2rem;
  /* */
  top: 8rem;
  left: 0;
  opacity: 0;
}

.card h4 span {
  font-weight: 700;
}

.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: #262626;
}

.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 #dadada;
}
@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: 77vh;
  margin-bottom: calc(5.6vw + 4rem);
}
@media only screen and (max-width: 38.75em) {
  header {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  header {
    margin-bottom: var(--size-16);
  }
}
header .hero-box {
  position: absolute;
  color: var(--text-white);
  padding: 0 2.6%;
}
header .hero-box img {
  width: calc(15.4vw + 11rem);
  margin-bottom: 14%;
}
@media only screen and (max-width: 38.75em) {
  header .hero-box img {
    width: calc(16.8vw + 12rem);
    margin-bottom: 10%;
  }
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  header .hero-box img {
    width: calc(11.2vw + 8rem);
    margin-bottom: 8%;
  }
}
header .hero-box h1 {
  font-size: calc(2vw + 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2rem;
  margin: 3% 0 12%;
}
header .hero-box h2 {
  font-size: var(--size-07);
  font-weight: 300;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 38.75em) {
  header .hero-box h2 {
    font-size: var(--size-11);
    line-height: var(--size-16);
  }
}
header .hero-box .btn-reference {
  margin-top: 18%;
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  header .hero-box .btn-reference {
    margin-top: 10%;
  }
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(102, 102, 102, 0.2) 10%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
header .clip-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-clip-path: polygon(0 0, calc(23.5vw + 16.8rem) 0, calc(14.8vw + 10.6rem) 100%, 0% 100%);
          clip-path: polygon(0 0, calc(23.5vw + 16.8rem) 0, calc(14.8vw + 10.6rem) 100%, 0% 100%);
  pointer-events: none;
}
@media only screen and (max-width: 38.75em) {
  header .clip-overlay {
    -webkit-clip-path: polygon(0 0, calc(25.2vw + 18rem) 0, calc(16.8vw + 12rem) 100%, 0% 100%);
            clip-path: polygon(0 0, calc(25.2vw + 18rem) 0, calc(16.8vw + 12rem) 100%, 0% 100%);
  }
}
header .text-box {
  position: absolute;
  width: calc(25vw + 18rem);
  right: 0;
  bottom: 4vh;
  padding: var(--size-06) var(--size-08);
  color: var(--text-white);
  background-color: var(--background-hero-box);
}
@media only screen and (max-width: 38.75em) {
  header .text-box {
    width: 100vw;
    background-color: var(--background-hero-box);
    padding: 1rem 2rem;
    bottom: 0vh;
  }
}
@media only screen and (max-width: 38.75em) {
  header .text-box h4 {
    font-size: var(--size-09);
    line-height: var(--size-12);
    font-weight: 200;
  }
}

.hero-page {
  position: relative;
  height: 28vh;
}
.hero-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--background-hero-page) 10%, var(--background-hero-page) 100%);
  pointer-events: none;
}
.hero-page .page-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.4rem 2rem;
  color: var(--text-white);
  background-color: var(--background-hero-box);
}
.hero-page .page-box h1 {
  font-weight: 200;
  letter-spacing: 0.2rem;
  line-height: normal;
}

.container {
  width: 75%;
  margin: 0 auto;
}
@media only screen and (max-width: 38.75em) {
  .container {
    width: 94%;
  }
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  .container {
    width: 90%;
  }
}
.container h1 {
  color: var(--text-grey);
}
.container h2 {
  color: var(--text-grey);
}
.container .titulek {
  padding: calc(1.4vw + 1rem) 0 calc(2.8vw + 2rem);
}
.container .nazev-bloku {
  margin-top: calc(1.4vw + 1rem);
}

.kontakt-box {
  width: calc(20vw + 20rem);
  margin: 0 auto;
  background-color: #fff;
  padding: calc(2.4vw + 2.4rem);
  border: var(--background-to-top) dashed 1px;
}
@media only screen and (max-width: 38.75em) {
  .kontakt-box {
    width: 90%;
    margin-top: 6%;
  }
}
@media only screen and (max-width: 56.25em) and (orientation: landscape) {
  .kontakt-box {
    margin-bottom: 2rem;
  }
}
.kontakt-box p {
  font-size: calc(0.7vw + 0.9rem);
}
@media only screen and (max-width: 38.75em) {
  .kontakt-box p {
    font-size: calc(0.84vw + 1.6rem);
    font-weight: 100;
  }
}
.kontakt-box p .dico {
  color: var(--text-grey-dark);
  margin-left: calc(1.3vw + 3rem);
  line-height: var(--size-06);
}
@media only screen and (max-width: 38.75em) {
  .kontakt-box p .dico {
    margin-left: 4.8rem;
    line-height: 2.4rem !important;
  }
}
.kontakt-box p span {
  display: flex;
  margin-bottom: var(--size-08);
}
@media only screen and (max-width: 38.75em) {
  .kontakt-box p span {
    line-height: var(--size-20);
  }
}
.kontakt-box p span:hover {
  opacity: 0.5;
}
.kontakt-box p span a {
  color: var(--text-grey-dark);
  text-decoration: none;
  margin-left: 2rem;
}
.kontakt-box p span img {
  width: calc(1.3vw + 1rem);
  height: calc(1.3vw + 1rem);
  opacity: 0.6;
}
@media only screen and (max-width: 38.75em) {
  .kontakt-box p span img {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.menu {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-bottom: 6rem;
  top: 0;
  right: 0;
  left: 0;
  padding: 2rem 0;
  z-index: 60;
  border-bottom: var(--menu-line) solid 1px;
}
@media only screen and (max-width: 56.25em) {
  .menu {
    padding: 0;
    display: block;
  }
}
.menu .menu-logo {
  font-size: 1rem;
  transition: 0.6s;
  padding-left: 2.6%;
  padding-top: 2%;
  color: rgba(255, 243, 230, 0.26);
  -ms-grid-row-align: center;
      align-self: center;
}
.menu img {
  display: none;
  width: calc(8.4vw + 6rem);
}
.sticky {
  position: fixed;
  background-color: var(--background-menu);
  transition: 1s;
  padding: 1rem 0;
  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) and (orientation: landscape) {
  .sticky {
    display: none;
  }
}
.sticky #nav ul li a {
  color: var(--text-white);
}
.sticky .menu-logo {
  padding-top: 0;
}
.sticky img {
  display: block;
  width: calc(4.2vw + 3rem);
  opacity: 0.6;
}
.sticky .custom-arrow::before {
  border-right: calc(0.48vw + 0.2rem) solid #ffffff;
}

#nav {
  width: 48vw;
  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 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#nav ul li {
  position: relative;
  list-style: none;
}
#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: rgba(0, 0, 0, 0.54);
}
#nav ul li ul li:hover {
  background-color: rgba(255, 255, 255, 0.52);
  transition: all 0.4s ease;
}
#nav ul li ul li a {
  display: block;
  color: #e5e5e5;
  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: black;
  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) and (orientation: landscape) {
  #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;
}
#mobil ul li:hover {
  cursor: pointer;
}
#mobil ul li:hover a {
  color: #fff;
}
#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: #ffffff8e;
}
#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%);
  }
}

.wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a {
  color: #8f8f8f;
  border: solid 1px rgba(166, 166, 166, 0.53);
}
.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*/