@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
:root{
    --white: #ffffff;    
   
    --accent-color: #a2ca37;
    --dark-text:   #000;                
    --white-section:#CDCDCD;
   
}
body{
    direction: ltr;
    font-family: 'Saira Condensed', sans-serif !important;
    font-size: 14px;
    margin: 0;
}

a{
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}
a:hover{
    text-decoration: none;
    color: var(--accent-color);
}
h1,h2,h3,h4,h5,h6,p{
   padding: 0;
   margin: 0;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
 img{
max-width: 100%;
}

.section{
    padding: 59px 0;
}
.section-contact{
    background:  #00000007;
}

.title{
    position: relative;
    color: var(--dark-text);
    font-weight: 400;
    margin-bottom: 39px;
    padding-bottom: 14px;
    font-size: 40px;
    text-align: center;

}
.title::after,.title::before{
    position: absolute;
    content: "";
    height: 2px;   
    background-color: var(--accent-color);
}
.title::after{
 width: 130px;
    bottom: 0;
    left:  50%;
    transform: translate(-50%);
}
.title::before{
    width: 85px;
    bottom: -14px;
    left:  50%;
    transform: translate(-50%);
}



.privacy-box p,.page-content p{
    margin-bottom: 14px;
    text-indent: 3ch;
}
.privacy-box h1{
    font-weight: 400;
    text-align: center;
    margin-bottom:  21px;
}
.privacy-box h2{
    font-weight: 400;
    text-align: center;
    margin-bottom:16px ;
}
.privacy-box a{
    color: inherit;
} 
.privacy-box table,.privacy-box a{
    word-break: break-word;
} 

.navbar-expand-lg{
width: 100%;
}


 
.header-nav{
    background-color: #86ab23;
    transition: all 0.3ms;
    border-bottom: 1px  dotted hsla(0,0%,100%,.2);
}
.header-logo{
    text-align: center;
    padding: 16px 0px 16px;
}
.header-link{
    display: flex;
    align-items: center;             
    text-align: left;
    font-weight: 400;
    gap: 16px; 
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
.header-link:hover,.header-link:focus{
    color:  #060606;
}
.header-link img{
width: 59px;
height: 59px;
}
.header-nav-container{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.offcanvas{
    background-color: #8b845a;
}
.dropdown-menu[data-bs-popper]{
   border-radius: 0px;
    top: 58px;
    width: 265px;    
    z-index: 5;
    left: 30%;
    right: 30%;
    border-top: 1px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 0.35714rem 0.92857rem rgba(0,0,0,.2);


}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--accent-color);
    background-color: inherit;
}
.dropdown-item a{
    white-space: initial;
    transition: all 0.3s ease-in-out;
}
.nav-link {
    color: #ffff;
    
}

.navbar-expand-lg {
    justify-content: space-between;
}
.nav-item:hover >a,
.nav-item:focus >a{
    color:  #060606;
}
.hover{
    position: relative;
}
.navbar{
    padding: 0;
}
.hover::after{
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    content: "";
    width: 100%;
    transform: scaleX(0);
    transition: transform 350ms ease-out;
    transform-origin: right;
    background: var(--accent-color);
}
.nav-item:hover.hover::after{
    transform: scaleX(1);
    transform-origin: left;
}
.nav-sticky {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 999; 
transition: all 0.3ms;  
box-shadow: 0 10px 30px rgba(0, 0, 0, .1) !important;
}
.hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
}
.hero{
    overflow: hidden;
    position: absolute;
    background-image:linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(uploads/2025-06/bg-2025-05-30_01-060.jpg);
    background-size: cover;
    background-position: center center;  
    background-repeat: no-repeat;   
    width: 100%;
    height: 100vh;
}

.bvambient_particle {
	position: absolute;
	pointer-events: none;
	transition: top linear, left linear;
}
.hero-card{
   
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;   
    background-color: transparent;
    border: 0px;
}
.hero-card_wrapper{
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    background-color:rgb(36 68 29 / 58%);
    padding:  16px;
    border-radius: 14px;
    color: #ffff;
   text-align: center;
}
.hero-card_title{
    font-size: 27px;
    color: transparent;
    background: linear-gradient(0deg, rgba(37,172,50,1) 27%, rgba(68,237,65,1) 71%);
    background-clip: text;
    -webkit-background-clip:text;
    -webkit-text-stroke: 1px  #c3c2c2;
}
.discount{
    font-size: 40px;
    font-weight: 400;
    color: red;  
    text-shadow: rgb(0,0,0) 3px 2px 5px;
}
.discount-img-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    

}
.discount-img_item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;       
    background: #fff;
    border-radius: 0px;
}
.discount-img_item img{
    width: 100%;
    height: 162px;
    object-fit: cover;
    transition: all .3s ease;
    border-radius: 0px;
   
}
.discount-wrapper{
    position: absolute;
    left: 50%;
    top: 50%;      
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
    background: #282828;
    width: 149px;
    height: 149px;
    border-radius: 50%;
}
.discount-wrapper span{
    color: #fff;
    z-index: 20;
    font-size: 14px;
    text-transform: uppercase;
}
.discount-img_item:hover img{
    opacity: 0.1;
}
.hover2 .discount-wrapper {
    transform: translate(150%, -50%) rotate(360deg)
}
.hover3 .discount-wrapper{
    transform: translate(-250%, -50%) rotate(-360deg)
} 
.discount-img_item:hover .discount-wrapper{
    transform: translate(-50%, -50%)
}

.footer{
    padding: 40px 0 0;
    background: rgb(36 68 29);
    color: var(--white);
}
.footer-list{
    display: flex;
    gap: 16px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-item{
    flex: 1;   
    line-height: 1.2;
    font-size: 13px;
    width: 100%;
    height: 100%;
    padding: 14px;
    text-align:  center;
}
.footer-title{
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 17px;
    margin: 0 0 16px;
}
.privacy-wrapper{
    flex: 1;              
    display: flex;
    gap: 7px;
    padding: 16px 14px;
    flex-direction: column; 
   
}
.privacy-wrapper a,.footer-contact a{
    transition:  .5s;
    font-size: 13px;
}
.privacy-wrapper a:hover, .footer-contact a:hover{
    color: var(--accent-color);
}
.footer-button{
    padding: 16px 0;
    text-align: center;
    font-size: 13px; 
    border-top: 1px solid #5771509c; 
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between; 
   
}
.footer-img{
    display: flex;
    gap: 7px;
    justify-content:center;
    
}
.map{
    height: 360px;
    overflow: hidden;
}
.map iframe{
    height: 100%;
}
.breadcrumb-main{
    padding: 14px 16px;
    margin-bottom: 30px;
    background: #3c3d3d;
    color: var(--accent-color);
}
.breadcrumb-conteiner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}
.breadcrumb-conteiner h3{
    font-size: 14px;
    display: flex;
    gap: 7px;
    align-items: center;
    text-align: center;
}
.breadcrumb-list{
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.breadcrumb-list a{
    position: relative;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color .5s;

} 
.breadcrumb-list>li:last-child a, .breadcrumb-list>li a:hover,.get-in-touch-item a:hover{
    color: var(--accent-color);
}
.breadcrumb-list i{
    color: var(--white);
}
.forma-wrapper{
    display: flex;
    gap: 16px;
    flex-direction:  row;

}
.forma-box{
    flex: 2;
}
.forma-contact{
    flex: 1;
}
.contact-title{
    font-size: 18px;
    margin: 0 0 16px;
    font-weight: 400;
    padding: 0 0 14px;
    line-height: 1.2;
    border-bottom: 1px solid #ebebeb;
}
.get-in-touch-wrapper{
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 0px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.contact-body{
    padding:  16px;
    display: flex;
    flex-direction: column;
}
.get-in-touch-item{
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 14px 0;
}
.get-in-touch-item h2{
    font-size: 14px;
    color:  #060606;
    text-transform: capitalize;
    font-weight: 900;
}
.get-in-touch-item p{
    font-weight: 400;
    color:  #060606;
    font-size: 14px;
    line-height: 1.2;
}
.get-in-touch-item a{
    transition: color .3s;
}
.get-in-touch-icon{
    display: flex;
    align-items: center;
    justify-content:center ;
    height: 30px;
    width: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius:  0px;
    line-height: 1.2;
}
.border-box{
 border-top: 1px solid #ebebeb;
 border-bottom: 1px solid #ebebeb;
}
.form-btn{
    display: flex;
    justify-content: end;
}
.get-in-touch-form-check{
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 16px 0;
}
.form-check-label a{
 text-transform: lowercase;
 transition: .2s;
}
.form-check-label a:hover{
    color: var(--accent-color);
}
.form-check-label{
    font-size: 14px;
    margin-left: 7px;
}
.form-box{
    display: flex;
    gap: 14px;
    flex-direction: column;
}
.get-in-touch-form-name-box{
    display: flex;
    gap: 14px;
    flex-direction: column;
}
.get-in-touch-form-item input,.get-in-touch-form-textarea textarea,.input-custom__layoutsection,.textarea-custom__layoutsection{
    background: #fff;
    padding: 14px 16px;
    line-height: 1.2;
    border: 1px solid #dddddd;
    width: 100%;
    resize: vertical;
    outline: none;
}
.form-pege{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.get-in-touch-form-item input::placeholder,.get-in-touch-form-item textarea::placeholder{
    font-size: 14px;
}
.input-wrapper{
    display: flex;
    gap: 14px;
}
.section-main{
    background: #f8f5f1;
}
.section-bg{
    background: url(uploads/2025-06/transparent-1600x9000.png); 
    background-position: center;
    background-size: cover;   
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 85px 0;
}
.section-bg2{
    background: url(uploads/2025-06/transparent-1600x9001.png); 
    background-position: center;
    background-size: cover;   
    background-repeat: no-repeat;
}
.main-list{
   display: flex;
    gap: 16px;
    flex-direction:  column;
}
.main-item{
    flex: 1;
    display: flex;
    gap: 16px;
    flex-direction:  column;
}
.goods-boxins{
     flex: 1;
}
.goods-korobochka{
    padding: 16px;
    border: 1px solid #f0f0f0;
    background-color: rgb(36 68 29 / 58%);
    height: 100%;
    display: flex;
     border-radius: 14px;
    flex-direction: row;
    gap: 16px;
     transition: all 0.3s ease-in-out;
}
.goods-korobochka:hover{
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.product-img{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.product-img img{
   height: 265px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}
.product-info{
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-around;
    flex: 1;
}
.title-main{
    
   color: white;
    text-shadow: .04em 0 #000, -.04em 0 #000, 0 .04em #000, 0 -.04em #000;
    font-weight: 900;
    font-size: 18px;
    text-align: center;
        transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.title-main:hover{
    color: var(--accent-color);
} 
.price{
    display: flex;
    justify-content: center;
    color: var(--accent-color);
    text-shadow: rgb(54 13 13 / 91%) 3px 2px 5px;
    gap:  7px;
    font-size: 27px;
    font-weight: 400;
     
}
.code-product{
    display: flex;
    gap: 14px;   
    font-size: 15px;
    align-items: center;
}
.section-partner{
    background:  #86ab23;
  padding: 30px 0;
  
}
.partner-item{
  width: 100%;
  height: 91;
  background-color: #282828;
  border-radius: 4px;
  padding:  16px;
}

.partner-item > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-castumer{
    background-image: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(uploads/2025-06/bg-2025-05-30_01-060.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 85px 0 39px;
}
.section-castumer .title{
    color: var(--white);
}
.castumer-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

}
.castumer-avatar{
    width: 149px;
    height: 149px;           
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 0%;
    border: 6px solid #ffffff;
    background-repeat: no-repeat;
    
}
.animate{
opacity: 1;
}
.animate.visible{
animation: roteitAvatar 5s;
}
 @keyframes roteitAvatar {
    0%{
        opacity: 0;
        transform: rotate(0deg) translate(0px,0px);
    }
   
    100%{
        opacity: 1;
        transform: rotate(360deg) translate(-0px,-0px);
    }
}
.castumer-comment{
    display: flex;
    text-align: center;
    gap: 14px;
    color: var(--white);
    flex-direction:  column;
}
.castumer-comment >h5{
    font-weight: 400;
    font-size: 18px;
}
.castumer-comment > p{
    font-size: 14px;
}

.page-content{ 
    padding: 30px 0;
} 
.page-content ul{
    list-style: square;
    margin-left:  30px;
}
.cover-img-wrapper{
    order: 1;
}
.cover-img{    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}
.cover-img img{
    height: auto;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 576px){
    .cover-img img{
        height: 162px;
    }
}
@media (min-width: 768px){
    .cover-img img{
        height: 255px;
    }
}
@media (min-width: 992px){
    .cover-img img{
        height: 360px;
    }
}
.cover-img:hover img{
    transform: scale(1.08);
}
.page-product-title{
    font-weight: 400;
    font-size: 27px;
    margin-bottom: 16px;
    text-align:  center;
}
.page-product-infa .price{
    font-size: 21px;
}
.infa-product{   
    border-top: 1px dotted #cdcdcd;
    border-bottom: 1px dotted #cdcdcd;
    padding: 20px 0 16px 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.page-product-infa .price{
    color: #000;
    justify-content: start;
    text-shadow:none;
}
.faq{
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction:  row;
}
.faq-img{
    width: 30%;
    height: 360px;
    border-radius: 4px;
    background-size: cover;    
    background-position: center center;
    background-repeat: no-repeat;    
}

.faq-content{
    width: 70%;
    display: flex;
    flex-direction: column;   
}
.accordion{
  --bs-accordion-border-color:#fff;
  --bs-accordion-border-width:0;   
}
.accordion-button{
    display: flex;
    align-items: center;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
    font-size:  22px;
    font-weight: 400;
    
}
.accordion-body{
    color: #696969;
    font-style:italic;
    font-size: 14px;
}
.accordion-button:focus ,.accordion-button:not(.collapsed){
    background-color:var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    border-radius: 4px;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
}

  
        @media (max-width: 575px){
           
            button{
                width: 100%;
            }
            .offcanvas.offcanvas-start{
                width: 85%;
            }
            .navbar-toggler{
                width: auto;
            }
            .header-nav-container{
                flex-direction: column;
                gap: 0;
            }
            .header-logo{
                margin-left: auto;
                margin-right: auto;
            } 
            .offcanvas-header .header-logo{
                margin: 0;
            }
            
            .navbar{
                justify-content: space-around;
            }
            .hero-card_tex{
                font-size: 14px;
            }
            .discount-img-grid {
                grid-template-columns: repeat(1,1fr);
            }
            .input-wrapper{
                flex-direction: column;
            }
            .contact-body{
                padding: 14px;
            }
            .breadcrumb a,.breadcrumb h3 {
                font-size: 14px;
            }
            .title{
                font-size: 27px;
            }
            .accordion-button{
                font-size: 14px;
            }
            .page-product-title{
                text-align: center;
                font-size: 22px;
            }
            .faq-img{
                height: 349px;
            }
            
        }
        
        @media (max-width: 768px){         
        .hero-card {
                width: 95%;
        }
        .footer-list {
            flex-direction: column;
        }
        .footer-item{
            align-items: center;
            text-align: center;
        }
        .privacy-wrapper{
            padding: 0;
            flex-wrap: wrap;
            flex-direction: inherit;
            gap: 14px;
            justify-content: center;
        }
        .footer-button{
            flex-direction: column;
            gap: 14px;
        }
       
         .goods-korobochka{
                flex-direction: column;
            }
            .cover-img-wrapper{
                padding: 16px 0;
            }
       }
        
    
        @media (min-width: 768.99px) and (max-width: 991.99px){
           .contact-body {
            flex-direction: row;
           }
           .get-in-touch-item{
            flex: 1;
            padding: 0px 14px;
           }
           .border-box{
            border: 0;
            border-left: 1px solid #ebebeb;
            border-right: 1px solid #ebebeb;
           }
        }
         @media (min-width: 574.99px) and (max-width: 991.99px){
            .discount-img-grid {
                grid-template-columns: repeat(2,1fr);
            }
           
         }
        @media(min-width: 992px){
            .logo-lg{
                display: none;
            }
           
           .offcanvas-body{
            align-items: center;
            justify-content: space-between;
           } 
           .hero-card_wrapper {
            padding: 30px;
           }
        }
        @media(max-width: 991px){
            .dropdown-menu{
                border: none;
                background-color: inherit;
                
            }
            .dropdown-menu[data-bs-popper]{
                width: 100%;
                box-shadow:none;
                border: none;
            }
            .nav-item,.dropdown-item:not(:last-child),.offcanvas-header{
                border-bottom: 1px dotted #dedede;
            }
            .dropdown-item {
                color: var(--white);
            }
            .dropdown-item:focus, .dropdown-item:hover{
                color: #000;
                background-color: inherit;
            }
            .nav-link{
                padding: 14px 0;
            }
            .logo-mob{
                display: none;
            }
           .forma-wrapper {
            flex-direction:  column;
           }
           .main-item{
            flex-direction: column;
           }
            .section-bg{
                padding: 59px 0;
            }
            .section-castumer{
                padding: 59px 0 39px;
            }
            .faq{
                flex-direction: column;
            }
            .faq-img,.faq-content{
                width: 100%;
            }
          
            .breadcrumb-conteiner{
                flex-direction: column;
            }
        }
       



     
        .btn-1 {
            background: #282936;
             padding: 14px 16px;
             display: block;
            outline: 2.5px solid #a2ca37;
            outline-offset: 3px;
            border: 0;
            color: white;  
            font-size: 14px;
            border-radius: 4px;
            transition: 0.4s;
            font-weight: 400;
            text-align: center;
          }
          
          .btn-1:hover {
            outline-offset: 4.5px;
            background: #a2ca37;
            font-size: 17px;
            color: #282936; 
          }
          
          .btn-2 {
           color: #ecf0f1;
           display: block;
           font-size: 14px;
           background-color: #212121;
           text-align: center;
           border: 1px solid #ffffff;
           border-radius: 4px;
           padding: 14px 16px;
           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: 14px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #ffffff;
            background-color: #282828;
            border-style: none;
            border-radius: 4px;
            padding: 16px 16px;
            transform: scale(1);
            transition: 0.2s;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
          }
          
          .btn-3:hover {
            background-color:rgb(36 68 29);
            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: 14px 30px;
              border: 2px solid #CDCDCD;
              color: #222;
              border-radius: 4px;
              font-size: 14px;
              display: block;
              font-weight: 400;
              position: relative;
              text-transform: uppercase;
              -webkit-transition: 0.3s;
              -o-transition: 0.3s;
              transition: 0.3s;
              text-align: center;
          }
          
          
          
          .btn-4:hover,.btn-4:focus {
            background: #282828;
           color: #fff;
            border: 2px solid #282828;
          }
          .btn-5 {
            background: #a2ca37;
              border: 0;
              display: block;
              border-radius: 14px;
              box-shadow: 0 3.43693px 3.43693px rgba(0,0,0,.25);
              box-sizing: border-box;
              color: #ffffff;
              font-size: 14px;
              font-weight: 400;
              line-height: 1.2;
              outline: 0;
              padding: 16px 30px;
              position: relative;
              text-transform: uppercase;
              text-align: center;
              transition: background .3s ease-in-out;
              
            
          }
          .btn-5:hover,.btn-3:focus{
            background: #373737;
          }

          .map iframe{
            border: none;
          }

          .input-wrapper{
            flex: 1;
          }
          .get-in-touch-form-item{
            flex: 1;
          }