@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root{
  --color1: #d7a449;
  --color2: #0e0707;
  --color3: #f1f1f1;
  --color4: #ACA22E;
  --color8: #E07250;
  --color10: #234848;
  --color11: #c1b7b7;
  --color-text:  #282828;
  --dark-clr: #111;
  --primary-color: rgba(13, 110, 139, 0.75);
  --color-limed-spruce:  #3f4f5b;
  --color-spicy-pink: #7c676d;
  --color-salt-box: #6d6168;
  --color-granny-smith: #7d9e9d;
  --color-santa-fe: #ae6b5a;
  --color-dark-bunker: #101115;
  --color-bright-gray: #383c4a;
  --transition-time: 0.5s;
}

body{
    direction: rtl;
    font-family: 'Amiri', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    line-height: 1.2;
    direction: ltr !important;
    background: repeating-linear-gradient(40deg, var(--color-text) 0px 100px, var(--color2) 100px 200px), repeating-linear-gradient(135deg, var(--color-limed-spruce) 0px 100px, var(--color-dark-bunker) 100px 200px);
}

img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  margin: 9px;
}
li, p{
  padding: 12px 0;
}

a {
  text-decoration: none;
}

.container{
  max-width: 1263px;
  margin: 0 auto;
}

.waves-header {
  position: relative;
  background: url(thumbnails/pictures_header_684bf071704f29.08508819.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.waves-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color1);
  opacity: 0.75;
  animation: changeBackground 10s infinite;
}

@keyframes changeBackground {
  0% {
      background: var(--color2);
  }
  50% {
      background: var(--color10);
  }
  100% {
      background: var(--color-limed-spruce);
  }
}

.waves-inner-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.waves-header-main{
  display: flex;
  padding: 0 48px;
}

.waves-header-block1{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.waves-header-log {
  margin-top: 88px;
}
.waves-header-log a{
  display: flex;
  align-items: center;
  float: inline-end;
  gap: 12px;
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
}

.waves-header-log a h2{
  font-size: clamp(17px,2.5vw,20px);
  font-weight: 900;
  color: var(--color11);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-style: italic;
}

.waves-header-log h4{
  font-size: clamp(14px,2.5,18px);
  padding: 12px;
  background: var(--color1);
  width: fit-content;
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
  animation: flashColor 2s infinite;
 
}



@keyframes flashColor {
  0% {
    background: var(--color1);
    filter: drop-shadow(2px 4px 9px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
  }
  50% {
    background: var(--color1);
    filter: drop-shadow(2px 4px 9px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
  }
  100% {
    background: var(--color1);
    filter: drop-shadow(2px 9px 12px var(--color1));
    -webkit-filter: drop-shadow(2px 9px 12px var(--color1));
  }
}

.waves-header-log a img{
  width: 40px;
  height: 40px;
}

.waves-header-inner {
  padding: 30px 0;
}
.waves-header-inner h2{
  color: var(--color11);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: clamp(20px,5vw,27px);
}

.waves-header-btn{
  display: inline-block;
  margin-top: 30px;
}


.waves {
  position: relative;
  width: 100%;
  height: 14vh;
  margin-bottom: -9px;
  min-height: 88px;
  max-height: 140px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  fill: rgb(215 164 73 / 50%);
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  fill: rgb(215 164 73 / 50%);
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  fill: rgb(215 164 73 / 50%);
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
  fill: rgb(215 164 73 / 50%);
}

@keyframes move-forever {
  0% {
      transform: translate3d(-90px, 0, 0);
  }

  100% {
      transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves {
      height: 39px;
      min-height: 39px;
  }
}


nav{
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 12px 0;
}

nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav ul li {
  position: relative;
  list-style: none;
}

nav ul li a {
  position: relative;
  font-size: clamp(17px,2.5vw,18px);
  text-decoration: none;
  color: var(--color3);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

nav ul li a::before {
  content: attr(data-text);
  position: absolute;
  width: 0;
  color: var(--color);
  overflow: hidden;
  transition: 1s;
  border-right: 4px solid var(--color);
  -webkit-text-stroke: 1px var(--color);
  height: -webkit-fill-available;
  left: -1px;
}

nav ul li a:hover::before {
  width: 100%;
  filter: drop-shadow(0 0 25px var(--color));
}

nav .hamburger {
  display: none;
  float: right;
}


.order-submit{
  padding: 48px;
}

.order-submit-open-title{
  padding-bottom: 48px;
}

.order-submit-open-title h5{
  font-size: clamp(18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}

.order-submit-main{
  display: flex;
  flex-direction: row-reverse;
}

.order-submit-block{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 12px;
}

.order-submit-open-hours{
  flex: 2;
  margin: 12px;
}

.order-submit-title{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.order-submit-title h5{
  font-size: clamp( 18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}

.order-submit-title svg{
  fill: var(--color1);
  width: 29px;
  height: 29px;
}

.order-submit-content{
  display: flex;
  flex-direction: column;
  gap: 48px;
  background: var(--color-dark-bunker);
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
  padding: 25px;
}

.order-submit-disc{
  display: flex;
  color: var(--color3);
  justify-content: center;
  font-size: clamp(18px,5vw,20px);
  animation: flashColor 2s infinite;
  width: fit-content;
  padding: 12px;
  align-items: center;
  margin: 0 auto;
}

.order-submit-cards{
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.order-submit-cards img{
  width: 40px;
  height: 40px;
}

.order-submit-cintent-in{
  display: flex;
  flex-direction: column;
  color: var(--color3);
  gap: 48px;
  justify-content: space-between;
}

.poc-left{
  color: var(--color3);
  font-size: clamp(14px,2.5vw,18px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 9px;
}

.poc-right{
  align-items: center;
  margin-bottom: 0;
  color: var(--color11);
  display: flex;
  gap: 9px;
}

.order-submit-cintent-in svg{
  fill: var(--color1);
  width: 29px;
  height: 29px;
}


.order-submit-open-hours-content{
  margin-bottom: 30px;
}
.order-submit-open-hours-content svg {
  fill: var(--color1);
  width: 29px;
  height: 29px;
}
.order-submit-open-hours-content>a {
    display: block;
    border: 1px solid var(--color2);
    border-radius: 7px;
    text-align: center;
    padding: 15px;
    position: relative;
    margin-bottom: 30px;
    background: var(--color-dark-bunker);
}
.order-submit-open-hours-content>a:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid var(--color1);
    border-right: 1px solid var(--color1);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.order-submit-open-hours-content>a:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -1px;
    left: -1px;
    border-top: 1px solid var(--color1);
    border-left: 1px solid var(--color1);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.order-submit-open-hours-icon{
    padding-bottom: 15px;
}
.order-submit-open-hours-content h4 {
  color: var(--color3);
  font-size: clamp(14px,2.5vw,18px);
  font-weight: 400;
}
.order-submit-open-hours-content p {
  margin-bottom: 0;
  color: var(--color11);
}
.order-submit-open-hours-content>a:hover {
    opacity: 1;
    border-color: var(--color2);
}

.order-submit-open-hours-content>a:hover:before, .order-submit-open-hours-content>a:hover:after {
    width: 95%;
    height: 90%;
}


.top-bask{
  padding-top: 15px;
}

.top-bask .container div{
  backdrop-filter: blur(9px);
  color: var(--color3) !important;
}

.undt-ben{
  overflow: hidden;
  padding: 48px;
}

.undt-ben-main {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: center;
  width: 100%;
  padding: 56px 0;
}
.undt-ben-block {
  --dark-color: var(--color-dark-bunker);
  --dark-alt-color: var(--color11);
  --white-color: #ffffff;
  --transition: 0.5s ease-in-out;

  font-family: inherit;
  height: 340px;
  width: 257px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-color);
  transition: var(--transition);
}
.undt-ben-block::before,
.undt-ben-block::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}
.undt-ben-block::before {
  inset: -12px 56px;
  border-top: 4px solid var(--color1);
  transform: skewY(15deg);
  border-bottom: 4px solid var(--color1);
}
.undt-ben-block:hover::before {
  inset: -12px 56px;
  transform: skewY(0deg);
}
.undt-ben-block::after {
  inset: 56px -12px;
  border-left: 4px solid var(--color1);
  transform: skew(15deg);
  border-right: 4px solid var(--color1);
}
.undt-ben-block:hover::after {
  inset: 40px -12px;
  transform: skew(0deg);
}
.undt-ben-block .undt-ben-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 0 15px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.undt-ben-block .undt-ben-inner .undt-ben-icon {
  height: 63px;
  width: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 39px;
  color: var(--text-color);
  background-color: var(--dark-color);
  transition: var(--transition);
}
.undt-ben-block .undt-ben-inner .undt-ben-icon {
  color: var(--color1);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 6px var(--color1);
}
.undt-ben-block:hover .undt-ben-inner .undt-ben-icon {
  color: var(--dark-color);
  background-color: var(--color1);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 257px var(--color1);
}
.undt-ben-block .undt-ben-inner .undt-ben-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.undt-ben-block .undt-ben-inner h3 {
  color: var(--color3);
  font-size: clamp(15px,2.5vw,18px);
  font-weight: 400;
  transition: var(--transition);
}
.undt-ben-block:hover .undt-ben-inner h3 {
  color: var(--dark-color);
  transition: var(--transition);
}
.undt-ben-block .undt-ben-inner p {
  font-size: 15px;
  color: var(--dark-alt-color);
  transition: var(--transition);
}

.undt-ben-block:hover .undt-ben-inner p {
  color: var(--dark-color);
  transition: var(--transition);
}

.undt-ben-block:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
  background-color: var(--color1);
}

.stock{
  padding: 48px;
}

.stock-title{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.stock-title h5{
  font-size: clamp(18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}


.stock-main {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stock-block {
  display: flex;
  padding: 15px;
  width: 50%;
  transition: .5s;
}

.stock-block:hover{
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
}

.stock-image {
  max-height: 236px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stock-image::after {
  content: '';
  display: block;
  background: linear-gradient(0deg, black, transparent);
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
}

.stock-price {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-dark-bunker);
  padding: 12px 15px;
  margin: 9px;
  border-radius: 0px;
  border: 2px solid var(--color1);
  font-size: 18px;
  font-weight: 400;
}

.stock-inner {
  background-color: var(--color3);
  border-radius:  9px;
  box-shadow: 0 15px 39px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgb(14 7 7 / 40%);
  color: #fff;
  box-shadow: 9px 9px 12px 0px #0000007a;
  background: var(--color-dark-bunker);
}

.stock-content {
  width: 100%;
  padding: 0;
}

.stock-code{
  padding-top: 12px;
}

.stock-content a h2{
  width: 100%;
  background: #000;
  display: block;
  margin: 0;
  padding: 15px;
  position: relative;
  font-size: 18px;
  color: var(--color1);
  transition: .5s;
}

.stock-content a h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -12px;
}

.stock-content a h2:hover{
  color: var(--color3);
}

.stock-text {
  padding: 12px 15px;
  font-size: 17px;
}

.stock-cont {
  border-top: 4px dashed var(--color1);
  padding: 12px;
  padding-top: 15px;
  margin-top: 30px;
  font-weight: 900;
}

.stock-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.gallery-view{
  padding: 48px;
}

.gallery-view-title{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.gallery-view-title h5{
  font-size: clamp(18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}

.gallery-view-main {
  position: relative;
  width: 612px;
  height: 257px;
  background: var(--color-dark-bunker);
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
  margin: 0 auto;
}

.gallery-view-main:hover :not(div[data-pos='0'], img) {
  cursor: pointer;
}

.gallery-view-main .gallery-item {
  position: absolute;
  width: 163px;
  height: 140px;
  overflow: hidden;
  transition: transform 0.9s, width 0.9s, height 0.9s;
}

.gallery-view-main .gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-view-main div[data-pos='0'] {
  width: 240px;
  height: inherit;
  z-index: 10;
}

.gallery-view-main div[data-pos='0'] {
  transform: translate(0, 0);
}

.gallery-view-main div[data-pos='1'] {
  transform: translate(256px, 0);
}

.gallery-view-main div[data-pos='2'] {
  transform: translate(439px, 0);
}

.gallery-view-main div[data-pos='3'] {
  transform: translate(256px, 156px);
}

.gallery-view-main div[data-pos='4'] {
  transform: translate(439px, 156px);
}

.gallery-view-osnm{
  display: flex;
  flex-direction: row-reverse;
}

.gallery-view-inneS{
  flex: 1;
  margin: 12px;
  display: flex;
  flex-direction: column;
}

.gallery-view .order-submit-cintent-in{
  flex-direction: row;
}

.dlya-otpravki-title{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.dlya-otpravki-title h5{
  font-size: clamp(18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}

.dlya-otpravki{
  flex: 1;
  margin: 12px;
}


.dlya-otpravki-block{
  transition: .5s;
  background: var(--color-dark-bunker);
  padding: 12px;
}

.dlya-otpravki-block:hover {
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
}

.dlya-otpravki-block label{
  color: var(--color1);
}

.dlya-otpravki-block form{
  width: 100%;
}

.dlya-otpravki-block .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dlya-otpravki-block .input-fielditemelement{
  color: var(--color3);
  padding: 12px;
  transition: all 0.3s ease 0s;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.dlya-otpravki-block .input-fielditemelement::placeholder{
  color: var(--color1);
}

.dlya-otpravki-block .textarea-fielditemelement::placeholder{
  color: var(--color1);
}

.dlya-otpravki-block .textarea-fielditemelement{
  box-shadow: none;
  color: var(--color3);
  padding: 12px;
  height: 40px;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.dlya-otpravki-block .dlya-otpravki-check{
  align-items: center;
  padding: 15px 0;
  display: flex;
  gap: 9px;
}

.dlya-otpravki-block .dlya-otpravki-check a{
  text-decoration: underline;
  color: var(--color1);
}


.connect-with-us-btn{
  padding-top: 15px;
}

.conclusion{
  padding: 25px;
  background: var(--color-dark-bunker);
}

.conclusion-main{
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

.conclusion-block-p{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.conclusion-block-p a{
  font-size: clamp(15px,2.5vw,17px);
  font-weight: 400;
  color: var(--color1);
  transition: .5s;
}

.conclusion-block-p a:hover{
  color: var(--color3);
}

.conclusion-block-c div{
  font-size: clamp(15px,2.5vw,18px);
  font-weight: 900;
  color: var(--color1);
}


.connect-with-us{
  padding: 48px;
}


.connect-with-us-title{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.connect-with-us-title h5{
  font-size: clamp(18px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}


.connect-with-us-block{
  transition: .5s;
  background: var(--color-dark-bunker);
  padding: 12px;
}

.connect-with-us-block:hover {
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
}

.connect-with-us-block label{
  color: var(--color1);
}

.connect-with-us-block form{
  width: 100%;
}

.connect-with-us-block .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.connect-with-us-block input{
  color: var(--color3);
  padding: 12px;
  transition: all 0.3s ease 0s;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.connect-with-us-block input::placeholder{
  color: var(--color1);
}

.connect-with-us-block textarea::placeholder{
  color: var(--color1);
}

.connect-with-us-block textarea{
  box-shadow: none;
  color: var(--color3);
  padding: 12px;
  height: 40px;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.connect-with-us-block .connect-with-us-check{
  align-items: center;
  padding:  12px;
  display: flex;
  gap: 12px;
}

.connect-with-us-block .connect-with-us-check a{
  text-decoration: underline;
  color: var(--color1);
}

.connect-with-us-btn{
  padding: 12px;
}


.connect-with-us-adress{
  padding: 48px;
}

.connect-with-us-adress-main{
  display: flex;
  flex-direction: column;
}

.connect-with-us-adress-block, .connect-with-us-adress-mGoo{
  flex: 1;
  margin: 12px;
}


.connect-with-us-adress-inner{
  display: block;
  border: 1px solid var(--color2);
  border-radius: 7px;
  text-align: center;
  padding: 15px;
  position: relative;
  margin-bottom: 30px;
  background: var(--color-dark-bunker);
}

.connect-with-us-adress-inner:before {
  display: block;
  content: "";
  width: 9%;
  height: 17%;
  position: absolute;
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--color1);
  border-right: 1px solid var(--color1);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.connect-with-us-adress-inner:after {
  display: block;
  content: "";
  width: 9%;
  height: 17%;
  position: absolute;
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--color1);
  border-left: 1px solid var(--color1);
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}

.connect-with-us-adress-inner:hover {
  opacity: 1;
  border-color: var(--color2);
}

.connect-with-us-adress-inner:hover:before, .connect-with-us-adress-inner:hover:after {
  width: 95%;
  height: 90%;
}

.connect-with-us-adress-box svg{
  fill: var(--color1);
  width: 29px;
  height: 29px;
}

.connect-with-us-adress-text div, .connect-with-us-adress-text a{
  word-break: break-all;
  font-size: clamp(18px,5vw, 20px);
  font-weight: 400;
  color: var(--color3);
  font-style: italic;
  transition: .5s;
  position: relative;
  z-index: 1;
  word-break: break-all;
}

.connect-with-us-adress-text a:hover{
  color: var(--color1);
}

.connect-with-us-adress-box .db{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect-with-us-adress-mGoo{
  display: flex;
}

.connect-with-us-adress-mGoo-main{
  flex: 1;
}

.connect-with-us-adress-mGoo-main iframe{
  height: 100%;
}


.overview-page{
  padding: 48px;
}

.main-overviewtitle{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 48px;
}

.main-overviewtitle h5{
  font-size: clamp( 20px,5vw,27px);
  font-weight: 400;
  color: var(--color1);
}

.main-overviewmain{
  background: var(--color-dark-bunker);
  padding: 15px;
}

.main-overviewmain{
  display: flex;
  flex-direction: column;
}

.main-overviewimage, .main-overviewcontent{
  flex: 1;
  margin: 15px;
}

.main-overviewcontent h2{
  font-size: 18px;
}

.main-overviewcontent{
  padding: 12px;
  color: var(--color3);
  flex: 1;
  font-size: clamp(15px,2.5vw,18px) !important;
}

.main-overviewcontent ul li, .main-overviewcontent ol li{
  padding: 9px 0;
}

.main-overviewcontent ul{
  list-style: disc !important;
  text-align: left !important;
}

.main-overviewimage{
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
}

.main-overviewimage img{
  width: 100%;
  height: 257px;
  object-fit: contain;
}


.main-overviewform{
  transition: .5s;
  background: var(--color-dark-bunker);
  padding: 12px;
  width: 100%;
}

.main-overviewform:hover {
  filter: drop-shadow(2px 4px 9px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 9px var(--color1));
}

.main-overviewform label{
  color: var(--color1);
}

.main-overviewform form{
  width: 100%;
}

.main-overviewform .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.main-overviewform .input-fielditemelement{
  color: var(--color3);
  padding: 12px;
  transition: all 0.3s ease 0s;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.main-overviewform .input-fielditemelement::placeholder{
  color: var(--color1);
}

.main-overviewform .textarea-fielditemelement::placeholder{
  color: var(--color1);
}

.main-overviewform .textarea-fielditemelement{
  box-shadow: none;
  color: var(--color3);
  padding: 12px;
  height: 40px;
  background-color: var(--color-dark-bunker);
  outline: none;
}

.main-overviewform .main-overviewcheck{
  align-items: center;
  padding: 15px 0;
  display: flex;
  gap: 9px;
}

.main-overviewform .main-overviewcheck a{
  text-decoration: underline;
  color: var(--color1);
}


.main-overviewbF{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 63px;
}


.main-overviewdop-text{
  padding-top: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}

.main-overviewprice{
  font-size: clamp(18px,2.5vw,20px);
  font-weight: 900;
  color: var(--color1);
}


.dataprotection{
  word-break: break-all;
  padding: 88px 88px;
  overflow: hidden;    
  color: var(--color3);
}

.dataprotection h1.dataprotection-t{
  font-size:  24px;
  font-weight: 900;
  color: var(--color3);
}

.dataprotection h1,h2,h3{
  font-size: 18px;
  font-weight: 900;
  color: var(--color3);
}

.dataprotection  a{
  text-decoration: underline;
  color: var(--color3);
}

.dataprotection ol li {
  color: var(--color3);
}

.dataprotection ul{
  list-style: disc !important;
  text-align: left;
  margin: 12px;
}

.button-1 {
  background: var(--color-bright-gray);
  border-radius: 7px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 17px;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: .5s;
}

.button-1:hover {
  color: #310B0B;
  background-image: linear-gradient(-180deg, var(--color3) 0%, var(--color2) 100%);
}


.button-2 {
  background-color: transparent;
  border: 2px solid var(--color11);
  box-sizing: border-box;
  color: #cdcdcd;
  font-size: 17px;
  padding: 12px 15px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-2:hover,
.button-2:active {
  outline: 0;
}

.button-2:hover {
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}

.button-2:before {
  background-color: var(--color3);
  content: "";
  height: calc(100% + 3px);
  position: absolute;
  right: -9px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}

.button-2:hover:before {
  background-color: var(--color1);
  border: 2px solid var(--color3);
}

.button-3 {
  align-items: center;
  background-color: var(--color1);
  border: 2px solid var(--color3);
  border-radius: 9px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  height: 40px;
  justify-content: center;
  line-height: 1.2;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-3:after {
  background-color: var(--color-granny-smith);
  border-radius: 7px;
  content: "";
  display: block;
  height: 40px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -1px;
  transform: translate(7px, 7px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-3:hover:after {
  transform: translate(0, 0);
}

.button-3:active {
  background-color: var(--color-granny-smith);
  outline: 0;
}

.button-3:hover {
  outline: 0;
  color: #fff;
  background-color: var(--color-bright-gray);
}

.button-4 {
  --c: #fff;
  padding: 9px;
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p,100%)/300% no-repeat,
      var(--color1);
  color: #0000;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
  text-shadow: calc(var(--_i,-1)* 0.08em) -.01em 0   var(--c),
      calc(var(--_i,-1)*-0.08em)  .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}

.button-4:hover,
.button-4:focus-visible {
  --_p: 0%;
  --_i: 1;
}

.button-4 {
  font-weight: 900;
  font-size: 17px;
  margin: 0;
  cursor: pointer;
}

.button-5 {
  appearance: none;
  background-color: var(--color1);
  border: 2px solid var(--color3);
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 17px;
  margin: 0;
  min-height: 56px;
  min-width: 0;
  outline: none;
  padding: 15px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.button-5:disabled {
  pointer-events: none;
}

.button-5:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0  9px 12px;
  transform: translateY(-2px);
  color: #fff;
}

.button-5:active {
  box-shadow: none;
  transform: translateY(0);
}



@media (max-width: 1200px) {
  .gallery-view-osnm:has(.plHide)  {
    flex-direction: column;
  }
}


@media (max-width: 992px) {

  nav ul {
    flex-direction: row;
    gap: 12px;
  }

  nav .hamburger {
    display: block !important;
    cursor: pointer;
    font-size: 24px;
    color: var(--color3);
    margin: 15px;
  }

  nav ul {
    z-index: 9;
    display: none;
    flex-direction: column;
    background: var(--color-dark-bunker);
    position: absolute;
    top: 56px;
    width: 100%;
    padding: 12px;
    margin-top: 25px;
  }

  nav ul li {
    margin: 12px 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a::before {
    height: -webkit-fill-available;
  }

  .stock-main{
    flex-direction: column;
  }

  .order-submit-main{
    flex-direction: column;
  }

  .gallery-view-osnm{
    flex-direction: column;
  }

  .connect-with-us-adress-main{
    flex-direction: column;
  }

  .main-overviewmain{
    flex-direction: column;
  }

  .stock-block{
    width: 100% !important;
  }

  .gallery-view-inneS{
    margin: 0 auto;
    padding-bottom: 48px;
  }

  .order-submit-open-hours-innerS{
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .gallery-view-main {
    width: 403px;
    height: 656px;
  }

  .gallery-view-main .gallery-item {
    width:  216px;
    height: 140px;
  }

  .gallery-view-main div[data-pos='0'] {
    width: inherit;
    height: 340px;
    z-index: 10;
  }

  .gallery-view-main div[data-pos='0'] {
    transform: translate(0, 0);
  }

  .gallery-view-main div[data-pos='1'] {
    transform: translate(0, 356px);
  }

  .gallery-view-main div[data-pos='2'] {
    transform: translate(0, 512px);
  }

  .gallery-view-main div[data-pos='3'] {
    transform: translate(203px, 356px);
  }

  .gallery-view-main div[data-pos='4'] {
    transform: translate(203px, 512px);
  }
}


@media(max-width: 600px){
    .dataprotection {
      padding: 48px 48px;
    }

    .overview-page, .connect-with-us, .connect-with-us-adress, .stock, .order-submit{
      padding: 15px 9px;
    }
}

@media (max-width: 575px) {

  button {
      width: 100%;
  }

  .main-overviewimage img{
    height: auto;
  }
}

@media(max-width: 500px){
  .order-submit-cintent-in{
    flex-direction: column;
    align-items: center;
  }

  
  .gallery-view-main {
    width: 257px;
    height: 656px;
  }

  .gallery-view-main .gallery-item {
    width: 140px;
    height: 140px;
  }

  .gallery-view-main div[data-pos='0'] {
    width: inherit;
    height: 340px;
    z-index: 10;
  }

  .gallery-view-main div[data-pos='0'] {
    transform: translate(0, 0);
  }

  .gallery-view-main div[data-pos='1'] {
    transform: translate(0, 356px);
  }

  .gallery-view-main div[data-pos='2'] {
    transform: translate(0, 512px);
  }

  .gallery-view-main div[data-pos='3'] {
    transform: translate(155px, 356px);
  }

  .gallery-view-main div[data-pos='4'] {
    transform: translate(155px, 512px);
  }
  .gallery-view{
    padding: 0;
  }

  .gallery-view .order-submit-cintent-in{
    flex-direction: column;
  }
}


.connect-with-us-adress-mGoo-main iframe{
  border: none;
}


       
#market-{rclass_basket}-main-basket-1 svg {
  color: #fff !important;
  fill: #fff !important;
}

#market-{rclass_basket}-main-basket-1 svg {
color: #fff !important;
fill: #fff !important;
}
.cart-icon-2 svg {
fill: #fff !important;
}
        