/*
Theme Name: mdtfolk
Author: Mateusz Dynda
Version: 1.0
*/

:root {
  --blue: #6a9a9c;
  --beige: #F8F8F8;
  --dark: #222222;
  --bronze: #a1846e;
}

::selection {
  color: var(--beige);
  background: var(--bronze);
}

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

html {
   scrollbar-width: none;
}

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: geometricPrecision;
  font-family: 'Sora', sans-serif;
  font-weight: 200;
  font-style: normal;
  background-color: var(--beige);
  font-smoothing: antialiased;
}

p {
  line-height: 1.8;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  }

  i {
    line-height: 1.8;
    font-size: 16px;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    }

  a {
  line-height: 24px;
  font-size: 16px;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  line-height: 1.8;
  }

h3 {
  line-height: 1.8;
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  h2 {
    font-size: 48px;
  }
}

 h1 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

img {
  display: block;
  object-fit: cover;
  user-select: none;
}

.hr {
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
  width: 100%;
  padding: 1px 0;
}

.hr hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(161, 132, 110, 0), rgba(161, 132, 110, 0.75), rgba(161, 132, 110, 0));
}

.link a {
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
}

.linkBright a {
  color: var(--bronze);
}

.linkBright a:hover {
  color: var(--blue);
}

.linkInverse a {
  color: var(--blue);
}

.linkInverse a:hover {
  color: var(--bronze);
}

.loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 350ms ease;
  background-color: var(--dark);
}

.loaderOpacity {
  opacity: 0;
}

.loaderDisplay {
  display: none;
}

.loader img {
  width: 80px;
  height: auto;
  animation: pulse-animation 1s infinite;
}

.belt-pattern {
  height: 15px;
  width: 100%;
  background-image: url(./assets/img/bg-pattern.png);
  background-repeat: repeat;
}

@media screen and (min-width: 1024px) {
  .belt-pattern {
    height: 25px;
  }
}

.ornament-dark {
  width: 100%;
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;

}

.ornament-dark img{
  height: 80%;
}

.navbarMobile__container .list {
  width: 200px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateX(200px);
  transition: transform .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.navbarMobile__container .list.active {
  transform: translateX(0);
}

.navbarMobile__container .list .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbarMobile__container .list .inner li {
  height: 70px;
}

.navbarMobile__container .list .inner a {
  line-height: 0;
  font-size: 12px;
  font-family: basic-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--beige);
  display: flex;
  align-items: center;
  height: 100%;
}

.navbarMobile__container .list .inner li span {
  display: flex;
  justify-content: center;
  width: 25px;
  margin: 0 10px 0 25px;
}

.navbarMobile__container .list .inner li svg {
  height: 14px;
  fill: #6e6e6e;
}
 .burger {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger a {
  filter: drop-shadow(0px 0px 4px #000000d7);
}

 .burger a:nth-child(1) {
  position: absolute;
  bottom: 90px;
  right: 15px;
}

 .burger a:nth-child(2)  {
  position: absolute;
  bottom: 50px;
  right: 80px;
  }

.burger a:nth-child(3)  {
    position: absolute;
    bottom: 15px;
    right: 15px;
    }

.burger img {
  width: 70px;
  cursor: pointer;
}

.burger.active {
  visibility: hidden;
  opacity: 0;
}

.menuBlur {
  transition: filter .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 2560px;
  margin: 0 auto;
}

.menuBlur.active {
  filter: blur(20px) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><filter id="a"><feComponentTransfer><feFuncA type="linear" slope="10"/></feComponentTransfer></filter>#a');
}

@media screen and (min-width: 1024px) {
  .navbarMobile__container {
    display: none;
  }

  .burger {
    display: none;
  }
}

.sub-menu {
  display: none;
}

@media screen and (min-width: 1024px) {

.sub-menu {
  height: 30px;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  background-image: url(./assets/img/bg-pattern-navbar.png);
  background-repeat: no-repeat;
  background-color: #5a4f49;
  width: 100%;
  filter: drop-shadow(0px 0px 4px #000000d7);
}

.sub-menu ul {
  display: flex;
  justify-content: flex-end;
  column-gap: 20px;
  width: 100%;
  padding-right: 10vw;
}

.sub-menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--beige);
  transition: color .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu a:hover {
  color: var(--blue);
}

}

/* HERO */

.hero__container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.hero__container .navbar {
  display: none;
}

.hero__container .ornament {
  display: none;
}

.hero__container .background {
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  position: absolute;
  right: 0;
  top: 0;
}

.hero__container .background img {
  width: 100%;
  height: 100%;
}

.hero__container .title {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
}

.hero__container .title h1 {
  text-transform: uppercase;
  font-size: 15vw;
  color: var(--beige);
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.849);
}

.hero__container .title h3 {
  color: var(--dark);
  margin-bottom: 10px;
  background-color: var(--beige);
  display: inline;
  padding: 5px 10px;
}

.hero__container .logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: var(--beige);
  padding: 5px;
}

.hero__container .logo img {
  width: 100%;
}

.hero__container .cta {
  display: none;
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  height: auto;
  width: 80px;
}

.hero__container .cta a {
  height: 100%;
  width: 100%;
}

.hero__container .cta img {
  height: 100%;
  width: 100%;
  filter: drop-shadow(0px 0px 4px #1d1d1d);
}

.pulse {
  animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
  0% {
    scale: 1;
  }

  30% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

@media screen and (min-width: 1024px) {
  .hero__container .navbar {
    display: block;
    position: absolute;
    bottom: 10%;
  }

  .hero__container .navbar .list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin: 0 0 0 5vw;
  }

  .hero__container .navbar .list a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--beige);
    transition: color .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .hero__container .navbar .list a:hover {
    color: var(--blue);
  }

  .hero__container .ornament {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 20vh;
  }

  .hero__container .ornament img {
    height: 100%;
  }

  .hero__container .background {
    width: 80%;
    height: 90vh;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }

  .hero__container .logo {
    left: auto;
    transform: none;
    right: 5vw;
    width: 250px;
    padding: 10px;
  }

  .hero__container .cta {
    bottom: -5vh;
    right: 5vw;
    width: 150px;
    display: block;
  }

  .hero__container .title {
    left: -5vw;
  }

  .hero__container .title h1 {
    font-size: 100px;
  }
}

/* TEXT IMG */

/* TEXT IMG */

.textImg__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

  .textImg__container .outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 25px;
  }

  .textImg__container .content {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 50px 15px;
    background-color: var(--beige);
  }

  .textImg__container .content .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    row-gap: 5vh;
  }

  .textImg__container .content .text img {
    max-width: 100px;
    width: 100%;
    margin: 0 auto;
  }

  .textImg__container .image {
    display: none;
  }

  @media screen and (min-width: 1024px) {
    .textImg__container {
      padding: 0;
    }

    .textImg__container .outer {
      flex-direction: row;
    }

    .textImg__container .content {
      width: 100%;
      padding: 0;
    }

    .textImg__container .content .text {
      max-width: 600px;
      padding: 0 15px;
      align-items: center;
      text-align: center;
    }

    .textImg__container .content .text h2 {
      text-align: center;
    }

    .textImg__container .content .text p {
      text-align: center;
    }

    .textImg__container .image {
      display: flex;
      justify-content: flex-end;
    }

    .textImg__container .image img {
      aspect-ratio: 4 / 5;
      height: 80vh;
      width: 100%;
    }
  }

/* TEXT IMG 2 */

.textImg2__container {
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.textImg2__container .outer {
  display: flex;
  flex-direction: column;
  position: relative;
}

.textImg2__container .content {
  order: 2;
}

.textImg2__container .content .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5vh;
  padding: 50px 15px;
}

.textImg2__container .content .text img {
  display: none;
}

.textImg2__container .content .text h2 {
  text-align: center;
  color: var(--beige);
}

.textImg2__container .content .text p {
  text-align: center;
  color: var(--beige);
}

.textImg2__container .content .text .navi {
  text-transform: uppercase;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  color: var(--beige);
}

.textImg2__container .image {
  height: auto;
  width: 100%;
  order: 1;
}

.textImg2__container .image img {
 height: 100%;
 width: 100%;
aspect-ratio: 16 / 9;
}

@media screen and (min-width: 1024px) {

  .textImg2__container {
    padding: 10vh 10vw 10vh 10vw;
  }

  .textImg2__container .outer {
    flex-direction: row;
    align-items: center;
    row-gap: 25px;
  }

  .textImg2__container .content {
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }

  .textImg2__container .content.right {
    right: 0;
  }

  .textImg2__container .content .text {
    background-color: var(--beige);
    min-width: 600px;
    width: 50vw;
    padding: 5vw;
    align-items: flex-start;
  }

  .textImg2__container .content .text img {
    width: 160px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: block;
  }

  .textImg2__container .content .text h2 {
    text-align: left;
    color: var(--dark);
  }

  .textImg2__container .content .text p {
    text-align: left;
    color: var(--dark);;
  }

  .textImg2__container .content .text .navi {
    color: var(--dark);
  }

  .textImg2__container .image {
    width: auto;
    height: 90vh;
    margin-left: auto;
    margin-right: 0;
  }

  .textImg2__container .image.right {
    margin-left: 0;
    margin-right: auto;
  }

  .textImg2__container .image img {
     aspect-ratio: 5 / 6;
   }
}

/* TEXT IMG 3 */

.textImg3__container {
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.textImg3__container .outer {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.textImg3__container .content {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 50px 15px;
  order: 2;
}

.textImg3__container .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5vh;
}

.textImg3__container .content .text h2 {
  text-align: center;
  color: var(--beige);
}

.textImg3__container .content .text p {
  text-align: center;
  color: var(--beige);
}

.textImg3__container .content .text .navi {
  text-transform: uppercase;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  color: var(--beige);
}

.textImg3__container .image {
   display: flex;
   justify-content: center;
   order: 1;
}

.textImg3__container .image img {
  width: 100%;
  align-self: center;
  padding: 50px 15px 0 15px;
  filter: drop-shadow(0px 0px 4px #000000d7);
}

@media screen and (min-width: 1024px) {
  .textImg3__container {
    padding: 5vw 10vw 5vw 10vw;
  }

  .textImg3__container .outer {
    flex-direction: row;
  }

  .textImg3__container .content {
    width: 100%;
    flex: 1;
    order: 1;
  }

  .textImg3__container .content .text {
    max-width: 600px;
    padding: 0;
    align-items: flex-start;
  }

  .textImg3__container .content .text h2 {
    text-align: left;
  }

  .textImg3__container .content .text p {
    text-align: left;
  }

  .textImg3__container .image {
    flex: 1;
    order: 2;
  }

  .textImg3__container .image img {
    padding: 0;
    max-width: 500px;
  }
}

/* TEXT CENTER  */

.textCenter__container {
  width: 100%;
  position: relative;
  padding: 50px 15px;
  background-color: #ffffff;
}

.textCenter__container.dark {
  background-color: var(--dark);
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.textCenter__container .outer {
  display: flex;
  justify-content: center;
}

.textCenter__container .image {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.textCenter__container .image img {
  width: 100%;
}

.textCenter__container .text .navi {
  text-transform: uppercase;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.textCenter__container .text {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5vh;
  position: relative;
  text-align: left;
}

.textCenter__container .section {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

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

.textCenter__container.dark .text h2 {
  color: var(--beige);
}

.textCenter__container.dark .text h3 {
  color: var(--blue);
}

.textCenter__container.dark .text p {
  color: var(--beige);
}

.textCenter__container.dark .text .navi {
  color: var(--beige);
}

@media screen and (min-width: 1024px) {
  .textCenter__container {
    padding:  10vh 10vw;
  }

  .textCenter__container .text {
    text-align: left;
  }

  .textCenter__container .image img {
    max-height: 80%;
    width: auto;
  }
}

/* ITEM LIST */

.itemList__container {
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
  padding: 50px 15px;
}

.itemList__container .outer {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.itemList__container h2 {
  color: var(--beige);
  margin-bottom: 25px;
}

.itemList__container p {
  color: var(--beige);
}

.itemList__container h3 {
  color: var(--blue);
}

.itemList__container ul {
  columns: 1;
}

.itemList__container li {
  color: var(--beige);
  position: relative;
  padding-left: 25px;
}

.itemList__container li::before {
  content: url('./assets/img/svg/point.svg');
  width: 10px;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 1024px) {
  .itemList__container {
    padding: 5vw 10vw;
  }

  .itemList__container ul {
    columns: 4;
  }
}

/* GALLERY */

.gallery__container {
  padding: 0 15px 50px 15px;
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
}

.gallery__container .title {
  padding: 50px 0;
}

.gallery__container .title h3 {
  color: var(--bronze);
  position: relative;
  padding-left: 70px;
}

.gallery__container .title h3::before {
  content: url(./assets/img/svg/hexy-triple.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
}

.gallery__container .gallery {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}

.gallery__container .gallery img {
  aspect-ratio: 1 / 1;
  width: 20vw;
  height: 20vw;
}

@media screen and (min-width: 1024px) {
  .gallery__container {
    padding: 0 10vw 5vw 10vw;
  }

  .gallery__container .gallery img {
    width: 10vw;
    height: 10vw;
  }
}

/* BANNER */

.banner__container {
  width: 100%;
  position: relative;
}

.banner__container .outer img {
  width: 100%;
  height: 20vh;
}

.banner__container .ornament {
  position: absolute;
  right: 0;
  top: 0;
  height: 80%;
  filter: drop-shadow(0px 0px 4px #000000d7);
}

@media screen and (min-width: 1024px) {
  .banner__container .outer img {
    height: 60vh;
  }

  .banner__container .ornament {
    top: 30px;
  }
}

/* IMAGE FULL WIDTH */

.imgFullWidth__container {
  width: 100%;
  background-image: url(./assets/img/bg-pattern-bright2.png);
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.imgFullWidth__container .image {
  display: flex;
  justify-content: center;
  flex: 4;
  order: 1;
}

.imgFullWidth__container img {
  width: 100%;
  max-width: 974px;
  filter: drop-shadow(0px 0px 4px #000000d7);
}

.imgFullWidth__container .info {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex: 1;
  order: 2;
}

.imgFullWidth__container .info li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 120px;
  text-transform: uppercase;
  border: 1px solid #a8a8a8;
  line-height: 1;
  border-radius: 2px;
}

.imgFullWidth__container .info h3 {
  color: var(--blue);
}

@media screen and (min-width: 1024px) {
  .imgFullWidth__container {
    padding: 5vw 10vw;
    flex-direction: row;
  }

.imgFullWidth__container .image {
  order: 2;
  justify-content: flex-end;
}

  .imgFullWidth__container .info {
    flex-direction: column;
    order: 1;
  }
}

/* FOOTER */

.footer__container {
  background-image: url(./assets/img/dark-pattern.jpg);
  background-repeat: repeat;
  padding: 50px 10vw;
}

.footer__container .ornament {
  display: flex;
  justify-content: center;
  column-gap: 25px;
}

.footer__container .ornament img {
  width: auto;
  max-width: 260px;
  filter: drop-shadow(0px 0px 4px #000000d7);
}

.footer__container .outer {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}

.footer__container .columns {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.footer__container .columns h3 {
  color: var(--bronze);
  margin-bottom: 10px;
}

.footer__container .columns p {
  color: rgb(122, 122, 122);
}

.footer__container .columns .col {
  text-align: center;
  flex: 1;
}

.footer__container .columns .social {
  display: flex;
  justify-content: center;
  column-gap: 15px;
}

.footer__container .columns .social a {
  text-decoration: none;
}

.footer__container .columns .social svg {
  fill: var(--bronze);
  stroke: var(--bronze);
  width: 50px;
  transition: all .3 cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer__container .columns .social a:hover svg {
  fill: var(--blue);
  stroke: var(--blue);
}

.footer__container .columns .vcard {
  display: none;
}

@media screen and (min-width: 1024px) {

  .footer__container {
    padding: 2vw 10vw;
  }

  .footer__container .columns {
    flex-direction: row;
    justify-content: space-between;
    column-gap: 50px;
  }

  .footer__container .columns .col:nth-child(1) {
    text-align: left;
  }

  .footer__container .columns .col:nth-child(2) {
    text-align: center;
  }

  .footer__container .columns .col:nth-child(3) {
    text-align: right;
  }

  .footer__container .columns .social {
    justify-content: flex-end;
  }

  .footer__container .columns .vcard {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__container .columns .vcard img {
    width: 100%;
    max-width: 200px;
  }

}

footer .belt {
  background-image: url(./assets/img/bg-pattern.png);
  height: 20px;
}

.errorPage {
  width: 100%;
}

.errorPage .outer {
  width: 100%;
  height: 70vh;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* COOKIE */
.cookieInfo {
  position: fixed;
  bottom: 0;
  background-color: var(--bronze);
  opacity: 0.9;
  z-index: 9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 15px;
}

@media screen and (min-width: 1024px) {
  .cookieInfo {
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 10vw;
  }

.cookieInfo p {
  color: var(--beige);
}

.cookieInfo a {
  color: var(--beige);
  text-decoration: none;
  transition: color .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookieInfo a:hover {
  color: var(--blue);
}
}

.popup__container {
  background-color: #000000cb;
  position: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 0 15px;
}

.popup-content {
  background-color: #F8F8F8;
  width: 100%;
  max-width: 600px;
  padding: 25px 25px;
}

.popup-content img {
  width: 100%;
}

.popup-discount {
  margin: 25px 0 0 0;
  display: flex;
  flex-direction: column;
 align-items: center;
}

.popup-close {
  margin: 25px 0 0 0;
  display: flex;
  justify-content: center;
}

.popup-close button {
  cursor: pointer;
  color: #181818;
}

.popup-close:hover {
  color: #333;
}

.lang-item {
  display: flex;
  align-items: center;
}

.lang-item img {
    width: 25px !important;
    height: 17px !important;
}
