

/* Start:/local/templates/busheri/libs/lightgallery/lightgallery.scss?17864301546666*/
// Core variables and mixins
@import "/local/templates/busheri/libs/lightgallery/lg-variables";
@import "/local/templates/busheri/libs/lightgallery/lg-mixins";
@import "/local/templates/busheri/libs/lightgallery/lg-fonts";
@import "/local/templates/busheri/libs/lightgallery/lg-theme-default";
@import "/local/templates/busheri/libs/lightgallery/lg-thumbnail";
@import "/local/templates/busheri/libs/lightgallery/lg-video";
@import "/local/templates/busheri/libs/lightgallery/lg-autoplay";
@import "/local/templates/busheri/libs/lightgallery/lg-zoom";
@import "/local/templates/busheri/libs/lightgallery/lg-pager";
@import "/local/templates/busheri/libs/lightgallery/lg-fullscreen";
@import "/local/templates/busheri/libs/lightgallery/lg-share";

// Clearfix
.group {
    *zoom: 1;
}

.group:before, .group:after {
    display: table;
    content: "";
    line-height: 0;
}

.group:after {
    clear: both;
}

// lightgallery core
.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: $zindex-outer;
    opacity: 0;
    // For start/end transition
    @include transition(opacity 0.15s ease 0s);

    * {
        @include box-sizing(border-box);
    }

    &.lg-visible {
        opacity: 1;
    }

    // Set transition speed and timing function
    &.lg-css3 {
        .lg-item {
            &.lg-prev-slide, &.lg-next-slide, &.lg-current {
                @include transition-duration(inherit !important);
                @include transition-timing-function(inherit !important);
            }
        }
    }

    // Remove transition while dragging
    &.lg-css3.lg-dragging {
        .lg-item {
            &.lg-prev-slide, &.lg-next-slide, &.lg-current {
                @include transition-duration(0s !important);
                opacity: 1;
            }
        }
    }

    // Set cursor grab while dragging
    &.lg-grab {
        img.lg-object {
            @include grab-cursor;
        }
    }

    &.lg-grabbing {
        img.lg-object {
            @include grabbing-cursor;
        }
    }

    .lg {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        max-height: 100%;
    }

    .lg-inner {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        white-space: nowrap;
    }

    .lg-item {
        background: url("#{$lg-path-images}/loading.gif") no-repeat scroll center center transparent;
        display: none !important; 
    }
    &.lg-css3{
        .lg-prev-slide, .lg-current, .lg-next-slide{
            display: inline-block !important; 
        }
    }
    &.lg-css{
        .lg-current{
            display: inline-block !important; 
        }
    }

    .lg-item, .lg-img-wrap {
        display: inline-block;
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;

        &:before {
            content: "";
            display: inline-block;
            height: 50%;
            width: 1px;
            margin-right: -1px;
        }
    }

    .lg-img-wrap {
        position: absolute;
        padding: 0 5px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0
    }

    .lg-item {
        &.lg-complete {
            background-image: none;
        }

        &.lg-current {
            z-index: $zindex-item;
        }
    }

    .lg-image {
        display: inline-block;
        vertical-align: middle;
        max-width: 100%;
        max-height: 100%;
        width: auto !important;
        height: auto !important;
    }

    &.lg-show-after-load {
        .lg-item {
            .lg-object, .lg-video-play {
                opacity: 0;
                @include transition(opacity 0.15s ease 0s);
            }

            &.lg-complete {
                .lg-object, .lg-video-play {
                    opacity: 1;
                }
            }
        }
    }

    // Hide title div if empty
    .lg-empty-html {
        display: none;
    }

    &.lg-hide-download{
        #lg-download{
            display: none;
        }
    }
}
.lg-backdrop{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: $zindex-backdrop;
    background-color: #000;
    opacity: 0;
    @include transition(opacity 0.15s ease 0s);
    &.in{
        opacity: $backdrop-opacity;
    }
}

// Default slide animations. Should be placed at the bottom of the animation css
.lg-css3 {

    // Remove all transition effects
    &.lg-no-trans {
        .lg-prev-slide, .lg-next-slide, .lg-current {
            @include transitionCustom(none 0s ease 0s !important);
        }
    }

    &.lg-use-css3 {
        .lg-item {
            @include backface-visibility(hidden);
        }
    }

    &.lg-use-left {
        .lg-item {
            @include backface-visibility(hidden);
        }
    }

    // Fade mode
    &.lg-fade {
        .lg-item {
            opacity: 0;

            &.lg-current {
                opacity: 1;
            }

            // transition timing property and duration will be over written from javascript
            &.lg-prev-slide, &.lg-next-slide, &.lg-current {
                @include transitionCustom(opacity 0.1s ease 0s);
            }
        }
    }

    &.lg-slide {
        &.lg-use-css3 {
            .lg-item {
                opacity: 0;

                &.lg-prev-slide {
                    @include translate3d(-100%, 0, 0);
                }

                &.lg-next-slide {
                    @include translate3d(100%, 0, 0);
                }

                &.lg-current {
                    @include translate3d(0, 0, 0);
                    opacity: 1;
                }

                // transition timing property and duration will be over written from javascript
                &.lg-prev-slide, &.lg-next-slide, &.lg-current {
                    @include transitionCustom(transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s);
                }
            }
        }

        &.lg-use-left {
            .lg-item {
                opacity: 0;
                position: absolute;
                left: 0;

                &.lg-prev-slide {
                    left: -100%;
                }

                &.lg-next-slide {
                    left: 100%;
                }

                &.lg-current {
                    left: 0;
                    opacity: 1;
                }

                // transition timing property and duration will be over written from javascript
                &.lg-prev-slide, &.lg-next-slide, &.lg-current {
                    @include transitionCustom(left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s);
                }
            }
        }
    }
}
/* End */


/* Start:/local/templates/busheri/libs/lightgallery/css/lightgallery.min.css?178643015420400*/
.lg-sub-html,.lg-toolbar{background-color:rgba(0,0,0,.45)}#lg-counter,.lg-outer .lg-video-cont{vertical-align:middle;display:inline-block}@font-face{font-family:lg;src:url(/local/templates/busheri/libs/lightgallery/css/../fonts/lg.eot?n1z373);src:url(/local/templates/busheri/libs/lightgallery/css/../fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),url(/local/templates/busheri/libs/lightgallery/css/../fonts/lg.woff?n1z373) format("woff"),url(/local/templates/busheri/libs/lightgallery/css/../fonts/lg.ttf?n1z373) format("truetype"),url(/local/templates/busheri/libs/lightgallery/css/../fonts/lg.svg?n1z373#lg) format("svg");font-weight:400;font-style:normal}.lg-icon{font-family:lg;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-actions .lg-next,.lg-actions .lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080}.lg-actions .lg-next.disabled,.lg-actions .lg-prev.disabled{pointer-events:none;opacity:.5}.lg-actions .lg-next:hover,.lg-actions .lg-prev:hover{color:#FFF}.lg-actions .lg-next{right:20px}.lg-actions .lg-next:before{content:"\e095"}.lg-actions .lg-prev{left:20px}.lg-actions .lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-moz-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-ms-keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@keyframes lg-right-end{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-moz-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@-ms-keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}@keyframes lg-left-end{0%,100%{left:0}50%{left:30px}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-toolbar .lg-icon{background: none;border: none;color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:0;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.lg-toolbar .lg-icon:hover{color:#FFF}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{bottom:0;color:#EEE;font-size:16px;left:0;padding:10px 40px;position:fixed;right:0;text-align:center;z-index:1080}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}#lg-counter{color:#999;font-size:16px;padding-left:20px;padding-top:12px}.lg-next,.lg-prev,.lg-toolbar{opacity:1;-webkit-transition:-webkit-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-moz-transition:-moz-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;-o-transition:-o-transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear;transition:transform .35s cubic-bezier(0,0,.25,1) 0s,opacity .35s cubic-bezier(0,0,.25,1) 0s,color .2s linear}.lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);opacity:1}.lg-outer .lg-thumb-outer{background-color:#0D0A0A;bottom:0;position:absolute;width:100%;z-index:1080;max-height:350px;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-outer.lg-thumb-open .lg-thumb-outer{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-thumb{padding:10px 0;height:100%;margin-bottom:-5px}.lg-outer .lg-thumb-item{cursor:pointer;float:left;overflow:hidden;height:100%;border:2px solid #FFF;border-radius:4px;margin-bottom:5px}@media (min-width:1025px){.lg-outer .lg-thumb-item{-webkit-transition:border-color .25s ease;-o-transition:border-color .25s ease;transition:border-color .25s ease}}.lg-outer .lg-thumb-item.active,.lg-outer .lg-thumb-item:hover{border-color:#a90707}.lg-outer .lg-thumb-item img{width:100%;height:100%;object-fit:cover}.lg-outer.lg-has-thumb .lg-item{padding-bottom:120px}.lg-outer.lg-can-toggle .lg-item{padding-bottom:0}.lg-outer.lg-pull-caption-up .lg-sub-html{-webkit-transition:bottom .25s ease;-o-transition:bottom .25s ease;transition:bottom .25s ease}.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html{bottom:100px}.lg-outer .lg-toggle-thumb{background-color:#0D0A0A;border-radius:2px 2px 0 0;color:#999;cursor:pointer;font-size:24px;height:39px;line-height:27px;padding:5px 0;position:absolute;right:20px;text-align:center;top:-39px;width:50px}.lg-outer .lg-toggle-thumb:hover,.lg-outer.lg-dropdown-active #lg-share{color:#FFF}.lg-outer .lg-toggle-thumb:after{content:"\e1ff"}.lg-outer .lg-video-cont{max-width:1140px;max-height:100%;width:100%;padding:0 5px}.lg-outer .lg-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}.lg-outer .lg-video .lg-object{display:inline-block;position:absolute;top:0;left:0;width:100%!important;height:100%!important}.lg-outer .lg-video .lg-video-play{width:84px;height:59px;position:absolute;left:50%;top:50%;margin-left:-42px;margin-top:-30px;z-index:1080;cursor:pointer}.lg-outer .lg-has-vimeo .lg-video-play{background:url(/local/templates/busheri/libs/lightgallery/css/../img/vimeo-play.png) no-repeat}.lg-outer .lg-has-vimeo:hover .lg-video-play{background:url(/local/templates/busheri/libs/lightgallery/css/../img/vimeo-play.png) 0 -58px no-repeat}.lg-outer .lg-has-html5 .lg-video-play{background:url(/local/templates/busheri/libs/lightgallery/css/../img/video-play.png) no-repeat;height:64px;margin-left:-32px;margin-top:-32px;width:64px;opacity:.8}.lg-outer .lg-has-html5:hover .lg-video-play{opacity:1}.lg-outer .lg-has-youtube .lg-video-play{background:url(/local/templates/busheri/libs/lightgallery/css/../img/youtube-play.png) no-repeat}.lg-outer .lg-has-youtube:hover .lg-video-play{background:url(/local/templates/busheri/libs/lightgallery/css/../img/youtube-play.png) 0 -60px no-repeat}.lg-outer .lg-video-object{width:100%!important;height:100%!important;position:absolute;top:0;left:0}.lg-outer .lg-has-video .lg-video-object{visibility:hidden}.lg-outer .lg-has-video.lg-video-playing .lg-object,.lg-outer .lg-has-video.lg-video-playing .lg-video-play{display:none}.lg-outer .lg-has-video.lg-video-playing .lg-video-object{visibility:visible}.lg-progress-bar{background-color:#333;height:5px;left:0;position:absolute;top:0;width:100%;z-index:1083;opacity:0;-webkit-transition:opacity 80ms ease 0s;-moz-transition:opacity 80ms ease 0s;-o-transition:opacity 80ms ease 0s;transition:opacity 80ms ease 0s}.lg-progress-bar .lg-progress{background-color:#a90707;height:5px;width:0}.lg-progress-bar.lg-start .lg-progress{width:100%}.lg-show-autoplay .lg-progress-bar{opacity:1}.lg-autoplay-button:after{content:"\e01d"}.lg-show-autoplay .lg-autoplay-button:after{content:"\e01a"}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition-duration:0s;transition-duration:0s}.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s;transition:transform .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-moz-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;-o-transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s;transition:left .3s cubic-bezier(0,0,.25,1) 0s,top .3s cubic-bezier(0,0,.25,1) 0s}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:-webkit-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-moz-transition:-moz-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-o-transition:-o-transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;transition:transform .3s cubic-bezier(0,0,.25,1) 0s,opacity .15s!important;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}#lg-zoom-in:after{content:"\e311"}#lg-actual-size{font-size:20px}#lg-actual-size:after{content:"\e033"}#lg-zoom-out{opacity:.5;pointer-events:none}#lg-zoom-out:after{content:"\e312"}.lg-zoomed #lg-zoom-out{opacity:1;pointer-events:auto}.lg-outer .lg-pager-outer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1080;height:10px}.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont{overflow:visible}.lg-outer .lg-pager-cont{cursor:pointer;display:inline-block;overflow:hidden;position:relative;vertical-align:top;margin:0 5px}.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.lg-outer .lg-pager-cont.lg-pager-active .lg-pager{box-shadow:0 0 0 2px #fff inset}.lg-outer .lg-pager-thumb-cont{background-color:#fff;color:#FFF;bottom:100%;height:83px;left:0;margin-bottom:20px;margin-left:-60px;opacity:0;padding:5px;position:absolute;width:120px;border-radius:3px;-webkit-transition:opacity .15s ease 0s,-webkit-transform .15s ease 0s;-moz-transition:opacity .15s ease 0s,-moz-transform .15s ease 0s;-o-transition:opacity .15s ease 0s,-o-transform .15s ease 0s;transition:opacity .15s ease 0s,transform .15s ease 0s;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.lg-outer .lg-pager-thumb-cont img{width:100%;height:100%}.lg-outer .lg-pager{background-color:rgba(255,255,255,.5);border-radius:50%;box-shadow:0 0 0 8px rgba(255,255,255,.7) inset;display:block;height:12px;-webkit-transition:box-shadow .3s ease 0s;-o-transition:box-shadow .3s ease 0s;transition:box-shadow .3s ease 0s;width:12px}.lg-outer .lg-pager:focus,.lg-outer .lg-pager:hover{box-shadow:0 0 0 8px #fff inset}.lg-outer .lg-caret{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px dashed;bottom:-10px;display:inline-block;height:0;left:50%;margin-left:-5px;position:absolute;vertical-align:middle;width:0}.lg-fullscreen:after{content:"\e20c"}.lg-fullscreen-on .lg-fullscreen:after{content:"\e20d"}.lg-outer #lg-dropdown-overlay{background-color:rgba(0,0,0,.25);bottom:0;cursor:default;left:0;position:fixed;right:0;top:0;z-index:1081;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear .18s,opacity .18s linear 0s;-o-transition:visibility 0s linear .18s,opacity .18s linear 0s;transition:visibility 0s linear .18s,opacity .18s linear 0s}.lg-outer.lg-dropdown-active #lg-dropdown-overlay,.lg-outer.lg-dropdown-active .lg-dropdown{-webkit-transition-delay:0s;transition-delay:0s;-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;visibility:visible}.lg-outer .lg-dropdown{background-color:#fff;border-radius:2px;font-size:14px;list-style-type:none;margin:0;padding:10px 0;position:absolute;right:0;text-align:left;top:50px;opacity:0;visibility:hidden;-moz-transform:translate3d(0,5px,0);-o-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0);-webkit-transition:-webkit-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-moz-transition:-moz-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;-o-transition:-o-transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s;transition:transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s}.lg-outer .lg-dropdown:after{content:"";display:block;height:0;width:0;position:absolute;border:8px solid transparent;border-bottom-color:#FFF;right:16px;top:-16px}.lg-outer .lg-dropdown>li:last-child{margin-bottom:0}.lg-outer .lg-dropdown>li:hover .lg-icon,.lg-outer .lg-dropdown>li:hover a{color:#333}.lg-outer .lg-dropdown a{color:#333;display:block;white-space:pre;padding:4px 12px;font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px}.lg-outer .lg-dropdown a:hover{background-color:rgba(0,0,0,.07)}.lg-outer .lg-dropdown .lg-dropdown-text{display:inline-block;line-height:1;margin-top:-3px;vertical-align:middle}.lg-outer .lg-dropdown .lg-icon{color:#333;display:inline-block;float:none;font-size:20px;height:auto;line-height:1;margin-right:8px;padding:0;vertical-align:middle;width:auto}.lg-outer,.lg-outer .lg,.lg-outer .lg-inner{width:100%;height:100%}.lg-outer #lg-share{position:relative}.lg-outer #lg-share:after{content:"\e80d"}.lg-outer #lg-share-facebook .lg-icon{color:#3b5998}.lg-outer #lg-share-facebook .lg-icon:after{content:"\e901"}.lg-outer #lg-share-twitter .lg-icon{color:#00aced}.lg-outer #lg-share-twitter .lg-icon:after{content:"\e904"}.lg-outer #lg-share-googleplus .lg-icon{color:#dd4b39}.lg-outer #lg-share-googleplus .lg-icon:after{content:"\e902"}.lg-outer #lg-share-pinterest .lg-icon{color:#cb2027}.lg-outer #lg-share-pinterest .lg-icon:after{content:"\e903"}.group:after,.group:before{display:table;content:"";line-height:0}.group:after{clear:both}.lg-outer{position:fixed;top:0;left:0;z-index:1050;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item.lg-current,.lg-outer.lg-css3 .lg-item.lg-next-slide,.lg-outer.lg-css3 .lg-item.lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg{position:relative;overflow:hidden;margin-left:auto;margin-right:auto;max-width:100%;max-height:100%}.lg-outer .lg-inner{position:absolute;left:0;top:0;white-space:nowrap}.lg-outer .lg-item{background:url(/local/templates/busheri/libs/lightgallery/css/../img/loading.gif) center center no-repeat;display:none!important}.lg-outer.lg-css .lg-current,.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}.lg-outer .lg-img-wrap{position:absolute;padding:0 5px;left:0;right:0;top:0;bottom:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-image{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto!important;height:auto!important}.lg-outer.lg-show-after-load .lg-item .lg-object,.lg-outer.lg-show-after-load .lg-item .lg-video-play{opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play{opacity:1}.lg-outer .lg-empty-html,.lg-outer.lg-hide-download #lg-download{display:none}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item,.lg-css3.lg-use-left .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-css3.lg-slide.lg-use-left .lg-item{opacity:0;position:absolute;left:0}.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{left:-100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide{left:100%}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current{left:0;opacity:1}.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide{-webkit-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:left 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}
/* End */


/* Start:/local/templates/busheri/css/app.min.css?1786431503142112*/
@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:"";position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity,1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:"";background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}
@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:"";position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity,1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:"";background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;backface-visibility:hidden}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}
/*!
 * Bootstrap Reboot v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#FF6494;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:rgb(5.2, 44, 101.2);--bs-secondary-text-emphasis:rgb(43.2, 46.8, 50);--bs-success-text-emphasis:rgb(10, 54, 33.6);--bs-info-text-emphasis:rgb(5.2, 80.8, 96);--bs-warning-text-emphasis:rgb(102, 77.2, 2.8);--bs-danger-text-emphasis:rgb(88, 21.2, 27.6);--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:rgb(206.6, 226, 254.6);--bs-secondary-bg-subtle:rgb(225.6, 227.4, 229);--bs-success-bg-subtle:rgb(209, 231, 220.8);--bs-info-bg-subtle:rgb(206.6, 244.4, 252);--bs-warning-bg-subtle:rgb(255, 242.6, 205.4);--bs-danger-bg-subtle:rgb(248, 214.6, 217.8);--bs-light-bg-subtle:rgb(251.5, 252, 252.5);--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:rgb(158.2, 197, 254.2);--bs-secondary-border-subtle:rgb(196.2, 199.8, 203);--bs-success-border-subtle:rgb(163, 207, 186.6);--bs-info-border-subtle:rgb(158.2, 233.8, 249);--bs-warning-border-subtle:rgb(255, 230.2, 155.8);--bs-danger-border-subtle:rgb(241, 174.2, 180.6);--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:rgb(10.4, 88, 202.4);--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#FF6494;--bs-highlight-color:#212529;--bs-highlight-bg:rgb(255, 242.6, 205.4);--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222,226,230;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222,226,230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222,226,230;--bs-tertiary-bg:rgb(42.5, 47.5, 52.5);--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:rgb(109.8, 168, 253.8);--bs-secondary-text-emphasis:rgb(166.8, 172.2, 177);--bs-success-text-emphasis:rgb(117, 183, 152.4);--bs-info-text-emphasis:rgb(109.8, 223.2, 246);--bs-warning-text-emphasis:rgb(255, 217.8, 106.2);--bs-danger-text-emphasis:rgb(234, 133.8, 143.4);--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:rgb(2.6, 22, 50.6);--bs-secondary-bg-subtle:rgb(21.6, 23.4, 25);--bs-success-bg-subtle:rgb(5, 27, 16.8);--bs-info-bg-subtle:rgb(2.6, 40.4, 48);--bs-warning-bg-subtle:rgb(51, 38.6, 1.4);--bs-danger-bg-subtle:rgb(44, 10.6, 13.8);--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:rgb(7.8, 66, 151.8);--bs-secondary-border-subtle:rgb(64.8, 70.2, 75);--bs-success-border-subtle:rgb(15, 81, 50.4);--bs-info-border-subtle:rgb(7.8, 121.2, 144);--bs-warning-border-subtle:rgb(153, 115.8, 4.2);--bs-danger-border-subtle:rgb(132, 31.8, 41.4);--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:rgb(109.8, 168, 253.8);--bs-link-hover-color:rgb(138.84, 185.4, 254.04);--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:rgb(255, 162, 190.8);--bs-highlight-color:#dee2e6;--bs-highlight-bg:rgb(102, 77.2, 2.8);--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:rgb(117, 183, 152.4);--bs-form-valid-border-color:rgb(117, 183, 152.4);--bs-form-invalid-color:rgb(234, 133.8, 143.4);--bs-form-invalid-border-color:rgb(234, 133.8, 143.4)}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;line-height:inherit;font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button{cursor:pointer;filter:grayscale(1)}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}@font-face{font-family:NunitoSans;font-style:normal;font-weight:400;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:500;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:600;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:700;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}::-moz-placeholder{color:#0c1415;opacity:72%}::placeholder{color:#0c1415;opacity:72%}::-moz-selection{background-color:#ff6494;color:#fff}::selection{background-color:#ff6494;color:#fff}p{margin-bottom:0}ul{margin:0;padding:0;list-style:none}a{text-decoration:none;transition:all .3s ease-out}a:hover{color:#f43e72}input{background-color:#fff;border-radius:100px;width:100%;height:40px;border:1px solid transparent;padding:15px 20px;color:#0c1415;line-height:100%;font-size:16px}input:focus-visible{outline:0;border:1px solid #f43e72}@media (min-width:576px){input{height:52px;max-width:310px}}textarea{position:relative;background-color:#fff;border-radius:16px;width:100%;height:100px;border:1px solid transparent;padding:20px;color:#0c1415;line-height:100%;font-size:16px}textarea:focus-visible{outline:0;border:1px solid #f43e72}textarea::-moz-placeholder{position:absolute;bottom:20px;left:20px}textarea::placeholder{position:absolute;bottom:20px;left:20px}@media (min-width:576px){textarea{height:156px}}html{scroll-behavior:smooth;scroll-padding-top:90px}body{font-family:NunitoSans,sans-serif;font-size:14px;min-width:360px;position:relative;line-height:130%;overflow-x:hidden;color:#0c1415;display:flex;flex-direction:column;min-height:100vh}@media (min-width:576px){body{font-size:16px}}.noscroll{overflow:hidden}.response{position:relative;z-index:2;width:100%;margin-top:30px;color:#fff;padding:12px;font-size:14px;text-align:center;justify-content:center;animation:fade .25s ease;border-radius:48px}@media (min-width:576px){.response{font-size:18px;padding:18px}}.success{background-color:#3fb53f}.error{background-color:#da4c4c}img{max-width:100%;height:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.video{position:relative;text-decoration:none;border-radius:6px;padding-bottom:56.25%;height:0;overflow:hidden;margin-bottom:30px}.video iframe,.video video{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0;outline-width:0}.table-adaptive{overflow-x:auto}.lg-backdrop.in{opacity:.55}.lg-outer .lg-thumb-outer,.lg-outer .lg-toggle-thumb{background-color:rgba(0,0,0,.45)}.breadcrumb-wrapper{padding:5px 0 5px;background-color:#f7f1e7!important;margin-bottom:20px}@media (min-width:576px){.breadcrumb-wrapper{padding:5px 0 10px;margin-bottom:60px}}.breadcrumb-wrapper_beige{padding:5px 0 40px;background-color:#f7f1e7!important}@media (min-width:576px){.breadcrumb-wrapper_beige{padding:5px 0 86px}}.breadcrumb{margin:0;list-style-type:none;display:flex;font-size:14px;line-height:19px;position:relative;z-index:1;padding:0;overflow-x:auto;padding-bottom:10px;position:relative}@media (min-width:576px){.breadcrumb{font-size:16px;overflow:hidden;flex-wrap:wrap;padding-bottom:0}}.breadcrumb__item{flex:0 0 auto}@media (min-width:576px){.breadcrumb__item{flex:initial}}.breadcrumb__item:last-child .breadcrumb__link:after{display:none}.breadcrumb__link{color:#0c1415;opacity:62%}.breadcrumb__link:after{content:"/";margin:0 5px}.breadcrumb__link:hover{text-decoration:none;opacity:1;color:#0c1415}.breadcrumb__link:hover:after{color:#0c1415}.breadcrumb__link.disabled{opacity:1}.pagination{list-style-type:none;padding:0;display:flex;margin:0;margin-top:30px}.pagination__item{margin-right:8px;flex:0 0 33px;width:33px;height:33px}@media (min-width:576px){.pagination__item{flex:0 0 40px;width:40px;height:40px}}.pagination__item_active .pagination__link{border-color:#ff6494;background-color:#ff6494;color:#fff}.pagination__link{background-color:transparent;font-size:16px;line-height:25px;height:100%;width:100%;color:#000;display:flex;align-items:center;justify-content:center;text-decoration:none;border-radius:50%;transition:border-color .25s ease,color .25s ease,background-color .25s ease;border-color:#000;border:1px solid #ff6494;color:#000}.pagination__link:hover{text-decoration:none;border-color:#ff6494;color:#fff;background-color:#ff6494}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.content{margin-bottom:30px}.content_m0{margin:0}.content iframe{width:100%;margin:0 auto!important}.content p{font-size:16px;font-weight:400;line-height:24px;color:#0c1415;margin:0}.content p:not(:last-child){margin-bottom:10px}@media (min-width:576px){.content p:not(:last-child){margin-bottom:24px}}.content b,.content strong{font-weight:700;font-size:17px;line-height:24px;margin-bottom:15px}.content a{color:#ff6494;text-decoration:underline}.content a:hover{text-decoration:none}.content img{margin-bottom:30px;border-radius:15px}.content h2{font-size:20px;line-height:26px;color:#0c1415;font-weight:500;margin-bottom:20px}@media (min-width:576px){.content h2{font-size:24px;line-height:30px}}.content h3{font-size:19px;line-height:25px;color:#0c1415;font-weight:500;margin-top:40px;margin-bottom:20px}.content ol{padding:0;padding-left:17px;margin-left:10px}.content ol li{margin-bottom:10px;padding-left:8px}.content ol li::marker{color:#ff6494;font-weight:700}.content ul{list-style-type:none;margin-left:10px;padding:0;margin-bottom:15px}@media (min-width:576px){.content ul{margin-bottom:25px}}.content ul li{font-size:16px;line-height:24px;font-weight:300;margin-bottom:10px;position:relative;padding-left:25px}.content ul li:before{content:"";position:absolute;left:0;height:8px;width:8px;flex:0 0 8px;border-radius:50%;background-color:#ff6494;box-shadow:0 0 20px rgba(0,0,0,.25);display:inline-block;margin-right:15px;margin-top:7px}.content table{width:100%;margin-bottom:20px;border:1px solid #0c1415;border-collapse:collapse}.content table th{font-weight:700;padding:5px;background:#0c1415;border:1px solid #0c1415}.content table td{border:1px solid #0c1415;padding:5px;font-size:16px;line-height:150%}.section{padding:30px 0}@media (min-width:576px){.section{padding:70px 0}}@media (min-width:1200px){.section{padding:80px 0}}.section_border-top{border-top:1px solid rgba(48,48,49,.5)}.section_yellow{background-color:#ffc107;padding:30px 0}@media (min-width:576px){.section_yellow{padding:70px 0}}@media (min-width:1200px){.section_yellow{padding:120px 0}}.section_gray{background-color:#fafafa}.mb-100{margin-bottom:60px}@media (min-width:576px){.mb-100{margin-bottom:100px}}.btn{position:relative;z-index:2;color:#fff;background-color:#f43e72;max-width:270px;width:100%;display:flex;align-items:center;justify-content:space-between;padding:5px 30px;border-radius:48px;border:1px solid #f43e72;line-height:100%;transition:all .3s ease-out;cursor:pointer;text-decoration:none;height:38px;font-size:16px;flex:none;gap:16px;font-weight:700}@media (min-width:576px){.btn{height:62px;font-size:18px;gap:30px}}.btn:hover{background-color:transparent;color:#f43e72}.btn:hover .btn__svg{stroke:#f43e72}.btn__svg{fill:transparent;stroke:#fff;width:8px;height:8px}@media (min-width:576px){.btn__svg{width:12px;height:12px}}.btn_white{color:#f43e72;background-color:#fff}.btn_white .btn__svg{stroke:#f43e72}.btn_white:hover{border:1px solid #fff;background-color:#f43e72;color:#fff}.btn_white:hover .btn__svg{stroke:#fff}.container{padding:0 15px;margin:0 auto;width:100%}@media (min-width:1200px){.container{max-width:1390px}}@media (min-width:1200px){.container_text{max-width:811px}}.title-wrapper{margin-bottom:24px;position:relative;z-index:2}@media (min-width:576px){.title-wrapper{margin-bottom:40px}}.title-wrapper_reviews{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:center;margin-bottom:24px}@media (min-width:576px){.title-wrapper_reviews{margin-bottom:40px;justify-content:space-between}}.title-wrapper_reviews .title{text-align:center}@media (min-width:576px){.title-wrapper_reviews .title{-moz-text-align-last:left;text-align-last:left;margin-bottom:10px}}.title{font-weight:700;font-size:26px;line-height:110%;margin-bottom:0}@media (min-width:576px){.title{font-size:38px}}@media (min-width:1200px){.title{font-size:42px}}.title__row{display:flex;align-items:center;justify-content:center;gap:8px;position:relative;z-index:2;margin-bottom:18px}@media (min-width:576px){.title__row{margin-bottom:20px;gap:10px}}.title__row-start{justify-content:start}.title__icon{margin-left:5px;margin-bottom:3px}.title__no-wrap{white-space:nowrap}.title_fff{color:#fff}.subtitle{color:#000;text-align:center}.header{position:fixed;top:0;width:100%;padding:20px 0;z-index:100;background:#f7f1e7}@media (min-width:992px){.header_main{background:linear-gradient(to right,#f7f1e7 62%,#ff6494 38%)}}@media (min-width:1200px){.header_main{background:linear-gradient(to right,#f7f1e7 69%,#ff6494 31%)}}@media (min-width:1440px){.header_main{background:linear-gradient(to right,#f7f1e7 64%,#ff6494 36%)}}@media (min-width:1600px){.header_main{background:linear-gradient(to right,#f7f1e7 63%,#ff6494 37%)}}.header_inner .contact-us__text{color:#0c1415}.header_inner .contact-us__tel{color:#0c1415}.header_inner .contact-us__tel:hover{color:#f43e72}@media (min-width:992px){.header_inner .cart__icon{stroke:#0c1415}}@media (min-width:992px){.header_inner .cart__count{background-color:#f43e72;color:#fff}}@media (min-width:992px){.header_inner .social__svg{fill:#0c1415}.header_inner .social__svg:hover{fill:#f43e72}}.header_inner .header__right-line{background-color:#0c1415}.header__container{display:flex;align-items:center;justify-content:space-between;gap:20px}.header__logo{width:200px}@media (min-width:576px){.header__logo{width:auto}}@media (min-width:1200px){.header__logo{margin-right:20px}}.header__right{align-items:center;gap:12px}@media (min-width:1200px){.header__right{gap:24px}}.header__right_desk{display:none}@media (min-width:992px){.header__right_desk{display:flex}}.header__right_mob{display:flex}@media (min-width:992px){.header__right_mob{display:none}}.header__right-line{height:30px;width:1px;background-color:#fff;margin-left:2px}.menu{display:none;align-items:center;gap:10px}@media (min-width:992px){.menu{display:flex}}@media (min-width:1200px){.menu{gap:30px}}.menu__link{line-height:100%;font-weight:500;color:#0c1415}.menu__link.active{color:#f43e72}.contact-us{display:none}@media (min-width:768px){.contact-us{display:block}}.contact-us__text{line-height:100%;font-size:12px;color:#fff}.contact-us__tel{color:#fff;line-height:100%;font-weight:700;text-align:right}.contact-us__tel:hover{color:#f7f1e7}.social__link{background-color:#ff6494;border-radius:50%;padding:8px;line-height:0}@media (min-width:992px){.social__link{padding:0;background-color:transparent}}.social__svg{width:13px;height:13px;fill:#fff;transition:all .3s ease-out}.social__svg:hover{fill:#f7f1e7}@media (min-width:992px){.social__svg{width:24px;height:24px}}.cart{background-color:#ff6494;border-radius:50%;position:relative;padding:7.5px;line-height:0}@media (min-width:992px){.cart{background-color:transparent;padding:0}}.cart__icon{width:13px;height:13px;fill:transparent;stroke:#fff}@media (min-width:992px){.cart__icon{width:24px;height:24px}}.cart__count{background-color:#fff;border-radius:50%;padding:1.5px 3px;line-height:100%;font-weight:700;font-size:8px;color:#f43e72;text-align:center;position:absolute;top:3px;right:3px}@media (min-width:992px){.cart__count{top:-8px;right:-8px;padding:4px 6px;font-size:12px}}.burger{width:30px;height:30px;background-color:#f43e72;padding:6px;border-radius:50%;line-height:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;position:relative;z-index:100}.burger__line{width:100%;height:2px;border-radius:40px;background-color:#fff;display:block}.burger::after{content:"";width:100%;height:2px;background-color:#fff;display:block;transition:.5s;border-radius:40px}.burger::before{content:"";width:100%;height:2px;background-color:#fff;display:block;transition:.5s;border-radius:40px}.burger.active .burger__line{opacity:0}.burger.active::after{rotate:-45deg;position:relative;bottom:30%}.burger.active::before{rotate:45deg;position:relative;top:27%}.popup-wrapper{width:100%;height:200%;background-color:rgba(244,62,114,.3);position:fixed;top:0;left:0;opacity:0;z-index:100;display:none}.popup-wrapper.open{opacity:1;display:block}.popup{pointer-events:auto;position:fixed;top:0;left:0;transform:translateX(-100%);width:80%;max-width:400px;min-width:300px;height:100%;overflow-y:auto;background-color:#fff;z-index:20;display:flex;transition:transform .5s ease-out;flex-direction:column;gap:25px;padding:40px 15px 50px}@media (min-width:576px){.popup{top:0;padding:70px 20px}}.popup.open{transform:translateX(0)}.popup.open .header__menu{display:flex;flex-direction:column;align-items:start;gap:25px}.popup.open .menu__link{color:#0c1415;font-weight:500;font-size:14px}.main{padding-top:70px;flex:1}.main-page .breadcrumb-wrapper{background-color:transparent!important}.block1{position:relative;height:560px;padding-top:50px;background:linear-gradient(to bottom,#f7f1e7 68%,#ff6494 32%);margin-bottom:90px}@media (min-width:576px){.block1{margin-bottom:0;height:88vh}}@media (min-width:992px){.block1{display:flex;align-items:center;background:linear-gradient(to right,#f7f1e7 62%,#ff6494 38%)}}@media (min-width:1200px){.block1{background:linear-gradient(to right,#f7f1e7 69%,#ff6494 31%)}}@media (min-width:1440px){.block1{background:linear-gradient(to right,#f7f1e7 64%,#ff6494 36%)}}@media (min-width:1600px){.block1{background:linear-gradient(to right,#f7f1e7 63%,#ff6494 37%)}}.block1__pirog_mob{display:block;position:absolute;right:0;top:54%;transform:translateY(-50%)}@media (min-width:992px){.block1__pirog_mob{display:none}}.block1__pirog{position:absolute;display:none}@media (min-width:992px){.block1__pirog{left:calc(62% - 150px);width:400px;top:100px;display:block}}@media (min-width:1200px){.block1__pirog{left:calc(69% - 170px);width:450px;top:100px}}@media (min-width:1440px){.block1__pirog{left:calc(64% - 200px);width:500px}}@media (min-width:1600px){.block1__pirog{top:100px;left:calc(63% - 260px);width:570px}}.block1__content-inner{backdrop-filter:blur(5px);background:rgba(255,255,255,.1019607843);border:1px solid;padding:10px;border-radius:16px;max-width:270px;border-image-source:linear-gradient(227.9deg,rgba(255,255,255,.7) 3.32%,rgba(153,153,153,0) 112.11%)}@media (min-width:992px){.block1__content-inner{backdrop-filter:unset;background:unset;border:none;padding:10px;border-radius:0;max-width:unset}}.block1__content{position:relative;z-index:1}.block1__subtitle{font-size:14px}.block1__title{font-weight:700;line-height:100%;font-size:28px;max-width:260px;margin:10px 0 20px}@media (min-width:576px){.block1__title{font-size:40px;max-width:550px;margin:10px 0 25px}}@media (min-width:992px){.block1__title{font-size:62px;max-width:540px}}@media (min-width:1200px){.block1__title{max-width:587px}}.block1__text{max-width:470px;margin-bottom:20px}@media (min-width:576px){.block1__text{margin-bottom:50px}}@media (min-width:1200px){.block1__text{max-width:670px}}.block1__btn{max-width:160}@media (min-width:576px){.block1__btn{max-width:260}}.block1__preim{backdrop-filter:blur(30px);background:rgba(255,255,255,.1019607843);border-radius:16px;padding:20px 23px;display:flex;gap:12px;margin-top:72px;flex-wrap:nowrap}@media (min-width:992px){.block1__preim{margin-top:0;position:absolute;left:calc(63% - 30px);bottom:85px}}@media (min-width:1200px){.block1__preim{left:calc(70% - 30px);bottom:10px}}@media (min-width:1440px){.block1__preim{left:calc(67% - 30px);bottom:-30px}}@media (min-width:1600px){.block1__preim{left:calc(68.5% - 30px);max-width:440px;width:100%;bottom:-35px}}.block1__preim-icon{fill:#fff;width:23px;height:23px}.block1__preim-title{font-size:16px;font-weight:700;margin-bottom:10px;color:#fff}@media (min-width:576px){.block1__preim-title{font-size:20px}}.block1__preim-text{color:#fff}.line{position:absolute;inset-inline:0;bottom:-55px;overflow:hidden;padding:22px 0}.line__wrapper{overflow:hidden;background:#f43e72;transform:rotate(1.5deg)}.line__track{display:flex;width:-moz-max-content;width:max-content;animation:line 40s linear infinite;padding:12px 0}.line__content{display:flex;align-items:center;gap:40px;margin-right:40px}.line__item{white-space:nowrap}.line__item img{display:block;height:40px}.line__text{color:#fff;font-size:24px;font-weight:400}@keyframes line{to{transform:translateX(-50%)}}@media (prefers-reduced-motion:reduce){.line__track{animation:none}}@media (max-width:768px){.line{padding:6px 0}.line__wrapper{transform:rotate(3deg)}.line__content{gap:30px}.line__item img{height:32px}.line__text{font-size:20px}}@media (max-width:576px){.line__wrapper{transform:rotate(3.1deg)}.line__content{gap:24px;margin-right:24px}.line{bottom:-40px;padding:14px 0}}.terms{display:flex;flex-wrap:wrap;gap:20px}.terms__item{height:auto!important;color:#0c1415;text-decoration:none}.terms__item:hover{color:#0c1415;text-decoration:none}.terms__item:hover .terms__item-arrow{opacity:1}.terms__item-img{border-radius:16px;height:210px;width:100%;-o-object-fit:cover;object-fit:cover}@media (min-width:576px){.terms__item-img{height:420px}}.terms__item-content{border-radius:16px;padding:10px;background-color:#f7f1e7;height:calc(100% - 210px)}@media (min-width:576px){.terms__item-content{height:calc(100% - 420px);padding:20px}}.terms__item-count{opacity:60%;line-height:120%;margin-bottom:5px}@media (min-width:576px){.terms__item-count{margin-bottom:10px}}.terms__item-bottom{display:flex;justify-content:space-between;gap:10px}.terms__item-title{font-weight:700;font-size:16px;line-height:120%;margin-bottom:0}@media (min-width:576px){.terms__item-title{font-size:22px}}.terms__item-arrow{fill:transparent;stroke:#0c1415;width:17px;height:17px;opacity:0;transition:all .3s ease-out}.hit-section{position:relative;padding-top:50px;overflow:hidden}@media (min-width:576px){.hit-section{padding-top:100px}}.ellipse{position:absolute;height:232px;width:130%;border-radius:50%;top:0;left:50%;transform:translateX(-50%);background-color:#f7f1e7}@media (min-width:576px){.ellipse{height:432px;width:120%}}.hit{background-color:#f7f1e7;padding-bottom:90px}.hit .product{border:none}.tabs__scroll::-webkit-scrollbar{display:none}.tabs{display:flex;align-items:center}@media (min-width:576px){.tabs{justify-content:center}}.tabs__scroll{overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none}.tabs__container{overflow:hidden;position:relative;margin-top:20px}.tab{cursor:pointer;position:relative;padding:10px 15px;text-align:center;width:-moz-max-content;width:max-content;display:flex;flex:none;justify-content:center;align-items:center;transition:all .3s ease-out;border-radius:100px;line-height:100%;font-size:16px;font-weight:700}@media (min-width:576px){.tab{padding:15px 30px;font-size:18px}}.tab.active{color:#fff;background-color:#f43e72}.tab__content{visibility:hidden;width:100%;opacity:0;transition:all .5s ease-out;position:absolute;top:0;left:0}.tab__content.active{transition-delay:.2s;visibility:visible;opacity:1;position:static}.swiper-scrollbar-horizontal{margin-top:30px!important;height:3px!important;background:#c9c7c7!important}.swiper-scrollbar-drag{background:#f43e72!important}.products-all{display:flex;gap:20px;flex-wrap:wrap;row-gap:40px}@media (min-width:768px){.products-all{row-gap:60px}}.products-all .product-item-container{flex:0 0 calc(50% - 10px)}@media (min-width:768px){.products-all .product-item-container{flex:0 0 calc(33% - 13px)}}@media (min-width:1200px){.products-all .product-item-container{flex:0 0 calc(25% - 15px)}}.products-all .product__img{height:180px}@media (min-width:576px){.products-all .product__img{height:286px}}.product{border-bottom:2px solid #c9c7c7;padding-bottom:19px;position:relative;color:#0c1415;transition:all .3s ease-out}.product:hover{text-decoration:none;color:#0c1415}.product:hover .product__cart{background-color:#f43e72}.product:hover .product__title{color:#f43e72}.product:hover .product__arrow-svg{rotate:45deg}.product__img{height:215px;width:100%;-o-object-fit:cover;object-fit:cover;border-radius:16px}@media (min-width:576px){.product__img{height:286px}}.product__hit{color:#f43e72;padding:5px 15px;border-radius:100px;font-size:14px;font-weight:700;position:absolute;top:10px;left:10px;background-color:#fff}.product__title{font-size:18px;font-weight:500;line-height:120%;margin:10px 0 7px;transition:color .3s ease-out;overflow:hidden;text-overflow:ellipsis;display:-moz-box;display:-webkit-box;min-height:43px;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;box-orient:vertical}@media (min-width:576px){.product__title{font-size:22px;margin:20px 0 15px;min-height:52px}}.product__desc{margin-bottom:10px;overflow:hidden;text-overflow:ellipsis;display:-moz-box;display:-webkit-box;min-height:38px;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;box-orient:vertical}@media (min-width:576px){.product__desc{margin-bottom:21px}}.product__desc b{font-weight:400!important}.product__bottom{display:flex;align-items:center;justify-content:space-between;gap:4px}.product__price{font-weight:700;font-size:20px}@media (min-width:576px){.product__price{font-size:32px}}.product__icons{display:flex;align-items:center;gap:10px}.product__icon{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center}@media (min-width:576px){.product__icon{width:40px;height:40px}}.product__cart{background-color:#ff6494;transition:background-color .3s ease-out;cursor:pointer}.product__cart-svg{width:18px;height:18px;fill:transparent;stroke:#fff}.product__arrow{border:1px solid #f43e72}.product__arrow-svg{transition:rotate .3s ease-out;fill:transparent;stroke:#f43e72;width:14px;height:14px}@media (min-width:576px){.product__arrow-svg{width:18px;height:18px}}.product a{color:#0c1415;display:block}.nasledstvo{background-color:#f7f1e7;padding-bottom:100px}.nasledstvo .title__row{justify-content:start}.nasledstvo__content{display:flex;gap:40px;flex-direction:column}@media (min-width:768px){.nasledstvo__content{flex-direction:row;gap:25px}}.nasledstvo__right{max-width:670px;width:100%}.nasledstvo__text{margin:20px 0 35px}@media (min-width:576px){.nasledstvo__text{margin:20px 0 77px}}.nasledstvo__items{display:flex;justify-content:space-between;flex-wrap:wrap;width:100%;-moz-column-gap:20px;column-gap:20px;row-gap:32px}.nasledstvo__item{display:flex;gap:20px;max-width:320px}.nasledstvo__icon{flex:none;width:42px;height:42px}.nasledstvo__item-title{margin-bottom:8px;font-weight:500;font-size:18px;line-height:120%}@media (min-width:576px){.nasledstvo__item-title{margin-bottom:15px;font-size:22px}}.nasledstvo__images{position:relative;width:100%;height:480px;max-width:690px;margin:0 auto}@media (min-width:576px){.nasledstvo__images{height:615px}}@media (min-width:768px){.nasledstvo__images{margin:0}}.nasledstvo__images-img1{position:absolute;top:0;right:0;-o-object-fit:cover;object-fit:cover;border-radius:16px;width:235px;height:300px}@media (min-width:576px){.nasledstvo__images-img1{width:440px;height:530px}}@media (min-width:768px){.nasledstvo__images-img1{width:310px;height:400px}}@media (min-width:1200px){.nasledstvo__images-img1{width:440px;height:530px}}.nasledstvo__images-img2{position:absolute;bottom:0;left:0;top:unset;-o-object-fit:cover;object-fit:cover;border-radius:16px;width:270px;height:265px}@media (min-width:576px){.nasledstvo__images-img2{width:310px;height:380px}}@media (min-width:768px){.nasledstvo__images-img2{width:270px;height:320px}}@media (min-width:992px){.nasledstvo__images-img2{width:420px;height:315px}}.step{display:flex;align-items:center;row-gap:20px;-moz-column-gap:3px;column-gap:3px;justify-content:space-between;flex-wrap:wrap;padding:20px 15px;border-radius:16px;background-color:#fff;border:1px solid #c9c7c7;transition:all .3s ease-out;color:#0c1415}.step:not(:last-child){margin-bottom:5px}.step_hover:hover{color:#0c1415;background-color:#f7f1e7;border:1px solid #f7f1e7}.step_hover:hover .step__arrow{background-color:#f43e72}.step_hover:hover .step__arrow-svg{stroke:#fff}@media (min-width:768px){.step{flex-wrap:nowrap;gap:20px;padding:30px}}.step__num{font-size:14px;opacity:72%}.step__title{width:100%;max-width:215px;font-weight:500;font-size:18px;text-align:center}@media (min-width:576px){.step__title{font-size:22px;max-width:290px;text-align:left}}.step__text{order:1}@media (min-width:768px){.step__text{order:unset;width:386px}}.step__arrow{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:50%;background-color:#f7f1e7;transition:all .3s ease-out}.step__arrow-svg{transition:all .3s ease-out;width:14px;height:14px;fill:transparent;stroke:#f43e72}.step__arrow_div{width:24px;height:24px}.addresses-section{overflow:hidden;position:relative;padding:60px 0;background-color:#f7f1e7}@media (min-width:576px){.addresses-section{padding:86px 0;height:863px}}.addresses-section .subtitle{max-width:280px;margin:0 auto}@media (min-width:992px){.addresses-section .subtitle{max-width:unset}}.addresses{margin:0 auto;width:-moz-max-content;width:max-content}.addresses__img{position:absolute;width:117px;height:110px;-o-object-fit:cover;object-fit:cover;border-radius:16px}@media (min-width:768px){.addresses__img{width:180px;height:187px}}@media (min-width:992px){.addresses__img{width:286px;height:280px}}.addresses__img_1{top:192px;left:-47px}@media (min-width:576px){.addresses__img_1{top:86px;left:15px}}@media (min-width:1440px){.addresses__img_1{top:86px;left:calc((100vw - 1360px)/ 2 - 15px)}}.addresses__img_2{top:390px;left:-47px}@media (min-width:576px){.addresses__img_2{top:460px;left:50px}}@media (min-width:1440px){.addresses__img_2{top:460px;left:calc((100vw - 1360px)/ 2 + 100px)}}.addresses__img_3{top:150px;right:-47px}@media (min-width:576px){.addresses__img_3{top:124px;right:15px}}@media (min-width:1440px){.addresses__img_3{top:124px;right:calc((100vw - 1360px)/ 2 - 15px)}}.addresses__img_4{top:330px;right:-47px}@media (min-width:576px){.addresses__img_4{top:497px;right:50px}}@media (min-width:1440px){.addresses__img_4{top:497px;right:calc((100vw - 1360px)/ 2 + 100px)}}.addresses__item{border-bottom:1px solid #c9c7c7;padding-bottom:20px}.addresses__item:not(:last-child){margin-bottom:18px}@media (min-width:576px){.addresses__item:not(:last-child){margin-bottom:80px}}.addresses__item-city{text-align:center;font-size:18px;font-weight:500}@media (min-width:576px){.addresses__item-city{font-size:22px}}.addresses__item-address{text-align:center;margin-top:16px;margin-bottom:10px}.addresses__item-info{text-align:center}.addresses__item-tel{color:#0c1415;display:block}@media (min-width:576px){.addresses__item-tel{display:inline}}.discount{padding:100px 0;background-position:center;background-repeat:no-repeat;background-size:cover}@media (min-width:576px){.discount{padding:184px 0}}.discount .title{color:#fff;text-align:center}.discount .subtitle{color:#fff}.discount__btn{margin:0 auto}.footer{background-color:#290013;order:1}.footer__top{display:flex;flex-direction:column;padding:28px 0 5px}@media (min-width:576px){.footer__top{padding:40px 0;flex-direction:row;justify-content:space-between}}.footer__top-left{display:flex;flex-direction:column;align-items:center}@media (min-width:576px){.footer__top-left{align-items:start}}.footer__top-left-text{color:#fff;opacity:40%;margin-top:10px;max-width:277px;font-size:12px;line-height:120%;text-align:center}@media (min-width:576px){.footer__top-left-text{text-align:left}}.footer__top-right{display:flex;-moz-column-gap:50px;column-gap:50px;row-gap:30px;flex-wrap:wrap;margin-top:20px;justify-content:center}@media (min-width:576px){.footer__top-right{margin-top:0;justify-content:start}}@media (min-width:768px){.footer__top-right{gap:100px}}.footer__top-menu-title{color:#fff;line-height:120%;font-weight:500;margin-bottom:10px;text-align:center}@media (min-width:576px){.footer__top-menu-title{margin-bottom:15px;-moz-text-align-last:left;text-align-last:left}}.footer__menu-item{margin-bottom:10px;text-align:center}@media (min-width:576px){.footer__menu-item{margin-bottom:15px;-moz-text-align-last:left;text-align-last:left}}.footer__menu-link{color:#fff;opacity:72%;font-size:14px;line-height:120%}.footer__menu-link.active{opacity:1}.footer__menu-link:hover{opacity:1;color:#fff}.footer__bottom{display:flex;flex-direction:column;align-items:center;padding:10px 0;border-top:1px solid rgba(255,255,255,.062745098)}@media (min-width:576px){.footer__bottom{padding:20px 0;flex-direction:row;justify-content:space-between}}.footer__bottom-text{color:#fff;font-size:12px}.footer__bottom-text a{opacity:62%;color:#fff}.footer__bottom-text a:hover{opacity:1}.section-text{background-color:#f7f1e7;border-radius:12px;padding:20px;margin-top:40px}@media (min-width:576px){.section-text{margin-top:60px}}.detail-wrapper{background-color:#f7f1e7}.arrow{width:48px;height:48px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center}.arrow svg{fill:#f43e72;flex:none;width:14px;height:14px}.detail{display:flex;gap:30px;flex-direction:column}@media (min-width:992px){.detail{flex-direction:row;gap:20px}}.detail__left{flex:none;display:flex;gap:10px;flex-direction:column;overflow:hidden;width:100%;max-width:700px}@media (min-width:992px){.detail__left{width:470px}}@media (min-width:1200px){.detail__left{width:670px}}.detail__images-mini{width:80px;height:80px;border-radius:20px;border:2px solid transparent;overflow:hidden;cursor:pointer}@media (min-width:576px){.detail__images-mini{width:120px;height:120px}}.detail__images-mini.swiper-slide-thumb-active{border:2px solid #f43e72}.detail__images-mini-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.detail__main{height:310px;width:100%;margin:0!important;border-radius:28px}@media (min-width:992px){.detail__main{height:460px}}@media (min-width:1200px){.detail__main{height:580px}}.detail__main-slide{display:flex;align-items:center;justify-content:center;cursor:pointer}.detail__main-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-height:100%;border-radius:28px}.detail__main-prev{position:absolute;bottom:20px;left:20px;z-index:2;rotate:180deg}.detail__main-next{position:absolute;bottom:20px;left:78px;z-index:2}.base-checkbox{display:flex;gap:10px;cursor:pointer;margin-bottom:15px}@media (min-width:576px){.base-checkbox{gap:20px}}.base-checkbox__input-wrapper{display:block;position:relative}.base-checkbox__input-input{position:absolute;opacity:0}.base-checkbox__input-decoration{display:block;position:relative;background-color:transparent;border:1px solid rgba(12,20,21,.1019607843);fill:transparent;width:16px;height:16px;border-radius:4px}.base-checkbox__input-decoration-icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:10px;height:10px;display:block}.base-checkbox__text{font-size:12px;line-height:100%}@media (min-width:576px){.base-checkbox__text{font-size:14px;line-height:120%}}.base-checkbox__title{margin-bottom:5px;font-size:16px;font-weight:500}@media (min-width:576px){.base-checkbox__title{font-size:18px}}.modal__checkbox{gap:10px;margin-bottom:0}@media (min-width:576px){.modal__checkbox{max-width:230px}}.modal__checkbox .base-checkbox__text_modal{font-size:10px;opacity:60%;line-height:100%}.modal__checkbox .base-checkbox__text_modal a{text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px;color:#0c1415}.modal__checkbox .base-checkbox__input-decoration{border:1px solid #f43e72}.modal__checkbox:hover .base-checkbox__input-decoration{border:2px solid #f43e72;background-color:#fff}.base-checkbox__input-input:checked+.base-checkbox__input-decoration{border:1px solid #f43e72;background-color:#f43e72;fill:#fff}.base-checkbox__input-input:checked+.base-checkbox__input-decoration .base-checkbox__input-decoration-icon{fill:#fff}.base-checkbox__input-input:checked .base-checkbox__input-decoration{background-color:#f43e72}.mb-5{margin-bottom:5px!important}.radio-label{position:relative;width:90px}.radio-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;height:auto}.radio-custom{position:absolute;top:0;left:0;height:100%;width:100%}.radio-input:checked+.radio-custom{background-color:#f43e72;color:#fff}.radio-input:checked+.radio-custom .detail__weight-item-bottom{opacity:1}.detail{padding-bottom:60px}@media (min-width:992px){.detail{padding-bottom:100px}}.detail__right{width:100%}.detail__review{margin-bottom:10px;display:flex;align-items:center;gap:10px;color:#0c1415}.detail__stars{position:relative;display:inline-block;font-size:20px;line-height:100%;letter-spacing:2px}.detail__stars-empty{color:rgba(244,62,114,.3019607843)}.detail__stars-filled{position:absolute;top:0;left:0;overflow:hidden;color:#f43e72;white-space:nowrap}.detail__review-rating{opacity:72%}.detail__review-count{opacity:72%;color:#0c1415}.detail__buy-count{opacity:72%}.detail__title{justify-content:start;font-size:28px;font-weight:500;line-height:130%;margin-bottom:20px}@media (min-width:576px){.detail__title{font-size:36px}}.detail__perview-text{margin-bottom:24px}@media (min-width:576px){.detail__perview-text{margin-bottom:40px}}.detail__title_sostav{margin-bottom:10px}@media (min-width:576px){.detail__title_sostav{margin-bottom:100px}}.detail__right-title{margin-bottom:10px;font-size:20px;font-weight:500;line-height:130%}@media (min-width:576px){.detail__right-title{font-size:24px}}.detail__weight{display:flex;gap:20px;margin-bottom:24px}@media (min-width:576px){.detail__weight{margin-bottom:40px}}.detail__weight-item{cursor:pointer;border-radius:16px;padding:6px 14px;background-color:#fff;transition:all .3s ease-out;color:#0c1415}@media (min-width:576px){.detail__weight-item{padding:8px 20px}}.detail__weight-item.active{background-color:#f43e72;color:#fff}.detail__weight-item.active .detail__weight-item-bottom{opacity:1}.detail__weight-item-top{font-weight:700;font-size:18px;line-height:100%;text-align:center;transition:all .3s ease-out}@media (min-width:576px){.detail__weight-item-top{font-size:20px}}.detail__weight-item-bottom{font-size:14px;opacity:60%}.detail__checkboxes{width:100%;margin-top:20px;margin-bottom:34px}@media (min-width:576px){.detail__checkboxes{margin-bottom:40px}}.detail__checkbox{width:100%;padding-bottom:15px}.detail__checkbox:not(:last-child){border-bottom:1px solid rgba(12,20,21,.1)}.detail__checkbox-right{display:flex;justify-content:space-between;gap:10px;width:100%}.detail__checkbox-right-price{font-size:12px;flex:none}@media (min-width:576px){.detail__checkbox-right-price{font-size:14px}}.detail__price-row{display:flex;align-items:center;justify-content:space-between;gap:15px;flex-wrap:wrap;-moz-column-gap:20px;column-gap:20px}@media (min-width:576px){.detail__price-row{gap:20px}}.detail__price{font-size:22px;font-weight:500;order:-1;margin-left:10px}@media (min-width:576px){.detail__price{font-size:28px;order:unset;margin-left:0}}.detail__btn{max-width:100%!important;height:42px}@media (min-width:576px){.detail__btn{max-width:280px!important;height:62px}}.detail__btn .btn__svg{width:10px;height:10px}@media (min-width:576px){.detail__btn .btn__svg{width:12px;height:12px}}.detail__title_kbgu{font-weight:500;font-size:18px;line-height:120%}@media (min-width:576px){.detail__title_kbgu{font-size:22px;margin-bottom:5px}}.detail__kbgu{width:100%;border-bottom:1px solid #c9c7c7;padding:12px 0;display:flex;align-items:center;justify-content:space-between;gap:15px}@media (min-width:576px){.detail__kbgu{padding:15px 0}}.detail__kbgu-name{opacity:60%;line-height:120%}.detail__kbgu-value{font-weight:700;line-height:120%}.count__change{background:#fff;outline:unset;border:none}.count-wrapper{background-color:#fff;padding:8px 25px;border-radius:100px;display:flex;align-items:center;justify-content:center;gap:5px;width:-moz-max-content;width:max-content;font-size:18px;font-weight:700}@media (min-width:576px){.count-wrapper{font-size:20px;padding:15px 26px;gap:8px}}.count{height:auto;width:40px;font-weight:700;text-align:center;padding:0}@media (min-width:576px){.count{width:50px}}.count__minus{font-weight:700;padding:1px 6px;color:#0c1415}.count__plus{font-weight:700;padding:1px 6px;color:#0c1415}.read-more__btn{cursor:pointer;margin-bottom:15px;visibility:hidden;color:#f43e72}@media (min-width:576px){.read-more__btn{margin-bottom:30px}}.reviews__slide{display:flex;background-color:#f7f1e7;border-radius:16px;padding:20px}.reviews__stars{margin-bottom:20px}.reviews__slide-text{margin-bottom:10px;line-height:120%;position:relative;overflow:hidden;transition:max-height .35s ease-out;max-height:150px;min-height:150px}@media (min-width:576px){.reviews__slide-text{margin-bottom:15px}}.reviews__slide-bottom{display:flex;gap:10px;align-items:center}.reviews__slide-name-wrapper{width:72px;height:72px;border-radius:16px;display:flex;align-items:center;justify-content:center;background-color:#fff;color:#f43e72;font-size:32px;font-weight:500;line-height:120%;overflow:hidden;text-transform:uppercase}.reviews__slide-name-wrapper-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.reviews__slide-name{font-weight:500;font-size:18px;line-height:120%}.reviews__slide-city{opacity:72%;line-height:110%}.reviews__slide-right{display:flex;flex-direction:column;justify-content:space-between;height:100%}@media (min-width:576px){.reviews__slide-right{width:auto}}.reviews__slide-left{width:100%;height:230px;overflow:hidden;border-radius:16px}@media (min-width:576px){.reviews__slide-left{max-width:150px}}@media (min-width:992px){.reviews__slide-left{height:150px}}.reviews__slide-left{flex:none}.reviews__slide-left-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.reviews-main .reviews__slide{flex-direction:column;justify-content:space-between;gap:30px}.reviews-main .reviews__slide .reviews__slide-bottom{height:72px}.reviews-detail .reviews__slide{gap:10px;flex-direction:column-reverse;justify-content:space-between}@media (min-width:992px){.reviews-detail .reviews__slide{flex-direction:row;gap:20px;justify-content:start}}.reviews-page{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:space-between;gap:10px}@media (min-width:768px){.reviews-page{gap:20px}}.reviews-page__item{flex-direction:column-reverse;flex:0 0 48%;gap:20px;align-items:center;padding:20px 10px 10px}@media (min-width:768px){.reviews-page__item{flex:0 0 48%;flex-direction:row;align-items:start;padding:20px}}.reviews-page__item .reviews__slide-left{height:100px}@media (min-width:768px){.reviews-page__item .reviews__slide-left{height:150px}}.reviews-yandex{display:flex;align-items:center;gap:15px}.reviews-yandex__link{color:#f43e72}.reviews-yandex__link:hover{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}.reviews-yandex__img{height:35px}.file{position:relative;border-radius:100px;width:100%;padding:2px 2px 2px 20px;height:40px;overflow:hidden;cursor:pointer;display:flex;justify-content:space-between;gap:10px;align-items:center;background-color:#fff}@media (min-width:576px){.file{height:52px;max-width:310px}}.file__foto{opacity:0;position:absolute;top:0;left:0;z-index:1;padding:10px 18px;width:100%;height:60px}.file__name{opacity:72%;cursor:pointer}.file__icon{width:36px;height:36px;border-radius:50%;background-color:#f43e72;display:flex;align-items:center;justify-content:center}@media (min-width:576px){.file__icon{width:48px;height:48px}}.file__icon-svg{fill:#fff;width:18px;height:18px}@media (min-width:576px){.file__icon-svg{width:20px;height:20px}}
/*!
 * Bootstrap Reboot v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#FF6494;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:rgb(5.2, 44, 101.2);--bs-secondary-text-emphasis:rgb(43.2, 46.8, 50);--bs-success-text-emphasis:rgb(10, 54, 33.6);--bs-info-text-emphasis:rgb(5.2, 80.8, 96);--bs-warning-text-emphasis:rgb(102, 77.2, 2.8);--bs-danger-text-emphasis:rgb(88, 21.2, 27.6);--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:rgb(206.6, 226, 254.6);--bs-secondary-bg-subtle:rgb(225.6, 227.4, 229);--bs-success-bg-subtle:rgb(209, 231, 220.8);--bs-info-bg-subtle:rgb(206.6, 244.4, 252);--bs-warning-bg-subtle:rgb(255, 242.6, 205.4);--bs-danger-bg-subtle:rgb(248, 214.6, 217.8);--bs-light-bg-subtle:rgb(251.5, 252, 252.5);--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:rgb(158.2, 197, 254.2);--bs-secondary-border-subtle:rgb(196.2, 199.8, 203);--bs-success-border-subtle:rgb(163, 207, 186.6);--bs-info-border-subtle:rgb(158.2, 233.8, 249);--bs-warning-border-subtle:rgb(255, 230.2, 155.8);--bs-danger-border-subtle:rgb(241, 174.2, 180.6);--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:rgb(10.4, 88, 202.4);--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#FF6494;--bs-highlight-color:#212529;--bs-highlight-bg:rgb(255, 242.6, 205.4);--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222,226,230;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222,226,230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222,226,230;--bs-tertiary-bg:rgb(42.5, 47.5, 52.5);--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:rgb(109.8, 168, 253.8);--bs-secondary-text-emphasis:rgb(166.8, 172.2, 177);--bs-success-text-emphasis:rgb(117, 183, 152.4);--bs-info-text-emphasis:rgb(109.8, 223.2, 246);--bs-warning-text-emphasis:rgb(255, 217.8, 106.2);--bs-danger-text-emphasis:rgb(234, 133.8, 143.4);--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:rgb(2.6, 22, 50.6);--bs-secondary-bg-subtle:rgb(21.6, 23.4, 25);--bs-success-bg-subtle:rgb(5, 27, 16.8);--bs-info-bg-subtle:rgb(2.6, 40.4, 48);--bs-warning-bg-subtle:rgb(51, 38.6, 1.4);--bs-danger-bg-subtle:rgb(44, 10.6, 13.8);--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:rgb(7.8, 66, 151.8);--bs-secondary-border-subtle:rgb(64.8, 70.2, 75);--bs-success-border-subtle:rgb(15, 81, 50.4);--bs-info-border-subtle:rgb(7.8, 121.2, 144);--bs-warning-border-subtle:rgb(153, 115.8, 4.2);--bs-danger-border-subtle:rgb(132, 31.8, 41.4);--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:rgb(109.8, 168, 253.8);--bs-link-hover-color:rgb(138.84, 185.4, 254.04);--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:rgb(255, 162, 190.8);--bs-highlight-color:#dee2e6;--bs-highlight-bg:rgb(102, 77.2, 2.8);--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:rgb(117, 183, 152.4);--bs-form-valid-border-color:rgb(117, 183, 152.4);--bs-form-invalid-color:rgb(234, 133.8, 143.4);--bs-form-invalid-border-color:rgb(234, 133.8, 143.4)}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;line-height:inherit;font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button{cursor:pointer;filter:grayscale(1)}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}@font-face{font-family:NunitoSans;font-style:normal;font-weight:400;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Regular.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:500;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Medium.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:600;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-SemiBold.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}@font-face{font-family:NunitoSans;font-style:normal;font-weight:700;font-display:swap;src:url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.eot);src:url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.eot?#iefix) format("embedded-opentype"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.woff2) format("woff2"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.woff) format("woff"),url(/local/templates/busheri/css/../fonts/NunitoSans-Bold.ttf) format("truetype");unicode-range:U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD}::-moz-placeholder{color:#0c1415;opacity:72%}::placeholder{color:#0c1415;opacity:72%}::-moz-selection{background-color:#ff6494;color:#fff}::selection{background-color:#ff6494;color:#fff}p{margin-bottom:0}ul{margin:0;padding:0;list-style:none}a{text-decoration:none;transition:all .3s ease-out}a:hover{color:#f43e72}input{background-color:#fff;border-radius:100px;width:100%;height:40px;border:1px solid transparent;padding:15px 20px;color:#0c1415;line-height:100%;font-size:16px}input:focus-visible{outline:0;border:1px solid #f43e72}@media (min-width:576px){input{height:52px;max-width:310px}}textarea{position:relative;background-color:#fff;border-radius:16px;width:100%;height:100px;border:1px solid transparent;padding:20px;color:#0c1415;line-height:100%;font-size:16px}textarea:focus-visible{outline:0;border:1px solid #f43e72}textarea::-moz-placeholder{position:absolute;bottom:20px;left:20px}textarea::placeholder{position:absolute;bottom:20px;left:20px}@media (min-width:576px){textarea{height:156px}}html{scroll-behavior:smooth;scroll-padding-top:90px}body{font-family:NunitoSans,sans-serif;font-size:14px;min-width:360px;position:relative;line-height:130%;overflow-x:hidden;color:#0c1415;display:flex;flex-direction:column;min-height:100vh}@media (min-width:576px){body{font-size:16px}}.noscroll{overflow:hidden}.response{position:relative;z-index:2;width:100%;margin-top:30px;color:#fff;padding:12px;font-size:14px;text-align:center;justify-content:center;animation:fade .25s ease;border-radius:48px}@media (min-width:576px){.response{font-size:18px;padding:18px}}.success{background-color:#3fb53f}.error{background-color:#da4c4c}img{max-width:100%;height:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.video{position:relative;text-decoration:none;border-radius:6px;padding-bottom:56.25%;height:0;overflow:hidden;margin-bottom:30px}.video iframe,.video video{position:absolute;top:0;left:0;width:100%;height:100%;border-width:0;outline-width:0}.table-adaptive{overflow-x:auto}.lg-backdrop.in{opacity:.55}.lg-outer .lg-thumb-outer,.lg-outer .lg-toggle-thumb{background-color:rgba(0,0,0,.45)}.breadcrumb-wrapper{padding:5px 0 5px;background-color:#f7f1e7!important;margin-bottom:20px}@media (min-width:576px){.breadcrumb-wrapper{padding:5px 0 10px;margin-bottom:60px}}.breadcrumb-wrapper_beige{padding:5px 0 40px;background-color:#f7f1e7!important}@media (min-width:576px){.breadcrumb-wrapper_beige{padding:5px 0 86px}}.breadcrumb{margin:0;list-style-type:none;display:flex;font-size:14px;line-height:19px;position:relative;z-index:1;padding:0;overflow-x:auto;padding-bottom:10px;position:relative}@media (min-width:576px){.breadcrumb{font-size:16px;overflow:hidden;flex-wrap:wrap;padding-bottom:0}}.breadcrumb__item{flex:0 0 auto}@media (min-width:576px){.breadcrumb__item{flex:initial}}.breadcrumb__item:last-child .breadcrumb__link:after{display:none}.breadcrumb__link{color:#0c1415;opacity:62%}.breadcrumb__link:after{content:"/";margin:0 5px}.breadcrumb__link:hover{text-decoration:none;opacity:1;color:#0c1415}.breadcrumb__link:hover:after{color:#0c1415}.breadcrumb__link.disabled{opacity:1}.pagination{list-style-type:none;padding:0;display:flex;margin:0;margin-top:30px}.pagination__item{margin-right:8px;flex:0 0 33px;width:33px;height:33px}@media (min-width:576px){.pagination__item{flex:0 0 40px;width:40px;height:40px}}.pagination__item_active .pagination__link{border-color:#ff6494;background-color:#ff6494;color:#fff}.pagination__link{background-color:transparent;font-size:16px;line-height:25px;height:100%;width:100%;color:#000;display:flex;align-items:center;justify-content:center;text-decoration:none;border-radius:50%;transition:border-color .25s ease,color .25s ease,background-color .25s ease;border-color:#000;border:1px solid #ff6494;color:#000}.pagination__link:hover{text-decoration:none;border-color:#ff6494;color:#fff;background-color:#ff6494}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.content{margin-bottom:30px}.content_m0{margin:0}.content iframe{width:100%;margin:0 auto!important}.content p{font-size:16px;font-weight:400;line-height:24px;color:#0c1415;margin:0}.content p:not(:last-child){margin-bottom:10px}@media (min-width:576px){.content p:not(:last-child){margin-bottom:24px}}.content b,.content strong{font-weight:700;font-size:17px;line-height:24px;margin-bottom:15px}.content a{color:#ff6494;text-decoration:underline}.content a:hover{text-decoration:none}.content img{margin-bottom:30px;border-radius:15px}.content h2{font-size:20px;line-height:26px;color:#0c1415;font-weight:500;margin-bottom:20px}@media (min-width:576px){.content h2{font-size:24px;line-height:30px}}.content h3{font-size:19px;line-height:25px;color:#0c1415;font-weight:500;margin-top:40px;margin-bottom:20px}.content ol{padding:0;padding-left:17px;margin-left:10px}.content ol li{margin-bottom:10px;padding-left:8px}.content ol li::marker{color:#ff6494;font-weight:700}.content ul{list-style-type:none;margin-left:10px;padding:0;margin-bottom:15px}@media (min-width:576px){.content ul{margin-bottom:25px}}.content ul li{font-size:16px;line-height:24px;font-weight:300;margin-bottom:10px;position:relative;padding-left:25px}.content ul li:before{content:"";position:absolute;left:0;height:8px;width:8px;flex:0 0 8px;border-radius:50%;background-color:#ff6494;box-shadow:0 0 20px rgba(0,0,0,.25);display:inline-block;margin-right:15px;margin-top:7px}.content table{width:100%;margin-bottom:20px;border:1px solid #0c1415;border-collapse:collapse}.content table th{font-weight:700;padding:5px;background:#0c1415;border:1px solid #0c1415}.content table td{border:1px solid #0c1415;padding:5px;font-size:16px;line-height:150%}.section{padding:30px 0}@media (min-width:576px){.section{padding:70px 0}}@media (min-width:1200px){.section{padding:80px 0}}.section_border-top{border-top:1px solid rgba(48,48,49,.5)}.section_yellow{background-color:#ffc107;padding:30px 0}@media (min-width:576px){.section_yellow{padding:70px 0}}@media (min-width:1200px){.section_yellow{padding:120px 0}}.section_gray{background-color:#fafafa}.mb-100{margin-bottom:60px}@media (min-width:576px){.mb-100{margin-bottom:100px}}.btn{position:relative;z-index:2;color:#fff;background-color:#f43e72;max-width:270px;width:100%;display:flex;align-items:center;justify-content:space-between;padding:5px 30px;border-radius:48px;border:1px solid #f43e72;line-height:100%;transition:all .3s ease-out;cursor:pointer;text-decoration:none;height:38px;font-size:16px;flex:none;gap:16px;font-weight:700}@media (min-width:576px){.btn{height:62px;font-size:18px;gap:30px}}.btn:hover{background-color:transparent;color:#f43e72}.btn:hover .btn__svg{stroke:#f43e72}.btn__svg{fill:transparent;stroke:#fff;width:8px;height:8px}@media (min-width:576px){.btn__svg{width:12px;height:12px}}.btn_white{color:#f43e72;background-color:#fff}.btn_white .btn__svg{stroke:#f43e72}.btn_white:hover{border:1px solid #fff;background-color:#f43e72;color:#fff}.btn_white:hover .btn__svg{stroke:#fff}.container{padding:0 15px;margin:0 auto;width:100%}@media (min-width:1200px){.container{max-width:1390px}}@media (min-width:1200px){.container_text{max-width:811px}}.title-wrapper{margin-bottom:24px;position:relative;z-index:2}@media (min-width:576px){.title-wrapper{margin-bottom:40px}}.title-wrapper_reviews{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:center;margin-bottom:24px}@media (min-width:576px){.title-wrapper_reviews{margin-bottom:40px;justify-content:space-between}}.title-wrapper_reviews .title{text-align:center}@media (min-width:576px){.title-wrapper_reviews .title{-moz-text-align-last:left;text-align-last:left;margin-bottom:10px}}.title{font-weight:700;font-size:26px;line-height:110%;margin-bottom:0}@media (min-width:576px){.title{font-size:38px}}@media (min-width:1200px){.title{font-size:42px}}.title__row{display:flex;align-items:center;justify-content:center;gap:8px;position:relative;z-index:2;margin-bottom:18px}@media (min-width:576px){.title__row{margin-bottom:20px;gap:10px}}.title__row-start{justify-content:start}.title__icon{margin-left:5px;margin-bottom:3px}.title__no-wrap{white-space:nowrap}.title_fff{color:#fff}.subtitle{color:#000;text-align:center}.header{position:fixed;top:0;width:100%;padding:20px 0;z-index:100;background:#f7f1e7}@media (min-width:992px){.header_main{background:linear-gradient(to right,#f7f1e7 62%,#ff6494 38%)}}@media (min-width:1200px){.header_main{background:linear-gradient(to right,#f7f1e7 69%,#ff6494 31%)}}@media (min-width:1440px){.header_main{background:linear-gradient(to right,#f7f1e7 64%,#ff6494 36%)}}@media (min-width:1600px){.header_main{background:linear-gradient(to right,#f7f1e7 63%,#ff6494 37%)}}.header_inner .contact-us__text{color:#0c1415}.header_inner .contact-us__tel{color:#0c1415}.header_inner .contact-us__tel:hover{color:#f43e72}@media (min-width:992px){.header_inner .cart__icon{stroke:#0c1415}}@media (min-width:992px){.header_inner .cart__count{background-color:#f43e72;color:#fff}}@media (min-width:992px){.header_inner .social__svg{fill:#0c1415}.header_inner .social__svg:hover{fill:#f43e72}}.header_inner .header__right-line{background-color:#0c1415}.header__container{display:flex;align-items:center;justify-content:space-between;gap:20px}.header__logo{width:200px}@media (min-width:576px){.header__logo{width:auto}}@media (min-width:1200px){.header__logo{margin-right:20px}}.header__right{align-items:center;gap:12px}@media (min-width:1200px){.header__right{gap:24px}}.header__right_desk{display:none}@media (min-width:992px){.header__right_desk{display:flex}}.header__right_mob{display:flex}@media (min-width:992px){.header__right_mob{display:none}}.header__right-line{height:30px;width:1px;background-color:#fff;margin-left:2px}.menu{display:none;align-items:center;gap:10px}@media (min-width:992px){.menu{display:flex}}@media (min-width:1200px){.menu{gap:30px}}.menu__link{line-height:100%;font-weight:500;color:#0c1415}.menu__link.active{color:#f43e72}.contact-us{display:none}@media (min-width:768px){.contact-us{display:block}}.contact-us__text{line-height:100%;font-size:12px;color:#fff}.contact-us__tel{color:#fff;line-height:100%;font-weight:700;text-align:right}.contact-us__tel:hover{color:#f7f1e7}.social__link{background-color:#ff6494;border-radius:50%;padding:8px;line-height:0}@media (min-width:992px){.social__link{padding:0;background-color:transparent}}.social__svg{width:13px;height:13px;fill:#fff;transition:all .3s ease-out}.social__svg:hover{fill:#f7f1e7}@media (min-width:992px){.social__svg{width:24px;height:24px}}.cart{background-color:#ff6494;border-radius:50%;position:relative;padding:7.5px;line-height:0}@media (min-width:992px){.cart{background-color:transparent;padding:0}}.cart__icon{width:13px;height:13px;fill:transparent;stroke:#fff}@media (min-width:992px){.cart__icon{width:24px;height:24px}}.cart__count{background-color:#fff;border-radius:50%;padding:1.5px 3px;line-height:100%;font-weight:700;font-size:8px;color:#f43e72;text-align:center;position:absolute;top:3px;right:3px}@media (min-width:992px){.cart__count{top:-8px;right:-8px;padding:4px 6px;font-size:12px}}.burger{width:30px;height:30px;background-color:#f43e72;padding:6px;border-radius:50%;line-height:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;position:relative;z-index:100}.burger__line{width:100%;height:2px;border-radius:40px;background-color:#fff;display:block}.burger::after{content:"";width:100%;height:2px;background-color:#fff;display:block;transition:.5s;border-radius:40px}.burger::before{content:"";width:100%;height:2px;background-color:#fff;display:block;transition:.5s;border-radius:40px}.burger.active .burger__line{opacity:0}.burger.active::after{rotate:-45deg;position:relative;bottom:30%}.burger.active::before{rotate:45deg;position:relative;top:27%}.popup-wrapper{width:100%;height:200%;background-color:rgba(244,62,114,.3);position:fixed;top:0;left:0;opacity:0;z-index:100;display:none}.popup-wrapper.open{opacity:1;display:block}.popup{pointer-events:auto;position:fixed;top:0;left:0;transform:translateX(-100%);width:80%;max-width:400px;min-width:300px;height:100%;overflow-y:auto;background-color:#fff;z-index:20;display:flex;transition:transform .5s ease-out;flex-direction:column;gap:25px;padding:40px 15px 50px}@media (min-width:576px){.popup{top:0;padding:70px 20px}}.popup.open{transform:translateX(0)}.popup.open .header__menu{display:flex;flex-direction:column;align-items:start;gap:25px}.popup.open .menu__link{color:#0c1415;font-weight:500;font-size:14px}.main{padding-top:70px;flex:1}.main-page .breadcrumb-wrapper{background-color:transparent!important}.block1{position:relative;height:560px;padding-top:50px;background:linear-gradient(to bottom,#f7f1e7 68%,#ff6494 32%);margin-bottom:90px}@media (min-width:576px){.block1{margin-bottom:0;height:88vh}}@media (min-width:992px){.block1{display:flex;align-items:center;background:linear-gradient(to right,#f7f1e7 62%,#ff6494 38%)}}@media (min-width:1200px){.block1{background:linear-gradient(to right,#f7f1e7 69%,#ff6494 31%)}}@media (min-width:1440px){.block1{background:linear-gradient(to right,#f7f1e7 64%,#ff6494 36%)}}@media (min-width:1600px){.block1{background:linear-gradient(to right,#f7f1e7 63%,#ff6494 37%)}}.block1__pirog_mob{display:block;position:absolute;right:0;top:54%;transform:translateY(-50%)}@media (min-width:992px){.block1__pirog_mob{display:none}}.block1__pirog{position:absolute;display:none}@media (min-width:992px){.block1__pirog{left:calc(62% - 150px);width:400px;top:100px;display:block}}@media (min-width:1200px){.block1__pirog{left:calc(69% - 170px);width:450px;top:100px}}@media (min-width:1440px){.block1__pirog{left:calc(64% - 200px);width:500px}}@media (min-width:1600px){.block1__pirog{top:100px;left:calc(63% - 260px);width:570px}}.block1__content-inner{backdrop-filter:blur(5px);background:rgba(255,255,255,.1019607843);border:1px solid;padding:10px;border-radius:16px;max-width:270px;border-image-source:linear-gradient(227.9deg,rgba(255,255,255,.7) 3.32%,rgba(153,153,153,0) 112.11%)}@media (min-width:992px){.block1__content-inner{backdrop-filter:unset;background:unset;border:none;padding:10px;border-radius:0;max-width:unset}}.block1__content{position:relative;z-index:1}.block1__subtitle{font-size:14px}.block1__title{font-weight:700;line-height:100%;font-size:28px;max-width:260px;margin:10px 0 20px}@media (min-width:576px){.block1__title{font-size:40px;max-width:550px;margin:10px 0 25px}}@media (min-width:992px){.block1__title{font-size:62px;max-width:540px}}@media (min-width:1200px){.block1__title{max-width:587px}}.block1__text{max-width:470px;margin-bottom:20px}@media (min-width:576px){.block1__text{margin-bottom:50px}}@media (min-width:1200px){.block1__text{max-width:670px}}.block1__btn{max-width:160}@media (min-width:576px){.block1__btn{max-width:260}}.block1__preim{backdrop-filter:blur(30px);background:rgba(255,255,255,.1019607843);border-radius:16px;padding:20px 23px;display:flex;gap:12px;margin-top:72px;flex-wrap:nowrap}@media (min-width:992px){.block1__preim{margin-top:0;position:absolute;left:calc(63% - 30px);bottom:85px}}@media (min-width:1200px){.block1__preim{left:calc(70% - 30px);bottom:10px}}@media (min-width:1440px){.block1__preim{left:calc(67% - 30px);bottom:-30px}}@media (min-width:1600px){.block1__preim{left:calc(68.5% - 30px);max-width:440px;width:100%;bottom:-35px}}.block1__preim-icon{fill:#fff;width:23px;height:23px}.block1__preim-title{font-size:16px;font-weight:700;margin-bottom:10px;color:#fff}@media (min-width:576px){.block1__preim-title{font-size:20px}}.block1__preim-text{color:#fff}.line{position:absolute;inset-inline:0;bottom:-55px;overflow:hidden;padding:22px 0}.line__wrapper{overflow:hidden;background:#f43e72;transform:rotate(1.5deg)}.line__track{display:flex;width:-moz-max-content;width:max-content;animation:line 40s linear infinite;padding:12px 0}.line__content{display:flex;align-items:center;gap:40px;margin-right:40px}.line__item{white-space:nowrap}.line__item img{display:block;height:40px}.line__text{color:#fff;font-size:24px;font-weight:400}@keyframes line{to{transform:translateX(-50%)}}@media (prefers-reduced-motion:reduce){.line__track{animation:none}}@media (max-width:768px){.line{padding:6px 0}.line__wrapper{transform:rotate(3deg)}.line__content{gap:30px}.line__item img{height:32px}.line__text{font-size:20px}}@media (max-width:576px){.line__wrapper{transform:rotate(3.1deg)}.line__content{gap:24px;margin-right:24px}.line{bottom:-40px;padding:14px 0}}.terms{display:flex;flex-wrap:wrap;gap:20px}.terms__item{height:auto!important;color:#0c1415;text-decoration:none}.terms__item:hover{color:#0c1415;text-decoration:none}.terms__item:hover .terms__item-arrow{opacity:1}.terms__item-img{border-radius:16px;height:210px;width:100%;-o-object-fit:cover;object-fit:cover}@media (min-width:576px){.terms__item-img{height:420px}}.terms__item-content{border-radius:16px;padding:10px;background-color:#f7f1e7;height:calc(100% - 210px)}@media (min-width:576px){.terms__item-content{height:calc(100% - 420px);padding:20px}}.terms__item-count{opacity:60%;line-height:120%;margin-bottom:5px}@media (min-width:576px){.terms__item-count{margin-bottom:10px}}.terms__item-bottom{display:flex;justify-content:space-between;gap:10px}.terms__item-title{font-weight:700;font-size:16px;line-height:120%;margin-bottom:0}@media (min-width:576px){.terms__item-title{font-size:22px}}.terms__item-arrow{fill:transparent;stroke:#0c1415;width:17px;height:17px;opacity:0;transition:all .3s ease-out}.hit-section{position:relative;padding-top:50px;overflow:hidden}@media (min-width:576px){.hit-section{padding-top:100px}}.ellipse{position:absolute;height:232px;width:130%;border-radius:50%;top:0;left:50%;transform:translateX(-50%);background-color:#f7f1e7}@media (min-width:576px){.ellipse{height:432px;width:120%}}.hit{background-color:#f7f1e7;padding-bottom:90px}.hit .product{border:none}.tabs__scroll::-webkit-scrollbar{display:none}.tabs{display:flex;align-items:center}@media (min-width:576px){.tabs{justify-content:center}}.tabs__scroll{overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none}.tabs__container{overflow:hidden;position:relative;margin-top:20px}.tab{cursor:pointer;position:relative;padding:10px 15px;text-align:center;width:-moz-max-content;width:max-content;display:flex;flex:none;justify-content:center;align-items:center;transition:all .3s ease-out;border-radius:100px;line-height:100%;font-size:16px;font-weight:700}@media (min-width:576px){.tab{padding:15px 30px;font-size:18px}}.tab.active{color:#fff;background-color:#f43e72}.tab__content{visibility:hidden;width:100%;opacity:0;transition:all .5s ease-out;position:absolute;top:0;left:0}.tab__content.active{transition-delay:.2s;visibility:visible;opacity:1;position:static}.swiper-scrollbar-horizontal{margin-top:30px!important;height:3px!important;background:#c9c7c7!important}.swiper-scrollbar-drag{background:#f43e72!important}.products-all{display:flex;gap:20px;flex-wrap:wrap;row-gap:40px}@media (min-width:768px){.products-all{row-gap:60px}}.products-all .product-item-container{flex:0 0 calc(50% - 10px)}@media (min-width:768px){.products-all .product-item-container{flex:0 0 calc(33% - 13px)}}@media (min-width:1200px){.products-all .product-item-container{flex:0 0 calc(25% - 15px)}}.products-all .product__img{height:180px}@media (min-width:576px){.products-all .product__img{height:286px}}.product{border-bottom:2px solid #c9c7c7;padding-bottom:19px;position:relative;color:#0c1415;transition:all .3s ease-out}.product:hover{text-decoration:none;color:#0c1415}.product:hover .product__cart{background-color:#f43e72}.product:hover .product__title{color:#f43e72}.product:hover .product__arrow-svg{rotate:45deg}.product__img{height:215px;width:100%;-o-object-fit:cover;object-fit:cover;border-radius:16px}@media (min-width:576px){.product__img{height:286px}}.product__hit{color:#f43e72;padding:5px 15px;border-radius:100px;font-size:14px;font-weight:700;position:absolute;top:10px;left:10px;background-color:#fff}.product__title{font-size:18px;font-weight:500;line-height:120%;margin:10px 0 7px;transition:color .3s ease-out;overflow:hidden;text-overflow:ellipsis;display:-moz-box;display:-webkit-box;min-height:43px;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;box-orient:vertical}@media (min-width:576px){.product__title{font-size:22px;margin:20px 0 15px;min-height:52px}}.product__desc{margin-bottom:10px;overflow:hidden;text-overflow:ellipsis;display:-moz-box;display:-webkit-box;min-height:38px;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-clamp:2;box-orient:vertical}@media (min-width:576px){.product__desc{margin-bottom:21px}}.product__desc b{font-weight:400!important}.product__bottom{display:flex;align-items:center;justify-content:space-between;gap:4px}.product__price{font-weight:700;font-size:20px}@media (min-width:576px){.product__price{font-size:32px}}.product__icons{display:flex;align-items:center;gap:10px}.product__icon{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center}@media (min-width:576px){.product__icon{width:40px;height:40px}}.product__cart{background-color:#ff6494;transition:background-color .3s ease-out;cursor:pointer}.product__cart-svg{width:18px;height:18px;fill:transparent;stroke:#fff}.product__arrow{border:1px solid #f43e72}.product__arrow-svg{transition:rotate .3s ease-out;fill:transparent;stroke:#f43e72;width:14px;height:14px}@media (min-width:576px){.product__arrow-svg{width:18px;height:18px}}.product a{color:#0c1415;display:block}.nasledstvo{background-color:#f7f1e7;padding-bottom:100px}.nasledstvo .title__row{justify-content:start}.nasledstvo__content{display:flex;gap:40px;flex-direction:column}@media (min-width:768px){.nasledstvo__content{flex-direction:row;gap:25px}}.nasledstvo__right{max-width:670px;width:100%}.nasledstvo__text{margin:20px 0 35px}@media (min-width:576px){.nasledstvo__text{margin:20px 0 77px}}.nasledstvo__items{display:flex;justify-content:space-between;flex-wrap:wrap;width:100%;-moz-column-gap:20px;column-gap:20px;row-gap:32px}.nasledstvo__item{display:flex;gap:20px;max-width:320px}.nasledstvo__icon{flex:none;width:42px;height:42px}.nasledstvo__item-title{margin-bottom:8px;font-weight:500;font-size:18px;line-height:120%}@media (min-width:576px){.nasledstvo__item-title{margin-bottom:15px;font-size:22px}}.nasledstvo__images{position:relative;width:100%;height:480px;max-width:690px;margin:0 auto}@media (min-width:576px){.nasledstvo__images{height:615px}}@media (min-width:768px){.nasledstvo__images{margin:0}}.nasledstvo__images-img1{position:absolute;top:0;right:0;-o-object-fit:cover;object-fit:cover;border-radius:16px;width:235px;height:300px}@media (min-width:576px){.nasledstvo__images-img1{width:440px;height:530px}}@media (min-width:768px){.nasledstvo__images-img1{width:310px;height:400px}}@media (min-width:1200px){.nasledstvo__images-img1{width:440px;height:530px}}.nasledstvo__images-img2{position:absolute;bottom:0;left:0;top:unset;-o-object-fit:cover;object-fit:cover;border-radius:16px;width:270px;height:265px}@media (min-width:576px){.nasledstvo__images-img2{width:310px;height:380px}}@media (min-width:768px){.nasledstvo__images-img2{width:270px;height:320px}}@media (min-width:992px){.nasledstvo__images-img2{width:420px;height:315px}}.step{display:flex;align-items:center;row-gap:20px;-moz-column-gap:3px;column-gap:3px;justify-content:space-between;flex-wrap:wrap;padding:20px 15px;border-radius:16px;background-color:#fff;border:1px solid #c9c7c7;transition:all .3s ease-out;color:#0c1415}.step:not(:last-child){margin-bottom:5px}.step_hover:hover{color:#0c1415;background-color:#f7f1e7;border:1px solid #f7f1e7}.step_hover:hover .step__arrow{background-color:#f43e72}.step_hover:hover .step__arrow-svg{stroke:#fff}@media (min-width:768px){.step{flex-wrap:nowrap;gap:20px;padding:30px}}.step__num{font-size:14px;opacity:72%}.step__title{width:100%;max-width:215px;font-weight:500;font-size:18px;text-align:center}@media (min-width:576px){.step__title{font-size:22px;max-width:290px;text-align:left}}.step__text{order:1}@media (min-width:768px){.step__text{order:unset;width:386px}}.step__arrow{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border-radius:50%;background-color:#f7f1e7;transition:all .3s ease-out}.step__arrow-svg{transition:all .3s ease-out;width:14px;height:14px;fill:transparent;stroke:#f43e72}.step__arrow_div{width:24px;height:24px}.addresses-section{overflow:hidden;position:relative;padding:60px 0;background-color:#f7f1e7}@media (min-width:576px){.addresses-section{padding:86px 0;height:863px}}.addresses-section .subtitle{max-width:280px;margin:0 auto}@media (min-width:992px){.addresses-section .subtitle{max-width:unset}}.addresses{margin:0 auto;width:-moz-max-content;width:max-content}.addresses__img{position:absolute;width:117px;height:110px;-o-object-fit:cover;object-fit:cover;border-radius:16px}@media (min-width:768px){.addresses__img{width:180px;height:187px}}@media (min-width:992px){.addresses__img{width:286px;height:280px}}.addresses__img_1{top:192px;left:-47px}@media (min-width:576px){.addresses__img_1{top:86px;left:15px}}@media (min-width:1440px){.addresses__img_1{top:86px;left:calc((100vw - 1360px)/ 2 - 15px)}}.addresses__img_2{top:390px;left:-47px}@media (min-width:576px){.addresses__img_2{top:460px;left:50px}}@media (min-width:1440px){.addresses__img_2{top:460px;left:calc((100vw - 1360px)/ 2 + 100px)}}.addresses__img_3{top:150px;right:-47px}@media (min-width:576px){.addresses__img_3{top:124px;right:15px}}@media (min-width:1440px){.addresses__img_3{top:124px;right:calc((100vw - 1360px)/ 2 - 15px)}}.addresses__img_4{top:330px;right:-47px}@media (min-width:576px){.addresses__img_4{top:497px;right:50px}}@media (min-width:1440px){.addresses__img_4{top:497px;right:calc((100vw - 1360px)/ 2 + 100px)}}.addresses__item{border-bottom:1px solid #c9c7c7;padding-bottom:20px}.addresses__item:not(:last-child){margin-bottom:18px}@media (min-width:576px){.addresses__item:not(:last-child){margin-bottom:80px}}.addresses__item-city{text-align:center;font-size:18px;font-weight:500}@media (min-width:576px){.addresses__item-city{font-size:22px}}.addresses__item-address{text-align:center;margin-top:16px;margin-bottom:10px}.addresses__item-info{text-align:center}.addresses__item-tel{color:#0c1415;display:block}@media (min-width:576px){.addresses__item-tel{display:inline}}.discount{padding:100px 0;background-position:center;background-repeat:no-repeat;background-size:cover}@media (min-width:576px){.discount{padding:184px 0}}.discount .title{color:#fff;text-align:center}.discount .subtitle{color:#fff}.discount__btn{margin:0 auto}.footer{background-color:#290013;order:1}.footer__top{display:flex;flex-direction:column;padding:28px 0 5px}@media (min-width:576px){.footer__top{padding:40px 0;flex-direction:row;justify-content:space-between}}.footer__top-left{display:flex;flex-direction:column;align-items:center}@media (min-width:576px){.footer__top-left{align-items:start}}.footer__top-left-text{color:#fff;opacity:40%;margin-top:10px;max-width:277px;font-size:12px;line-height:120%;text-align:center}@media (min-width:576px){.footer__top-left-text{text-align:left}}.footer__top-right{display:flex;-moz-column-gap:50px;column-gap:50px;row-gap:30px;flex-wrap:wrap;margin-top:20px;justify-content:center}@media (min-width:576px){.footer__top-right{margin-top:0;justify-content:start}}@media (min-width:768px){.footer__top-right{gap:100px}}.footer__top-menu-title{color:#fff;line-height:120%;font-weight:500;margin-bottom:10px;text-align:center}@media (min-width:576px){.footer__top-menu-title{margin-bottom:15px;-moz-text-align-last:left;text-align-last:left}}.footer__menu-item{margin-bottom:10px;text-align:center}@media (min-width:576px){.footer__menu-item{margin-bottom:15px;-moz-text-align-last:left;text-align-last:left}}.footer__menu-link{color:#fff;opacity:72%;font-size:14px;line-height:120%}.footer__menu-link.active{opacity:1}.footer__menu-link:hover{opacity:1;color:#fff}.footer__bottom{display:flex;flex-direction:column;align-items:center;padding:10px 0;border-top:1px solid rgba(255,255,255,.062745098)}@media (min-width:576px){.footer__bottom{padding:20px 0;flex-direction:row;justify-content:space-between}}.footer__bottom-text{color:#fff;font-size:12px}.footer__bottom-text a{opacity:62%;color:#fff}.footer__bottom-text a:hover{opacity:1}.section-text{background-color:#f7f1e7;border-radius:12px;padding:20px;margin-top:40px}@media (min-width:576px){.section-text{margin-top:60px}}.detail-wrapper{background-color:#f7f1e7}.arrow{width:48px;height:48px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center}.arrow svg{fill:#f43e72;flex:none;width:14px;height:14px}.detail{display:flex;gap:30px;flex-direction:column}@media (min-width:992px){.detail{flex-direction:row;gap:20px}}.detail__left{flex:none;display:flex;gap:10px;flex-direction:column;overflow:hidden;width:100%;max-width:700px}@media (min-width:992px){.detail__left{width:470px}}@media (min-width:1200px){.detail__left{width:670px}}.detail__images-mini{width:80px;height:80px;border-radius:20px;border:2px solid transparent;overflow:hidden;cursor:pointer}@media (min-width:576px){.detail__images-mini{width:120px;height:120px}}.detail__images-mini.swiper-slide-thumb-active{border:2px solid #f43e72}.detail__images-mini-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.detail__main{height:310px;width:100%;margin:0!important;border-radius:28px}@media (min-width:992px){.detail__main{height:460px}}@media (min-width:1200px){.detail__main{height:580px}}.detail__main-slide{display:flex;align-items:center;justify-content:center;cursor:pointer}.detail__main-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;max-height:100%;border-radius:28px}.detail__main-prev{position:absolute;bottom:20px;left:20px;z-index:2;rotate:180deg}.detail__main-next{position:absolute;bottom:20px;left:78px;z-index:2}.base-checkbox{display:flex;gap:10px;cursor:pointer;margin-bottom:15px}@media (min-width:576px){.base-checkbox{gap:20px}}.base-checkbox__input-wrapper{display:block;position:relative}.base-checkbox__input-input{position:absolute;opacity:0}.base-checkbox__input-decoration{display:block;position:relative;background-color:transparent;border:1px solid rgba(12,20,21,.1019607843);fill:transparent;width:16px;height:16px;border-radius:4px}.base-checkbox__input-decoration-icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:10px;height:10px;display:block}.base-checkbox__text{font-size:12px;line-height:100%}@media (min-width:576px){.base-checkbox__text{font-size:14px;line-height:120%}}.base-checkbox__title{margin-bottom:5px;font-size:16px;font-weight:500}@media (min-width:576px){.base-checkbox__title{font-size:18px}}.modal__checkbox{gap:10px;margin-bottom:0}@media (min-width:576px){.modal__checkbox{max-width:230px}}.modal__checkbox .base-checkbox__text_modal{font-size:10px;opacity:60%;line-height:100%}.modal__checkbox .base-checkbox__text_modal a{text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px;color:#0c1415}.modal__checkbox .base-checkbox__input-decoration{border:1px solid #f43e72}.modal__checkbox:hover .base-checkbox__input-decoration{border:2px solid #f43e72;background-color:#fff}.base-checkbox__input-input:checked+.base-checkbox__input-decoration{border:1px solid #f43e72;background-color:#f43e72;fill:#fff}.base-checkbox__input-input:checked+.base-checkbox__input-decoration .base-checkbox__input-decoration-icon{fill:#fff}.base-checkbox__input-input:checked .base-checkbox__input-decoration{background-color:#f43e72}.mb-5{margin-bottom:5px!important}.radio-label{position:relative;width:90px}.radio-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;height:auto}.radio-custom{position:absolute;top:0;left:0;height:100%;width:100%}.radio-input:checked+.radio-custom{background-color:#f43e72;color:#fff}.radio-input:checked+.radio-custom .detail__weight-item-bottom{opacity:1}.detail{padding-bottom:60px}@media (min-width:992px){.detail{padding-bottom:100px}}.detail__right{width:100%}.detail__review{margin-bottom:10px;display:flex;align-items:center;gap:10px;color:#0c1415}.detail__stars{position:relative;display:inline-block;font-size:20px;line-height:100%;letter-spacing:2px}.detail__stars-empty{color:rgba(244,62,114,.3019607843)}.detail__stars-filled{position:absolute;top:0;left:0;overflow:hidden;color:#f43e72;white-space:nowrap}.detail__review-rating{opacity:72%}.detail__review-count{opacity:72%;color:#0c1415}.detail__buy-count{opacity:72%}.detail__title{justify-content:start;font-size:28px;font-weight:500;line-height:130%;margin-bottom:20px}@media (min-width:576px){.detail__title{font-size:36px}}.detail__perview-text{margin-bottom:24px}@media (min-width:576px){.detail__perview-text{margin-bottom:40px}}.detail__title_sostav{margin-bottom:10px}@media (min-width:576px){.detail__title_sostav{margin-bottom:100px}}.detail__right-title{margin-bottom:10px;font-size:20px;font-weight:500;line-height:130%}@media (min-width:576px){.detail__right-title{font-size:24px}}.detail__weight{display:flex;gap:20px;margin-bottom:24px}@media (min-width:576px){.detail__weight{margin-bottom:40px}}.detail__weight-item{cursor:pointer;border-radius:16px;padding:6px 14px;background-color:#fff;transition:all .3s ease-out;color:#0c1415}@media (min-width:576px){.detail__weight-item{padding:8px 20px}}.detail__weight-item.active{background-color:#f43e72;color:#fff}.detail__weight-item.active .detail__weight-item-bottom{opacity:1}.detail__weight-item-top{font-weight:700;font-size:18px;line-height:100%;text-align:center;transition:all .3s ease-out}@media (min-width:576px){.detail__weight-item-top{font-size:20px}}.detail__weight-item-bottom{font-size:14px;opacity:60%}.detail__checkboxes{width:100%;margin-top:20px;margin-bottom:34px}@media (min-width:576px){.detail__checkboxes{margin-bottom:40px}}.detail__checkbox{width:100%;padding-bottom:15px}.detail__checkbox:not(:last-child){border-bottom:1px solid rgba(12,20,21,.1)}.detail__checkbox-right{display:flex;justify-content:space-between;gap:10px;width:100%}.detail__checkbox-right-price{font-size:12px;flex:none}@media (min-width:576px){.detail__checkbox-right-price{font-size:14px}}.detail__price-row{display:flex;align-items:center;justify-content:space-between;gap:15px;flex-wrap:wrap;-moz-column-gap:20px;column-gap:20px}@media (min-width:576px){.detail__price-row{gap:20px}}.detail__price{font-size:22px;font-weight:500;order:-1;margin-left:10px}@media (min-width:576px){.detail__price{font-size:28px;order:unset;margin-left:0}}.detail__btn{max-width:100%!important;height:42px}@media (min-width:576px){.detail__btn{max-width:280px!important;height:62px}}.detail__btn .btn__svg{width:10px;height:10px}@media (min-width:576px){.detail__btn .btn__svg{width:12px;height:12px}}.detail__title_kbgu{font-weight:500;font-size:18px;line-height:120%}@media (min-width:576px){.detail__title_kbgu{font-size:22px;margin-bottom:5px}}.detail__kbgu{width:100%;border-bottom:1px solid #c9c7c7;padding:12px 0;display:flex;align-items:center;justify-content:space-between;gap:15px}@media (min-width:576px){.detail__kbgu{padding:15px 0}}.detail__kbgu-name{opacity:60%;line-height:120%}.detail__kbgu-value{font-weight:700;line-height:120%}.count__change{background:#fff;outline:unset;border:none}.count-wrapper{background-color:#fff;padding:8px 25px;border-radius:100px;display:flex;align-items:center;justify-content:center;gap:5px;width:-moz-max-content;width:max-content;font-size:18px;font-weight:700}@media (min-width:576px){.count-wrapper{font-size:20px;padding:15px 26px;gap:8px}}.count{height:auto;width:40px;font-weight:700;text-align:center;padding:0}@media (min-width:576px){.count{width:50px}}.count__minus{font-weight:700;padding:1px 6px;color:#0c1415}.count__plus{font-weight:700;padding:1px 6px;color:#0c1415}.read-more__btn{cursor:pointer;margin-bottom:15px;visibility:hidden;color:#f43e72}@media (min-width:576px){.read-more__btn{margin-bottom:30px}}.reviews__slide{display:flex;background-color:#f7f1e7;border-radius:16px;padding:20px}.reviews__stars{margin-bottom:20px}.reviews__slide-text{margin-bottom:10px;line-height:120%;position:relative;overflow:hidden;transition:max-height .35s ease-out;max-height:150px;min-height:150px}@media (min-width:576px){.reviews__slide-text{margin-bottom:15px}}.reviews__slide-bottom{display:flex;gap:10px;align-items:center}.reviews__slide-name-wrapper{width:72px;height:72px;border-radius:16px;display:flex;align-items:center;justify-content:center;background-color:#fff;color:#f43e72;font-size:32px;font-weight:500;line-height:120%;overflow:hidden;text-transform:uppercase}.reviews__slide-name-wrapper-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.reviews__slide-name{font-weight:500;font-size:18px;line-height:120%}.reviews__slide-city{opacity:72%;line-height:110%}.reviews__slide-right{display:flex;flex-direction:column;justify-content:space-between;height:100%}@media (min-width:576px){.reviews__slide-right{width:auto}}.reviews__slide-left{width:100%;height:230px;overflow:hidden;border-radius:16px}@media (min-width:576px){.reviews__slide-left{max-width:150px}}@media (min-width:992px){.reviews__slide-left{height:150px}}.reviews__slide-left{flex:none}.reviews__slide-left-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.reviews-main .reviews__slide{flex-direction:column;justify-content:space-between;gap:30px}.reviews-main .reviews__slide .reviews__slide-bottom{height:72px}.reviews-detail .reviews__slide{gap:10px;flex-direction:column-reverse;justify-content:space-between}@media (min-width:992px){.reviews-detail .reviews__slide{flex-direction:row;gap:20px;justify-content:start}}.reviews-page{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:space-between;gap:10px}@media (min-width:768px){.reviews-page{gap:20px}}.reviews-page__item{flex-direction:column-reverse;flex:0 0 48%;gap:20px;align-items:center;padding:20px 10px 10px}@media (min-width:768px){.reviews-page__item{flex:0 0 48%;flex-direction:row;align-items:start;padding:20px}}.reviews-page__item .reviews__slide-left{height:100px}@media (min-width:768px){.reviews-page__item .reviews__slide-left{height:150px}}.reviews-yandex{display:flex;align-items:center;gap:15px}.reviews-yandex__link{color:#f43e72}.reviews-yandex__link:hover{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}.reviews-yandex__img{height:35px}.file{position:relative;border-radius:100px;width:100%;padding:2px 2px 2px 20px;height:40px;overflow:hidden;cursor:pointer;display:flex;justify-content:space-between;gap:10px;align-items:center;background-color:#fff}@media (min-width:576px){.file{height:52px;max-width:310px}}.file__foto{opacity:0;position:absolute;top:0;left:0;z-index:1;padding:10px 18px;width:100%;height:60px}.file__name{opacity:72%;cursor:pointer}.file__icon{width:36px;height:36px;border-radius:50%;background-color:#f43e72;display:flex;align-items:center;justify-content:center}@media (min-width:576px){.file__icon{width:48px;height:48px}}.file__icon-svg{fill:#fff;width:18px;height:18px}@media (min-width:576px){.file__icon-svg{width:20px;height:20px}}.title_mb20{margin-bottom:20px}.modal{position:fixed;z-index:240;top:0;left:0;right:0;bottom:0;backdrop-filter:blur(15px);background:rgba(12,20,21,.72);display:flex;align-items:center;justify-content:center;overflow-y:scroll;display:none}@media screen and (min-width:992px) and (min-height:600px){.modal{align-items:center}}.modal.open{opacity:1;display:flex;transition:opacity .3s}.modal__block{background-color:#f7f1e7;padding:30px 20px 20px;max-width:908px;width:98%;position:relative;z-index:1;border-radius:16px}@media (min-width:576px){.modal__block{padding:30px}}.modal__close{height:18px;width:18px;display:flex;align-items:center;justify-content:center;position:absolute;z-index:20;right:12px;top:12px;cursor:pointer}@media (min-width:576px){.modal__close{top:20px;right:20px}}.modal__text{margin:15px 0 20px}@media (min-width:576px){.modal__text{margin:20px 0 40px}}.modal__title{line-height:120%;font-size:22px;font-weight:700}@media (min-width:576px){.modal__title{font-size:32px}}.modal__row{display:flex;align-items:center;gap:15px;flex-wrap:wrap}@media (min-width:576px){.modal__row{gap:20px}}.modal__textarea{margin:15px 0}@media (min-width:576px){.modal__textarea{margin:20px 0}}.modal__review-text{opacity:72%;font-size:14px}.modal__stars{display:flex;gap:8px;font-size:30px;margin-top:5px}.modal__star{color:rgba(244,62,114,.3019607843);cursor:pointer}.modal__btn{max-width:unset}@media (min-width:576px){.modal__btn{max-width:265px;height:55px}}.modal__btn_cart{max-width:280px}.modal__product{font-weight:700;font-size:16px}@media (min-width:576px){.modal__product{font-size:22px}}.modal__block_cart{display:flex;flex-direction:column;align-items:center;gap:25px;max-width:300px;padding:40px 20px 20px}@media (min-width:576px){.modal__block_cart{gap:30px;max-width:450px}}.modal__title_cart{font-size:20px}@media (min-width:576px){.modal__title_cart{font-size:28px}}.modal__image{width:200px;height:200px;-o-object-fit:cover;object-fit:cover}@media (min-width:576px){.modal__image{width:250px;height:250px}}
/* End */


/* Start:/local/templates/busheri/components/bitrix/menu/header-menu/style.min.css?1786430154490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/busheri/components/bitrix/menu/header-menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/busheri/components/bitrix/menu/footer-menu/style.min.css?1786430154490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/busheri/components/bitrix/menu/footer-menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/busheri/components/bitrix/catalog.section.list/footer-katalog/style.min.css?17864301546236*/
.bx_catalog_line{margin-bottom:30px}.bx_catalog_line .bx_catalog_line_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_line .bx_catalog_line_category_title a{color:#000;text-decoration:none}.bx_catalog_line .bx_catalog_line_ul{padding:0}.bx_catalog_line .bx_catalog_line_ul li{margin-bottom:20px;list-style:none}.bx_catalog_line .bx_catalog_line_ul li:before{content:''!important}.bx_catalog_line .bx_catalog_line_img{position:relative;display:block;float:left;overflow:hidden;margin-right:40px;width:125px;height:125px;border:1px solid #ccc;border-radius:2px;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_line .bx_catalog_line_title{margin-bottom:10px;padding:0;vertical-align:top;line-height:18px}.bx_catalog_line .bx_catalog_line_title a{color:#4c7da6;font-size:18px}.bx_catalog_line .bx_catalog_line_title a:hover{text-decoration:none}.bx_catalog_line .bx_catalog_line_title span{font-size:16px}.bx_catalog_line .bx_catalog_line_description{color:#3f3f3f;font-size:13px;line-height:16px}@media(max-width:639px){.bx-touch .bx_catalog_line .bx_catalog_line_img{margin-right:10px;width:50px;height:50px}.bx-touch .bx_catalog_line .bx_catalog_line_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_line .bx_catalog_line_title a{font-size:14px}.bx-touch .bx_catalog_line .bx_catalog_line_description{font-size:11px}}.bx_catalog_line .bx_catalog_line_img,.bx_catalog_line .bx_catalog_line_title,.bx_catalog_line .bx_catalog_line_title a,.bx_catalog_line .bx_catalog_line_description{transition:all .3s ease}.bx_catalog_text{margin-bottom:30px}.bx_catalog_text .bx_catalog_text_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_text .bx_catalog_text_category_title a{color:#000;text-decoration:none}.bx_catalog_text .bx_catalog_text_ul{padding:0}.bx_catalog_text .bx_catalog_text_ul li{float:left;margin:0 10px 10px;list-style:none}.bx_catalog_text .bx_catalog_text_ul li:before{content:''!important}.bx_catalog_text .bx_catalog_text_title{margin:0;padding:0;vertical-align:top;font-size:14px;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{display:inline-block;overflow:hidden;max-width:100%;color:#4c7da6;-ms-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px}.bx_catalog_text .bx_catalog_text_title a:hover{text-decoration:none}.bx_catalog_text .bx_catalog_text_title span{font-size:12px}@media(max-width:639px){.bx-touch .bx_catalog_text .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_catalog_text .bx_catalog_line_title a{font-size:12px}}.bx_catalog_text .bx_catalog_line_title,.bx_catalog_text .bx_catalog_line_title a{transition:all .3s ease}.bx_catalog_tile{margin-bottom:30px}.bx_catalog_tile .bx_catalog_tile_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_tile .bx_catalog_tile_category_title a{color:#000;text-decoration:none}.bx_catalog_tile .bx_catalog_tile_ul{padding:0}.bx_catalog_tile .bx_catalog_tile_ul li{float:left;box-sizing:border-box;margin-bottom:20px;padding:0 10px;width:12.5%;list-style:none;text-align:center}.bx_catalog_tile .bx_catalog_tile_ul li:before{content:''!important}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:both}.bx_catalog_tile .bx_catalog_tile_img{position:relative;display:block;overflow:hidden;margin:0 auto;width:78px;height:78px;border:1px solid #ccc;border-radius:2px;background-color:#fff;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_tile .bx_catalog_tile_title{margin-top:5px;margin-bottom:10px;padding:0;vertical-align:top;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{color:#4c7da6;font-size:14px}.bx_catalog_tile .bx_catalog_tile_title a:hover{text-decoration:none}.bx_catalog_tile .bx_catalog_tile_title span{font-size:12px}@media(max-width:980px){.bx_catalog_tile .bx_catalog_tile_ul li{width:20%}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:both}}@media(max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title{line-height:10px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title a{font-size:11px}}@media(min-width:480px) and (max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:25%}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(4n+1){clear:both}}@media(max-width:479px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:33.3%}.bx-touch .bx_catalog_tile .bx_catalog_tile_img{width:100%;height:80px}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(3n+1){clear:both}}.bx_catalog_tile .bx_catalog_tile_title,.bx_catalog_tile .bx_catalog_tile_title a,.bx_catalog_tile .bx_catalog_tile_ul li,.bx_catalog_tile .bx_catalog_tile_img{transition:all .3s ease}.bx_sitemap{margin-bottom:30px}.bx_sitemap .bx_sitemap_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_sitemap .bx_sitemap_title a{color:#000;text-decoration:none}.bx_sitemap .bx_sitemap_ul li{padding:0;line-height:14px}.bx_sitemap .bx_sitemap_ul li:before{content:''!important}.bx_sitemap .bx_sitemap_li_title{display:inline-block;margin:0;margin-bottom:10px;padding:0;vertical-align:top;font-weight:normal;line-height:13px}.bx_sitemap .bx_sitemap_li_title a{color:#4c7da6;white-space:nowrap;font-size:13px}.bx_sitemap .bx_sitemap_li_title a:hover{text-decoration:none}.bx_sitemap .bx_sitemap_li_title span{font-size:11px}@media(max-width:639px){.bx-touch .bx_sitemap .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_sitemap .bx_catalog_line_title a{font-size:12px}}.bx_sitemap .bx_catalog_line_title,.bx_sitemap .bx_catalog_line_title a{transition:all .3s ease}
/* End */
/* /local/templates/busheri/libs/lightgallery/lightgallery.scss?17864301546666 */
/* /local/templates/busheri/libs/lightgallery/css/lightgallery.min.css?178643015420400 */
/* /local/templates/busheri/css/app.min.css?1786431503142112 */
/* /local/templates/busheri/components/bitrix/menu/header-menu/style.min.css?1786430154490 */
/* /local/templates/busheri/components/bitrix/menu/footer-menu/style.min.css?1786430154490 */
/* /local/templates/busheri/components/bitrix/catalog.section.list/footer-katalog/style.min.css?17864301546236 */
