: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{to{transform:rotate(1turn)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{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{0%{transform:scale(.975) translate3d(0,16px,0);opacity:0}to{transform:scale(1) translateZ(0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(.975) translate3d(0,16px,0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{to{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}to{opacity:1}}@keyframes f-fadeFastOut{to{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}to{opacity:1}}@keyframes f-fadeSlowOut{to{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)*0.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-crossfadeOut{to{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%)}to{transform:translateZ(0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}to{transform:translateZ(0)}}@keyframes f-slideOutNext{to{transform:translateX(-100%)}}@keyframes f-slideOutPrev{to{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}to{transform:translateZ(0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes f-classicOutNext{to{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{to{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:none}.f-button:focus-visible{outline:none;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)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}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:hsla(0,0%,100%,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:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex,1050);outline:none;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:transparent}.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:translateZ(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-image,.fancybox__slide.has-video{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__backdrop:empty,.fancybox__slide:empty,.fancybox__track:empty,.fancybox__viewport:empty{display:block}.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:transparent;min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:50%;transition:none;transform:translateZ(0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px;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,.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,.is-idle.is-compact .fancybox__footer{animation:f-fadeOut .15s ease-out both}.is-idle.is-compact .fancybox__footer{pointer-events:none}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top,calc(var(--f-spinner-width)*-0.5)) 0 0 var(--f-spinner-left,calc(var(--f-spinner-height)*-0.5));z-index:30;cursor:pointer}.fancybox-protected{right:0;bottom:0}.fancybox-ghost,.fancybox-protected{position:absolute;top:0;left:0;z-index:40;user-select:none}.fancybox-ghost{width:100%;height:100%;min-height:0;object-fit:contain;pointer-events:none}.fancybox-focus-guard{outline:none;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:transparent}.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:rgba(0,0,0,0);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:translateZ(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)*-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%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:transparent;outline:none;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:none}.f-thumbs__slide__button:focus-visible{outline:none;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}.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(hsla(0,0%,100%,.1),hsla(0,0%,100%,.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(hsla(0,0%,100%,.1),hsla(0,0%,100%,.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,hsla(0,0%,100%,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:f-fadeOut .15s ease-out both}.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}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child,[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child,[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child,[data-fancybox-toggle-fullscreen] svg g:last-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}html{line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}@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}.swiper,:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{overflow:hidden;list-style:none;padding:0}.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:translateZ(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(270deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(90deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(0deg,rgba(0,0,0,.5),transparent)}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,rgba(0,0,0,.5),transparent)}.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-radius:50%;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-top:4px solid transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.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-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:normal;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:opacity .3s;transform:translateZ(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,.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:transform .2s,top .2s}.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:transform .2s,left .2s}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.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% - var(--swiper-scrollbar-sides-offset, 1%)*2)}.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% - var(--swiper-scrollbar-sides-offset, 1%)*2)}.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,.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}.fancybox__container.is-closing .fancybox__content{opacity:0}:root{--unbounded:"Unbounded",sans-serif;--green:#1e514c;--green-hover:#123b37;--olive:#a6ce8a;--olive-hover:#9ec088;--white:#fff;--gray:#f1f1ef;--gray70:rgba(241,241,239,0.7);--document-bg:var(--white);--footer-bg:var(--gray);--bg-overlay:rgba(30,81,76,0.4);--red:red}html{font-family:var(--unbounded);line-height:1.4;color:var(--green);min-height:100%;height:100%;-webkit-text-size-adjust:100%}body,html{position:relative;width:100%}body{height:100%;background-color:var(--document-bg)}@media only screen and (min-width:1051px){body{overscroll-behavior-y:none}}body.is-locked{overflow:hidden}body.is-loaded #loader{background-color:transparent;pointer-events:none}#app{display:flex;flex-direction:column;justify-content:space-between;min-height:100%;max-width:100%;overflow:hidden}*{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}*,* :after,* :before{box-sizing:border-box}a,button,input,select,textarea{-webkit-appearance:none;border-radius:0}button{background:none;border:none;box-shadow:none;padding:0;outline:none;color:inherit}a,button{cursor:pointer}a{text-decoration:none;color:var(--green)}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin:0;font-weight:500}.h2,.subheading,b,h2{font-weight:500}b,strong{margin:0}strong{font-weight:700}picture{display:block;margin:0}picture.fullImg img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (max-width:640px){.mobile-hide{display:none!important}}.grecaptcha-badge{z-index:-1!important;opacity:0!important}.form{position:relative;display:flex;gap:1.35417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.form{gap:1.80556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.form{gap:2.47619vw}}@media only screen and (max-width:860px) and (min-width:641px){.form{gap:3.02326vw}}@media only screen and (max-width:640px){.form{gap:6.66667vw}}.form--horizontal{display:flex}@media only screen and (max-width:860px) and (min-width:641px),only screen and (max-width:1050px) and (min-width:861px){.form--horizontal{flex-wrap:wrap}}@media only screen and (max-width:640px){.form--horizontal{flex-direction:column}}.form--horizontal .form__row{display:flex;flex:1 0 0;align-items:center}@media only screen and (max-width:640px){.form--horizontal .form__row{width:100%}}.form--horizontal .form__row .input{width:100%}.form--horizontal .form__row--submit{flex:initial}@media only screen and (max-width:640px){.form--horizontal .form__row--submit{justify-content:center}}.form--horizontal .input__error{position:absolute}.form--vertical{flex-direction:column}.input{position:relative}.input:active:not(:disabled) .input__field,body:not(.is-touch-device) .input:hover:not(:disabled) .input__field{border-color:var(--green)}.input--border-green .input__field,.input--border-white .input__field{background-color:transparent}.input--border-white:active:not(:disabled) .input__field,body:not(.is-touch-device) .input--border-white:hover:not(:disabled) .input__field{border-color:var(--olive)}.input--border-white .input__field{color:var(--white);border-color:var(--white)}.input--border-white .input__field:focus{border-color:var(--olive)}.input--border-white .input__label{color:var(--white)}.input--border-green:active:not(:disabled) .input__field,body:not(.is-touch-device) .input--border-green:hover:not(:disabled) .input__field{border-color:var(--green-hover)}.input--border-green .input__field{color:var(--green);border-color:var(--green)}.input--border-green .input__field:focus{border-color:var(--green-hover)}.input--border-green .input__label{color:var(--green)}.input.is-filled .input__label{top:-.9375vw;left:.20833vw;font-weight:300}@media only screen and (max-width:1440px) and (min-width:1051px){.input.is-filled .input__label{top:-1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input.is-filled .input__label{top:-1.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.input.is-filled .input__label{top:-2.09302vw}}@media only screen and (max-width:640px){.input.is-filled .input__label{top:-4.61538vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.input.is-filled .input__label{left:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input.is-filled .input__label{left:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.input.is-filled .input__label{left:.46512vw}}@media only screen and (max-width:640px){.input.is-filled .input__label{left:1.02564vw}}.input.is-error .input__field,.input.with-error .input__field{border-color:var(--red)!important}.input.is-error .input__error,.input.with-error .input__error{display:block}.input--full{width:100%}.input__wrapper{position:relative}.input__label{pointer-events:none;position:absolute;top:.52083vw;left:1.5625vw;display:block;font-weight:500;color:var(--green);transition:all .22s}@media only screen and (max-width:1440px) and (min-width:1051px){.input__label{top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__label{top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__label{top:1.16279vw}}@media only screen and (max-width:640px){.input__label{top:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.input__label{left:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__label{left:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__label{left:3.48837vw}}@media only screen and (max-width:640px){.input__label{left:7.69231vw}}.input__field{display:block;width:100%;resize:none;outline:none;padding:.625vw 1.5625vw;font-weight:500;color:var(--green);border:1px solid var(--white);transition:.3s ease;transition-property:border-color;text-align:left}@media only screen and (max-width:1440px) and (min-width:1051px){.input__field{padding:.83333vw 2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__field{padding:1.14286vw 2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__field{padding:1.39535vw 3.48837vw}}@media only screen and (max-width:640px){.input__field{padding:3.07692vw 7.69231vw}}.input__field:-webkit-autofill{font-size:.83333vw!important;border-color:var(--white);-webkit-box-shadow:inset 0 0 0 2.60417vw var(--white);-webkit-text-fill-color:var(--green)}@media only screen and (max-width:1440px) and (min-width:1051px){.input__field:-webkit-autofill{font-size:.97222vw!important;-webkit-box-shadow:inset 0 0 0 3.47222vw var(--white)}}@media only screen and (max-width:1050px) and (min-width:861px){.input__field:-webkit-autofill{font-size:1.33333vw!important;-webkit-box-shadow:inset 0 0 0 4.7619vw var(--white)}}@media only screen and (max-width:860px) and (min-width:641px){.input__field:-webkit-autofill{font-size:1.62791vw!important;-webkit-box-shadow:inset 0 0 0 5.81395vw var(--white)}}@media only screen and (max-width:640px){.input__field:-webkit-autofill{font-size:3.58974vw!important;-webkit-box-shadow:inset 0 0 0 12.82051vw var(--white)}}.input__field::-webkit-inner-spin-button,.input__field::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.input__field[type=number]{-moz-appearance:textfield}.input__field:focus{border-color:var(--green)}.input__field:focus+label{top:-.83333vw;left:.20833vw}@media only screen and (max-width:1440px) and (min-width:1051px){.input__field:focus+label{top:-1.11111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__field:focus+label{top:-1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__field:focus+label{top:-1.86047vw}}@media only screen and (max-width:640px){.input__field:focus+label{top:-4.10256vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.input__field:focus+label{left:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__field:focus+label{left:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__field:focus+label{left:.46512vw}}@media only screen and (max-width:640px){.input__field:focus+label{left:1.02564vw}}.input__error{display:none;margin-top:.15625vw;color:var(--red)}@media only screen and (max-width:1440px) and (min-width:1051px){.input__error{margin-top:.20833vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__error{margin-top:.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__error{margin-top:.34884vw}}@media only screen and (max-width:640px){.input__error{margin-top:.76923vw}}.input--file{display:flex;align-items:center;justify-content:center}.info-block__border-caption .input--file:hover p:first-child:before,.input--file:hover .info-block__border-caption p:first-child:before,.input--file:hover .svg{fill:var(--olive-hover)}.input--file:hover .input__file-btn{color:var(--olive-hover);text-decoration:underline}.input__file-icon{margin-right:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.input__file-icon{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__file-icon{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__file-icon{margin-right:1.16279vw}}@media only screen and (max-width:640px){.input__file-icon{margin-right:2.5641vw}}.input__file-btn{cursor:pointer;display:flex;align-items:center;padding-top:.52083vw;padding-bottom:.52083vw;font-weight:500;color:var(--olive)}@media only screen and (max-width:1440px) and (min-width:1051px){.input__file-btn{padding-top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__file-btn{padding-top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__file-btn{padding-top:1.16279vw}}@media only screen and (max-width:640px){.input__file-btn{padding-top:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.input__file-btn{padding-bottom:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.input__file-btn{padding-bottom:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.input__file-btn{padding-bottom:1.16279vw}}@media only screen and (max-width:640px){.input__file-btn{padding-bottom:2.5641vw}}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.btn{position:relative;display:inline-flex;align-items:center;justify-content:center;max-width:100%;padding:.52083vw 1.5625vw;overflow:hidden}@media only screen and (max-width:1440px) and (min-width:1051px){.btn{padding:.69444vw 1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn{padding:.95238vw 1.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn{padding:1.16279vw 2.09302vw}}@media only screen and (max-width:640px){.btn{padding:2.5641vw 4.61538vw}}.btn.is-disabled,.btn:disabled,.btn[disabled]{cursor:not-allowed;border-color:rgba(7,13,11,.24)!important}.btn.is-disabled:before,.btn:disabled:before,.btn[disabled]:before{background:rgba(7,13,11,.24)!important}.btn.is-disabled .btn__name,.btn:disabled .btn__name,.btn[disabled] .btn__name{color:var(--white)}.btn.is-disabled .btn__icon,.btn:disabled .btn__icon,.btn[disabled] .btn__icon{fill:var(--white)}.btn.is-loading{pointer-events:none}.btn.is-loading:after{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;width:1.25vw;height:1.25vw;content:"";background:url(images/loader.svg) 50% 50% no-repeat;background-size:contain;animation:rotating 2.4s linear infinite}@media only screen and (max-width:1440px) and (min-width:1051px){.btn.is-loading:after{width:1.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn.is-loading:after{width:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn.is-loading:after{width:2.7907vw}}@media only screen and (max-width:640px){.btn.is-loading:after{width:6.15385vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.btn.is-loading:after{height:1.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn.is-loading:after{height:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn.is-loading:after{height:2.7907vw}}@media only screen and (max-width:640px){.btn.is-loading:after{height:6.15385vw}}.btn.is-loading .btn__name{opacity:0}.btn:before{position:absolute;top:0;left:0;width:100%;height:100%;content:"";display:block;background-color:var(--green);transition:background .3s ease}.btn:active:not(:disabled):before,body:not(.is-touch-device) .btn:hover:not(:disabled):before{background-color:var(--green-hover)}.btn__icon{pointer-events:none;margin-right:.52083vw;fill:var(--olive)}@media only screen and (max-width:1440px) and (min-width:1051px){.btn__icon{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn__icon{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn__icon{margin-right:1.16279vw}}@media only screen and (max-width:640px){.btn__icon{margin-right:2.5641vw}}.btn__name{position:relative;z-index:1;font-weight:500;line-height:1.4;color:var(--olive);pointer-events:none;transition:color .3s ease}@media only screen and (max-width:860px) and (min-width:641px){.btn__name{font-size:1.62791vw}}@media only screen and (max-width:640px){.btn__name{font-size:3.58974vw}}.btn--full{width:100%}.btn.btn--secondary:before{background-color:var(--olive)}.btn.btn--secondary .btn__name{color:var(--white)}.btn.btn--secondary .btn__name.txt-green{color:var(--green)}.btn.btn--secondary .btn__icon{fill:var(--white)}.btn.btn--secondary:active:not(:disabled):before,body:not(.is-touch-device) .btn.btn--secondary:hover:not(:disabled):before{background-color:var(--olive-hover)}.btn.btn--disabled-gray.is-disabled,.btn.btn--disabled-gray:disabled,.btn.btn--disabled-gray[disabled]{border-color:var(--gray70)!important}.btn.btn--disabled-gray.is-disabled:before,.btn.btn--disabled-gray:disabled:before,.btn.btn--disabled-gray[disabled]:before{background:var(--gray70)!important}.btn--center{margin-right:auto;margin-left:auto}.btn__wrap{display:flex;align-items:center}@media only screen and (max-width:640px){.btn__wrap{flex-direction:column}}.btn__wrap .btn+.btn{margin-left:1.66667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.btn__wrap .btn+.btn{margin-left:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn__wrap .btn+.btn{margin-left:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn__wrap .btn+.btn{margin-left:3.72093vw}}@media only screen and (max-width:640px){.btn__wrap .btn+.btn{margin-top:4.10256vw;margin-left:0}}.btn__wrap.tac{justify-content:center}.btn__wrap.between{justify-content:space-between}.btn-to-application{position:fixed;z-index:3;right:-5.52083vw;bottom:11.19792vw;transition:opacity .3s ease 1s;transform:rotate(-90deg)}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-application{right:-5.34722vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-application{right:-7.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-application{right:2.32558vw}}@media only screen and (max-width:640px){.btn-to-application{right:1.53846vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-application{bottom:13.19444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-application{bottom:18.09524vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-application{bottom:9.30233vw}}@media only screen and (max-width:640px){.btn-to-application{bottom:14.35897vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-application{width:5.34884vw;height:5.34884vw;transition:right .3s ease .15s,opacity .3s ease .15s}}@media only screen and (max-width:640px){.btn-to-application{width:9.23077vw;height:9.23077vw;transition:right .3s ease .15s,opacity .3s ease .15s}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-application:before{opacity:.75}}@media only screen and (max-width:860px){.btn-to-application .btn__icon{margin-right:0}}@media only screen and (max-width:860px){.btn-to-application .btn__name{display:none;transform:none}}#app:not(.not-in-top) .btn-to-application{pointer-events:none;opacity:0;transition:opacity .3s ease 0s}@media only screen and (max-width:860px){#app:not(.not-in-top) .btn-to-application{transition:right .3s ease .15s,opacity .3s ease .15s;right:0}}.btn-to-top{position:fixed;z-index:3;right:1.04167vw;bottom:1.04167vw;width:2.39583vw;height:2.39583vw;transition:right .3s ease 0s,opacity .3s ease 0s;background-color:var(--green)}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-top{right:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-top{right:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-top{right:2.32558vw}}@media only screen and (max-width:640px){.btn-to-top{right:1.53846vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-top{bottom:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-top{bottom:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-top{bottom:2.32558vw}}@media only screen and (max-width:640px){.btn-to-top{bottom:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-top{width:3.19444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-top{width:4.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-top{width:5.34884vw}}@media only screen and (max-width:640px){.btn-to-top{width:9.23077vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.btn-to-top{height:3.19444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn-to-top{height:4.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn-to-top{height:5.34884vw}}@media only screen and (max-width:640px){.btn-to-top{height:9.23077vw}}#app:not(.not-in-top) .btn-to-top{pointer-events:none;opacity:0;right:0}@media only screen and (max-width:860px){#app:not(.not-in-top) .btn-to-top{transition:right .3s ease .25s,opacity .3s ease .25s;right:0}}.btn-to-top svg{transform:rotate(-90deg)}.av-container,.container-padding-right{padding-right:10.41667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.av-container,.container-padding-right{padding-right:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.av-container,.container-padding-right{padding-right:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.av-container,.container-padding-right{padding-right:2.7907vw}}@media only screen and (max-width:640px){.av-container,.container-padding-right{padding-right:3.07692vw}}.av-container,.container-padding-left,.footer__logo{padding-left:10.41667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.av-container,.container-padding-left,.footer__logo{padding-left:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.av-container,.container-padding-left,.footer__logo{padding-left:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.av-container,.container-padding-left,.footer__logo{padding-left:2.7907vw}}@media only screen and (max-width:640px){.av-container,.container-padding-left,.footer__logo{padding-left:3.07692vw}}.mt96{margin-top:5vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt96{margin-top:6.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt96{margin-top:9.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt96{margin-top:11.16279vw}}@media only screen and (max-width:640px){.mt96{margin-top:24.61538vw}}.mt72{margin-top:3.75vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt72{margin-top:5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt72{margin-top:6.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt72{margin-top:8.37209vw}}@media only screen and (max-width:640px){.mt72{margin-top:14.35897vw}}.mt56{margin-top:2.91667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt56{margin-top:3.88889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt56{margin-top:5.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt56{margin-top:6.51163vw}}@media only screen and (max-width:640px){.mt56{margin-top:14.35897vw}}.mt40,.scheme__item__img{margin-top:2.08333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt40,.scheme__item__img{margin-top:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt40,.scheme__item__img{margin-top:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt40,.scheme__item__img{margin-top:4.65116vw}}@media only screen and (max-width:640px){.mt40,.scheme__item__img{margin-top:10.25641vw}}.mt32{margin-top:1.66667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt32{margin-top:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt32{margin-top:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt32{margin-top:3.72093vw}}@media only screen and (max-width:640px){.mt32{margin-top:8.20513vw}}.mt26{margin-top:1.35417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt26{margin-top:1.80556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt26{margin-top:2.47619vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt26{margin-top:3.02326vw}}@media only screen and (max-width:640px){.mt26{margin-top:6.66667vw}}.mt16{margin-top:.83333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt16{margin-top:1.11111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt16{margin-top:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt16{margin-top:1.86047vw}}@media only screen and (max-width:640px){.mt16{margin-top:4.10256vw}}.mt10{margin-top:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mt10{margin-top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mt10{margin-top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.mt10{margin-top:1.16279vw}}@media only screen and (max-width:640px){.mt10{margin-top:2.5641vw}}.mb96{margin-bottom:5vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb96{margin-bottom:6.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb96{margin-bottom:9.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb96{margin-bottom:11.16279vw}}@media only screen and (max-width:640px){.mb96{margin-bottom:14.35897vw}}.mb72{margin-bottom:3.75vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb72{margin-bottom:5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb72{margin-bottom:6.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb72{margin-bottom:8.37209vw}}@media only screen and (max-width:640px){.mb72{margin-bottom:18.46154vw}}.mb56,.vacancy.is-opened{margin-bottom:2.91667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb56,.vacancy.is-opened{margin-bottom:3.88889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb56,.vacancy.is-opened{margin-bottom:5.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb56,.vacancy.is-opened{margin-bottom:6.51163vw}}@media only screen and (max-width:640px){.mb56,.vacancy.is-opened{margin-bottom:14.35897vw}}.mb40{margin-bottom:2.08333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb40{margin-bottom:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb40{margin-bottom:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb40{margin-bottom:4.65116vw}}@media only screen and (max-width:640px){.mb40{margin-bottom:10.25641vw}}.career__img,.mb32{margin-bottom:1.66667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.career__img,.mb32{margin-bottom:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__img,.mb32{margin-bottom:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__img,.mb32{margin-bottom:3.72093vw}}@media only screen and (max-width:640px){.career__img,.mb32{margin-bottom:8.20513vw}}.mb26,.md-popup__icon,.md-popup__title,.team__item__photo,.vacancy__list__wrapper{margin-bottom:1.35417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb26,.md-popup__icon,.md-popup__title,.team__item__photo,.vacancy__list__wrapper{margin-bottom:1.80556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb26,.md-popup__icon,.md-popup__title,.team__item__photo,.vacancy__list__wrapper{margin-bottom:2.47619vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb26,.md-popup__icon,.md-popup__title,.team__item__photo,.vacancy__list__wrapper{margin-bottom:3.02326vw}}@media only screen and (max-width:640px){.mb26,.md-popup__icon,.md-popup__title,.team__item__photo,.vacancy__list__wrapper{margin-bottom:6.66667vw}}.mb16{margin-bottom:.83333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb16{margin-bottom:1.11111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb16{margin-bottom:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb16{margin-bottom:1.86047vw}}@media only screen and (max-width:640px){.mb16{margin-bottom:4.10256vw}}.mb10,.md-popup--form .md-popup__inner .form__row--heading{margin-bottom:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.mb10,.md-popup--form .md-popup__inner .form__row--heading{margin-bottom:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.mb10,.md-popup--form .md-popup__inner .form__row--heading{margin-bottom:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.mb10,.md-popup--form .md-popup__inner .form__row--heading{margin-bottom:1.16279vw}}@media only screen and (max-width:640px){.mb10,.md-popup--form .md-popup__inner .form__row--heading{margin-bottom:2.5641vw}}.fsz42,.h1,.headliner,h1{font-size:2.1875vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz42,.h1,.headliner,h1{font-size:2.63889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz42,.h1,.headliner,h1{font-size:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz42,.h1,.headliner,h1{font-size:2.7907vw}}@media only screen and (max-width:640px){.fsz42,.h1,.headliner,h1{font-size:6.15385vw}}.fsz32,.h2,.subheading,.tag__main,h2{font-size:1.66667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz32,.h2,.subheading,.tag__main,h2{font-size:1.80556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz32,.h2,.subheading,.tag__main,h2{font-size:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz32,.h2,.subheading,.tag__main,h2{font-size:2.09302vw}}@media only screen and (max-width:640px){.fsz32,.h2,.subheading,.tag__main,h2{font-size:4.61538vw}}.footer__contact-info__ttl,.fsz24,.h3,.sale-block__list li,.sale-block__note,.steps-block__list li,h3{font-size:1.25vw}@media only screen and (max-width:1440px) and (min-width:1051px){.footer__contact-info__ttl,.fsz24,.h3,.sale-block__list li,.sale-block__note,.steps-block__list li,h3{font-size:1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.footer__contact-info__ttl,.fsz24,.h3,.sale-block__list li,.sale-block__note,.steps-block__list li,h3{font-size:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.footer__contact-info__ttl,.fsz24,.h3,.sale-block__list li,.sale-block__note,.steps-block__list li,h3{font-size:1.86047vw}}@media only screen and (max-width:640px){.footer__contact-info__ttl,.fsz24,.h3,.sale-block__list li,.sale-block__note,.steps-block__list li,h3{font-size:4.10256vw}}.fsz20,.h4,.h5,.h6,.tag__main--small,h4,h5,h6{font-size:1.04167vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz20,.h4,.h5,.h6,.tag__main--small,h4,h5,h6{font-size:1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz20,.h4,.h5,.h6,.tag__main--small,h4,h5,h6{font-size:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz20,.h4,.h5,.h6,.tag__main--small,h4,h5,h6{font-size:1.62791vw}}@media only screen and (max-width:640px){.fsz20,.h4,.h5,.h6,.tag__main--small,h4,h5,h6{font-size:3.58974vw}}.btn__name,.fsz18{font-size:.9375vw}@media only screen and (max-width:1440px) and (min-width:1051px){.btn__name,.fsz18{font-size:1.04167vw}}@media only screen and (max-width:1050px) and (min-width:861px){.btn__name,.fsz18{font-size:1.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.btn__name,.fsz18{font-size:1.62791vw}}@media only screen and (max-width:640px){.btn__name,.fsz18{font-size:3.58974vw}}.fsz16,.input__field,.input__file-btn,.input__label{font-size:.83333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz16,.input__field,.input__file-btn,.input__label{font-size:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz16,.input__field,.input__file-btn,.input__label{font-size:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz16,.input__field,.input__file-btn,.input__label{font-size:1.62791vw}}@media only screen and (max-width:640px){.fsz16,.input__field,.input__file-btn,.input__label{font-size:3.58974vw}}.fsz14,html{font-size:.72917vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz14,html{font-size:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz14,html{font-size:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz14,html{font-size:1.62791vw}}@media only screen and (max-width:640px){.fsz14,html{font-size:3.58974vw}}.fsz12,.input.is-filled .input__label,.input__error{font-size:.625vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz12,.input.is-filled .input__label,.input__error{font-size:.83333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz12,.input.is-filled .input__label,.input__error{font-size:1.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz12,.input.is-filled .input__label,.input__error{font-size:1.39535vw}}@media only screen and (max-width:640px){.fsz12,.input.is-filled .input__label,.input__error{font-size:3.07692vw}}.fsz10,.input__field:focus+label{font-size:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.fsz10,.input__field:focus+label{font-size:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.fsz10,.input__field:focus+label{font-size:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.fsz10,.input__field:focus+label{font-size:1.16279vw}}@media only screen and (max-width:640px){.fsz10,.input__field:focus+label{font-size:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.bw1,.career__warning,.input--border-green .input__field,.input--border-white .input__field,.input__field,.vacancy__top{border-width:.06944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.bw1,.career__warning,.input--border-green .input__field,.input--border-white .input__field,.input__field,.vacancy__top{border-width:.09524vw}}@media only screen and (max-width:860px) and (min-width:641px){.bw1,.career__warning,.input--border-green .input__field,.input--border-white .input__field,.input__field,.vacancy__top{border-width:.11628vw}}@media only screen and (max-width:640px){.bw1,.career__warning,.input--border-green .input__field,.input--border-white .input__field,.input__field,.vacancy__top{border-width:.25641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.bw2{border-width:.13889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.bw2{border-width:.19048vw}}@media only screen and (max-width:860px) and (min-width:641px){.bw2{border-width:.23256vw}}@media only screen and (max-width:640px){.bw2{border-width:.51282vw}}body:not(.is-touch-device) .custom-scrollbar::-webkit-scrollbar{width:5px;height:5px;background-color:var(--gray)}@media only screen and (min-width:1921px){body:not(.is-touch-device) .custom-scrollbar::-webkit-scrollbar{width:.26042vw;height:.26042vw}}@media only screen and (max-width:640px){body:not(.is-touch-device) .custom-scrollbar::-webkit-scrollbar{width:1.28205vw;height:1.28205vw}}body:not(.is-touch-device) .custom-scrollbar::-webkit-scrollbar-thumb{background-color:var(--green)}#loader{transition:opacity .3s ease}.av-section,.main{overflow:hidden}.av-section{padding-top:5vw;padding-bottom:5vw}@media only screen and (max-width:1440px) and (min-width:1051px){.av-section{padding-top:6.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.av-section{padding-top:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.av-section{padding-top:9.30233vw}}@media only screen and (max-width:640px){.av-section{padding-top:10.25641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.av-section{padding-bottom:6.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.av-section{padding-bottom:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.av-section{padding-bottom:9.30233vw}}@media only screen and (max-width:640px){.av-section{padding-bottom:10.25641vw}}.av-section.noPadding{padding:0}.av-section.noPaddingBottom{padding-bottom:0}.av-container{width:100%;max-width:100%;margin-right:auto;margin-left:auto}@media only screen and (min-width:1441px){.av-container{max-width:100vw}}.av-container--full{padding-right:0;padding-left:0}.av-container--left{padding-right:0}.av-container--right{padding-left:0}.txt-white{color:var(--white)}.txt-green{color:var(--green)}.txt-light{font-weight:300}.txt-spacing36{letter-spacing:.36em}.txt-spacing44{letter-spacing:.44em}.txt-with-flag{display:flex;align-items:center}.txt-with-flag img{display:block;width:.625vw;height:.83333vw;margin-right:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.txt-with-flag img{width:.83333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.txt-with-flag img{width:1.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.txt-with-flag img{width:1.39535vw}}@media only screen and (max-width:640px){.txt-with-flag img{width:3.07692vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.txt-with-flag img{height:1.11111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.txt-with-flag img{height:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.txt-with-flag img{height:1.86047vw}}@media only screen and (max-width:640px){.txt-with-flag img{height:4.10256vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.txt-with-flag img{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.txt-with-flag img{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.txt-with-flag img{margin-right:1.16279vw}}@media only screen and (max-width:640px){.txt-with-flag img{margin-right:2.5641vw}}.tac{text-align:center}.tar{text-align:right}.ttu{text-transform:uppercase}.tdu{text-decoration:underline}@media only screen and (min-width:641px){.show-mob{display:none!important}}@media only screen and (max-width:640px){.hide-mob{display:none!important}}.bg-gray{background-color:var(--gray)}.bg-green{background-color:var(--green)}.bg-olive{background-color:var(--olive)}.bg-green-olive{background:linear-gradient(51deg,var(--green),var(--olive))}.logo{height:2.55208vw;transition:height .3s ease;will-change:height}@media only screen and (max-width:1440px) and (min-width:1051px){.logo{height:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.logo{height:3.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.logo{height:3.48837vw}}@media only screen and (max-width:640px){.logo{height:6.15385vw}}.logo__img{display:block;height:100%}.av-picture,.av-picture img{display:block;max-width:100%;width:100%}.av-picture--auto,.av-picture--auto img{width:auto}.info-block__border-caption p:first-child:before,.svg{position:relative;flex-shrink:0;pointer-events:none;width:1.25vw;height:1.25vw;transition:all .3s ease}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption p:first-child:before,.svg{width:1.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption p:first-child:before,.svg{width:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption p:first-child:before,.svg{width:2.7907vw}}@media only screen and (max-width:640px){.info-block__border-caption p:first-child:before,.svg{width:6.15385vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption p:first-child:before,.svg{height:1.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption p:first-child:before,.svg{height:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption p:first-child:before,.svg{height:2.7907vw}}@media only screen and (max-width:640px){.info-block__border-caption p:first-child:before,.svg{height:6.15385vw}}.svg--big{width:2.5vw;height:2.5vw}@media only screen and (max-width:1440px) and (min-width:1051px){.svg--big{width:3.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.svg--big{width:4.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.svg--big{width:5.5814vw}}@media only screen and (max-width:640px){.svg--big{width:12.30769vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.svg--big{height:3.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.svg--big{height:4.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.svg--big{height:5.5814vw}}@media only screen and (max-width:640px){.svg--big{height:12.30769vw}}.svg--medium{width:1.66667vw;height:1.66667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.svg--medium{width:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.svg--medium{width:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.svg--medium{width:3.72093vw}}@media only screen and (max-width:640px){.svg--medium{width:8.20513vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.svg--medium{height:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.svg--medium{height:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.svg--medium{height:3.72093vw}}@media only screen and (max-width:640px){.svg--medium{height:8.20513vw}}.fill--green{fill:var(--green);color:var(--green)}.fill--olive{fill:var(--olive);color:var(--olive)}.fill--white{fill:var(--white);color:var(--white)}.tag{display:flex;flex-direction:column}.tag,.tag__main{align-items:center}.tag__main{display:inline-flex;justify-content:center;padding-right:1.04167vw;padding-left:1.04167vw;font-weight:500;background-color:var(--olive);color:var(--green);text-align:center}@media only screen and (max-width:1440px) and (min-width:1051px){.tag__main{padding-right:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tag__main{padding-right:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__main{padding-right:2.32558vw}}@media only screen and (max-width:640px){.tag__main{padding-right:5.12821vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.tag__main{padding-left:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tag__main{padding-left:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__main{padding-left:2.32558vw}}@media only screen and (max-width:640px){.tag__main{padding-left:5.12821vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__main{padding-top:.46512vw;padding-bottom:.46512vw}}.tag__main--small{padding-top:.3125vw;padding-bottom:.3125vw}@media only screen and (max-width:1440px) and (min-width:1051px){.tag__main--small{padding-top:.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tag__main--small{padding-top:.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__main--small{padding-top:.69767vw}}@media only screen and (max-width:640px){.tag__main--small{padding-top:1.53846vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.tag__main--small{padding-bottom:.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tag__main--small{padding-bottom:.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__main--small{padding-bottom:.69767vw}}@media only screen and (max-width:640px){.tag__main--small{padding-bottom:1.53846vw}}.tag__caption{margin-top:.52083vw;text-align:center}@media only screen and (max-width:1440px) and (min-width:1051px){.tag__caption{margin-top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tag__caption{margin-top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.tag__caption{margin-top:1.16279vw}}@media only screen and (max-width:640px){.tag__caption{margin-top:2.5641vw}}.md-popup{position:fixed;top:0;left:0;display:block;width:100%;height:100%;opacity:0;pointer-events:none;transition:opacity 0s linear .5s;color:var(--white);display:none}.md-popup,.md-popup[data-popup=notify]{z-index:11}.md-popup[data-popup=notify] .md-popup__inner{background-color:var(--white);color:var(--green)}.md-popup--showed{opacity:1;pointer-events:all;transition:opacity 0s linear 0s}.md-popup--showed .md-popup__bg{opacity:1;transition:opacity .4s ease-in-out 0s}.md-popup--showed .md-popup__close{opacity:1}.md-popup--showed .md-popup__inner{opacity:1;transform:translate3d(-50%,-50%,0)}.md-popup__bg{position:absolute;top:0;right:0;bottom:0;left:0;display:block;margin:auto;z-index:0;background:var(--bg-overlay);opacity:0;transition:opacity .3s ease-in-out .2s;will-change:opacity}.md-popup__bg[data-popup-close]{cursor:pointer}.md-popup__close{position:absolute;top:.52083vw;right:.625vw;width:3.75vw;height:3.75vw;padding:.9375vw;display:block;font-size:0;opacity:0;transition:opacity .25s ease-in-out .15s}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__close{top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__close{top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__close{top:1.16279vw}}@media only screen and (max-width:640px){.md-popup__close{top:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__close{right:.83333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__close{right:1.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__close{right:1.39535vw}}@media only screen and (max-width:640px){.md-popup__close{right:3.07692vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__close{width:5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__close{width:6.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__close{width:8.37209vw}}@media only screen and (max-width:640px){.md-popup__close{width:18.46154vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__close{height:5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__close{height:6.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__close{height:8.37209vw}}@media only screen and (max-width:640px){.md-popup__close{height:18.46154vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__close{padding:1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__close{padding:1.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__close{padding:2.09302vw}}@media only screen and (max-width:640px){.md-popup__close{padding:4.61538vw;top:0;right:0;width:14.35897vw;height:14.35897vw;padding:2.5641vw}}.info-block__border-caption .md-popup__close:hover p:first-child:before,.md-popup__close:hover .info-block__border-caption p:first-child:before,.md-popup__close:hover .svg{transform:rotate(-180deg)}.md-popup__close svg{will-change:transform;transition:transform .3s cubic-bezier(.455,.03,.515,.955) .05s}.md-popup__inner{position:absolute;top:50%;left:50%;z-index:1;display:block;max-width:25vw;min-width:25vw;max-height:100%;margin:auto;padding:2.5vw 1.875vw;background-color:var(--green);opacity:0;transform:translate3d(-50%,calc(-50% - 50px),0);transition:opacity .25s ease-in-out .15s,transform .35s cubic-bezier(.455,.03,.515,.955) .15s}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__inner{max-width:33.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__inner{max-width:45.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__inner{max-width:55.81395vw}}@media only screen and (max-width:640px){.md-popup__inner{max-width:123.07692vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__inner{min-width:33.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__inner{min-width:45.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__inner{min-width:55.81395vw}}@media only screen and (max-width:640px){.md-popup__inner{min-width:123.07692vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup__inner{padding:3.33333vw 2.5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup__inner{padding:3.80952vw 3.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup__inner{padding:4.65116vw 4.18605vw}}@media only screen and (max-width:640px){.md-popup__inner{min-width:0;max-width:calc(100% - 8.20513vw);width:100%;padding:10.25641vw 4.10256vw}}.md-popup__title{text-align:center}.md-popup__icon{display:none;width:3.125vw;height:3.125vw;margin-right:auto;margin-left:auto;border-radius:50%;background-position:50%;background-repeat:no-repeat;background-size:contain}@media only screen and (max-width:640px){.md-popup__icon{width:12.82051vw;height:12.82051vw}}.md-popup__icon.success{background-image:url(images/icon-success.svg)}.md-popup__icon.failure{background-image:url(images/icon-warning.svg)}.md-popup__desc{text-align:center}.md-popup--form .form{padding:0}.md-popup--form .md-popup__inner{width:46.875vw;max-width:100%;padding:7.60417vw 5.20833vw;overflow:auto}body:not(.is-touch-device) .md-popup--form .md-popup__inner::-webkit-scrollbar{width:5px;height:5px;background-color:var(--gray)}@media only screen and (min-width:1921px){body:not(.is-touch-device) .md-popup--form .md-popup__inner::-webkit-scrollbar{width:.26042vw;height:.26042vw}}@media only screen and (max-width:640px){body:not(.is-touch-device) .md-popup--form .md-popup__inner::-webkit-scrollbar{width:1.28205vw;height:1.28205vw}}body:not(.is-touch-device) .md-popup--form .md-popup__inner::-webkit-scrollbar-thumb{background-color:var(--olive)}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup--form .md-popup__inner{width:62.5vw;padding:10.13889vw 6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup--form .md-popup__inner{width:68.57143vw;padding:9.52381vw 6.66667vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup--form .md-popup__inner{width:79.06977vw;padding:8.13953vw}}@media only screen and (max-width:640px){.md-popup--form .md-popup__inner{width:calc(100% - 6.15385vw);padding:20.51282vw 4.61538vw 9.23077vw}}.md-popup--form .md-popup__inner .form__row--heading{text-align:center}.md-popup--form .md-popup__inner .form__row:not(.form__row--heading){max-width:23.95833vw;width:100%;margin-right:auto;margin-left:auto}@media only screen and (max-width:1440px) and (min-width:1051px){.md-popup--form .md-popup__inner .form__row:not(.form__row--heading){max-width:31.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.md-popup--form .md-popup__inner .form__row:not(.form__row--heading){max-width:41.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.md-popup--form .md-popup__inner .form__row:not(.form__row--heading){max-width:51.16279vw}}@media only screen and (max-width:640px){.md-popup--form .md-popup__inner .form__row:not(.form__row--heading){max-width:117.94872vw;max-width:100%}}.header{position:fixed;top:0;left:0;z-index:5;display:block;width:100%;margin-top:0;pointer-events:none;transition:transform .4s,background-color .4s;will-change:transform,background-color;background-color:var(--white)}.header__inner{position:relative;z-index:1;display:flex;justify-content:space-between;align-items:center;width:100%;height:4.6875vw;transition:height .3s ease;will-change:height}@media only screen and (max-width:1440px) and (min-width:1051px){.header__inner{height:6.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.header__inner{height:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.header__inner{height:6.97674vw}}@media only screen and (max-width:640px){.header__inner{height:15.38462vw}}.header__progress-bar{position:absolute;top:100%;left:0;height:.20833vw;background:var(--white);background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,var(--olive));width:0}@media only screen and (max-width:1440px) and (min-width:1051px){.header__progress-bar{height:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.header__progress-bar{height:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.header__progress-bar{height:.46512vw}}@media only screen and (max-width:640px){.header__progress-bar{height:1.02564vw}}.header__right{display:flex;align-items:center;pointer-events:all;margin-left:auto}@media only screen and (max-width:640px){.header__right{width:100%;margin-left:auto}}.header__right__inner{display:flex;align-items:center;width:100%}@media only screen and (max-width:640px){.header__right__inner{justify-content:space-between}}.header__logo{margin-right:1.66667vw;height:1.875vw}@media only screen and (max-width:1440px) and (min-width:1051px){.header__logo{margin-right:2.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.header__logo{margin-right:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.header__logo{margin-right:3.72093vw}}@media only screen and (max-width:640px){.header__logo{margin-right:8.20513vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.header__logo{height:2.5vw}}@media only screen and (max-width:1050px) and (min-width:861px){.header__logo{height:2.66667vw}}@media only screen and (max-width:860px) and (min-width:641px){.header__logo{height:3.02326vw}}@media only screen and (max-width:640px){.header__logo{height:6.15385vw}}.header__nav{display:flex;align-items:center;transition:transform .3s ease .15s,opacity .3s ease .15s}body:not(.is-loaded) .header__nav{pointer-events:none}@media only screen and (min-width:861px){body:not(.is-loaded) .header__nav{transition:transform 0s,opacity 0s;transform:translateY(-2.60417vw);opacity:0}}@media only screen and (max-width:1440px) and (min-width:1051px){body:not(.is-loaded) .header__nav{transform:translateY(-3.47222vw)}}@media only screen and (max-width:1050px) and (min-width:861px){body:not(.is-loaded) .header__nav{transform:translateY(-4.7619vw)}}.header__nav>div:first-child{margin-left:0}.header__nav__item{display:flex;align-items:center}@media only screen and (max-width:860px){.header__nav__item{width:100%}}.header__nav__item:not(:first-child){margin-left:2.08333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.header__nav__item:not(:first-child){margin-left:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.header__nav__item:not(:first-child){margin-left:3.80952vw}}@media only screen and (max-width:860px){.header__nav__item:not(:first-child){margin-left:0}}@media only screen and (max-width:640px){.header__nav__item .btn__icon{margin-right:0}}@media only screen and (max-width:640px){.header__nav__item .btn__name{display:none}}.footer{padding-top:5vw;padding-bottom:7.8125vw}@media only screen and (max-width:1440px) and (min-width:1051px){.footer{padding-top:6.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.footer{padding-top:9.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.footer{padding-top:11.16279vw}}@media only screen and (max-width:640px){.footer{padding-top:24.61538vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.footer{padding-bottom:10.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.footer{padding-bottom:14.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.footer{padding-bottom:17.44186vw}}@media only screen and (max-width:640px){.footer{padding-bottom:38.46154vw;padding-top:10.25641vw;padding-bottom:30.76923vw}}.footer__inner{position:relative;display:grid;grid-template-columns:repeat(2,1fr)}.footer__inner[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.footer__inner[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}@media only screen and (max-width:640px){.footer__inner{grid-template-columns:1fr}}@media only screen and (max-width:640px){.footer__left{margin-bottom:8.20513vw}}@media only screen and (max-width:640px){.footer__right .info-block{margin-bottom:10.25641vw}}.footer__contact-info{display:inline-flex;flex-direction:column;margin-bottom:.72917vw}@media only screen and (max-width:1440px) and (min-width:1051px){.footer__contact-info{margin-bottom:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.footer__contact-info{margin-bottom:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.footer__contact-info{margin-bottom:1.62791vw}}@media only screen and (max-width:640px){.footer__contact-info{margin-bottom:3.58974vw;margin-top:8.20513vw}}.footer__contact-info__ttl{font-weight:500}.footer__contact-info__link{font-weight:300;padding-top:.72917vw}@media only screen and (max-width:1440px) and (min-width:1051px){.footer__contact-info__link{padding-top:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.footer__contact-info__link{padding-top:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.footer__contact-info__link{padding-top:1.62791vw}}@media only screen and (max-width:640px){.footer__contact-info__link{padding-top:3.58974vw}}.footer__contact-info__link:active:not(:disabled),body:not(.is-touch-device) .footer__contact-info__link:hover:not(:disabled){text-decoration:underline}.footer__form .form__row--submit{text-align:right}.footer__logo{position:absolute;bottom:0;left:0}@media only screen and (max-width:640px){.footer__logo{bottom:-17.94872vw}}.info-block--center{margin-right:auto;margin-left:auto;text-align:center}@media only screen and (max-width:640px){.info-block--center{text-align:left}}.info-block p{margin:0;padding-right:2.91667vw}.info-block p+p{margin:.625vw 0 0}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block p+p{margin-top:.83333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block p+p{margin-top:1.14286vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block p+p{margin-top:1.39535vw}}@media only screen and (max-width:640px){.info-block p+p{margin-top:3.07692vw}}.info-block__border-caption{position:relative;border:2px dashed var(--olive);padding:2.86458vw 2.86458vw 2.86458vw 5vw}@media only screen and (min-width:1921px){.info-block__border-caption{border-width:.10417vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption{padding:4.18605vw 4.18605vw 4.18605vw 6.51163vw}}@media only screen and (max-width:640px){.info-block__border-caption{padding:6.15385vw;border-width:.51282vw}}.info-block__border-caption p:first-child{position:relative}.info-block__border-caption p:first-child:before{content:"";position:absolute;top:0;right:100%;margin-top:.57292vw;margin-right:.57292vw;background:url(/images/svg/icon-arrow-right.svg) no-repeat 50%;background-size:contain}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption p:first-child:before{margin-top:.76389vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption p:first-child:before{margin-top:1.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption p:first-child:before{margin-top:1.27907vw}}@media only screen and (max-width:640px){.info-block__border-caption p:first-child:before{margin-top:2.82051vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption p:first-child:before{margin-right:.76389vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption p:first-child:before{margin-right:1.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption p:first-child:before{margin-right:1.27907vw}}@media only screen and (max-width:640px){.info-block__border-caption p:first-child:before{margin-right:2.82051vw;display:none}}.swiper:not(:hover) [data-slider-prev]{transform:translateX(-3.33333vw)}.swiper:not(:hover) [data-slider-next]{transform:translateX(3.33333vw)}.swiper-slide{cursor:grab}.swiper-slide:active{cursor:grabbing}.swiper .nav-arrows{position:absolute;top:50%;left:0;transform:translate3d(0,-50%,0);z-index:6;display:flex;align-items:center;justify-content:space-between;width:100%;height:0;opacity:1}@media only screen and (max-width:1050px){.swiper .nav-arrows{display:none}}.swiper .nav-arrows__wrapper{position:relative}.swiper .nav-arrows__item{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;width:2.39583vw;height:2.39583vw;background-color:var(--green);overflow:hidden;transition-duration:.3s;transition-timing-function:ease;transition-property:background-color,opacity,transform,border-color;will-change:opacity,transform}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper .nav-arrows__item{width:3.19444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper .nav-arrows__item{width:4.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper .nav-arrows__item{width:5.34884vw}}@media only screen and (max-width:640px){.swiper .nav-arrows__item{width:11.79487vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper .nav-arrows__item{height:3.19444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper .nav-arrows__item{height:4.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper .nav-arrows__item{height:5.34884vw}}@media only screen and (max-width:640px){.swiper .nav-arrows__item{height:11.79487vw}}.swiper .nav-arrows__item[data-slider-prev]{left:0}.swiper .nav-arrows__item[data-slider-next]{right:0}.swiper .nav-arrows__item:hover{background-color:var(--green-hover)}.swiper .nav-arrows__item[disabled]{pointer-events:none;opacity:0}.swiper-pagination-bullets{position:absolute;top:auto!important;bottom:.9375vw!important;left:0;right:0;z-index:5;display:flex;flex-wrap:wrap;justify-content:center;margin-top:.9375vw}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets{margin-top:1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets{margin-top:1.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets{margin-top:2.09302vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets{margin-top:4.61538vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets{bottom:1.25vw!important}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets{bottom:1.71429vw!important}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets{bottom:2.09302vw!important}}@media only screen and (max-width:640px){.swiper-pagination-bullets{bottom:4.61538vw!important}}.swiper-pagination-bullets .swiper-pagination-bullet{width:.52083vw;height:.52083vw;margin-right:.20833vw;margin-left:.20833vw;border-radius:3.125vw;background:var(--white);transition:all .35s cubic-bezier(.455,.03,.515,.955);opacity:1}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet{width:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet{width:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet{width:1.16279vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet{width:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet{height:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet{height:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet{height:1.16279vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet{height:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-right:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-right:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-right:.46512vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-right:1.02564vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-left:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-left:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-left:.46512vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet{margin-left:1.02564vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet{border-radius:4.16667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet{border-radius:5.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet{border-radius:6.97674vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet{border-radius:15.38462vw}}.swiper-pagination-bullets .swiper-pagination-bullet-active{width:1.45833vw;background:var(--white)}@media only screen and (max-width:1440px) and (min-width:1051px){.swiper-pagination-bullets .swiper-pagination-bullet-active{width:1.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.swiper-pagination-bullets .swiper-pagination-bullet-active{width:2.66667vw}}@media only screen and (max-width:860px) and (min-width:641px){.swiper-pagination-bullets .swiper-pagination-bullet-active{width:3.25581vw}}@media only screen and (max-width:640px){.swiper-pagination-bullets .swiper-pagination-bullet-active{width:7.17949vw}}.swiper-pagination-bullets.nav-pagination--olive .swiper-pagination-bullet,.swiper-pagination-bullets.nav-pagination--olive .swiper-pagination-bullet-active{background:var(--olive)}.vacancy.is-opened .vacancy__top__arrow{transform:translateY(-50%) rotate(180deg)}.vacancy:not(.is-opened) .vacancy__content{height:0;overflow:hidden}.vacancy:not(.is-opened) .vacancy__content__inner>*{transition:opacity 0s 0s;opacity:0}.vacancy__top{position:relative;border-bottom:1px dashed;margin-bottom:.52083vw;padding-top:.52083vw;padding-bottom:.52083vw;padding-right:2.60417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__top{margin-bottom:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__top{margin-bottom:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__top{margin-bottom:1.16279vw}}@media only screen and (max-width:640px){.vacancy__top{margin-bottom:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__top{padding-top:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__top{padding-top:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__top{padding-top:1.16279vw}}@media only screen and (max-width:640px){.vacancy__top{padding-top:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__top{padding-bottom:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__top{padding-bottom:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__top{padding-bottom:1.16279vw}}@media only screen and (max-width:640px){.vacancy__top{padding-bottom:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__top{padding-right:3.47222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__top{padding-right:4.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__top{padding-right:5.81395vw}}@media only screen and (max-width:640px){.vacancy__top{padding-right:12.82051vw}}.vacancy__top[data-accordion-btn]{cursor:pointer}body:not(.is-touch-device) .vacancy__top[data-accordion-btn]:hover:not(:disabled) .vacancy__title{color:var(--olive)}body:not(.is-touch-device) .vacancy__top[data-accordion-btn]:hover:not(:disabled) .vacancy__top__arrow{fill:var(--olive)}.vacancy__top[data-accordion-btn]:active:not(:disabled) .vacancy__title{color:var(--olive)}.vacancy__top[data-accordion-btn]:active:not(:disabled) .vacancy__top__arrow{fill:var(--olive)}.vacancy__top__info{display:flex;align-items:baseline}.vacancy__top__arrow{position:absolute;top:50%;transform:translateY(-50%);right:0}.vacancy__date{margin-right:.78125vw}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__date{margin-right:1.04167vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__date{margin-right:1.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__date{margin-right:1.74419vw}}@media only screen and (max-width:640px){.vacancy__date{margin-right:3.84615vw}}.vacancy__location{display:flex;align-items:baseline}.info-block__border-caption .vacancy__location p:first-child:before,.vacancy__location .info-block__border-caption p:first-child:before,.vacancy__location .svg{margin-right:.20833vw}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption .vacancy__location p:first-child:before,.vacancy__location .info-block__border-caption p:first-child:before,.vacancy__location .svg{margin-right:.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption .vacancy__location p:first-child:before,.vacancy__location .info-block__border-caption p:first-child:before,.vacancy__location .svg{margin-right:.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption .vacancy__location p:first-child:before,.vacancy__location .info-block__border-caption p:first-child:before,.vacancy__location .svg{margin-right:.46512vw}}@media only screen and (max-width:640px){.info-block__border-caption .vacancy__location p:first-child:before,.vacancy__location .info-block__border-caption p:first-child:before,.vacancy__location .svg{margin-right:1.02564vw}}.vacancy__title{transition:color .3s ease}.vacancy__content{transition:height .35s ease;will-change:contents}.vacancy__content__inner>*{transition:opacity .35s ease}.vacancy__list{display:grid;gap:.41667vw;margin-top:.41667vw;padding-left:1.14583vw;list-style:none}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list{gap:.55556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list{gap:.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list{gap:.93023vw}}@media only screen and (max-width:640px){.vacancy__list{gap:2.05128vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list{margin-top:.55556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list{margin-top:.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list{margin-top:.93023vw}}@media only screen and (max-width:640px){.vacancy__list{margin-top:2.05128vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list{padding-left:1.52778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list{padding-left:2.09524vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list{padding-left:2.55814vw}}@media only screen and (max-width:640px){.vacancy__list{padding-left:5.64103vw}}.vacancy__list>li{position:relative;line-height:1.4}.vacancy__list>li:before{content:"";position:absolute;top:.36458vw;left:-.9375vw;width:.3125vw;height:.3125vw;border-radius:50%;background-color:var(--green)}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list>li:before{top:.48611vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list>li:before{top:.66667vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list>li:before{top:.81395vw}}@media only screen and (max-width:640px){.vacancy__list>li:before{top:1.79487vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list>li:before{left:-1.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list>li:before{left:-1.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list>li:before{left:-2.09302vw}}@media only screen and (max-width:640px){.vacancy__list>li:before{left:-4.61538vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list>li:before{width:.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list>li:before{width:.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list>li:before{width:.69767vw}}@media only screen and (max-width:640px){.vacancy__list>li:before{width:1.53846vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list>li:before{height:.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list>li:before{height:.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list>li:before{height:.69767vw}}@media only screen and (max-width:640px){.vacancy__list>li:before{height:1.53846vw}}.vacancy__list__head{font-weight:500}.vacancy__list ol{padding-top:.41667vw;padding-left:1.35417vw;line-height:1.8}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list ol{padding-top:.55556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list ol{padding-top:.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list ol{padding-top:.93023vw}}@media only screen and (max-width:640px){.vacancy__list ol{padding-top:2.05128vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__list ol{padding-left:1.80556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__list ol{padding-left:2.47619vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__list ol{padding-left:3.02326vw}}@media only screen and (max-width:640px){.vacancy__list ol{padding-left:6.66667vw}}.vacancy__social{display:flex;align-items:center;gap:.52083vw;margin-top:1.25vw;margin-bottom:1.04167vw}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__social{gap:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__social{gap:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__social{gap:1.16279vw}}@media only screen and (max-width:640px){.vacancy__social{gap:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__social{margin-top:1.66667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__social{margin-top:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__social{margin-top:2.7907vw}}@media only screen and (max-width:640px){.vacancy__social{margin-top:6.15385vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__social{margin-bottom:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__social{margin-bottom:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__social{margin-bottom:2.32558vw}}@media only screen and (max-width:640px){.vacancy__social{margin-bottom:5.12821vw}}.vacancy__social__items{display:flex;gap:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.vacancy__social__items{gap:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.vacancy__social__items{gap:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.vacancy__social__items{gap:1.16279vw}}@media only screen and (max-width:640px){.vacancy__social__items{gap:2.5641vw}}.vacancy__social__item{display:flex;transition:opacity .3s ease;will-change:opacity}.vacancy__social__item:hover{opacity:.85}.vacancy__form{display:flex}@media only screen and (max-width:640px){.vacancy__form{justify-content:center}}.main-screen__inner{display:grid;grid-template-columns:1fr 1fr;justify-content:space-between;align-items:center}@media only screen and (max-width:640px){.main-screen__inner{padding-top:15.38462vw;grid-template-columns:1fr}}.main-screen__left{position:relative;display:flex;align-items:center;height:100%}@media only screen and (max-width:640px){.main-screen__left{padding-top:20.51282vw;padding-bottom:20.51282vw}}.main-screen__left:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:url(/images/main-screen/texture.svg) no-repeat 50%;background-size:cover}body.is-loaded .main-screen__left .info-block{transition:opacity 1s ease,transform 1.2s cubic-bezier(.4,0,0,1);will-change:opacity,transform}body:not(.is-loaded) .main-screen__left .info-block{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.main-screen__left .info-block__wrapper{display:flex;align-items:center;height:100%}.main-screen__right{position:relative;display:flex;justify-content:flex-end;flex-shrink:0}@media only screen and (max-width:860px) and (min-width:641px){.main-screen__right{height:51.16279vw}}@media only screen and (max-width:640px){.main-screen__right{display:none;margin-bottom:4.10256vw}}.main-screen__right[data-anim=true]{will-change:opacity;transition-property:opacity;transition-duration:1.2s;transition-timing-function:ease-in-out;transition-delay:0s}.main-screen__right[data-anim=false]{opacity:0}.main-screen__img{display:inline-flex;max-width:100%;width:100%;overflow:hidden}.main-screen__img img{position:relative;display:block;height:100%;max-width:100%;will-change:transform}@media only screen and (max-width:860px),only screen and (min-width:1921px){.main-screen__img img{width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}}@media only screen and (max-width:640px){.main-screen .info-block p strong{font-weight:500}}@keyframes dash{to{stroke-dashoffset:0}}.geography[data-anim=true] .cities g:first-child .circle__wrapper circle,.geography[data-anim=true] .cities g:first-child path{transition:fill-opacity .15s ease;transition-delay:.525s}.geography[data-anim=true] .cities g:nth-child(2) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(2) path{transition:fill-opacity .15s ease;transition-delay:.875s}.geography[data-anim=true] .cities g:nth-child(3) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(3) path{transition:fill-opacity .15s ease;transition-delay:1.225s}.geography[data-anim=true] .cities g:nth-child(4) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(4) path{transition:fill-opacity .15s ease;transition-delay:1.575s}.geography[data-anim=true] .cities g:nth-child(5) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(5) path{transition:fill-opacity .15s ease;transition-delay:1.925s}.geography[data-anim=true] .cities g:nth-child(6) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(6) path{transition:fill-opacity .15s ease;transition-delay:2.275s}.geography[data-anim=true] .cities g:nth-child(7) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(7) path{transition:fill-opacity .15s ease;transition-delay:2.625s}.geography[data-anim=true] .cities g:nth-child(8) .circle__wrapper circle,.geography[data-anim=true] .cities g:nth-child(8) path{transition:fill-opacity .15s ease;transition-delay:2.975s}.geography[data-anim=true] .geography__map__line{animation:dash 3s linear forwards}.geography[data-anim=false] .cities .circle__wrapper circle,.geography[data-anim=false] .cities path{fill-opacity:0;transition:fill-opacity 0s 0s}.geography__inner{display:flex}.geography__inner .info-block{flex-shrink:0}@media only screen and (max-width:860px){.geography__inner .info-block{position:absolute}}.geography__map{margin-left:2.86458vw;width:36.61458vw;height:25.41667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.geography__map{margin-left:3.81944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.geography__map{margin-left:5.2381vw}}@media only screen and (max-width:860px) and (min-width:641px){.geography__map{margin-left:17.44186vw}}@media only screen and (max-width:640px){.geography__map{margin-left:0}}@media only screen and (max-width:1440px) and (min-width:1051px){.geography__map{width:48.81944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.geography__map{width:48.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.geography__map{width:59.30233vw}}@media only screen and (max-width:640px){.geography__map{width:130.76923vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.geography__map{height:33.88889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.geography__map{height:34.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.geography__map{height:41.86047vw}}@media only screen and (max-width:640px){.geography__map{height:92.30769vw;margin-top:10.25641vw}}.geography__map svg{width:100%;max-height:100%;height:100%}.geography__map svg .cities path{will-change:fill,fill-opacity}.geography__map svg g.circle__wrapper>circle{transition:fill .15s cubic-bezier(.4,0,0,1);will-change:fill,fill-opacity}.geography__map svg g.circle__wrapper:active:not(:disabled)>circle,body:not(.is-touch-device) .geography__map svg g.circle__wrapper:hover:not(:disabled)>circle{fill:red}.about[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.about[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.about__items{display:flex;justify-content:center;-moz-column-gap:.52083vw;column-gap:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.about__items{-moz-column-gap:.69444vw;column-gap:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.about__items{-moz-column-gap:.95238vw;column-gap:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.about__items{-moz-column-gap:1.16279vw;column-gap:1.16279vw}}@media only screen and (max-width:640px){.about__items{-moz-column-gap:2.5641vw;column-gap:2.5641vw;flex-direction:column;align-items:flex-start}}.about__item{padding-right:2.08333vw;padding-left:2.08333vw;text-align:center}@media only screen and (max-width:1440px) and (min-width:1051px){.about__item{padding-right:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.about__item{padding-right:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.about__item{padding-right:2.32558vw}}@media only screen and (max-width:640px){.about__item{padding-right:0}}@media only screen and (max-width:1440px) and (min-width:1051px){.about__item{padding-left:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.about__item{padding-left:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.about__item{padding-left:2.32558vw}}@media only screen and (max-width:640px){.about__item{padding-left:0;width:100%;text-align:left;margin-top:3.07692vw;margin-bottom:3.07692vw}}.about__item .tag{align-items:center;}@media only screen and (min-width:641px){.about__item .tag .tag__main{margin-right:auto;margin-left:auto}}.advantages[data-anim=true]{transition:opacity 1s ease .2s,transform 1.2s cubic-bezier(.4,0,0,1) .2s;will-change:opacity,transform}.advantages[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.advantages__wrapper{position:relative}.advantages__bg{z-index:-1}.advantages__bg,.advantages__bg:before{position:absolute;top:0;left:0;width:100%;height:100%}.advantages__bg:before{content:"";display:block;background-color:rgba(84,104,70,.87)}.advantages__bg img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.advantages__inner{text-align:left}.advantages__items{display:grid;grid-template-columns:1fr 1fr;-moz-column-gap:2.60417vw;column-gap:2.60417vw;row-gap:2.08333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.advantages__items{-moz-column-gap:3.47222vw;column-gap:3.47222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.advantages__items{-moz-column-gap:4.7619vw;column-gap:4.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.advantages__items{-moz-column-gap:5.81395vw;column-gap:5.81395vw}}@media only screen and (max-width:640px){.advantages__items{-moz-column-gap:12.82051vw;column-gap:12.82051vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.advantages__items{row-gap:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.advantages__items{row-gap:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.advantages__items{row-gap:4.65116vw}}@media only screen and (max-width:640px){.advantages__items{row-gap:10.25641vw}}@media only screen and (max-width:860px){.advantages__items{grid-template-columns:1fr}}.advantages__item{display:flex}.advantages__item:last-child .advantages__item__text{max-width:100%}.advantages__item__icon{margin-right:.83333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.advantages__item__icon{margin-right:1.11111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.advantages__item__icon{margin-right:1.52381vw}}@media only screen and (max-width:860px) and (min-width:641px){.advantages__item__icon{margin-right:1.86047vw}}@media only screen and (max-width:640px){.advantages__item__icon{margin-right:4.10256vw}}.advantages__item__text{max-width:26.04167vw}@media only screen and (max-width:1440px) and (min-width:1051px){.advantages__item__text{max-width:34.72222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.advantages__item__text{max-width:47.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.advantages__item__text{max-width:58.13953vw}}@media only screen and (max-width:640px){.advantages__item__text{max-width:128.20513vw}}.advantages__item__text p{margin:0}.advantages__item__text p+p{margin:.625vw 0 0}@media only screen and (max-width:1440px) and (min-width:1051px){.advantages__item__text p+p{margin:.83333vw 0 0}}@media only screen and (max-width:1050px) and (min-width:861px){.advantages__item__text p+p{margin:1.14286vw 0 0}}@media only screen and (max-width:860px) and (min-width:641px){.advantages__item__text p+p{margin:1.39535vw 0 0}}@media only screen and (max-width:640px){.advantages__item__text p+p{margin:3.07692vw 0 0}}.capabilities[data-anim=true]{transition:opacity 1s ease .2s,transform 1.2s cubic-bezier(.4,0,0,1) .2s;will-change:opacity,transform}.capabilities[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.capabilities-block__inner{display:grid;grid-template-columns:repeat(3,1fr)}@media only screen and (max-width:860px){.capabilities-block__inner{grid-template-columns:1fr;justify-content:center}}.capabilities-block__item{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;padding-bottom:6.35417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.capabilities-block__item{padding-bottom:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.capabilities-block__item{padding-bottom:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.capabilities-block__item{padding-bottom:11.62791vw}}@media only screen and (max-width:640px){.capabilities-block__item{padding-bottom:20.51282vw}}@media only screen and (max-width:860px){.capabilities-block__item:last-child{padding-bottom:0}}.capabilities-block__tag{width:0;padding-bottom:2.86458vw}@media only screen and (max-width:1440px) and (min-width:1051px){.capabilities-block__tag{padding-bottom:3.81944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.capabilities-block__tag{padding-bottom:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.capabilities-block__tag{padding-bottom:3.48837vw}}@media only screen and (max-width:640px){.capabilities-block__tag{padding-bottom:7.69231vw}}.capabilities-block__img{position:absolute;bottom:0;width:100%;height:6.35417vw}@media only screen and (max-width:1440px) and (min-width:1051px){.capabilities-block__img{height:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.capabilities-block__img{height:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.capabilities-block__img{height:11.62791vw}}@media only screen and (max-width:640px){.capabilities-block__img{height:25.64103vw}}@media only screen and (max-width:860px){.capabilities-block__img{position:relative}}.capabilities-block__img img{display:block;width:100%;max-width:100%;max-height:100%;margin:auto}.application{position:relative;padding:4.16667vw;max-width:52.29167vw;margin-right:auto;margin-left:auto}@media only screen and (max-width:1440px) and (min-width:1051px){.application{padding:5.55556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.application{padding:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.application{padding:9.30233vw}}@media only screen and (max-width:640px){.application{padding:10.25641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.application{max-width:69.72222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.application{max-width:95.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.application{max-width:116.74419vw}}@media only screen and (max-width:640px){.application{max-width:257.4359vw}}.application__texture{position:absolute;bottom:0;left:1.5625vw;background-image:url(/images/application/application-texture.svg);background-repeat:no-repeat;background-position:0 100%;background-size:contain;width:100%;height:90%}@media only screen and (max-width:1440px) and (min-width:1051px){.application__texture{left:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.application__texture{left:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.application__texture{left:3.48837vw}}@media only screen and (max-width:640px){.application__texture{left:7.69231vw}}@media only screen and (max-width:860px) and (min-width:641px){.application__texture{height:85%}}@media only screen and (max-width:640px){.application__texture{height:55%}}.application__texture img{display:none;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none}.application__inner{max-width:33.75vw;margin-right:auto;margin-left:auto;text-align:center}@media only screen and (max-width:1440px) and (min-width:1051px){.application__inner{max-width:45vw}}@media only screen and (max-width:1050px) and (min-width:861px){.application__inner{max-width:61.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.application__inner{max-width:75.34884vw}}@media only screen and (max-width:640px){.application__inner{max-width:166.15385vw}}.application__inner .info-block{text-align:center}.application__inner .info-block p{padding-right:0}.form-application{display:flex;justify-content:center;gap:1.04167vw}@media only screen and (max-width:1440px) and (min-width:1051px){.form-application{gap:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.form-application{gap:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.form-application{gap:2.32558vw}}@media only screen and (max-width:640px){.form-application{gap:5.12821vw;flex-direction:column;align-items:center;margin-top:10.25641vw}}.form-application .input{width:20.83333vw;text-align:center}@media only screen and (max-width:1440px) and (min-width:1051px){.form-application .input{width:22.22222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.form-application .input{width:30.47619vw}}@media only screen and (max-width:860px) and (min-width:641px){.form-application .input{width:32.55814vw}}@media only screen and (max-width:640px){.form-application .input{width:76.92308vw}}.prices[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.prices[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.prices .info-block{padding-right:7.8125vw;padding-left:7.8125vw}@media only screen and (max-width:640px),only screen and (max-width:1050px) and (min-width:861px){.prices .info-block{padding-right:0;padding-left:0}}@media only screen and (max-width:860px) and (min-width:641px){.prices .info-block{padding-right:5.81395vw;padding-left:5.81395vw}}.prices-block__items{display:flex;justify-content:center;gap:5.20833vw}@media only screen and (max-width:1440px) and (min-width:1051px){.prices-block__items{gap:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.prices-block__items{gap:5.71429vw}}@media only screen and (max-width:860px) and (min-width:641px){.prices-block__items{gap:6.97674vw}}@media only screen and (max-width:640px){.prices-block__items{gap:7.69231vw;flex-direction:column}}.prices-block__item{text-align:center}@media only screen and (max-width:640px){.prices-block__item{display:flex;align-items:center}}.prices-block__img{height:3.95833vw;margin-bottom:.3125vw}@media only screen and (max-width:1440px) and (min-width:1051px){.prices-block__img{height:5.27778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.prices-block__img{height:5.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.prices-block__img{height:6.51163vw}}@media only screen and (max-width:640px){.prices-block__img{height:14.35897vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.prices-block__img{margin-bottom:.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.prices-block__img{margin-bottom:.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.prices-block__img{margin-bottom:.69767vw}}@media only screen and (max-width:640px){.prices-block__img{margin-bottom:1.53846vw;margin-left:6.15385vw;order:2}}.prices-block__img img{display:block;max-width:100%;width:100%;height:100%;max-height:100%;margin:auto}.steps[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.steps[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.steps__wrapper{position:relative;background-image:url(/images/steps/bg-texture.svg);background-repeat:no-repeat;background-position:top right .98958vw}@media only screen and (max-width:1440px) and (min-width:1051px){.steps__wrapper{background-position:top right 1.31944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps__wrapper{background-position:top right 1.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps__wrapper{background-position:top right 2.2093vw;background-size:58.13953vw}}@media only screen and (max-width:640px){.steps__wrapper{background-position:top right 4.87179vw}}.steps .info-block .headliner{max-width:50%}.steps .info-block__inner{display:grid;grid-template-columns:1fr 1fr;-moz-column-gap:2.08333vw;column-gap:2.08333vw}@media only screen and (max-width:1440px) and (min-width:1051px){.steps .info-block__inner{-moz-column-gap:2.77778vw;column-gap:2.77778vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps .info-block__inner{-moz-column-gap:3.80952vw;column-gap:3.80952vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps .info-block__inner{-moz-column-gap:4.65116vw;column-gap:4.65116vw}}@media only screen and (max-width:640px){.steps .info-block__inner{-moz-column-gap:10.25641vw;column-gap:10.25641vw}}@media only screen and (max-width:860px){.steps .info-block__inner{grid-template-columns:1fr}}.steps .info-block__inner .info-block__right{margin-top:auto}.steps-block__list{display:flex;justify-content:center;list-style:none;padding-left:0}@media only screen and (max-width:640px){.steps-block__list{flex-direction:column;gap:5.12821vw}}.steps-block__list li{display:flex;align-items:center}@media only screen and (max-width:640px){.steps-block__list li{flex-direction:column}}.steps-block__list li:last-child:after{display:none}.steps-block__list li:after{content:"";display:inline-block;width:2.5vw;height:2.5vw;margin-right:1.5625vw;margin-left:1.5625vw;background:url(/images/svg/icon-arrow-right.svg) no-repeat 50%;background-size:contain}@media only screen and (max-width:1440px) and (min-width:1051px){.steps-block__list li:after{width:3.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps-block__list li:after{width:3.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps-block__list li:after{width:2.7907vw}}@media only screen and (max-width:640px){.steps-block__list li:after{width:6.15385vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.steps-block__list li:after{height:3.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps-block__list li:after{height:3.42857vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps-block__list li:after{height:2.7907vw}}@media only screen and (max-width:640px){.steps-block__list li:after{height:6.15385vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.steps-block__list li:after{margin-right:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps-block__list li:after{margin-right:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps-block__list li:after{margin-right:2.09302vw}}@media only screen and (max-width:640px){.steps-block__list li:after{margin-right:4.61538vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.steps-block__list li:after{margin-left:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.steps-block__list li:after{margin-left:2.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.steps-block__list li:after{margin-left:2.09302vw}}@media only screen and (max-width:640px){.steps-block__list li:after{margin-left:4.61538vw;order:2;transform:rotate(90deg);margin-top:2.5641vw}}.scheme[data-anim=true]{transition:opacity 1s ease .2s,transform 1.2s cubic-bezier(.4,0,0,1) .2s;will-change:opacity,transform}.scheme[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.scheme .info-block{padding-right:7.8125vw;padding-left:7.8125vw}@media only screen and (max-width:1440px) and (min-width:1051px){.scheme .info-block{padding-right:10.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.scheme .info-block{padding-right:14.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.scheme .info-block{padding-right:17.44186vw}}@media only screen and (max-width:640px){.scheme .info-block{padding-right:38.46154vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.scheme .info-block{padding-left:10.41667vw}}@media only screen and (max-width:1050px) and (min-width:861px){.scheme .info-block{padding-left:14.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.scheme .info-block{padding-left:17.44186vw}}@media only screen and (max-width:640px){.scheme .info-block{padding-left:38.46154vw}}@media only screen and (max-width:860px) and (min-width:641px){.scheme .info-block{padding-right:5.81395vw;padding-left:5.81395vw}}@media only screen and (max-width:640px){.scheme .info-block{padding-right:0;padding-left:0}}.scheme__items{display:grid;grid-template-columns:repeat(5,1fr)}@media only screen and (max-width:640px){.scheme__items{grid-template-columns:1fr}}.scheme__item{display:flex;flex-direction:column;justify-content:space-between}@media only screen and (max-width:1050px) and (min-width:861px){.scheme__item{padding:0 1.42857vw}}@media only screen and (max-width:640px){.scheme__item{align-items:flex-start;margin:3.07692vw 0}}@media only screen and (min-width:641px){.scheme__item:nth-child(2n){margin-top:auto}}.scheme__item__img{display:flex;justify-content:center;height:6.19792vw}@media only screen and (max-width:1440px) and (min-width:1051px){.scheme__item__img{height:6.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.scheme__item__img{height:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.scheme__item__img{height:9.30233vw}}@media only screen and (max-width:640px){.scheme__item__img{height:20.51282vw;display:none}}.scheme__item__img img{display:block;width:100%;max-width:100%;height:100%;max-height:100%;margin:auto}.scheme__item .tag{margin-bottom:1.04167vw}@media only screen and (max-width:1440px) and (min-width:1051px){.scheme__item .tag{margin-bottom:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.scheme__item .tag{margin-bottom:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.scheme__item .tag{margin-bottom:2.32558vw}}@media only screen and (max-width:640px){.scheme__item .tag{margin-bottom:5.12821vw;align-items:flex-start;margin-bottom:0}}.scheme__item .tag__caption{min-height:2.8em}@media only screen and (max-width:640px){.scheme__item .tag__caption{min-height:0}}.support[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.support[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}.support__inner{display:grid;grid-template-columns:65%}@media only screen and (max-width:860px){.support__inner{grid-template-columns:1fr}}@media only screen and (min-width:641px){.support__left .info-block p{padding-right:18.22917vw}}[data-tab] [data-tab-content]:not(.is-active){display:none}[data-tab] [data-tab-content]:not(.is-opened) .career__item{opacity:0;transform:translate3d(0,2.60417vw,0)}@media only screen and (max-width:1440px) and (min-width:1051px){[data-tab] [data-tab-content]:not(.is-opened) .career__item{transform:translate3d(0,3.47222vw,0)}}@media only screen and (max-width:1050px) and (min-width:861px){[data-tab] [data-tab-content]:not(.is-opened) .career__item{transform:translate3d(0,4.7619vw,0)}}@media only screen and (max-width:860px) and (min-width:641px){[data-tab] [data-tab-content]:not(.is-opened) .career__item{transform:translate3d(0,5.81395vw,0)}}@media only screen and (max-width:640px){[data-tab] [data-tab-content]:not(.is-opened) .career__item{transform:translate3d(0,12.82051vw,0)}}[data-tab] [data-tab-content].is-opened .career__item{transition:opacity .5s cubic-bezier(.4,0,0,1),transform .8s ease}[data-tab] [data-tab-content].is-opened .career__item:first-child{transition-delay:.1s,.1s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(2){transition-delay:.2s,.2s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(3){transition-delay:.3s,.3s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(4){transition-delay:.4s,.4s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(5){transition-delay:.5s,.5s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(6){transition-delay:.6s,.6s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(7){transition-delay:.7s,.7s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(8){transition-delay:.8s,.8s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(9){transition-delay:.9s,.9s}[data-tab] [data-tab-content].is-opened .career__item:nth-child(10){transition-delay:1s,1s}.tabs__nav{display:flex;gap:3.64583vw}@media only screen and (max-width:1440px) and (min-width:1051px){.tabs__nav{gap:4.86111vw}}@media only screen and (max-width:1050px) and (min-width:861px){.tabs__nav{gap:6.66667vw}}@media only screen and (max-width:860px) and (min-width:641px){.tabs__nav{gap:8.13953vw}}@media only screen and (max-width:640px){.tabs__nav{gap:2.5641vw}}.tabs__nav__item{cursor:pointer;display:flex;align-items:center}@media only screen and (max-width:640px){.tabs__nav__item{flex:1 0 0;justify-content:center;text-align:center}}.info-block__border-caption .tabs__nav__item p:first-child:before,.tabs__nav__item .info-block__border-caption p:first-child:before,.tabs__nav__item .svg{margin-right:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.info-block__border-caption .tabs__nav__item p:first-child:before,.tabs__nav__item .info-block__border-caption p:first-child:before,.tabs__nav__item .svg{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.info-block__border-caption .tabs__nav__item p:first-child:before,.tabs__nav__item .info-block__border-caption p:first-child:before,.tabs__nav__item .svg{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.info-block__border-caption .tabs__nav__item p:first-child:before,.tabs__nav__item .info-block__border-caption p:first-child:before,.tabs__nav__item .svg{margin-right:1.16279vw}}@media only screen and (max-width:640px){.info-block__border-caption .tabs__nav__item p:first-child:before,.tabs__nav__item .info-block__border-caption p:first-child:before,.tabs__nav__item .svg{margin-right:2.5641vw;display:none}}@media only screen and (max-width:640px){.tabs__nav__item .headliner{font-size:4.61538vw}}.tabs__nav__item:not(.is-active) .headliner{color:var(--olive);border-bottom:2px solid var(--olive)}@media only screen and (min-width:641px){.tabs__nav__item:not(.is-active) .headliner{line-height:1}}.info-block__border-caption .tabs__nav__item:not(.is-active) p:first-child:before,.tabs__nav__item:not(.is-active) .info-block__border-caption p:first-child:before,.tabs__nav__item:not(.is-active) .svg{fill:var(--olive)}.team[data-anim=false] .swiper-slide{opacity:0;transform:translate3d(2.60417vw,0,0)}@media only screen and (max-width:1440px) and (min-width:1051px){.team[data-anim=false] .swiper-slide{transform:translate3d(3.47222vw,0,0)}}@media only screen and (max-width:1050px) and (min-width:861px){.team[data-anim=false] .swiper-slide{transform:translate3d(4.7619vw,0,0)}}@media only screen and (max-width:860px) and (min-width:641px){.team[data-anim=false] .swiper-slide{transform:translate3d(5.81395vw,0,0)}}@media only screen and (max-width:640px){.team[data-anim=false] .swiper-slide{transform:translate3d(12.82051vw,0,0)}}.team[data-anim=true] .swiper-slide{transition:opacity .5s cubic-bezier(.4,0,0,1),transform .8s ease}.team[data-anim=true] .swiper-slide:first-child{transition-delay:.1s,.1s}.team[data-anim=true] .swiper-slide:nth-child(2){transition-delay:.2s,.2s}.team[data-anim=true] .swiper-slide:nth-child(3){transition-delay:.3s,.3s}.team[data-anim=true] .swiper-slide:nth-child(4){transition-delay:.4s,.4s}.team[data-anim=true] .swiper-slide:nth-child(5){transition-delay:.5s,.5s}.team[data-anim=true] .swiper-slide:nth-child(6){transition-delay:.6s,.6s}.team[data-anim=true] .swiper-slide:nth-child(7){transition-delay:.7s,.7s}.team[data-anim=true] .swiper-slide:nth-child(8){transition-delay:.8s,.8s}.team[data-anim=true] .swiper-slide:nth-child(9){transition-delay:.9s,.9s}.team[data-anim=true] .swiper-slide:nth-child(10){transition-delay:1s,1s}.team__carousel{overflow:visible}@media only screen and (max-width:1050px) and (min-width:861px){.team__carousel{padding-bottom:4.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.team__carousel{padding-bottom:5.81395vw}}@media only screen and (max-width:640px){.team__carousel{padding-bottom:12.82051vw}}.team__carousel:after,.team__carousel:before{content:"";position:absolute;top:0;left:100%;z-index:5;width:10.41667vw;height:100%;background:linear-gradient(270deg,var(--white),hsla(0,0%,100%,0))}@media only screen and (max-width:1440px) and (min-width:1051px){.team__carousel:after,.team__carousel:before{width:6.94444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.team__carousel:after,.team__carousel:before{width:3.04762vw}}@media only screen and (max-width:860px) and (min-width:641px){.team__carousel:after,.team__carousel:before{width:2.7907vw}}@media only screen and (max-width:640px){.team__carousel:after,.team__carousel:before{width:3.07692vw}}.team__carousel:after{left:auto;right:100%;background:linear-gradient(270deg,hsla(0,0%,100%,0),var(--white))}.team__item{width:100%;height:100%;text-align:center}.team [data-slider-prev]{transform:translateX(-3.33333vw)}.team [data-slider-next]{transform:translateX(3.33333vw)}.career__inner{display:grid;gap:4.6875vw;grid-template-columns:1fr auto}@media only screen and (max-width:1440px) and (min-width:1051px){.career__inner{gap:6.25vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__inner{gap:8.57143vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__inner{gap:4.18605vw}}@media only screen and (max-width:640px){.career__inner{gap:9.23077vw}}@media only screen and (max-width:1050px){.career__inner{grid-template-columns:1fr}}.career__right{width:31.97917vw}@media only screen and (max-width:1440px) and (min-width:1051px){.career__right{width:33.33333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__right{width:34.28571vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__right{width:71.39535vw}}@media only screen and (max-width:640px){.career__right{width:157.4359vw}}@media only screen and (max-width:1050px){.career__right{display:flex;align-items:flex-start;width:100%;gap:4.7619vw}}@media only screen and (max-width:860px){.career__right{flex-direction:column}}.career__list{display:grid}.career__img{flex-shrink:0}@media only screen and (max-width:1050px) and (min-width:861px){.career__img{max-width:32.38095vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__img{display:none}}@media only screen and (max-width:640px){.career__img{order:2}}.career__img img{display:block;max-width:100%}.career__warning{display:flex;padding:.52083vw 1.5625vw;border:1px solid var(--olive)}@media only screen and (max-width:1440px) and (min-width:1051px){.career__warning{padding-top:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__warning{padding-top:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__warning{padding-top:1.62791vw}}@media only screen and (max-width:640px){.career__warning{padding-top:3.58974vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.career__warning{padding-bottom:.97222vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__warning{padding-bottom:1.33333vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__warning{padding-bottom:1.62791vw}}@media only screen and (max-width:640px){.career__warning{padding-bottom:3.58974vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.career__warning{padding-right:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__warning{padding-right:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__warning{padding-right:3.48837vw}}@media only screen and (max-width:640px){.career__warning{padding-right:5.12821vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.career__warning{padding-left:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__warning{padding-left:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__warning{padding-left:3.48837vw}}@media only screen and (max-width:640px){.career__warning{padding-left:5.12821vw}}.career__warning__icon{margin-right:.52083vw}@media only screen and (max-width:1440px) and (min-width:1051px){.career__warning__icon{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.career__warning__icon{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.career__warning__icon{margin-right:1.16279vw}}@media only screen and (max-width:640px){.career__warning__icon{margin-right:2.5641vw}}.gallery__carousel{padding-bottom:2.86458vw}@media only screen and (max-width:1440px) and (min-width:1051px){.gallery__carousel{padding-bottom:3.81944vw}}@media only screen and (max-width:1050px) and (min-width:861px){.gallery__carousel{padding-bottom:5.2381vw}}@media only screen and (max-width:860px) and (min-width:641px){.gallery__carousel{padding-bottom:8.13953vw}}@media only screen and (max-width:640px){.gallery__carousel{padding-bottom:14.10256vw}}.gallery__carousel [data-slider-prev]{transform:translateX(.78125vw)}.gallery__carousel [data-slider-next]{transform:translateX(-.78125vw)}.sale[data-anim=true]{transition:opacity 1s ease 0s,transform 1.2s cubic-bezier(.4,0,0,1) 0s;will-change:opacity,transform}.sale[data-anim=false]{transform:translate3d(0,1.5vh,0) scaleY(1.25);opacity:0}@media only screen and (max-width:640px){.sale .info-block--secondary{display:flex;justify-content:center;text-align:center}}@media only screen and (max-width:640px){.sale .info-block--secondary .subheading{text-decoration:underline}}.sale-block__items{display:grid;grid-auto-flow:column;grid-template-columns:23.1% 25.6% 24.4% 28%}@media only screen and (max-width:640px){.sale-block__items{justify-items:center;justify-content:center;grid-auto-flow:row;grid-template-columns:50% 50%;gap:13.33333vw 2.66667vw}}.sale-block__item{text-align:center}@media only screen and (max-width:640px){.sale-block__item{display:flex;align-items:center;flex-direction:column;gap:6.4vw}}.sale-block__item:first-child img{margin-right:1.5625vw}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__item:first-child img{margin-right:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__item:first-child img{margin-right:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__item:first-child img{margin-right:3.48837vw}}@media only screen and (max-width:640px){.sale-block__item:first-child img{margin-right:0}}.sale-block__img{height:6.25vw;margin-bottom:-.41667vw}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__img{height:7.63889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__img{height:7.61905vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__img{height:8.37209vw}}@media only screen and (max-width:640px){.sale-block__img{height:15.38462vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__img{margin-bottom:-.55556vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__img{margin-bottom:-.7619vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__img{margin-bottom:-.93023vw}}@media only screen and (max-width:640px){.sale-block__img{margin-bottom:0;order:2}}.sale-block__img img{display:block;max-width:100%;height:100%;max-height:100%;margin:auto}.sale-block__name{display:inline-flex;padding:.3125vw 1.04167vw;color:var(--green);background-color:var(--white)}@media only screen and (max-width:640px){.sale-block__name{padding:1.06667vw 2.13333vw}}.sale-block__list{display:grid;grid-auto-flow:column;justify-content:center;gap:1.5625vw;margin-top:1.04167vw;padding-left:0;list-style:none}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__list{gap:2.08333vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__list{gap:2.85714vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__list{gap:3.48837vw}}@media only screen and (max-width:640px){.sale-block__list{gap:7.69231vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__list{margin-top:1.38889vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__list{margin-top:1.90476vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__list{margin-top:2.32558vw}}@media only screen and (max-width:640px){.sale-block__list{margin-top:5.12821vw;grid-auto-flow:row;justify-content:center;gap:4.26667vw;margin-bottom:8vw;text-align:center}}.sale-block__list li{position:relative;display:flex;align-items:center;font-weight:500}@media only screen and (max-width:640px){.sale-block__list li{justify-content:center}}.sale-block__list li:before{content:"";width:.52083vw;height:.52083vw;margin-right:.52083vw;border-radius:50%;background-color:currentColor}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__list li:before{width:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__list li:before{width:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__list li:before{width:1.16279vw}}@media only screen and (max-width:640px){.sale-block__list li:before{width:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__list li:before{height:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__list li:before{height:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__list li:before{height:1.16279vw}}@media only screen and (max-width:640px){.sale-block__list li:before{height:2.5641vw}}@media only screen and (max-width:1440px) and (min-width:1051px){.sale-block__list li:before{margin-right:.69444vw}}@media only screen and (max-width:1050px) and (min-width:861px){.sale-block__list li:before{margin-right:.95238vw}}@media only screen and (max-width:860px) and (min-width:641px){.sale-block__list li:before{margin-right:1.16279vw}}@media only screen and (max-width:640px){.sale-block__list li:before{margin-right:2.5641vw;display:none}}.sale-block__note{display:flex;align-items:center;justify-content:center;color:var(--green)}@media only screen and (max-width:860px){.sale-block__note{flex-direction:column}}@media only screen and (max-width:640px){.sale-block__note{text-align:center}}.sale-block__note a{position:relative;display:inline-flex;font-weight:700}@media only screen and (max-width:640px){.sale-block__note a{margin-top:4.26667vw}}.sale-block__note a:hover{text-decoration:underline}@media only screen and (max-width:860px){.info-block__border-caption .sale-block__note p:first-child:before,.sale-block__note .info-block__border-caption p:first-child:before,.sale-block__note .svg{display:none}}