:root{--f-spinner-width:36px;--f-spinner-height:36px;--f-spinner-color-1:rgba(0, 0, 0, 0.1);--f-spinner-color-2:rgba(17, 24, 28, 0.8);--f-spinner-stroke:2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg :first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg :last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration,.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration,.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0,calc(var(--f-throw-out-distance,150px) * -1),0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0,var(--f-throw-out-distance,150px),0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration,.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration,.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(.975) translate3d(0,16px,0);opacity:0}to{transform:scale(1) translate3d(0,0,0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(.975) translate3d(0,16px,0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration,.2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration,.2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration,.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration,.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration,.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration,.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration,.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration,.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0,0,0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0,0,0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width:40px;--f-button-height:40px;--f-button-border:0;--f-button-border-radius:0;--f-button-color:#374151;--f-button-bg:#f8f8f8;--f-button-hover-bg:#e0e0e0;--f-button-active-bg:#d0d0d0;--f-button-shadow:none;--f-button-transition:all 0.15s ease;--f-button-transform:none;--f-button-svg-width:20px;--f-button-svg-height:20px;--f-button-svg-stroke-width:1.5;--f-button-svg-fill:none;--f-button-svg-filter:none;--f-button-svg-disabled-opacity:0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover:hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:0}.f-button:focus-visible{outline:0;box-shadow:inset 0 0 0 var(--f-button-outline,2px) var(--f-button-outline-color,var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-next,.f-carousel__nav .f-button.is-prev,.fancybox__nav .f-button.is-next,.fancybox__nav .f-button.is-prev{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin,0px) + var(--fancybox-scrollbar-compensate,0px));overflow:hidden!important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color:#dbdbdb;--fancybox-hover-color:#fff;--fancybox-bg:rgba(24, 24, 27, 0.98);--fancybox-slide-gap:10px;--f-spinner-width:50px;--f-spinner-height:50px;--f-spinner-color-1:rgba(255, 255, 255, 0.1);--f-spinner-color-2:#bbb;--f-spinner-stroke:3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:transparent;overflow:visible;z-index:var(--fancybox-zIndex,1050);outline:0;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container ::after,.fancybox__container ::before{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity,1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0,0,0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-html5video,.fancybox__slide.has-iframe,.fancybox__slide.has-video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::after,.fancybox__slide::before{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color,#374151);background:var(--fancybox-content-bg,#fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [contenteditable],.fancybox__content [data-selectable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0,0,0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);cursor:auto;visibility:visible}.is-closing .fancybox__caption,.is-loading .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width:2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width:34px;--f-button-height:34px;--f-button-border-radius:4px;--f-button-color:var(--fancybox-color, #fff);--f-button-hover-color:var(--fancybox-color, #fff);--f-button-bg:transparent;--f-button-hover-bg:transparent;--f-button-active-bg:transparent;--f-button-svg-width:22px;--f-button-svg-height:22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity,1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius:50%;--f-button-color:#fff;--f-button-hover-color:#fff;--f-button-outline-color:#000;--f-button-bg:rgba(0, 0, 0, 0.6);--f-button-active-bg:rgba(0, 0, 0, 0.6);--f-button-hover-bg:rgba(0, 0, 0, 0.6);--f-button-svg-width:18px;--f-button-svg-height:18px;--f-button-svg-filter:none;top:5px;right:5px}.fancybox__nav{--f-button-width:50px;--f-button-height:50px;--f-button-border:0;--f-button-border-radius:50%;--f-button-color:var(--fancybox-color);--f-button-hover-color:var(--fancybox-hover-color);--f-button-bg:transparent;--f-button-hover-bg:rgba(24, 24, 27, 0.3);--f-button-active-bg:rgba(24, 24, 27, 0.5);--f-button-shadow:none;--f-button-transition:all 0.15s ease;--f-button-transform:none;--f-button-svg-width:26px;--f-button-svg-height:26px;--f-button-svg-stroke-width:2.5;--f-button-svg-fill:none;--f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity:0.65;--f-button-next-pos:1rem;--f-button-prev-pos:1rem;opacity:var(--fancybox-opacity,1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top,calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left,calc(var(--f-spinner-height) * -.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:0;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>:not(.fancybox__content),.fancybox__container.is-animated[aria-hidden=false]>:not(.fancybox__backdrop,.fancybox__carousel){animation:var(--f-interface-enter-duration,.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration,.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>:not(.fancybox__content),.fancybox__container.is-animated[aria-hidden=true]>:not(.fancybox__backdrop,.fancybox__carousel){animation:var(--f-interface-exit-duration,.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration,.35s) ease forwards f-fadeOut}.has-html5video .fancybox__content,.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-html5video .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-html5video .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}.f-carousel__thumbs{--f-thumb-width:96px;--f-thumb-height:72px;--f-thumb-outline:0;--f-thumb-outline-color:#5eb0ef;--f-thumb-opacity:1;--f-thumb-hover-opacity:1;--f-thumb-selected-opacity:1;--f-thumb-border-radius:2px;--f-thumb-offset:0px;--f-button-next-pos:0;--f-button-prev-pos:0}.f-carousel__thumbs.is-classic{--f-thumb-gap:8px;--f-thumb-opacity:0.5;--f-thumb-hover-opacity:1;--f-thumb-selected-opacity:1}.f-carousel__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:16px;--f-thumb-clip-width:46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:transparent;user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2,#e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0,0,0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width,0))*-.5);width:calc(var(--width,0)*1px + var(--f-thumb-clip-width,0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift,0) * -1px),0,0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:0;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:0}.f-thumbs__slide__button:focus-visible{outline:0;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path:inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline,0) solid var(--f-thumb-outline-color,transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width:96px;--f-thumb-height:72px;--f-thumb-border-radius:2px;--f-thumb-outline:2px;--f-thumb-outline-color:#ededed;position:relative;opacity:var(--fancybox-opacity,1);transition:max-height .35s cubic-bezier(.23,1,.32,1)}.fancybox__thumbs.is-classic{--f-thumb-gap:8px;--f-thumb-opacity:0.5;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05))}.fancybox__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:16px;--f-thumb-clip-width:46px;--f-thumb-opacity:1;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width:64px;--f-thumb-clip-width:32px;--f-thumb-height:48px;--f-thumb-extra-gap:10px}.fancybox__thumbs.is-masked{max-height:0!important}.is-closing .fancybox__thumbs{transition:none!important}.fancybox__toolbar{--f-progress-color:var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width:46px;--f-button-height:46px;--f-button-color:var(--fancybox-color);--f-button-hover-color:var(--fancybox-hover-color);--f-button-bg:rgba(24, 24, 27, 0.65);--f-button-hover-bg:rgba(70, 70, 73, 0.65);--f-button-active-bg:rgba(90, 90, 93, 0.65);--f-button-border-radius:0;--f-button-svg-width:24px;--f-button-svg-height:24px;--f-button-svg-stroke-width:1.5;--f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill:none;--f-button-svg-disabled-opacity:0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);text-shadow:var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color,var(--f-carousel-theme-color,#0091ff));z-index:30;user-select:none;pointer-events:none}@font-face{font-family:Inter-ExtraLight;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-ExtraLight.eot);src:url(../fonts/inter/Inter-ExtraLight.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-ExtraLight.ttf) format("truetype")}@font-face{font-family:Inter-Light;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-Light.eot);src:url(../fonts/inter/Inter-Light.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-Light.ttf) format("truetype")}@font-face{font-family:Inter-Regular;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-Regular.eot);src:url(../fonts/inter/Inter-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-Regular.ttf) format("truetype")}@font-face{font-family:Inter-Medium;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-Medium.eot);src:url(../fonts/inter/Inter-Medium.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-Medium.ttf) format("truetype")}@font-face{font-family:Inter-Bold;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-Bold.eot);src:url(../fonts/inter/Inter-Bold.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-Bold.ttf) format("truetype")}@font-face{font-family:Inter-SemiBold;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/inter/Inter-SemiBold.eot);src:url(../fonts/inter/Inter-SemiBold.eot?#iefix) format("embedded-opentype"),url(../fonts/inter/Inter-SemiBold.ttf) format("truetype")}@font-face{font-family:Encode-SemiBold;font-weight:400;font-style:normal;font-display:block;src:url(../fonts/encode/EncodeSans-SemiBold.eot);src:url(../fonts/encode/EncodeSans-SemiBold.eot?#iefix) format("embedded-opentype"),url(../fonts/encode/EncodeSans-SemiBold.ttf) format("truetype")}@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") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-slide{-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}html{scroll-behavior:smooth}a,button{-webkit-transition:all .5s ease;transition:all .5s ease;cursor:pointer;text-decoration:none}a:hover,button:hover{text-decoration:none}header{max-width:100%;margin:0 auto}body{font-family:Inter-Regular;font-size:16px;line-height:1.4;margin:0;background:#fff}h1,h2,h3,h4,h5,h6,p{margin:0;padding:0;font-weight:400}label{margin-bottom:0}form.wpcf7-form .wpcf7-response-output{margin-top:0;border:none;padding:0}form.wpcf7-form.invalid .wpcf7-response-output{color:#dc3232}form.wpcf7-form.sent .wpcf7-response-output{color:#1ea500}.container{max-width:1278px;margin:0 auto;padding:0 15px}@media (max-width:576px){.container_mob{padding-left:0;padding-right:0}}header{max-width:100%;margin:0 auto}section{max-width:1920px;margin:0 auto;overflow:hidden}footer{max-width:1920px;margin:0 auto}.header{width:100%;position:sticky;top:-74px;z-index:10}.header__top{width:100%;height:74px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#353c4c}.header__logo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 96px;padding-left:calc((100% - 1278px)/ 2);background:#891a1c;height:100%}.header__logo img{width:106px;height:auto}.header__top-content{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-right:calc((100% - 1278px)/ 2)}.header__text{font-family:Inter-Medium;font-size:16px;color:#fff;line-height:1.3;padding-left:16px}.header__contacts{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:20px}.header__bar{width:100%;padding:23px 0;background:#fff;z-index:100}.header__content{display:none}.header__bar-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:1300px){.header__logo{padding-left:16px;padding-right:16px}.header__top-content{padding-right:15px}}@media (max-width:992px){.header__nav{position:fixed;top:0;right:-360px;-webkit-transition:all .3s ease;transition:all .3s ease}.header__nav--open{right:0}.header__contacts{display:none}.header__top-content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.header__burger{background:0 0;border:none;outline:0}.header__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}}@media (max-width:576px){.header{top:-56px}.header__top{height:56px}.header__logo img{width:58px}.header__top-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.header__text{font-size:12px;line-height:18px;text-align:right}.header__bar{padding:10px;-webkit-box-sizing:border-box;box-sizing:border-box}.header__burger{display:-webkit-box;display:-ms-flexbox;display:flex;width:36px;height:36px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}}@media (max-width:400px){.header__nav{right:-400px;width:100%}.header__nav--open{right:0}}.footer{background:#353c4c;padding:40px 0 30px 0}.footer__row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:20px}.footer__title{font-family:Inter-Medium;font-size:20px;line-height:1.4;color:#fff;letter-spacing:.022em;margin-bottom:16px}.footer__text{display:block;font-family:Inter-Regular;font-size:12px;line-height:1.4;color:#acb4d6}.footer__text_no-highlight{color:#acb4d6!important;text-decoration:none!important;pointer-events:none}.footer__text_mb{margin-bottom:14px}.footer__tel{font-family:Inter-Bold;font-size:24px;line-height:1.3;color:#fff}.footer__soc_mb{margin-bottom:16px}.footer__bottom{margin-top:40px;text-align:center}.footer__bottom p{font-family:Inter-Regular;font-size:10px;line-height:1.3;color:#8891a7;margin-bottom:9px}.footer__bottom-links{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:20px}.footer__bottom-links a{font-family:Inter-Regular;font-size:10px;line-height:15px;color:#8891a7}@media (max-width:576px){.footer{padding:0;padding-bottom:20px}.footer__row{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;gap:0}.footer__col{width:100%;max-width:350px;padding:20px 0;border-bottom:1px solid #d9d9d9}.footer__title{margin-bottom:8px}.footer__text_mb{margin-bottom:3px}.footer__bottom{margin-top:0}.footer__bottom p{margin-bottom:10px}.footer__bottom-links{gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap}.footer__bottom-links a{display:block;width:100%;line-height:1}}@media (max-width:400px){.footer__col{max-width:270px}.footer__col:last-child{border-bottom:none}}.socials{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:13px}.socials a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:24px}.socials a img{width:100%;height:auto}.socials_center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:576px){.socials_mobcenter{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.tel{font-family:Inter-SemiBold;font-size:16px;color:#fff;letter-spacing:.022em}.tel_dark{color:#1e1e1e}@media (max-width:576px){.tel{letter-spacing:-.022em}}.nav ul{list-style:none;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:28px}.nav ul li{position:relative}.nav ul li::before{content:"";width:6px;height:6px;background:#353c4c;border-radius:50%;position:absolute;left:-14px;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%)}.nav ul li:first-child::before{display:none}.nav ul li a{font-family:Inter-Medium;font-size:16px;color:#353c4c;line-height:1.3}.nav ul li a:hover{color:#891a1c}.nav__close{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;background:0 0;border:none}.nav__close img{width:48px;height:48px}.nav__head{display:none}@media (max-width:992px){.nav{width:350px;height:100vh;background:#fff;overflow:auto;background:#000}.nav__head{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:12px 12px 16px 12px;-webkit-box-sizing:border-box;box-sizing:border-box}.nav__close{display:-webkit-box;display:-ms-flexbox;display:flex}.nav ul{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 16px;gap:25px}.nav ul li{width:100%}.nav ul li::before{display:none}.nav ul li a{font-family:Inter-Medium;font-size:16px;color:#fff;line-height:24px;-webkit-transition:all .3s ease;transition:all .3s ease}}@media (max-width:400px){.nav{width:100%}.nav ul,.nav__head{-webkit-box-sizing:border-box;box-sizing:border-box}}.hero{position:relative}.hero__banner{background-size:cover;background-repeat:no-repeat;background-position:top center;height:733px;position:relative}.hero__title{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;padding:20px 90px 20px 40px;background:rgba(137,26,28,.8);font-family:Inter-SemiBold;font-size:48px;color:#fff;line-height:1.2;-webkit-clip-path:polygon(0 0,100% 0,90% 100%,0 100%);clip-path:polygon(0 0,100% 0,90% 100%,0 100%)}.hero__sub{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 79px 20px 40px;background:rgba(53,60,76,.8);max-width:420px;font-family:Inter-SemiBold;font-size:24px;line-height:1.3;letter-spacing:.022em;color:#fff;-webkit-clip-path:polygon(0 0,100% 0,90% 100%,0 100%);clip-path:polygon(0 0,100% 0,90% 100%,0 100%)}.hero__sub_middle{padding:20px 143px 20px 40px}.hero__sub_sm{padding:20px 109px 20px 40px}.hero__text{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:40px;padding:20px 44px 20px 90px;background:rgba(137,26,28,.8);font-family:Inter-SemiBold;font-size:28px;color:#fff;line-height:1.2;text-align:right;-webkit-clip-path:polygon(15% 0,100% 0,100% 100%,0 100%);clip-path:polygon(15% 0,100% 0,100% 100%,0 100%);position:absolute;bottom:0;right:0}.hero__form{position:absolute;right:20px;top:20px}@media (max-width:1100px){.hero__form{position:static;margin-top:40px;margin-bottom:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}@media (max-width:992px){.hero__title{font-size:32px}.hero__sub{max-width:315px;font-size:18px;padding:20px 68px 20px 40px}.hero__sub_middle{padding:20px 111px 20px 40px}.hero__sub_sm{padding:20px 88px 20px 40px}}@media (max-width:576px){.hero__banner{height:469px;position:relative;margin-bottom:86px}.hero__title{font-size:14px;padding:12px 30px 12px 15px;line-height:1.5}.hero__sub{max-width:100%;width:100%;position:absolute;bottom:-86px;left:0;text-align:center;font-size:22px;line-height:33px;letter-spacing:-.022em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:10px 7px;-webkit-clip-path:none;clip-path:none;font-size:20px}.hero__text{font-size:14px;gap:18px;bottom:0;padding-right:13px;padding-left:30px}.hero__form{margin:0}}@media (max-width:386px){.hero__text{bottom:0}.hero__banner{margin-bottom:86px}.hero__sub{bottom:-86px}}.form{max-width:432px;background:#fff;border-radius:20px;-webkit-box-shadow:0 0 20px 0 rgba(0,0,0,.2);box-shadow:0 0 20px 0 rgba(0,0,0,.2);padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.form_big{max-width:700px}.form__title{font-family:Inter-Bold;font-size:24px;color:#353c4c;line-height:1.2;text-align:center}.form__text{font-family:Inter-Medium;font-size:16px;color:#4c5968;line-height:1.3;text-align:center}.form__input{margin-top:20px}.form__input input{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;max-width:100%;border:1px solid #c1cde3;border-radius:8px;padding:18px 16px;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Inter-Regular;font-size:16px;color:#353c4c}.form__input input::-webkit-input-placeholder{color:#77818d}.form__input input::-moz-placeholder{color:#77818d}.form__input input:-ms-input-placeholder{color:#77818d}.form__input input::-ms-input-placeholder{color:#77818d}.form__input input::placeholder{color:#77818d}.form__input input:focus-visible{outline:0;border:1px solid #353c4c}.form__btn{margin-top:10px;position:relative}.form__btn input{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:48px;background:#353c4c;border-radius:8px;padding:8px 20px;font-family:Inter-Bold;font-size:16px;color:#fff;letter-spacing:.03em;border:none;outline:0;cursor:pointer;text-align:center}.form__btn .wpcf7-spinner{position:absolute;right:11px;top:13px;margin:0}.form__btn br{display:none}.form__info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:10px;margin-top:20px}.form__desc{font-family:Inter-Regular;font-size:14px;color:#4c5968;line-height:1.5;letter-spacing:.022em}.form__checkbox{display:none}.form__check{margin-top:20px;padding:0 30px 0 35px;position:relative;font-family:Inter-Regular;font-size:12px;color:#4c5968;line-height:1.3;display:block}.form__check a{color:#1d1d1d;text-decoration:underline}.form__check::before{content:"";width:20px;height:20px;border:1px solid #353c4c;border-radius:7px;background-size:24px;position:absolute;left:0;top:0}.form__checkbox:checked~label::before{background:url(../img/icons/check.svg) center center no-repeat;border:none}@media (max-width:576px){.form{border-radius:unset;-webkit-box-shadow:unset;box-shadow:unset;max-width:100%;padding:20px 10px}.form__title{font-size:20px;line-height:30px;letter-spacing:-.022em}.form__text{font-size:14px;line-height:21px;letter-spacing:-.022em;margin-top:4px}.form__input input{padding:16px}.form__btn input{padding:14px;line-height:19.6px;font-family:Inter-SemiBold;font-size:14px}.form__desc{font-size:12px;line-height:18px}.form__info{margin-top:16px}.form_big{padding:0}.form__check{line-height:1.5}}.section{padding:40px 0}.section__title{font-family:Inter-Bold;font-size:40px;color:#1e1e1e;line-height:1.3;text-align:center}.section__title_white{color:#fff}.section__sub{font-family:Inter-Bold;font-size:28px;color:#8891a7;line-height:1.3;letter-spacing:.022em;text-align:center}.section__sub_white{color:#fff}.section__form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.section_ptnull{padding-top:0}.section_pbnull{padding-bottom:0}@media (max-width:576px){.section{padding:20px 0}.section_pnullmob{padding:0}.section__title{font-size:24px;line-height:29px}.section__title_white{font-size:20px;line-height:30px;letter-spacing:-.022em}.section__title span{display:block;text-align:center}.section__sub{font-size:14px;font-family:Inter-Regular;margin-top:4px}.section__sub_white{font-size:14px;line-height:21px;letter-spacing:-.022em}.section__sub_dark-mob{color:#1e1e1e;font-family:Inter-SemiBold;letter-spacing:-.022em}}.improves__row{margin-top:52px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:6px}.improves__list{width:30%}.improves__img{width:40%;text-align:center}.improves__img img{max-width:360px}@media (max-width:767px){.improves{padding:0 24px}.improves__row{-ms-flex-wrap:wrap;flex-wrap:wrap}.improves__list{width:100%}.improves__img{margin:6px auto;width:100%;max-width:500px}}@media (max-width:576px){.improves{padding:0}.improves__row{margin-top:20px}.improves__list{width:100%}.improves__img{margin:6px auto;width:100%;max-width:500px}.improves__img img{max-width:100%}.improves__title{margin-top:20px}}.list{list-style:none;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:20px}.list li{position:relative;font-family:Inter-Medium;font-size:20px;line-height:1.3;letter-spacing:.022em;color:#1e1e1e;padding-left:23px}.list li::before{content:"";width:11px;height:11px;background:#891a1c;position:absolute;left:0;top:5px}@media (max-width:576px){.list{gap:12px}.list li{font-size:14px;line-height:21px;letter-spacing:-.022px;padding-left:23px}.list li::before{width:11px;height:11px}}.categories{padding:16px 10px;margin-top:52px}.categories_mnull{margin:0;padding-left:0;padding-right:0}.categories__item{width:auto;background:#eeeded;border-radius:8px;padding:8px 12px;font-family:Inter-Regular;font-size:14px;color:#4c5968;letter-spacing:.022em;-webkit-transition:all .3s ease;transition:all .3s ease}.categories__item:hover{background:#353c4c;color:#fff}.categories__item_active{background:#353c4c;color:#fff}@media (max-width:576px){.categories{margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.categories__item{font-size:12px;line-height:18px;letter-spacing:-.019em;font-family:Inter-SemiBold}}.hardvare__box{background:rgba(53,60,76,.1019607843);padding:40px 0;position:relative;margin-top:20px}.hardvare__wrapper{padding:0 80px;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;overflow:hidden}.hardvare__slider{overflow:hidden}.hardvare__arrow{width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer}.hardvare__arrow img{width:100%;height:auto}.hardvare__arrow_left{left:0}.hardvare__arrow_right{right:0}@media (max-width:767px){.hardvare__wrapper{padding:0 15px}.hardvare__box{margin-top:0;padding:20px 0}.hardvare__arrow{width:25px;height:25px}.hardvare__arrow_left{left:-6px}.hardvare__arrow_right{right:-6px}}.product{border-radius:38px;overflow:hidden}.product__img{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;box-sizing:border-box}.product__img img{max-width:100%;width:100%;height:auto}.product__info{background:#fff;padding:18px 24px 24px 24px}.product__price{font-family:Inter-SemiBold;font-size:32px;color:#000;line-height:1.3;text-align:center}.product__name{font-family:Inter-SemiBold;font-size:28px;line-height:1.2;color:#000;letter-spacing:-.019em;text-align:center;margin-top:21px}.product__text{font-family:22px;line-height:1.2;color:#8891a7;margin-top:18px;text-align:center}@media (max-width:767px){.product{border-radius:16px}.product__img img{max-height:100%}.product__info{padding:8px}.product__price{font-size:14px;line-height:21px;letter-spacing:-.022em}.product__name{margin-top:7px;font-size:12px;line-height:1.3;letter-spacing:-.019em}.product__text{margin-top:8px;font-size:9px;line-height:10px}}@media (max-width:576px){.product__info{min-height:88px}}@media (max-width:400px){.product__info{min-height:98px}}.courses__head{padding:12px 15px;background:#891a1c;text-align:center}.courses__body{margin:40px 0 20px 0;position:relative}.courses__carousel{overflow:hidden}.courses__arrow{width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;z-index:10}.courses__arrow img{width:100%;height:auto}.courses__arrow_left{left:-32px}.courses__arrow_right{right:-32px}.courses__item img{width:100%;height:213px;-o-object-fit:cover;object-fit:cover}.courses__info{text-align:center}.courses__link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-family:Inter-Medium;font-size:16px;line-height:1.3;color:#4c5968;text-align:center}.courses__soc{margin-top:10px;text-align:center}.courses__dots{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:5px;margin-top:20px;margin-bottom:20px}.courses__dots .swiper-pagination-bullet{display:-webkit-box;display:-ms-flexbox;display:flex;width:10px;height:10px;background:#fff;border:1px solid #353c4c;border-radius:50%;cursor:pointer}.courses__dots .swiper-pagination-bullet-active{background:#353c4c}@media (max-width:1350px){.courses__body{max-width:95%;margin:40px auto 20px auto}.courses__item img{height:auto}}@media (max-width:767px){.courses__body{max-width:92%}.courses__arrow{width:25px;height:25px}.courses__arrow img{width:100%;height:auto}.courses__arrow_left{left:-19px}.courses__arrow_right{right:-19px}.courses__dots .swiper-pagination-bullet{width:8px;height:8px}}@media (max-width:576px){.courses__body{margin:16px auto}.courses__link{font-size:12px;line-height:18px}.courses__soc{margin-top:10px}}.coursepopup{display:none;padding:10px}.coursepopup iframe{min-width:700px;width:100%;height:400px}@media (max-width:992px){.coursepopup iframe{min-width:400px;height:300px}}@media (max-width:576px){.coursepopup{padding:5px;-webkit-box-sizing:border-box;box-sizing:border-box}.coursepopup iframe{min-width:320px;height:250px}}.feedbaks__box{margin:56px auto 0 auto;max-width:968px}.feedbaks__carousel{overflow:hidden}.feedbaks__content{position:relative}.feedbaks__arrow{width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;z-index:10}.feedbaks__arrow img{width:100%;height:auto}.feedbaks__arrow_left{left:-42px}.feedbaks__arrow_right{right:-42px}.feedbaks__item{position:relative;border-radius:8px;overflow:hidden;min-height:372px}.feedbaks__item img{width:100%;height:372px;-o-object-fit:cover;object-fit:cover;border-radius:8px}.feedbaks__hasvideo{background:rgba(30,30,30,.8);width:100%;padding:10px 16px;font-family:Inter-Regular;font-size:12px;line-height:1.5;color:#fff;text-align:center;position:absolute;top:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box}.feedbaks__dots{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:5px;margin-top:20px}.feedbaks__dots .swiper-pagination-bullet{display:-webkit-box;display:-ms-flexbox;display:flex;width:10px;height:10px;background:#fff;border:1px solid #353c4c;border-radius:50%;cursor:pointer}.feedbaks__dots .swiper-pagination-bullet-active{background:#353c4c}@media (max-width:767px){.feedbaks__arrow{width:25px;height:25px}.feedbaks__arrow img{width:100%;height:auto}.feedbaks__arrow_left{left:-19px}.feedbaks__arrow_right{right:-19px}.feedbaks__dots .swiper-pagination-bullet{width:8px;height:8px}}@media (max-width:576px){.feedbaks__box{margin-top:16px}.feedbaks__item{height:auto;min-height:auto}.feedbaks__item img{height:auto}}.about{max-width:826px;margin:40px auto 0 auto}.about__img{min-width:278px;height:371px;border-radius:13px 13px 0 0;overflow:hidden}.about__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.about__left{width:278px;float:left;margin-right:22px;margin-bottom:12px}.about__author{padding:13px 10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#4c5968;text-align:center;border-radius:0 0 13px 13px}.about__name{font-family:Inter-SemiBold;font-size:22px;color:#fff;letter-spacing:.022em;line-height:1.3}.about__role{font-family:Inter-Regular;font-size:16px;line-height:1.3;color:#fff}.about__text{display:block;font-size:18px;line-height:1.5;color:#4c5968}@media (max-width:992px){.about{padding:0 15px}}@media (max-width:767px){.about{gap:10px}.about__text{font-size:12px}}@media (max-width:576px){.about{margin-top:16px}.about__img{width:170px;min-width:auto;height:227px}.about__left{width:170px;float:left;margin-right:10px;margin-bottom:12px}.about__name{font-size:14px;line-height:21px;letter-spacing:-.022em}.about__role{font-size:10px;line-height:15px}}.images{margin-top:40px;overflow:hidden}.images__item{width:100%;height:300px;border-radius:8px;overflow:hidden}.images__item img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.images__wrapper{position:relative}.images__arrow{width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;z-index:10}.images__arrow img{width:100%;height:auto}.images__arrow_left{left:-42px}.images__arrow_right{right:-42px}.images__dots{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:5px;margin-top:20px}.images__dots .swiper-pagination-bullet{display:-webkit-box;display:-ms-flexbox;display:flex;width:10px;height:10px;background:#fff;border:1px solid #353c4c;border-radius:50%;cursor:pointer}.images__dots .swiper-pagination-bullet-active{background:#353c4c}@media (max-width:767px){.images__arrow{width:25px;height:25px}.images__arrow img{width:100%;height:auto}.images__arrow_left{left:-19px}.images__arrow_right{right:-19px}.images__dots .swiper-pagination-bullet{width:8px;height:8px}}@media (max-width:576px){.images{margin-top:16px}.images__item{height:auto}}.breadcrumbs{padding:10px 0}.breadcrumbs ol{list-style:none;padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:25px;-moz-column-gap:25px;column-gap:25px}.breadcrumbs ol li{font-family:Inter-Regular;font-size:16px;color:#353c4c;line-height:1.4;position:relative}.breadcrumbs ol li::before{content:"/";width:24px;height:24px;background-size:24px;position:absolute;left:-15px;top:0}.breadcrumbs ol li:first-child::before{content:""}.breadcrumbs ol li a{color:#353c4c}@media (max-width:767px){.breadcrumbs ol{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}.breadcrumbs ol li{font-size:12px;line-height:18px}.breadcrumbs ol li:before{width:10px;height:10px;left:-7px}}.catalog__items{padding:40px 0;background:rgba(53,60,76,.1019607843)}.catalog__title{font-family:Inter-Bold;font-size:32px;color:#353c4c;line-height:1.2;padding:10px 0}.catalog__slider{overflow:hidden;position:relative}.catalog__slider .swiper-container{width:100%;height:auto;margin-left:auto;margin-right:auto}.catalog__slider .swiper-slide{margin-top:0!important;margin-bottom:30px}.catalog__wrapper{padding:0 40px;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;overflow:hidden}.catalog__arrow{width:32px;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer}.catalog__arrow img{width:100%;height:auto}.catalog__arrow_left{left:0}.catalog__arrow_right{right:0}@media (max-width:576px){.catalog__wrapper{padding:0 22px}.catalog__arrow{width:25px;height:25px}.catalog__arrow_left{left:-6px}.catalog__arrow_right{right:-6px}}@media (max-width:576px){.catalog__items{padding:20px 0}.catalog .swiper-slide{margin-bottom:10px}}.s-catalog__box{background:rgba(53,60,76,.1019607843);padding:20px 0}.s-catalog__carousel{overflow:hidden;position:relative;width:100%;height:auto;overflow:hidden;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box}.s-catalog__carousel img{border-radius:16px}.s-catalog__img{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.s-catalog__img img{max-width:100%}.s-catalog__arrow{position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);z-index:9;cursor:pointer}.s-catalog_right{right:6px}.s-catalog_left{left:6px}.s-catalog__title{font-family:Inter-Bold;margin-top:20px;font-size:32px;line-height:1.3;letter-spacing:.022em;color:#353c4c}.s-catalog__price{font-family:Inter-Bold;font-size:24px;line-height:1.3;color:#000;margin-top:28px;text-align:center}.s-catalog__btn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:340px;height:48px;background:#891a1c;border-radius:8px;padding:8px 20px;font-family:Inter-SemiBold;font-size:14px;color:#fff;margin:20px auto;-webkit-box-sizing:border-box;box-sizing:border-box}.s-catalog__dnav{padding:20px 0}.s-catalog__dnav button{background:0 0;color:#8891a7;font-size:22px;line-height:21px;letter-spacing:.022em;font-family:Inter-SemiBold;border:none}.s-catalog__dnav .swiper-slide-thumb-active{color:#1d1d1d;padding-bottom:6px;border-bottom:2px solid #1d1d1d}.s-catalog__ditems{overflow:hidden}.s-catalog__ditem{background:#fff;border-radius:16px;padding:16px;-webkit-box-sizing:border-box;box-sizing:border-box;height:auto}.s-catalog__ditem ul{padding:0;margin:0;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:22px}.s-catalog__ditem ul li{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.s-catalog__ditem ul li span{font-family:Inter-Regular;font-size:16px;color:rgba(0,0,0,.8);letter-spacing:.022em}.s-catalog__ditem ul li span:last-child{font-family:Inter-SemiBold;white-space:nowrap}.s-catalog__ditem_text{padding:24px;font-family:Inter-Regular;line-height:1.3}.s-catalog__instruction{margin-top:20px;text-align:center}.s-catalog__instruction a{font-family:Inter-Medium;font-size:14px;line-height:1.5;color:#0d68ef}@media (max-width:767px){.s-catalog__dnav .swiper-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.s-catalog__dnav button{font-size:14px;line-height:21px;letter-spacing:-.022em;width:auto}.s-catalog__ditem ul li span{font-size:14px;line-height:21px}}@media (max-width:576px){.s-catalog__btn{width:100%}}.pricepopup{display:none;padding:0;background:0 0}.blog__title{font-size:32px;color:#353c4c;line-height:1.2;font-family:Inter-Bold;letter-spacing:-.022em;padding:10px 0}.blog__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:16px;margin-top:16px}.blog__item{background:#ebebed;padding:18px 16px}.blog__item-title{font-family:Inter-SemiBold;color:#1e1e1e;letter-spacing:-.022em;font-size:28px;line-height:1.3}.blog__item-text{font-family:Inter-Regular;font-size:16px;color:#4c5968;line-height:1.5;margin-top:10px}@media (max-width:576px){.blog{padding-top:0}.blog__item-title{font-size:14px}.blog__item-text{font-size:12px}}.page-pagination{margin-top:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:10px}.page-pagination .page-numbers{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32px;height:32px;background:#ebebed;font-family:Inter-SemiBold;color:#000;-webkit-transition:all .2s ease;transition:all .2s ease}.page-pagination .page-numbers:hover{opacity:.8}.single{background:#ebebed}.single__title{font-family:Inter-Bold;font-size:32px;line-height:1.3;letter-spacing:-.022em;color:#353c4c;padding:20px 0}.single__content{padding-bottom:60px}.single__content h1,.single__content h2,.single__content h3,.single__content h4,.single__content h5,.single__content p{font-family:Inter-Regular;color:#1e1e1e}.single__content h1{font-size:32px;font-family:Inter-Bold}.single__content h2{font-size:28px;font-family:Inter-Bold}.single__content h3{font-size:22px;font-family:Inter-SemiBold}.single__content h4{font-size:20px;font-family:Inter-SemiBold}.single__content h5{font-size:18px;font-family:Inter-Regular}.single__content p{font-size:16px;line-height:1.4;margin-bottom:20px}.single__content img{max-width:100%}.single__content ul{margin:0;padding-left:20px}.single__content ul li{margin-bottom:15px}.single__content .aligncenter{clear:both;text-align:center;display:block;margin-left:auto;margin-right:auto}.single__content .alignleft{display:inline;float:left;margin-right:1.5em}.single__content .alignright{display:inline;float:right;margin-left:1.5em}.single__content .wp-caption{max-width:100%;margin-bottom:20px}.page-404{padding:0 0 100px 0}.page-404__title{text-align:center;font-size:102px;font-family:Inter-Medium;line-height:1}.page-404__text{text-align:center;font-size:42px;font-family:Inter-Regular}.page-404__btn{text-align:center}.page-404__btn a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:7px 30px;background:#891a1c;color:#fff;font-size:18px;border-radius:3px;margin-top:20px}.carouseldots{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:5px;margin-top:20px}.carouseldots .swiper-pagination-bullet{display:-webkit-box;display:-ms-flexbox;display:flex;width:10px;height:10px;background:#fff;border:1px solid #353c4c;border-radius:50%;cursor:pointer}.carouseldots .swiper-pagination-bullet-active{background:#353c4c}@media (max-width:767px){.carouseldots .swiper-pagination-bullet{width:8px;height:8px}}.items{padding:30px 0}.items__boxes{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:996px;margin:0 auto}.items__box{width:calc(50% - 10px)}.items__btn{text-align:center;margin-top:32px}@media (max-width:767px){.items{padding-top:0;padding-bottom:0}.items__box{width:100%}}.colored-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:158px;background:rgba(53,60,76,.1019607843);padding:24px 32px;border-radius:15px;color:#1e1e1e;-webkit-box-sizing:border-box;box-sizing:border-box}.colored-box__title{font-family:Inter-Bold;color:#1e1e1e;font-size:20px;line-height:1;letter-spacing:-.022em}.colored-box__text{font-family:Inter-Regular;font-size:16px;line-height:1.5;margin-top:8px}@media (max-width:767px){.colored-box{min-height:auto}.colored-box__text{margin-top:12px}}@media (max-width:576px){.colored-box{padding:16px 20px}.colored-box__title{font-family:Inter-SemiBold;font-size:16px;line-height:1.3}.colored-box__text{font-size:14px;font-family:Inter-Medium;line-height:17px}}