@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root{
    --white: #ffffff;    
   
    --accent-color-1: #558B2F;
    --accent-color-2: #c1264e;
    --accent-color-3:#052268;

    --dark-text:   #000;                
    --white-section:#CDCDCD;
  --background-color: #392338;
 
  --hamburger-color: #392338;
  
  --flex-basis-1:calc((100% - 3* 30px) / 3);
  --flex-basis-2:calc((100% - 2* 30px) / 2);
 
  --hamburger-width: 20px;
  --hamburger-height: 2px;
  --hamburger-animation-duration: 1s;
  --arrow-size: 20px;
  --menu-toggle-size: 200px;
  --menu-whole-size: calc(var(--menu-toggle-size) * 3 + var(--arrow-size) * 2);
}
body{

  direction: ltr;
  font-family: 'PT Serif', sans-serif !important;
  font-size: 15px;
  margin: 0;
  padding: 0px;
  line-height: 1.5; 
    
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}           
input:focus, textarea:focus, select:focus {
  outline: none;
}
h2{
font-size: clamp(21px,4vw,36px)!important;
}
img, video{
  max-width: 100%;
}
ul{
  list-style: none;               
}
[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
.containerKJ{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px; 
  margin-left: auto;
  margin-right: auto;
}
.section-privacy {
  overflow: hidden;
  word-break: break-all;
}
.privacy-stil-box{
    word-break: break-word;
}
.privacy-stil-box p{
  margin-bottom: 10px;
  text-indent: 3ch; 
 
}
.privacy-stil-box h1{
  font-weight: 700;
  text-align: center;
  margin-bottom:  25px;
}
.privacy-stil-box h2{
  font-weight: 600;
  text-align: center;
  margin-bottom:20px ;
}
.privacy-stil-box table,.privacy-stil-box a{
  word-break: break-word;
  color: inherit;
}
.privacy-stil-box li{
  list-style: inside;
}
.d-flex{
  display: flex;
}

.site-title-top{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  text-align: center;
  img{
    height: 60px;
    object-fit: contain;
  }
}

.hero{
  position: relative;
  padding: 200px 0 60px;
}
.bg-color{
 background-color: #c8eed9;
}
.bg-opas{
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  background-image: url( uploads/OpacityBg-cYLd0.png );
}
.hero-blok{
  position: relative; 
  padding: 0 60px;
}
.video-container{
  position: relative;
  overflow: hidden;
  border-radius: 0%;
  width: 75%;
  height: 360px;
  background-color: #000;
  margin: 0 auto;
  
  
  
}

.video {
  width: 100%;
  height: 100%;
  display: block;
 object-fit: cover;
}
.play-button {
  position: absolute;
 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  cursor: pointer;  
  transition: opacity 0.3s ease;
  pointer-events: none; 
}
.name-shop{
  position: absolute;  
  top: 50%;
  font-size: 30px;
  font-weight: 600;   
  white-space: nowrap;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
   transform: translateY(-50%) rotate(-90deg);
}
.left-title{
  left: 0px;
  
}
.right-title{ 
  right: 0px;
  
}
.hero-btn{
  position: absolute;
  right: 9%;
  top: 18%;
  width: fit-content;

}
.grup-top{
  display: flex;
  flex-direction: column;
}

.svg-anim{ 
  position: absolute;
  left: 50%;
  top: 16px;
  opacity: 0.1;
}
.svg-anim-2{
  left: 19%;
  top: 60px;
}
.svg-anim-3{
  right: 22%;
  left: auto;
  top: 11%;
}
.svg-anim svg{
  width: 80px;
  height: 80px;
}
.shapes path{
    transform-box: fill-box;
    transform-origin: center;
}
.bi-tag::before {
  transform:rotate(30deg);
}
#shape-1{
    animation: spin 4.5s infinite;
    animation-direction: alternate-reverse;
}
@keyframes spin  {
  0% {
    transform:  rotate(0deg) scale(0.8);
}
100% {
    transform:  rotate(360deg) scale(1.35);
}
}


.video-container:hover .play-button {
  opacity: 0;
}
.icon {
  position: absolute;
  top: 70%;
  inset-inline-start:70%;
  transform: translateX(-50%) translateY(-50%);
}

.hamburger {
  position: relative;
  width: var(--hamburger-width);
  border: var(--hamburger-height) solid var(--hamburger-color);
  border-radius: 5px;
  transition: all calc(var(--hamburger-animation-duration) / 3) ease;
}

.hamburger::after,
.hamburger::before {
  content: ' ';
  position: absolute;
  left: 50%;
  width: 100%;
  border: var(--hamburger-height) solid var(--hamburger-color);
  border-radius: 5px;
  transform: translateX(-50%);
  transition-property: top, bottom, transform;
  transition-duration: var(--hamburger-animation-duration), var(--hamburger-animation-duration), calc(var(--hamburger-animation-duration) / 4);
}

.hamburger::after {
  top: calc(-1 * var(--hamburger-height) * 4);
}

.hamburger::before {
  bottom: calc(-1 * var(--hamburger-height) * 4);
}

.menu {
  pointer-events: none;
}

.menu--circle {
  position: fixed;
  z-index: 2;
  width:100%;
  top: 0;
  left: 0;
  height: calc(var(--menu-whole-size) / 3 + var(--arrow-size) + 10px);
  background-color: transparent;
  overflow: hidden;
}

.menu__active {
  position: relative;
}

.menu__toggle {
  z-index: 11;
  position: absolute;
  top: calc(-1 * var(--menu-toggle-size) / 2);
  left: calc(-1 * var(--menu-toggle-size) / 2);
  width: var(--menu-toggle-size);
  height: var(--menu-toggle-size);
  background-color: var(--white);
  border-radius: 50%;
  transition: transform calc(var(--hamburger-animation-duration) * 1.3);
  cursor: pointer;
  pointer-events: auto;
}

.menu__listings {
  z-index: 10;
  position: absolute;
  top: calc(-1 * var(--menu-toggle-size));
  left: calc(-1 * var(--menu-toggle-size));
  width: calc(var(--menu-toggle-size) * 2);
  height: calc(var(--menu-toggle-size) * 2);
  border-radius: 50%;
  transform: scale(.1) rotate(150deg);
  transition: transform var(--hamburger-animation-duration);
}


.circle {
  position: relative;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  border-radius: 50%;
  overflow: hidden;
  list-style: none;
}

.circle li {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 50%;
transform-origin: 0 100%;
background-color: var(--white);
transition: all 0.2s ease-out;
}

.circle li .placeholder {
  position: absolute;
  left: -100%;
  padding-top: 1.5em;
  width: 200%;
  height: 200%;
  text-align: center;
  transform: skewY(54deg) rotate(18deg);
}

.circle li .placeholder .upside {
  transform: rotate(180deg);
}

.circle li .placeholder a {
  text-decoration: none;
  pointer-events: auto;
}

.circle li .placeholder button {
  pointer-events: auto;
}

.circle li .placeholder .icon-link {
  font-size: 2.3em;
  background-color: transparent;
  border: none;
  color: var(--background-color);
  cursor: pointer;
  transition: all 0.2s ease-out;
  svg{
    width: 40px;
    height: 40px;
  }
}

.circle li:hover .icon-link{
  color: #fff;
 
}
.circle li:hover{
 background-color:var(--accent-color-2);
}
.circle li:nth-child(1) {
    transform: rotate(72deg) skewY(-54deg);
   
     transition: all 0.2s ease-out;
}


.circle li:nth-child(2) {
  transform: rotate(108deg) skewY(-54deg);
  
   transition: all 0.2s ease-out;
}

.circle li:nth-child(3) {
  transform: rotate(141deg) skewY(-54deg);
 
   transition: all 0.2s ease-out;
}
  

#menu__active {
  position: fixed;
  top: -99999px;
  left: -99999px;
}

#menu__active:checked ~ .menu__active .menu__listings {
  transform: rotate(10deg) scale(1);
  transition: transform var(--hamburger-animation-duration);
}

#menu__active:checked ~ .menu__active .menu__toggle {
  background-color: var(--background-color);
  transition: all var(--hamburger-animation-duration);
}

#menu__active:checked ~ .menu__active .hamburger {
  border-color: transparent;
  transition: border-color calc(var(--hamburger-animation-duration) / 3);
}

#menu__active:checked ~ .menu__active .hamburger::after {
  top: calc(-1 * var(--hamburger-height));
  border-color: var(--white);
  transform: translateX(-50%) rotate(45deg);
  transition-property: top, transform;
  transition-duration: calc(var(--hamburger-animation-duration) / 4), var(--hamburger-animation-duration);
}

#menu__active:checked ~ .menu__active .hamburger::before {
  bottom: calc(-1 * var(--hamburger-height));
  border-color: var(--white);
  transform: translateX(-50%) rotate(-45deg);
  transition-property: bottom, transform;
  transition-duration: calc(var(--hamburger-animation-duration) / 4), var(--hamburger-animation-duration);
}



.section-pk{
  padding: 60px 0;
}
.section-hi{
  position: relative;
  background-image: url(snapshot/icons_header_67b7032f0fcd30.86606237.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-hi::before,.section-form-bg::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #00000046;
}

.hi-title{
  text-align: center;
  position: relative;
  color: #fff;
  font-weight: 700;
}
.about-blok{ 
  gap: 30px;  
  flex-direction: row-reverse;
}
.about-bg-img{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0px;
  img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
}
.about-bg-img:hover img,.gallery-box:hover img{
  transform: scale(1.15);
}

.about-img{
  gap: 30px;
  flex-direction: column;
  
}
.about-gallery{
  display: flex;
  gap: 15px;
  flex-direction: row-reverse;
}
.border{
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
border: 2px dashed var(--accent-color-2);
}
.gallery-box{
  width: 100%;
  height: 250px;
  overflow: hidden; 
   
  border-radius: 0%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
}
.title-main{
  color: #212D50;
  margin-bottom: 30px;
  text-align: center;
}
.slog{
  text-align: center;
  color: #212D50;
  font-weight: 700;
  font-size: 19px;
  text-transform: inherit;
}
.about-text{
  color: #180707;
  text-indent: 3ch;  
}
.cbout-content{
  flex: 2;
  display: flex; 
  flex-direction: column;
  justify-content:space-between;
  gap: 20px;
}
.flex-dir-row{
  flex-direction: row-reverse;
}
.how{
   flex-direction: column;
}
.how-orde,.how-work{
  flex: 1;
  padding: 60px 45px 45px;
}
.how-orde{ 
  background-color: #c8eed9 ;
}
.how-work{
  display: none;
  position: relative;
  background-image: url( snapshot/visuals_header_67b703317d8424.87058418.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.how-work::before{
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #0000005d;
}
.icon-box{
  margin-bottom: 20px;
  text-align: center;
  svg{
    width: 50px;
    height: 50px;
    fill:var(--accent-color-2);
  }
}
.how-work_box svg{
  fill: #fff;
}
.how-work_box{
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
}
.flex-dir-col{
  gap: 10px;
  flex-direction: column;
}
.step{
  gap: 15px;
  align-items: center;
  flex-grow: 1;
  flex-basis: 150px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.ibox-icon{
  position: relative;
  background-color:var(--accent-color-2);
  color: var(--white);
  font-size: 24px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0%;
}
.ibox-icon::after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: transform .3s, opacity .3s;
  z-index: 1;
  opacity: 0;
  box-shadow: 0 0 0 3px var(--accent-color-2);
  transform: scale(.8);
  border-radius: 0%;
  }
.step:hover .ibox-icon::after {
  transform: scale(1.11);
  opacity: 1;
}
.how-title{
  text-align: center;
  margin-bottom: 30px;
}
.penci-workingh-item{    
  color:#fff;   
}


.penci-listitem-hours{
    font-size: 16px;
}
.penci-listitem-title{
    position: relative;
    font-weight: 700;
    font-size: 18px;
}
.time-list{
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.prod-list{
  display: flex;
  flex-wrap: wrap;
  margin: -15px;

}
.prod-item{
  margin: 15px; 
  padding: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-basis: var(--flex-basis-2);
}
.prod-title{
  color: #18191d;
  font-size: 19px;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: capitalize;
  h3{
    color: inherit;
    font-size: inherit;
  }
}
.shop-rating{
  color: #24c1dd;
}
.code{
  display:  flex;
  flex-wrap: wrap;
  gap: 8px;
}
.price{
  display: flex;
  gap: 15px;
  align-items: center;
  color: #18191d;
  font-weight: 600;
  font-size: 1rem;

}
.cbp-caption{
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 200px;
}
.imge-prod{
  position: relative;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: #f6f6f6;
  overflow: hidden;
  transition: transform .4s;
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.cbp-activeWrap{
  background: #24c1dd;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.prod-item:nth-child(even) .cbp-activeWrap{
  background-color: #392338 ;
}
.cbp-caption:hover .imge-prod{
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);

}
.caption-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  height: 100%;
  gap: 15px;
  color: #fff;
  svg{
    width: 25px;
    height: 25px;
    fill: #fff;
  }
}
.btn-prod{
  width: 100%;
}
.footer{
  padding: 30px 0 20px;
}
.footer-blok-bottom{
  padding-top: 20px;
  border-top: 2px solid #3131313d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row-reverse;
}
.footer-blok-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;  
  font-size: 14px;
  text-transform: uppercase;
}
.footer-blok-top{
  display: flex;
  flex-wrap: wrap;
}
.footer-nav{
 flex-grow: 1;
 flex-basis: 250px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-list{
  display: flex;
  flex-direction: column;  
}

.contact-sectionPL{
  padding: 45px 0;
} 
.bg-white  {
  background-color:  #fff8ff;
}
.cont-map{  
  flex: 1;
  overflow: hidden;
  min-height: 150px;
 
  iframe{
    width: 100%;
    height: 100%;
  }
} 
.cont-wrapper{
  flex: 2;
  display: flex;
  gap: 15px;
  flex-direction: row-reverse;
}
.cont-element{
  flex: 1;
  padding: 15px;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
} 
.blok-svg{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  svg{
    width: 35px;
    height: 35px;
    fill: var(--accent-color-2);
  }
 
}
.cont-element:hover .blok-svg{
  transform: scale(1.1);
}
.cont-content{
  color: #111;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
} 
.cont-link{
  color: #666666;
  font-size: 16px;
  word-wrap: break-word;
  transition: all 0.3s;
} 
.section-hi .cont-link,.section-hi .cont-content,.section-hi svg{
  color: #fff;
  fill: #fff;
}
.cont-link:hover,.cont-link:focus{
  color: var(--accent-color-2);
}
.cont-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.input-page,.textarea-page,.input-custom--elementpart,.textarea-custom--elementpart{
  padding: 12px 20px;
  width: 100%;
  font-size: 14px;
  background: none;
  outline: none;
  color: #111;
  border-radius: 0px;
  border: 2px solid #7c666685;
}
.input-page::placeholder{
  font-size: 12px;
}
.textarea-page,.textarea-custom--elementpart{
  padding: 15px 20px;
  height: 120px;
}
.section-form-bg .input-custom--elementpart,.section-form-bg .textarea-custom--elementpart{
  border-color: #ebe4e485;
  color:#fff;
}
.section-form-bg .cont-form{
 width: 80%;
 margin: 0 auto;
}
.input-grup{
  display: flex;
  gap: 20px;
  width: 100%;
  flex-direction:  row-reverse;
}
.grup-element{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
 
}
.custom-check{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}
.custom-check-label a{ 
  color: inherit;
  transition: all 0.5s ease-in-out;
}
.custom-check-label a:hover{
  color: var(--accent-color-2);
}


.footer-list li a{
  word-wrap: break-word;
  position: relative;
  color: #212D50;
  display: block;
  padding-top: 10px;
  padding-inline-end:0px;
  padding-bottom: 10px;
  padding-inline-start:20px ; 
  transition: all 0.5s ease-in-out;
}
.footer-list li a:hover,.footer-list li a:focus{
  color: var(--accent-color-2);
}
.footer-list li a::before{
  position: absolute;
  content: "";
  width: 6px;
  margin: auto;
  inset-inline-start: 0;
  height: 6px;
  border-radius: 50%; 
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color-2) ; 
}
.footer-menu-title{
  position: relative;
  font-weight: 700;
  color: #180707;  
}
.footer-menu-title::before{
  position: absolute;
  content: "";
  width: 30px;
  inset-inline-start: 0;
  top: -5px;
  height: 2px;
  border-radius: 5px;
  background-color: var(--accent-color-2);
  transition: all 0.5s ease-in-out;
}
.footer-nav:hover .footer-menu-title::before{
  width: 45px;
}
.page-container{
  position: relative;
  margin-top: -80px;
  padding-top: 40px;
  background-color: #fff;  
}
.page-prod-info{
  flex: 2;
}
.page-price{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.page-price .price{
  color: #002d62;
  font-weight: 800;
  font-size: 35px;
}
.produkt-meta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:  0px 15px;
  h3{
    font-size: 17px;
    font-weight: 500;
    color:  #606060;
  }
  p{
    font-weight: 600;
    color: #212D50;
    font-size: 18px;
  }
  span{
    color: yellowgreen;
  }
}
.produkt-meta:not(:last-child){
  border-inline-end: 1px solid #d1d1d1;
}

.page-prod-content p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.page-prod-content ul,ol{
  list-style: inside;
}
.page-prod-picture{
  
  float: left;
  width: 35%;
  height:300px;
  margin: 20px;
  margin-top: 0;
  margin-left: 0;
  img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
}
.prod-col{
  gap: 30px;
}
.page-form{
  flex: 1;
  padding: 30px;
  background-color:  #fff8ff;
}
.page-form .cont-form{
  align-items: left;
}
.page-form-img{
  flex: 1;
}
.bg-img{
  background-image: url(snapshot/illustrations_header_67b70333d44c33.04626111.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-form-bg{
  position: relative;
  color: #fff;
  background-image: url(snapshot/graphics_header_67b703367b2848.94733077.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  svg{
    fill: #fff;
  }
}
.flex-element{
  flex: 1;
} 
.partn-box{
  padding: 30px 10px;
  position: relative;
  margin-top: 0px;
  padding-bottom: 20px;
  background-color:var(--accent-color-2);
  
  
}
 .blok-com{
  border-width: 2px;
  border-style: solid;
  border-color: #f5f5f5 #eee #d5d5d5 #eee;
 }
.partn-box .how-title{
  color: #fff;
}
.part-list{ 
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.part-item{
  flex-grow: 1;
  flex-basis: 180px;
  height: 80px;
  padding: 10px;
  border: 1px #e5e5e5 solid;
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
} 
.carousel {
  position: relative;
  max-width: 100%;            
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items:  flex-start;
  text-align: center;
  height: 100%; 
  padding: 30px;
  background-color: #c8eed9;           
  box-sizing: border-box;
  
}
.avatar{
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 0%;
  border: 3px solid var(--accent-color-2);
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



.navigation {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.navigation div {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.navigation div.active {
  background: #333;
}

.carousel:hover .slides {
  animation-play-state: paused;
} 



@media (min-width: 575px){
}

@media (max-width: 575px){
    .video-container {
      width: 100%;
    }
    .prod-item{
      flex-basis: 100%;
    }
    .cont-dir-com,.cont-element{
      flex-direction: column;
    }
    .cont-map{
      height: 220px;
    }
    .page-prod-info .d-flex{
      flex-direction: column;
    }
    .produkt-meta:not(:last-child){
      border: none;
      border-bottom: 1px solid #d1d1d1;
    }
    .produkt-meta{
     padding: 15px 0px;
     gap: 0;
     align-items: center;
    }
    .page-price{
      justify-content: center;
    }
    .page-form{
      padding: 30px 12px;
    }
}
@media (min-width: 575px) and (max-width: 768px){
  .gallery-box{
    width: 70%;
  }
}
@media (min-width: 768px){         
}

@media (max-width: 768px){         

  .svg-anim{
    display: none;
  }
  
  .about-blok{
    flex-direction: column;
  }
  .about-blok div{
    flex: unset;
  }
  .about-gallery{
    justify-content: center;
  }
  .about-bg-img img{
    height: 250px;
  }
  .input-grup{
    flex-direction: column;
  }
  .page-prod-picture{
  float: none;
  width:100%;
  margin: 0 0 20px 0;  
    
}
.prod-col{  
  flex-direction: column;
}
.page-form-img,.page-form {
  flex: auto;
}
.page-form-img{
  height: 250px;
}
.section-form-bg .cont-form{
  width: 100%;
}
.blok-com{
   flex-direction: column;
}
.slide{
  padding: 30px 15px;
  min-height: 300px;
}
} 
 


@media (min-width: 575px) and (max-width: 992px){
  .prod-item {
    flex-basis: var(--flex-basis-2);
  }
}
@media(min-width: 992px){
    
}
@media(max-width: 992px){
    .gallry-box-none{
      display: none;
    }
    .how{
      flex-direction:  column;
    }
    .footer-blok-bottom{
      justify-content: center;
      text-align: center;
      justify-content: center;
      flex-direction: column;
    }
    .cont-wrapper{
      flex-direction: column;
    }
    .part-item{
      flex-basis: 150px;
    }
    .left-title,.right-title{
   position: unset;
   -webkit-transform: translateY(0%) rotate(0deg);
    -ms-transform: translateY(0%) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    font-size: 25px;
  }
  .hero-blok {
    padding: 0;
    display: flex;
    gap: 14px;
    flex-direction: column;
  }
  .right-title{
    text-align: end;
  }
   
}
       

@media (min-width: 1200px){
    .containerKJ {
     max-width: 1170px;
    }
}

@media (max-width: 576px) {
  .cont-link {
    font-size: 13px;
  }
  .footer-list li a {
    padding-inline-start: 10px;
  }
}     
.btn-1 {
  cursor: pointer;
  background: var(--background-color);
  padding: 10px 12px;
  display: block;
  outline: 2.5px solid var(--accent-color-1);
  outline-offset: 3px;
  border: 0;
  color: white;  
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.4s;
  font-weight: 600;
  text-align: center;
}

.btn-1:hover {
  outline-offset: 4.5px;
  background: var(--accent-color-1);
  font-size: 1.1rem;
  color: var(--background-color); 
}

.btn-2 {
 color: #ecf0f1;
 display: block;
 cursor: pointer;
 font-size: 15px;
 background-color: var(--hamburger-color);
 text-align: center;
 border: 1px solid #ffffff;
 border-radius: 5px;
 padding: 10px 12px;
 box-shadow: 0px 6px 0px #787878;
 transition: all 50ms;
 
}

.btn-2:active {
 box-shadow: 0px 2px 0px #787878;
 position: relative;
 top: 2px;
}




.btn-3 {
  display: inline-block;
  display: block;
 text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  background-color: var(--background-color);
  border-style: none;
  border-radius: 8px;
  padding: 16px 20px;
  transform: scale(1);
  transition: 0.2s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-3:hover {
  background-color:var(--accent-color-2);
  color: #ffffff;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
}

.btn-3:active {
  transform: scale(0.95);
  box-shadow: none;
}





.btn-4 {
    background: #a2ca37;
    padding: 12px 30px;
    border: 2px solid #CDCDCD;
    color: #222;
    border-radius: 5px;
    font-size: 15px;
    display: block;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
}



.btn-4:hover,.btn-4:focus {
  background: var(--background-color);
 color: #fff;
border: 2px solid var(--background-color);
}
.btn-5 {
  background: #a2ca37;
    border: 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 3.43693px 3.43693px rgba(0,0,0,.25);
    box-sizing: border-box;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.22;
    outline: 0;
    padding: 14px 28px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    transition: background .3s ease-in-out;
    
  
}
.btn-5:hover,.btn-3:focus{
  background: #373737;
}