@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: 'Prompt', sans-serif !important;
  font-size: 14px;
  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 {
  padding-left: 19px;
  list-style-type: disc;
}

ol {
  padding-left: 19px;
  list-style-type: decimal;
}

li {
  margin-bottom: 7px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
}

[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
.containerKJ{
  width: 100%;
  padding-left: 10px;
  padding-right: 10px; 
  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: 800;
  text-align: center;
  margin-bottom:  25px;
}
.privacy-stil-box h2{
  font-weight: {rand_weight};
  text-align: center;
  margin-bottom:19px ;
}
.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: 10px;
  font-size: 14px;
  text-align: center;
  img{
    height: 58px;
    object-fit: contain;
  }
}

.hero{
  position: relative;
  padding: 158px 0 57px;
}

.bg-color{
 background-color: #eff8ff;
}

.bg-opas{
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  background-image: url( graphics/mask-46b0.png );
}
.hero-blok{
  position: relative; 
  padding: 0 57px;
}
.video-container{
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 75%;
  height: 357px;
  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: 46px;
  color: #fff;
  cursor: pointer;  
  transition: opacity 0.3s ease;
  pointer-events: none; 
}
.name-shop{
  position: absolute;  
  top: 50%;
  font-size: 27px;
  font-weight: {rand_weight};   
  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: 57px;
}
.svg-anim-3{
  right: 22%;
  left: auto;
  top: 11%;
}
.svg-anim svg{
  width: 65px;
  height: 65px;
}
.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: 4px;
  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: 4px;
  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: 28px;
  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: 42px;
    height: 42px;
  }
}

.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: 57px 0;
}
.section-hi{
  position: relative;
  background-image: url(photos/figures_header_68590e6331a9d3.18430607.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: 800;
}
.about-blok{ 
  gap: 28px;  
  flex-direction: row;
}
.about-bg-img{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 1px;
  img{
    width: 100%;
    height: 442px;
    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: 28px;
  flex-direction: column-reverse;
  
}
.about-gallery{
  display: flex;
  gap: 19px;
  flex-direction: row;
}
.border{
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
border: 3px dotted var(--accent-color-2);
}
.gallery-box{
  width: 100%;
  height: 242px;
  overflow: hidden; 
  border-radius: 50%;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
}
.title-main{
  color: #212D50;
  margin-bottom: 28px;
  text-align: center;
}
.slog{
  text-align: center;
  color: #212D50;
  font-weight: 800;
  font-size: 18px;
  text-transform: inherit;
}
.about-text{
  color: #060606;
  text-indent: 3ch;  
}
.cbout-content{
  flex: 2;
  display: flex; 
  flex-direction: column;
  justify-content:space-between;
  gap: 19px;
}
.flex-dir-row{
  flex-direction: row;
}
.how{
   flex-direction: column;
}
.how-orde,.how-work{
  flex: 1;
  padding: 58px 42px 42px;
}
.how-orde{ 
  background-color: #eff8ff ;
}
.how-work{
  display: none;
  position: relative;
  background-image: url( photos/pictures_header_68590e6331ab85.83106259.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: 19px;
  text-align: center;
  svg{
    width: 57px;
    height: 57px;
    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-reverse;
}
.step{
  gap: 19px;
  align-items: center;
  flex-grow: 1;
  flex-basis: 142px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.ibox-icon{
  position: relative;
  background-color:var(--accent-color-2);
  color: var(--white);
  font-size: 23px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.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: 50%;
  }
.step:hover .ibox-icon::after {
  transform: scale(1.11);
  opacity: 1;
}
.how-title{
  text-align: center;
  margin-bottom: 28px;
}
.penci-workingh-item{    
  color:#fff;   
}


.penci-listitem-hours{
    font-size: 14px;
}
.penci-listitem-title{
    position: relative;
    font-weight: 800;
    font-size: 18px;
}
.time-list{
  justify-content: center;
  gap: 19px;
  flex-wrap: wrap;
}
.prod-list{
  display: flex;
  flex-wrap: wrap;


}
.prod-item{
  flex-grow: 1;
  margin: 19px; 
  padding: 19px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-basis: var(--flex-basis-2);
}
.prod-title{
  color: #18191d;
  font-size: 18px;
  display: block;
  margin-top: 19px;
  margin-bottom: 7px;
  text-transform: capitalize;
  h3{
    color: inherit;
    font-size: inherit;
  }
}
.shop-rating{
  color: #24c1dd;
}
.code{
  display:  none;
  flex-wrap: wrap;
  gap: 10px;
}
.price{
  display: flex;
  gap: 19px;
  align-items: center;
  color: #18191d;
  font-weight: {rand_weight};
  font-size: 14px;

}
.cbp-caption{
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 158px;
}
.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: 19px 0;
  width: 100%;
  height: 100%;
  gap: 19px;
  color: #fff;

  svg{
    width: 28px;
    height: 28px;
    fill: #fff;
  }
}
.btn-prod{
  width: 100%;
}
.footer{
  padding: 28px 0 19px;
}
.footer-blok-bottom{
  padding-top: 19px;
  border-top: 2px solid #3131313d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}
.footer-blok-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;  
  font-size: 14px;
  text-transform: uppercase;
}
.footer-blok-top{
  display: flex;
  flex-wrap: wrap;
}
.footer-nav{
 flex-grow: 1;
 flex-basis: 242px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.footer-list{
  display: flex;
  flex-direction: column;  
}

.contact-sectionPL{
  padding: 42px 0;
} 
.bg-white  {
  background-color:  #f8f5f1;
}
.reach-us-map{  
  flex: 1;
  overflow: hidden;
  min-height: 142px;
 
  iframe{
    width: 100%;
    height: 100%;
  }
} 
.reach-us-wrapper{
  flex: 2;
  display: flex;
  gap: 19px;
  flex-direction: row;
}

.reach-us-element{
  flex: 1;
  padding: 19px;
  display: flex;
  gap: 19px;
  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: 33px;
    height: 33px;
    fill: var(--accent-color-2);
  }
 
}
.reach-us-element:hover .blok-svg{
  transform: scale(1.1);
}
.reach-us-content{
  color: #111;
  font-weight: {rand_weight};
  font-size: 18px;
  margin-bottom: 19px;
} 
.reach-us-link{
  color: #666666;
  font-size: 14px;
  word-wrap: break-word;
  transition: all 0.3s;
} 
.section-hi .reach-us-link,.section-hi .reach-us-content,.section-hi svg{
  color: #fff;
  fill: #fff;
}
.reach-us-link:hover,.reach-us-link:focus{
  color: var(--accent-color-2);
}
.reach-us-form{
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
}
.input-page,.textarea-page,.input-form--element--control,.textarea-form--element--control{
  padding: 10px 19px;
  width: 100%;
  font-size: 14px;
  background: none;
  outline: none;
  color: #111;
  border-radius: 1px;
  border: 2px solid #7c666685;
}
.input-page::placeholder{
  font-size: 10px;
}
.textarea-page,.textarea-form--element--control{
  padding: 10px 19px;
  height: 119px;
}
.section-form-bg .input-form--element--control,.section-form-bg .textarea-form--element--control{
  border-color: #ebe4e485;
  color:#fff;
}
.section-form-bg .reach-us-form{
 width: 80%;
 margin: 0 auto;
}
.input-grup{
  display: flex;
  gap: 19px;
  width: 100%;
  flex-direction:  row;
}
.grup-element{
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
 
}
.custom-check{
  display: flex;
  flex-direction: row;
  gap: 10px;
  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: 19px; 
  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: 4px;
  margin: auto;
  inset-inline-start: 0;
  height: 4px;
  border-radius: 50%; 
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color-2); 
}
.footer-menu-title{
  position: relative;
  font-weight: 800;
  color: #060606;  
}
.footer-menu-title::before{
  position: absolute;
  content: "";
  width: 28px;
  inset-inline-start: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--accent-color-2);
  transition: all 0.5s ease-in-out;
}
.footer-nav:hover .footer-menu-title::before{
  width: 42px;
}
.page-container{
  position: relative;
  margin-top: -65px;
  padding-top: 33px;
  background-color: #fff;  
}
.product-showcase-info{
  flex: 2;
}
.page-price{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: space-between;
}
.page-price .price{
  color: #002d62;
  font-weight: 800;
  font-size: 34px;
}
.produkt-meta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:  0px 19px;
  h3{
    font-size: 17px;
    font-weight: {rand_weight};
    color:  #606060;
  }
  p{
    font-weight: {rand_weight};
    color: #212D50;
    font-size: 18px;
  }
  span{
    color: yellowgreen;
  }
}
.produkt-meta:not(:last-child){
  border-inline-end: 1px solid #d1d1d1;
}

.product-showcase-content p{
  margin-bottom: 10px;
  text-indent: 3ch;
}
.product-showcase-content ul,ol{
  list-style: inside;
}
.product-showcase-picture{
  
  float: left;
  width: 39%;
  height: 271px;
  margin: 19px;
  margin-top: 0;
  margin-left: 0;
  img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
}
.prod-col{
  gap: 28px;
}
.page-form{
  flex: 1;
  padding: 28px;
  background-color: #f8f5f1;
}
.page-form .reach-us-form{
  align-items: left;
}
.page-form-img{
  flex: 1;
}
.bg-img{
  background-image: url(photos/depictions_header_68590e6331abe2.84548187.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-form-bg{
  position: relative;
  color: #fff;
  background-image: url(photos/icons_header_68590e6331ac22.53196522.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  svg{
    fill: #fff;
  }
}
.flex-element{
  flex: 1;
} 
.partn-box{
  padding: 28px 10px;
  position: relative;
  margin-top: 0px;
  padding-bottom: 19px;
  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: 19px;
}
.part-item{
  flex-grow: 1;
  flex-basis: 158px;
  height: 65px;
  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:  center;
  text-align: center;
  height: 100%; 
  padding: 28px;
  background-color: #eff8ff;           
  box-sizing: border-box;
  
}
.avatar{
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px 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: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.navigation div.active {
  background: #333;
}

.carousel:hover .slides {
  animation-play-state: paused;
} 


@media (max-width: 575px){
    .video-container {
      width: 100%;
    }
    .prod-item{
      flex-basis: 100%;
    }
    .cont-dir-com,.reach-us-element{
      flex-direction: column-reverse;
    }
    .reach-us-map{
      height: 219px;
    }
    .product-showcase-info .d-flex{
      flex-direction: column;
    }
    .produkt-meta:not(:last-child){
      border: none;
      border-bottom: 1px solid #d1d1d1;
    }
    .produkt-meta{
     padding: 19px 0px;
     gap: 0;
     align-items: center;
    }
    .page-price{
      justify-content: center;
    }
    .page-form{
      padding: 28px 10px;
    }
}
@media (min-width: 575px) and (max-width: 768px){
  .gallery-box{
    width: 70%;
  }
}

@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: 242px;
  }
  .input-grup{
    flex-direction: column;
  }
  .product-showcase-picture{
  float: none;
  width:100%;
  margin: 0 0 19px 0;  
    
}
.prod-col{  
  flex-direction: column-reverse;
}
.page-form-img,.page-form {
  flex: auto;
}
.page-form-img{
  height: 242px;
}
.section-form-bg .reach-us-form{
  width: 100%;
}
.blok-com{
   flex-direction: column-reverse;
}
.slide{
  padding: 28px 19px;
  min-height: 271px;
}
} 
 
@media (min-width: 575px) and (max-width: 992px){
  .prod-item {
    flex-basis: var(--flex-basis-2);
  }
}

@media(max-width: 992px){
    .gallry-box-none{
      display: none;
    }
    .how{
      flex-direction:  column-reverse;
    }
    .footer-blok-bottom{
      justify-content: center;
      text-align: center;
      justify-content: center;
      flex-direction: column-reverse;
    }
    .reach-us-wrapper{
      flex-direction: column-reverse;
    }
    .part-item{
      flex-basis: 142px;
    }
    .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: 23px;
  }
  .hero-blok {
    padding: 0;
    display: flex;
    gap: 14px;
    flex-direction: column-reverse;
  }
  .right-title{
    text-align: end;
  }
   
}
       

@media (min-width: 1200px){
    .containerKJ {
     max-width: 1158px;
    }
}

@media (max-width: 576px) {
  .reach-us-link {
    font-size: 14px;
  }
  .footer-list li a {
    padding-inline-start:  10px;
  }
}     
.btn-1 {
  cursor: pointer;
  background: var(--background-color);
  padding:  10px  19px;
  display: block;
  outline: 2.5px solid var(--accent-color-1);
  outline-offset: 3px;
  border: 0;
  color: white;  
  font-size: 14px;
  border-radius: 4px;
  transition: 0.4s;
  font-weight: {rand_weight};
  text-align: center;
}

.btn-1:hover {
  outline-offset: 4.5px;
  background: var(--accent-color-1);
  font-size: 16px;
  color: var(--background-color); 
}

.btn-2 {
 color: #ecf0f1;
 display: block;
 cursor: pointer;
 font-size: 14px;
 background-color: var(--hamburger-color);
 text-align: center;
 border: 1px solid #ffffff;
 border-radius: 4px;
 padding: 10px 19px;
 box-shadow: 0px 7px 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: 14px;
  font-weight: {rand_weight};
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  background-color: var(--background-color);
  border-style: none;
  border-radius: 10px;
  padding: 19px 28px;
  transform: scale(1);
  transition: 0.2s;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-3:hover {
  background-color:var(--accent-color-2);
  color: #ffffff;
  box-shadow: 0px 6px 7px rgba(0, 0, 0, 0.2);
}

.btn-3:active {
  transform: scale(0.95);
  box-shadow: none;
}

.btn-4 {
    background: #a2ca37;
    padding: 19px 28px;
    border: 2px solid #CDCDCD;
    color: #222;
    border-radius: 4px;
    font-size: 14px;
    display: block;
    font-weight: {rand_weight};
    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: 14px;
    font-weight: {rand_weight};
    line-height: 1.22;
    outline: 0;
    padding: 19px 28px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    transition: background .3s ease-in-out;
    
  
}
.btn-5:hover,.btn-3:focus{
  background: #373737;
}

.reach-us-map iframe{
  border: none;
}