:root{--f-spinner-width:36px;--f-spinner-height:36px;--f-spinner-color-1:#0000001a;--f-spinner-color-2:#11181ccc;--f-spinner-stroke:2.75}.f-spinner{width:var(--f-spinner-width);height:var(--f-spinner-height);margin:auto;padding:0}.f-spinner svg{vertical-align:top;width:100%;height:100%;animation:2s linear infinite f-spinner-rotate}.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:2s ease-in-out infinite f-spinner-dash}@keyframes f-spinner-rotate{to{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1 150;stroke-dashoffset:0}50%{stroke-dasharray:90 150;stroke-dashoffset:-35px}to{stroke-dasharray:90 150;stroke-dashoffset:-124px}}.f-throwOutUp{animation:.175s ease-out both f-throwOutUp}.f-throwOutDown{animation:.175s ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{opacity:0;transform:translateY(-150px)}}@keyframes f-throwOutDown{to{opacity:0;transform:translateY(150px)}}.f-zoomInUp{animation:var(--f-transition-duration,.2s) ease-out .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration,.2s) ease-out both f-zoomOutDown}@keyframes f-zoomInUp{0%{opacity:0;transform:scale(.975)translateY(16px)}to{opacity:1;transform:scale(1)translate(0,0)}}@keyframes f-zoomOutDown{to{opacity:0;transform:scale(.975)translateY(16px)}}.f-fadeIn{animation:var(--f-transition-duration,.2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration,.2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{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-fadeFastIn{animation:var(--f-transition-duration,.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration,.2s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}to{opacity:1}}@keyframes f-fadeFastOut{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) * .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:translate(100%)}to{transform:translate(0,0)}}@keyframes f-slideInNext{0%{transform:translate(-100%)}to{transform:translate(0,0)}}@keyframes f-slideOutNext{to{transform:translate(-100%)}}@keyframes f-slideOutPrev{to{transform:translate(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%{opacity:0;transform:translate(-75px)}to{opacity:1;transform:translate(0,0)}}@keyframes f-classicInPrev{0%{opacity:0;transform:translate(75px)}to{opacity:1;transform:translate(0,0)}}@keyframes f-classicOutNext{to{opacity:0;transform:translate(-75px)}}@keyframes f-classicOutPrev{to{opacity:0;transform:translate(75px)}}: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 .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:.65}.f-button{box-sizing:content-box;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);justify-content:center;align-items:center;margin:0;padding:0;display:flex;position:relative}@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{box-shadow:inset 0 0 0 var(--f-button-outline,2px) var(--f-button-outline-color,var(--f-button-color));outline:none}.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;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none;transition:opacity .15s}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{z-index:1;position:absolute}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{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-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translate(-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-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{scroll-behavior:auto;width:auto;overflow:visible}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));overscroll-behavior-y:none;overflow:hidden!important}.fancybox__container{--fancybox-color:#dbdbdb;--fancybox-hover-color:#fff;--fancybox-bg:#18181bfa;--fancybox-slide-gap:10px;--f-spinner-width:50px;--f-spinner-height:50px;--f-spinner-color-1:#ffffff1a;--f-spinner-color-2:#bbb;--f-spinner-stroke:3.65;box-sizing:border-box;color:#f8f8f8;-webkit-tap-highlight-color:#0000;z-index:var(--fancybox-zIndex,1050);transform-origin:0 0;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain;direction:ltr;outline:none;flex-direction:column;margin:0;padding:0;display:flex;position:fixed;inset:0;overflow:visible}.fancybox__container *,.fancybox__container :before,.fancybox__container :after{box-sizing:inherit}.fancybox__container::backdrop{background-color:#0000}.fancybox__backdrop{z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity,1);will-change:opacity;position:fixed;inset:0}.fancybox__carousel{box-sizing:border-box;z-index:10;flex:1;min-height:0;position:relative;overflow:clip visible}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{height:100%;margin:0 auto;display:flex}.fancybox__slide{width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;overscroll-behavior:contain;backface-visibility:hidden;flex-direction:column;flex:none;align-items:center;padding:4px;display:flex;position:relative;overflow:auto;transform:translate(0,0)}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video,.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide:before,.fancybox__slide:after{content:"";flex:0 0 0;margin:auto}.fancybox__content{max-width:100%;color:var(--fancybox-content-color,#374151);background:var(--fancybox-content-bg,#fff);cursor:default;z-index:20;border-radius:0;flex-direction:column;align-self:center;margin:0;padding:2rem;display:flex;position:relative}.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 [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{backface-visibility:hidden;background:50%/contain no-repeat;min-height:1px;padding:0;transition:none;transform:translate(0,0)}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur();will-change:transform, width, height}.fancybox-image{object-fit:contain;-webkit-user-select:none;user-select:none;width:100%;height:100%;min-height:0;margin:auto;display:block}.fancybox__caption{overflow-wrap:anywhere;max-width:100%;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);cursor:auto;visibility:visible;flex-shrink:0;align-self:center;margin:0;padding:14px 0 4px;line-height:1.375}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width:2;z-index:40;position:absolute;top:0;right:8px}.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;opacity:.75;position:absolute;top:-38px;right:0}.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{margin:0;padding:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;opacity:var(--fancybox-opacity,1);padding:24px;transition:all .25s}.is-compact .fancybox__footer{z-index:20;background:#18181b80;position:absolute;bottom:0;left:0;right:0}.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:#0009;--f-button-active-bg:#0009;--f-button-hover-bg:#0009;--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:#18181b4d;--f-button-active-bg:#18181b80;--f-button-shadow:none;--f-button-transition:all .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 #18181b80);--f-button-svg-disabled-opacity:.65;--f-button-next-pos:1rem;--f-button-prev-pos:1rem;opacity:var(--fancybox-opacity,1)}.fancybox__nav .f-button:before{content:"";z-index:1;position:absolute;inset:-30px -20px}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{margin:var(--f-spinner-top,calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left,calc(var(--f-spinner-height) * -.5));z-index:30;cursor:pointer;position:absolute;top:50%;left:50%}.fancybox-protected{z-index:40;-webkit-user-select:none;user-select:none;position:absolute;inset:0}.fancybox-ghost{object-fit:contain;z-index:40;-webkit-user-select:none;user-select:none;pointer-events:none;width:100%;height:100%;min-height:0;position:absolute;top:0;left:0}.fancybox-focus-guard{opacity:0;pointer-events:none;outline:none;position:fixed}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>:not(.fancybox__content){animation:.25s .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:.35s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>:not(.fancybox__content){animation:.15s forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:.35s forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{flex-shrink:1;max-width:100%;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:100%;height:100%}.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,.fancybox__container:not(.is-compact) .has-map .fancybox__content,.fancybox__container:not(.is-compact) .has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;max-width:100%;height:540px;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{color:#fff;background:#18181be6;padding:0}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{background:0 0;border:0;width:100%;height:100%;display:block}.fancybox-placeholder{clip:rect(1px, 1px, 1px, 1px)!important;clip-path:inset(50%)!important;white-space:nowrap!important;border:0!important;width:1px!important;height:1px!important;margin:-1px!important;padding:0!important;position:absolute!important;overflow:hidden!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:.5;--f-thumb-hover-opacity:1;--f-thumb-selected-opacity:1}.f-carousel__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:20px;--f-thumb-clip-width:46px}.f-thumbs{-webkit-tap-highlight-color:#0000;-webkit-user-select:none;user-select:none;perspective:1000px;flex:none;margin:0;position:relative;overflow:hidden;transform:translateZ(0)}.f-thumbs .f-spinner{z-index:-1;background-image:linear-gradient(#ebeff2,#e2e8f0);border-radius:2px;width:100%;height:100%;position:absolute;top:0;left:0}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden}.f-thumbs__track{will-change:transform;display:flex}.f-thumbs__slide{box-sizing:content-box;width:var(--f-thumb-width);min-width:var(--f-thumb-width);height:var(--f-thumb-height);cursor:pointer;flex:none;justify-content:center;align-items:center;margin:0;padding:0;display:flex;position:relative;overflow:visible}.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:"";top:0;bottom:0;left:calc(var(--left,0) * 1px);width:calc(100% - var(--width,0) * 1px);cursor:pointer;position:absolute}.is-modern .f-thumbs__slide{--clip-path:inset(0 calc((var(--f-thumb-width,0) - var(--f-thumb-clip-width,0)) * .5 * (1 - var(--progress,0))) round var(--f-thumb-border-radius,0));transform:translate3d(calc(var(--shift,0) * -1px), 0, 0);pointer-events:none;transition:none}.is-modern .f-thumbs__slide>*{clip-path:var(--clip-path)}.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.is-modern.in-touch .f-thumbs__slide{filter:none}.is-modern.is-resting .f-thumbs__slide,.is-modern.is-resting .f-thumbs__slide>*{transition:all .33s}.f-thumbs__slide__button{appearance:none;border-radius:var(--f-thumb-border-radius);cursor:pointer;pointer-events:auto;touch-action:manipulation;width:100%;height:100%;opacity:var(--f-thumb-opacity);background:0 0;border:0;outline:none;margin:0;padding:0;transition:opacity .2s;position:relative;overflow:hidden}.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{opacity:var(--f-thumb-selected-opacity);outline:none}.is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button:after{content:"";border:var(--f-thumb-outline,0) solid var(--f-thumb-outline-color,transparent);border-radius:var(--f-thumb-border-radius);z-index:10;height:auto;animation:.2s ease-out f-fadeIn;position:absolute;inset:0}.f-thumbs__slide__img{width:100%;height:100%;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;position:absolute;inset:0;overflow:hidden}.f-thumbs.is-horizontal .f-thumbs__track{margin:0 auto;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;margin:auto 0;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;opacity:var(--fancybox-opacity,1);transition:max-height .35s cubic-bezier(.23,1,.32,1);position:relative}.fancybox__thumbs.is-classic{--f-thumb-gap:8px;--f-thumb-opacity:.5;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(#ffffff1a,#ffffff0d)}.fancybox__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:20px;--f-thumb-clip-width:46px;--f-thumb-opacity:1;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(#ffffff1a,#ffffff0d)}.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,#fffffff0);--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:#18181ba6;--f-button-hover-bg:#464649a6;--f-button-active-bg:#5a5a5da6;--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 #18181b26);--f-button-svg-fill:none;--f-button-svg-disabled-opacity:.65;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);text-shadow:var(--fancybox-toolbar-text-shadow,1px 1px 1px #00000080);pointer-events:none;z-index:20;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;display:flex}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{flex-flow:wrap;align-content:flex-start;display:flex}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{flex-wrap:nowrap;justify-content:flex-end;display:flex}.fancybox__infobar{line-height:var(--f-button-height);text-align:center;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;-webkit-user-select:none;user-select:none;padding:0 5px;font-size:17px}.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{opacity:.3;height:100%}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child,.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child,[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{transform-origin:0;background:var(--f-progress-color,var(--f-carousel-theme-color,#0091ff));z-index:30;-webkit-user-select:none;user-select:none;pointer-events:none;height:3px;transition-property:transform;transition-timing-function:linear;position:absolute;top:0;left:0;right:0;transform:scaleX(0)}.footer{background-color:#1e212a;padding:64px 0}.footer__info{grid-template-columns:repeat(1,1fr);gap:24px;display:grid}@media screen and (width>=576px){.footer__info{grid-template-columns:50% 1fr;gap:32px}}.footer__info-link{flex-direction:column;justify-content:flex-start;gap:24px;display:flex}@media screen and (width>=992px){.footer__info-link{flex-direction:row;justify-content:flex-start;gap:32px}}@media screen and (width>=1200px){.footer__info-link{padding-right:5%}}.footer__menu-primary{flex-basis:40%}.footer__title{color:#fff;text-transform:uppercase;margin:0 0 15px;padding:0 0 15px;font-size:16px;font-weight:700;position:relative}.footer__title:before{content:"";background:#fff;width:24px;height:1px;display:block;position:absolute;bottom:0}.footer__menu{margin:0;padding:0;list-style-type:none}.footer__menu--column-count-2{column-count:2}.footer__menu li+li{margin-top:7px}@media screen and (width>=992px){.footer__menu li+li{margin-top:10px}}.footer__menu a{color:#b7b7b7;font-size:16px;font-style:normal;font-weight:400;line-height:22px;text-decoration:none;transition:color .3s}.footer__menu a:hover{color:#fdfdfd}@media screen and (width>=992px){.footer__menu a{font-size:16px}}.footer__contact-all{flex-direction:column;justify-content:space-between;align-items:flex-start;gap:24px;display:flex}@media screen and (width>=576px){.footer__contact-all{align-items:flex-end}}@media screen and (width>=992px){.footer__contact-all{flex-direction:row;align-items:flex-start}}.footer__contact{max-width:230px}.footer__contact-row{flex-direction:column;gap:24px;display:flex}.footer__contact-item{flex-direction:column;gap:5px;display:flex}.footer__link-connection{color:#fff;font-size:18px;font-weight:600;text-decoration:none;transition:opacity .3s;display:inline-block}.footer__link-connection:hover{opacity:.5}.footer__text{color:#fff;margin:0;font-size:14px;font-weight:400}.footer__text p{margin:0}.footer__city{color:#fff;margin-bottom:5px;font-size:18px;font-weight:600;display:inline-block}.footer__social{justify-content:center;align-items:center;gap:5px;margin:20px auto;display:flex}.footer__social-link{background:#fff;border-radius:50%;justify-content:center;align-items:center;width:40px;height:40px;padding:10px;display:flex}.footer__countries{align-items:center;gap:10px;margin:0 auto;display:flex}.footer__countries>a{width:32px;text-decoration:none;transition:opacity .3s}.footer__countries>a:hover{opacity:.5}.footer__countries>a>img{width:100%;display:block}.footer__connection{flex-direction:column;width:230px;display:flex}@media screen and (width>=992px){.footer__connection{width:230px}}.footer__button-container{flex-direction:column;gap:20px;display:flex}.footer__btn-question{color:#fff;cursor:pointer;border:1px solid #fff;border-radius:8px;outline:none;justify-content:center;align-items:center;gap:8px;width:100%;max-width:300px;padding:16px 0;font-size:1.25rem;font-weight:400;line-height:120%;text-decoration:none;transition:all .3s;display:flex}.footer__btn-question:hover{opacity:.5}.footer__privacy-policy{color:#b7b7b7;margin:40px 0 0;font-size:14px;font-style:normal;font-weight:400;line-height:16px;text-decoration-line:underline;display:block}.footer__personal-data{color:#b7b7b7;flex-direction:column;gap:12px;padding:24px 0 0;font-size:14px;font-style:normal;font-weight:400;line-height:16px;display:flex}@media screen and (width>=768px){.footer__personal-data{padding:64px 0 0}}.footer__personal-data p{color:#b7b7b7;margin:0;font-size:14px;font-style:normal;font-weight:400;line-height:16px}.footer__personal-data p a{color:#b12933;text-decoration:underline}.footer__personal-data p a:hover{color:#b12933;text-decoration:none}.search-desktop{align-items:center;width:100%;display:flex}.search-desktop form{width:100%}.search-desktop input{color:#000;background:#fff;border:1px solid #ccc;border-radius:2rem;outline:none;width:100%;height:36px;padding:0 1rem;font-size:.9rem}.search-desktop--xxl input{height:46px}.search-mobile input{background-color:#fff;border:0;outline:none;width:100%;padding:10px 15px;font-size:1rem;font-weight:400;line-height:1.5;display:block}.search-mobile-burger{width:85%}.search-mobile-burger input{background-color:#fff;border:0;border-radius:32px;outline:none;width:100%;padding:10px 15px;font-size:1rem;font-weight:400;line-height:1.5;display:block}.testing-center{padding:32px 0}@media screen and (width>=768px){.testing-center{padding:64px 0}}.testing-center__column{flex-direction:column;gap:16px;display:flex}@media screen and (width>=576px){.testing-center__column{gap:32px}}@media screen and (width>=992px){.testing-center__column{gap:48px}}.testing-center__row{flex-direction:column;gap:24px;display:flex}@media screen and (width>=992px){.testing-center__row{flex-direction:row;gap:44px}}.testing-center__list{background:#fff;grid-template-columns:1fr;gap:16px;max-width:100%;margin:0;padding:0;list-style-type:none;display:grid}@media screen and (width>=768px){.testing-center__list{grid-template-columns:1fr 1fr 1fr}}@media screen and (width>=992px){.testing-center__list{grid-template-columns:1fr}}.testing-center__item{border-left:4px solid #b12933;flex-direction:column;align-items:flex-start;padding:10px 20px;display:flex}@media screen and (width>=992px){.testing-center__item{padding:20px}}.testing-center__number{color:#2e3a4c;margin:0;font-size:32px;font-weight:600;line-height:120%}@media screen and (width>=992px){.testing-center__number{font-size:48px}}.testing-center__text{color:#2e3a4c;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:140%}@media screen and (width>=768px){.testing-center__text{font-size:18px}}.testing-center__slider{border-radius:12px;width:100%}@media screen and (width>=992px){.testing-center__slider{width:calc(100% - 306px)}}.testing-center__slide{border-radius:12px;position:relative;overflow:hidden}.testing-center__slide img{object-fit:cover;width:100%;height:100%;display:block}.testing-center__data{flex-direction:column;justify-content:center;align-items:center;gap:12px;width:80%;padding:16px 0;display:flex;position:absolute;bottom:0;left:50%;transform:translate(-50%)}@media screen and (width>=992px){.testing-center__data{flex-direction:row;gap:24px;padding:24px 0}}.testing-center__title{color:#fff;margin:0;font-size:20px;font-weight:600}@media screen and (width>=576px){.testing-center__title{font-size:24px}}@media screen and (width>=992px){.testing-center__title{font-size:32px}}.link-laba-button{cursor:pointer;background:#b12933;border:1px solid #0000;border-radius:8px;text-decoration:none;transition:all .3s;position:relative;box-shadow:0 4px 6px #00000080}.link-laba-button:hover{transform:translateY(-1px);box-shadow:0 6px 14px #0009}.link-laba-button:active{transform:translateY(1px);box-shadow:0 0 #0000}.link-laba-button .inner{border-radius:4px;padding:8px 24px;transition:inherit;position:relative;inset:0;overflow:hidden}.link-laba-button .inner:before{content:"";background:linear-gradient(-65deg,#0000 40%,#ffffff80 50%,#0000 70%) 0 0/200% 100% no-repeat;animation:3s infinite shine;position:absolute;inset:0}.link-laba-button .inner:after{content:"";border-radius:inherit;transition:inherit;position:absolute;inset:0;box-shadow:inset 0 2px 8px -2px #0000}.link-laba-button:active .inner:after{box-shadow:inset 0 2px 8px -2px #0006}.link-laba-button .text{color:#fff;margin:0;font-size:20px}@keyframes shine{0%{opacity:1;background-position:130%}to{opacity:0;background-position:-166%}}.testing-center__slide .swiper-lazy-preloader{border:4px solid #b12933;border-top-color:#0000}.testing-center__slider .swiper-pagination{-webkit-backdrop-filter:blur(5.5px);backdrop-filter:blur(5.5px);justify-content:center;align-items:center;padding:23px;display:flex;bottom:0}@media screen and (width>=992px){.testing-center__slider .swiper-pagination{padding:29px}}.testing-center__slider .swiper-pagination-bullet{opacity:1;background:#fdfdfd;width:14px;height:14px}.testing-center__slider .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#c20c00}.testing-center__slider .swiper-button-prev,.testing-center__slider .swiper-button-next{z-index:11;margin:0 0 8px;top:auto;bottom:8px!important}@media screen and (width>=992px){.testing-center__slider .swiper-button-prev,.testing-center__slider .swiper-button-next{margin:0 0 14px}}.testing-center__slider .swiper-button-prev{left:28px}@media screen and (width>=992px){.testing-center__slider .swiper-button-prev{left:48px}}.testing-center__slider .swiper-button-next{right:28px}@media screen and (width>=992px){.testing-center__slider .swiper-button-next{right:48px}}.testing-center__slider .swiper-button-prev:after,.testing-center__slider .swiper-button-next:after{color:#fdfdfd;font-size:26px}.news{padding:32px 0 0}@media screen and (width>=992px){.news{padding:64px 0 0}}.news__row{flex-direction:column;gap:16px;display:flex}@media screen and (width>=576px){.news__row{gap:32px}}@media screen and (width>=992px){.news__row{gap:48px}}.news__list{margin:0;padding:0 0 32px;list-style-type:none}@media screen and (width>=576px){.news__list{padding:0 0 42px}}@media screen and (width>=992px){.news__list{padding:0 0 64px}}.news__list .swiper-pagination{bottom:0}.news__list .swiper-pagination-bullet{opacity:1;background:#b3b3b3;width:14px;height:14px}.news__list .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#c20c00}.news-card{background:#f0f3fb;border-radius:10px;flex-direction:column;width:100%;height:auto;padding:16px;display:flex;position:relative;box-shadow:0 1px 2px #5569871a}@media screen and (width>=576px){.news-card{padding:24px}}.news-card__link{width:100%;height:100%;text-decoration:none;position:absolute;inset:0}.news-card__picture{object-fit:cover;border-radius:10px;width:100%;height:130px;display:block}@media screen and (width>=576px){.news-card__picture{height:190px}}.news__content{flex-direction:column;flex:1;justify-content:space-between;align-items:flex-start;gap:10px;margin:15px 0 0;display:flex}.news-card__title{color:#2a3342;-webkit-line-clamp:2;-webkit-box-orient:vertical;flex:1;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%;display:-webkit-box;overflow:hidden}.news-card__content{flex-direction:column;flex:1;margin:24px 0 0;display:flex}.news-card__description{color:#8896ab;-webkit-line-clamp:3;text-overflow:ellipsis;-webkit-box-orient:vertical;margin:0 0 24px;font-size:16px;font-style:normal;font-weight:400;line-height:130%;display:-webkit-box;overflow:hidden}.news-card__data{color:#8190a0;margin-top:auto;font-size:14px;font-style:normal;font-weight:600;line-height:100%}.departure-experts{z-index:1;padding:32px 0;position:relative}@media screen and (width>=992px){.departure-experts{padding:64px 0}}.departure-experts:before{content:"";opacity:.8;z-index:-1;background-color:#f6f7fb;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.departure-experts__fon{object-fit:cover;z-index:-2;width:100%;height:100%;position:absolute;top:0;left:0}.departure-experts__title{color:#000;text-align:center;margin:0;font-size:24px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=576px){.departure-experts__title{font-size:32px}}@media screen and (width>=992px){.departure-experts__title{font-size:48px}}.departure-experts__row{flex-direction:column;gap:34px;margin-top:24px;display:flex}@media screen and (width>=992px){.departure-experts__row{flex-direction:row;margin-top:50px}}.departure-experts__description{color:#fff;background-color:#b12933;background-image:url(/app/themes/serconsrus/public/build/assets/departure-experts-map-fon-nLL2ZtDa.svg);background-position:50%;background-size:cover;border-radius:16px;flex-direction:column;width:100%;padding:16px;display:flex;position:relative;overflow:hidden}@media screen and (width>=992px){.departure-experts__description{max-width:577px}}@media screen and (width>=1200px){.departure-experts__description{padding:32px 64px}}.departure-experts__subtitle{color:#282828;text-align:center;margin:0;font-family:Segoe UI;font-size:20px;font-style:normal;font-weight:600;line-height:120%}.departure-experts__subtitle--white{color:#fdfdfd}@media screen and (width>=576px){.departure-experts__subtitle{font-size:32px}}.departure-experts__text{text-align:center;color:#fdfdfd;max-width:370px;margin:16px auto 0;font-size:16px;font-style:normal;font-weight:400;line-height:120%}@media screen and (width>=576px){.departure-experts__text{font-size:24px;font-weight:600}}.departure-experts__progress-all{color:#dadada;flex-direction:column;justify-content:space-around;gap:30px;margin:24px 0;display:flex}@media screen and (width>=576px){.departure-experts__progress-all{flex-direction:row;margin:66px 0 24px}}@media screen and (width>=992px){.departure-experts__progress-all{justify-content:space-between}}.departure-experts__progress{flex-direction:column;align-items:center;display:flex}.departure-experts__progress>span{font-size:24px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=576px){.departure-experts__progress>span{font-size:68px}}.departure-experts__progress>p{text-align:center;max-width:180px;margin:0;font-size:18px;font-style:normal;font-weight:400;line-height:140%}.departure-experts__link{color:#282828;background-color:#fdfdfd;border-radius:8px;justify-content:center;align-items:center;width:100%;max-width:260px;height:58px;margin:auto auto 0;padding:12px 0;font-size:18px;font-weight:600;text-decoration:none;display:flex}.departure-experts__info{background:#f0f3fb;border:1px solid #e8e8e8;border-radius:16px;width:100%;padding:32px 16px;overflow:hidden}@media screen and (width>=992px){.departure-experts__info{max-width:585px}}.departure-experts__slider-block{position:relative}@media screen and (width>=576px){.departure-experts__slider-block{padding:0 40px}}.departure-experts__slider{margin:28px auto 12px}.departure-experts__slider .swiper-wrapper{padding:0 0 38px}.departure-experts__slider .swiper-slide{background:#fff;border:1px solid #eee;border-radius:8px;height:auto;padding:24px 20px}.departure-experts__slider-slide{position:relative}.departure-experts__slider-link{width:100%;height:100%;position:absolute;top:0;left:0}.departure-experts__slider-row{flex-direction:column;align-items:center;gap:16px;display:flex}@media screen and (width>=576px){.departure-experts__slider-row{flex-direction:row}}.departure-experts__slider-img{object-fit:cover;border-radius:50%;width:162px;height:162px;overflow:hidden}@media screen and (width>=576px){.departure-experts__slider-img{width:108px;height:108px}}.departure-experts__slider-desc{text-align:center;flex:1}@media screen and (width>=576px){.departure-experts__slider-desc{text-align:left;flex-direction:column}}.departure-experts__slider-desc>p{color:#000;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=576px){.departure-experts__slider-desc>p{font-size:24px}}.departure-experts__slider-desc>span{color:#000;margin-top:8px;font-size:16px;font-weight:400;line-height:140%;display:block}.departure-experts__slider-content{color:#000;text-align:center;margin-top:24px;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.departure-experts__slider .swiper-pagination-bullet{background:#e30000;width:14px;height:14px}.departure-experts__slider .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#c20c00}.departure-experts__slider-block .swiper-button-prev{margin-top:calc(-12px - var(--swiper-navigation-size) / 2);display:none;left:0}@media screen and (width>=576px){.departure-experts__slider-block .swiper-button-prev{flex-direction:column;justify-content:center;display:flex}}.departure-experts__slider-block .swiper-button-next{margin-top:calc(-12px - var(--swiper-navigation-size) / 2);display:none;right:0}@media screen and (width>=576px){.departure-experts__slider-block .swiper-button-next{flex-direction:column;justify-content:center;display:flex}}.departure-experts__slider-block .swiper-button-prev:after,.departure-experts__slider-block .swiper-button-next:after{color:#282828;font-size:26px}.departure-experts__btn{max-width:260px;margin:0 auto}.reviews{padding:32px 0}@media screen and (width>=992px){.reviews{padding:64px 0}}.reviews__row{flex-direction:column;align-items:center;gap:16px;padding:0 14px;display:flex}@media screen and (width>=576px){.reviews__row{gap:32px}}@media screen and (width>=992px){.reviews__row{gap:48px;padding:0 18px}}.reviews__row .front-heading{width:100%;max-width:1184px;margin:0 18px}.reviews__swiper-block{width:100%;max-width:1256px;margin:0 auto;padding:0;position:relative}@media screen and (width>=576px){.reviews__swiper-block{padding:0 40px}}.home .reviews__swiper .services-reviews__card{height:auto}.reviews__swiper .swiper-pagination-bullet{background:#e30000;width:14px;height:14px}.reviews__swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#c20c00}.reviews__swiper-block .swiper-button-prev{margin-top:calc(-12px - var(--swiper-navigation-size) / 2);display:none;left:0}@media screen and (width>=576px){.reviews__swiper-block .swiper-button-prev{flex-direction:column;justify-content:center;display:flex}}.reviews__swiper-block .swiper-button-next{margin-top:calc(-12px - var(--swiper-navigation-size) / 2);display:none;right:0}@media screen and (width>=576px){.reviews__swiper-block .swiper-button-next{flex-direction:column;justify-content:center;display:flex}}.reviews__swiper-block .swiper-button-prev:after,.reviews__swiper-block .swiper-button-next:after{color:#282828;font-size:26px}.reviews-card{background-color:var(--c-grey00)}.reviews-card__header{border-bottom:1px solid var(--c-grey40);justify-content:flex-end;display:flex}.reviews-card__info{border-left:1px solid var(--c-grey40);justify-content:space-between;align-items:center;width:100%;max-width:585px;padding:16px 30px;display:flex}.review-card__header-text,.reviews-card__header-date span{color:var(--c-grey40);font-size:14px}.reviews-card__header-rating{align-items:center;gap:10px;display:flex}.review-card__header-num{border-radius:var(--b-radius-lg);border:3px solid #b12933;justify-content:center;align-items:center;width:32px;height:32px;font-weight:600;display:flex}.reviews-card__content{flex-direction:column;gap:10px;padding:44px;display:flex}.reviews-card__headline{font-size:20px;font-weight:600}.reviews-card__wrapper{flex-direction:column;width:100%;display:flex;position:relative}.reviews-card__wrapper img{float:left;margin-right:10px;overflow:hidden}@media screen and (width>=576px){.reviews-card__wrapper img{max-width:200px}}.reviews-card__wrapper p{margin:16px 0 0;font-size:16px;line-height:1.8}@media screen and (width>=576px){.reviews-card__wrapper{display:unset}}.our-clients{padding:32px 0;overflow:hidden}@media screen and (width>=576px){.our-clients{padding:64px 0}}.our-clients__row{flex-direction:column;gap:16px;display:flex}@media screen and (width>=576px){.our-clients__row{gap:32px}}@media screen and (width>=992px){.our-clients__row{gap:48px}}.our-clients__list-all{flex-direction:column;align-items:center;gap:16px;display:flex}@media screen and (width>=992px){.our-clients__list-all{gap:34px}}.our-clients__list{flex-wrap:nowrap;gap:20px;width:fit-content;margin:0;padding:0;list-style-type:none;display:flex}.our-clients__item{filter:grayscale();background:#fdfdfd;border:1px solid #e8e8e8;border-radius:20px;justify-content:center;align-items:center;width:177px;height:104px;padding:24px;transition:filter .3s,border .3s;display:flex}.our-clients__item:hover{filter:grayscale(0%)}@media screen and (width>=992px){.our-clients__item{width:285px}}.our-clients__item>img{object-fit:contain;width:auto;max-width:80%;height:auto}.list-branches-section{padding-bottom:32px}@media screen and (width>=576px){.list-branches-section{padding-bottom:64px}}.list-branches{grid-template-columns:repeat(1,1fr);gap:24px;margin:0;padding:0;list-style-type:none;display:grid}@media screen and (width>=768px){.list-branches{grid-template-columns:repeat(2,1fr)}}@media screen and (width>=992px){.list-branches{grid-template-columns:repeat(3,1fr)}}.list-branches__itemprop{z-index:-10;opacity:0;position:absolute}.list-branches__item{border:1px solid #eaedf2;border-radius:10px;height:auto;padding:20px 20px 32px;transition:box-shadow .3s}.list-branches__item:hover{box-shadow:0 2px 8px #63636333}.list-branches__link{border-radius:10px;max-height:180px;display:block;position:relative;overflow:hidden}.list-branches__link:before{content:"";z-index:1;background:#22201d33;display:block;position:absolute;inset:0}.list-branches__video{object-fit:cover;width:100%;display:block}@media screen and (width>=992px){.list-branches__video{min-height:180px}}.list-branches__video-desk{display:none}@media screen and (width>=992px){.list-branches__video-desk{display:block}}.list-branches__video-mob{display:block}@media screen and (width>=992px){.list-branches__video-mob{display:none}}.list-branches__content{z-index:2;flex-direction:column;gap:10px;display:flex;position:absolute;bottom:25px;left:25px}.list-branches__clock{color:#fff;font-size:11px;font-weight:600;line-height:1}.list-branches__locality{color:#fff;font-size:33px;font-weight:400;line-height:1}.list-branches__data{padding-left:40px;position:relative}.list-branches__icons{color:#b12933;font-size:24px;display:flex;position:absolute;top:2px;left:0}.list-branches__text{color:#2e3a4c;font-size:18px;font-weight:400;text-decoration:none;transition:all .3s;display:block}.list-branches__text--active{color:#b12933;cursor:pointer;line-height:1;text-decoration:none;display:inline-block}.list-branches__text--active:after{content:"";background-color:#b12933;width:0;height:1px;margin-top:3px;transition:width .3s ease-in-out;display:block}.list-branches__text--active:hover:after,.list-branches__text--active:focus:after{width:100%}.list-branches__tab{flex-direction:column;padding-top:24px;display:flex}.list-branches__tab-nav>input[type=radio]{display:none}.list-branches__tab-content{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:all .3s;display:grid;overflow:hidden}.list-branches__tab-content.view{visibility:visible;opacity:1;grid-template-rows:1fr}.list-branches__tab-content-inner{flex-direction:column;gap:16px;min-height:0;display:flex}.list-branches__tab-nav{order:-1;align-items:center;gap:5px;margin-bottom:15px;display:flex}.list-branches__tab-btn{cursor:pointer;color:#212529;-webkit-appearance:button;background-color:#fff;border:1px solid #0000;border-radius:8px;padding:.5rem 1rem;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;display:block}.list-branches__tab-btn.active{color:#fff;cursor:default;background-color:#b12933;border:1px solid #b12933}.list-branches__tab-btn:hover{border:1px solid #b12933}.list-branches__title{padding-top:32px}@media screen and (width>=576px){.list-branches__title{padding-top:64px}}.popup-fancybox-custom{display:none}.fancybox__content.popup-fancybox-custom{border-radius:8px;width:100%;padding:24px}.fancybox__content.popup-fancybox-custom--xs{max-width:680px}.fancybox__content.popup-fancybox-custom--sm{max-width:824px}.fancybox__content.popup-fancybox-custom--md{max-width:950px}.fancybox__content.popup-fancybox-custom--pd-xs{padding:48px 24px 24px}.fancybox__content.popup-fancybox-custom--narrow{max-width:390px;padding:48px 32px 32px}.fancybox__content.popup-fancybox-custom>.f-button{box-shadow:none}.fancybox__content.popup-fancybox-custom>.f-button.is-close-btn{color:#201600;background-color:#0000;top:16px;right:16px}.fancybox__content.popup-fancybox-custom>.f-button.is-close-btn:hover{color:#95000b}#map{width:100%;min-height:500px}.press-center{flex-direction:column;display:flex}.press-center__desc{background:#f0f3fb;border-radius:10px;flex-direction:column;align-items:center;padding:20px 10px;display:flex}@media screen and (width>=768px){.press-center__desc{padding:20px 47px}}@media screen and (width>=992px){.press-center__desc{padding:34px 68px}}.press-center__text{color:#2e3a4c;text-align:center;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:130%}.press-center__anchor-link{flex-wrap:wrap;justify-content:center;gap:10px;margin:40px 0 0;padding:0;list-style-type:none;display:flex}.press-center__anchor-link>li{cursor:pointer;color:#2e3a4c;background:#fff;border:1px solid #eaedf2;border-radius:10px;width:calc(50% - 5px);padding:12px 24px;transition:all .3s}@media screen and (width>=992px){.press-center__anchor-link>li{width:max-content}}.press-center__anchor-link>li:hover{background-color:var(--c-primary);border:1px solid var(--c-primary);color:#fff}.press-center__anchor-link>li>p{margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:140%}.press-center__category{margin-top:64px}.press-center__btn-link-category{justify-content:center;margin-top:24px;display:flex}.press-center__mailing{margin-top:64px}.services__row{flex-direction:column;gap:15px;display:flex}.services__box{background-color:#f0f3fb;border:1px solid #f0f3fb;border-radius:12px;transition:all .3s;box-shadow:0 0 10px 14px #93c8c208}.services__title{flex-direction:column;align-items:baseline;gap:15px;padding:14px;display:flex}@media screen and (width>=576px){.services__title{flex-direction:row;justify-content:space-between;align-items:center;gap:20px;padding:20px}}.services__title-link{max-width:100%;color:var(--c-black);cursor:pointer;padding:6px;font-size:16px;text-decoration:none;transition:all .3s;display:inline}.services__title-link:after{content:"";color:var(--c-black);opacity:1;margin:0 0 0 5px;font-family:fontello;font-size:16px;font-style:normal;font-weight:400;transition:all .3s;display:inline-flex;transform:translate(0)}@media screen and (width>=768px){.services__title-link:after{opacity:0;align-items:center;gap:15px;margin:5px 0 0;font-size:18px;display:flex;transform:translate(-50%)}}.services__box.services__box--active .services__title-link:after{color:var(--c-primary-dark)}.services__title-link:hover:after{opacity:1;color:var(--c-primary-dark);transform:translate(0)}.services__title-link:hover,.services__box.services__box--active .services__title-link{color:var(--c-primary-dark)}@media screen and (width>=768px){.services__title-link{align-items:center;gap:15px;display:flex}}@media screen and (width>=992px){.services__title-link{max-width:70%;font-size:20px}}@media screen and (width>=1200px){.services__title-link{font-size:22px}}.services__button{border:1px solid var(--c-black);cursor:pointer;border-radius:12px;align-self:flex-end;line-height:32px;transition:all .3s;display:flex}.services__button:hover,.services__box.services__box--active .services__button{border:1px solid var(--c-primary-dark)}@media screen and (width>=768px){.services__button{line-height:40px}}.services__button-flip{opacity:1;text-align:left;outline:0;width:120px;padding:0 0 0 8px;font-size:16px;display:inline-block;position:relative}.services__button-flip:after{opacity:0;width:100%;color:var(--c-primary-dark);content:attr(data-back);transition:all .3s;display:block;position:absolute;top:0;left:8px;transform:translateY(-50%)rotateX(90deg)}.services__button-flip:before{opacity:1;color:var(--c-black);content:attr(data-front);transition:all .3s;display:block;position:relative;top:0;left:0;transform:translateY(0)rotateX(0)}.services__button:hover .services__button-flip:before{color:var(--c-primary-dark)}.services__box.services__box--active .services__button-flip:after{opacity:1;transform:translateY(0)rotateX(0)}.services__box.services__box--active .services__button-flip:before{opacity:0;transform:translateY(50%)rotateX(90deg)}@media screen and (width>=768px){.services__button-flip{width:130px;line-height:40px}}@media screen and (width>=992px){.services__button-flip{width:140px;font-size:18px}}.services__button-arrow{position:relative}.services__button-arrow:before{content:"";background:#000c;width:10px;height:2px;transition:all .5s;display:block;position:absolute;top:50%;right:14px;transform:rotate(45deg)}@media screen and (width>=992px){.services__button-arrow:before{width:12px;right:16px}}.services__button:hover .services__button-arrow:before{background:var(--c-primary-dark)}.services__box.services__box--active .services__button-arrow:before{background:var(--c-primary-dark);transform:rotate(-45deg)}.services__button-arrow:after{content:"";background:#000c;width:10px;height:2px;transition:all .5s;display:block;position:absolute;top:50%;right:8px;transform:rotate(135deg)}@media screen and (width>=992px){.services__button-arrow:after{width:12px}}.services__button:hover .services__button-arrow:after{background:var(--c-primary-dark)}.services__box.services__box--active .services__button-arrow:after{background:var(--c-primary-dark);transform:rotate(225deg)}.services__body{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:all .3s;display:grid;overflow:hidden}.services__box.services__box--active .services__body{visibility:visible;opacity:1;grid-template-rows:1fr}.services__body-inner{min-height:0}.services__body-content{background-color:#f0f3fb;gap:14px;padding:0 14px 14px;display:grid}@media screen and (width>=992px){.services__body-content{padding:10px 20px 20px}}.services__box-item{transition:padding-left .3s}.services__box-item--active{padding-left:0}@media screen and (width>=576px){.services__box-item--active{padding-left:10px}}.services__box-item-inner{background-color:#fff;border-radius:12px;padding:10px;transition:all .3s}.services__title-item{flex-direction:column;justify-content:space-between;align-items:baseline;gap:14px;display:flex}@media screen and (width>=576px){.services__title-item{flex-direction:row;justify-content:space-between;align-items:center;gap:20px}}.services__title-item-link{color:var(--c-black);align-items:center;gap:10px;padding:6px;font-size:16px;text-decoration:none;transition:all .3s;display:inline}.services__title-item-link:hover,.services__title-item-link:hover:before,.services__title-item-link:hover:after{color:var(--c-primary-dark)}.services__title-item-link:before{content:"";color:var(--c-black);margin:0 5px 0 0;font-family:fontello;font-size:16px;font-style:normal;font-weight:400;transition:all .3s}@media screen and (width>=576px){.services__title-item-link:before{margin:auto}}.services__title-item-link:hover:before{color:var(--c-primary-dark)}.services__title-item-link:after{content:"";opacity:1;margin:0 0 0 5px;font-family:fontello;font-size:16px;font-style:normal;font-weight:400;transition:all .3s;display:inline-flex;transform:translate(0)}@media screen and (width>=768px){.services__title-item-link:after{opacity:0;align-items:center;gap:15px;margin:5px 0 0;font-size:18px;display:flex;transform:translate(-50%)}}.services__box-item.services__box-item--active .services__title-item-link:after{color:var(--c-primary-dark)}.services__title-item-link:hover:after{opacity:1;transform:translate(0)}.services__box-item.services__box-item--active .services__title-item-link,.services__title-item-link:hover,.services__box-item.services__box-item--active .services__title-item-link:before,.services__title-item-link:hover:before{color:var(--c-primary-dark)}@media screen and (width>=576px){.services__title-item-link{align-items:center;gap:10px;display:flex}}@media screen and (width>=1200px){.services__title-item-link{font-size:18px}}.services__button-item{border:1px solid var(--c-black);cursor:pointer;border-radius:12px;align-self:flex-end;line-height:32px;transition:all .3s}.services__button-item:hover,.services__box-item.services__box-item--active .services__button-item{border:1px solid var(--c-primary-dark)}@media screen and (width>=768px){.services__button-item{line-height:36px}}.services__button-flip-item{opacity:1;text-align:left;outline:0;width:90px;padding:0 0 0 8px;font-size:16px;display:inline-block;position:relative}.services__button-flip-item:after{opacity:0;width:100%;color:var(--c-primary-dark);content:attr(data-back-item);transition:all .3s;display:block;position:absolute;top:0;left:8px;transform:translateY(-50%)rotateX(90deg)}.services__button-flip-item:before{opacity:1;color:var(--c-black);content:attr(data-front-item);transition:all .3s;display:block;position:relative;top:0;left:0;transform:translateY(0)rotateX(0)}.services__button-item:hover .services__button-flip-item:before{color:var(--c-primary-dark)}.services__box-item.services__box-item--active .services__button-flip-item:after{opacity:1;transform:translateY(0)rotateX(0)}.services__box-item.services__box-item--active .services__button-flip-item:before{opacity:0;transform:translateY(50%)rotateX(90deg)}@media screen and (width>=768px){.services__button-flip-item{width:100px;font-size:18px}}.services__button-arrow-item{position:relative}.services__button-arrow-item:before{content:"";background:#000c;width:9px;height:2px;transition:all .5s;display:block;position:absolute;top:50%;right:14px;transform:rotate(45deg)}@media screen and (width>=992px){.services__button-arrow-item:before{width:12px;right:16px}}.services__button-item:hover .services__button-arrow-item:before{background:var(--c-primary-dark)}.services__box-item.services__box-item--active .services__button-arrow-item:before{background:var(--c-primary-dark);transform:rotate(-45deg)}.services__button-arrow-item:after{content:"";background:#000c;width:9px;height:2px;transition:all .5s;display:block;position:absolute;top:50%;right:8px;transform:rotate(135deg)}@media screen and (width>=992px){.services__button-arrow-item:after{width:12px}}.services__button-item:hover .services__button-arrow-item:after{background:var(--c-primary-dark)}.services__box-item.services__box-item--active .services__button-arrow-item:after{background:var(--c-primary-dark);transform:rotate(225deg)}.services__body-item{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:all .3s;display:grid;overflow:hidden}.services__box-item.services__box-item--active .services__body-item{visibility:visible;opacity:1;grid-template-rows:1fr}.services__list{counter-reset:list 0;gap:8px;margin:0;padding:8px;font-size:14px;list-style-type:none;display:grid}@media screen and (width>=576px){.services__list{padding:14px;font-size:18px}}.services__list-item{gap:8px;display:flex}.services__list-item:before{counter-increment:list;content:counter(list);color:var(--c-black);font-weight:600;transition:all .3s;display:inline-block}.services__list-item:hover:before{color:var(--c-primary-dark)}.services__list-link{color:var(--c-black);text-decoration:none;transition:all .3s}.services__list-item:hover .services__list-link{color:var(--c-primary-dark)}.expert{padding-block:24px 0}.expert__row{background:#f0f3fb;border:1px solid #eaedf2;border-radius:16px;flex-direction:column;align-items:center;gap:30px;width:100%;margin:0 auto;padding:24px 16px;display:flex}@media screen and (width>=576px){.expert__row{width:70%;padding:24px 32px}}@media screen and (width>=992px){.expert__row{flex-direction:row;align-items:flex-start;width:100%;padding:40px 60px}}.expert__image{width:100%}@media screen and (width>=992px){.expert__image{width:100%;max-width:378px}}.expert__photo{object-fit:cover;background-color:#f1f1f1;border-radius:6px;width:100%;display:block}.expert__desc{width:100%}@media screen and (width>=992px){.expert__desc{width:60%}}.expert__desc ul li{font-weight:400}.expert__desc-heading{color:#2e3a4c;font-size:18px}.expert__desc-heading>h1{margin:0;font-size:30px}.expert__desc-heading>p{margin:5px 0 0}.expert__training{margin:28px 0 0}.expert__desc h2,.expert__h2{color:#2e3a4c;margin:0 0 8px;padding:20px 0 10px;font-size:24px;font-style:normal;font-weight:600;line-height:120%;position:relative}.expert__desc h2:before,.expert__h2:before{content:"";background-color:#b12933;width:180px;height:4px;position:absolute;bottom:0;left:0}.expert__experience{color:#2e3a4c;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.expert__experience p{font-weight:400}.expert__service-category{padding:32px 0}.expert__services{grid-template-columns:repeat(auto-fill,minmax(280px,1fr));justify-content:center;gap:30px;margin:0;padding:0;list-style-type:none;display:grid}.expert__services-item{border:1px solid #eaedf2;border-radius:6px;flex-direction:column;padding:16px;transition:all .3s;display:flex;position:relative}.expert__services-item:hover{box-shadow:-2px 4px 12px #4b4b4b24}.expert__services-link-article{z-index:1;margin-top:auto;text-decoration:none;position:absolute;inset:0}.expert__services-heading{color:#b3b3b3;justify-content:flex-start;align-items:center;font-size:16px;display:flex}.expert__services-year{align-items:center;gap:10px;padding-right:10px;display:flex}.expert__services-year:before{content:"";color:var(--c-primary);font-family:fontello;font-size:22px;font-style:normal;font-weight:400;display:block}.expert__services-time{border-left:1px solid #dcdcdc;padding-left:10px}.expert__services-title{color:#2e3a4c;margin:18px 0 28px;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.expert__services-text{color:#2e3a4c;flex:1;margin:0 0 16px;font-size:16px;font-style:normal;font-weight:400;line-height:140%}.expert__link-back{max-width:150px;margin-top:50px}.expert__services-link{z-index:1;max-width:180px;position:relative}.feedback-questionnaire__container{--background-light-gray:#eaedf2;--grey:#b3b3b3;--text-red:#b12933;--bg-light-gray:#eaedf2;margin:32px 0;padding:24px 20px;display:flex}@media screen and (width>=768px){.feedback-questionnaire__container{min-height:456px;margin:100px 0;padding:32px 40px}}@media screen and (width>=992px){.feedback-questionnaire__container{min-height:550px;margin:100px 0;padding:60px 120px}}.feedback-questionnaire__container{border:1px solid var(--background-light-gray);background:#fff;border-radius:20px;box-shadow:0 16px 48px #0000000a}.feedback-questionnaire__top{flex-direction:column;display:flex}.feedback-questionnaire__step{flex-direction:column;flex-grow:1;justify-content:space-between;display:none}.feedback-questionnaire__step.active{display:flex}.feedback-questionnaire__buttons{gap:40px;display:flex}.feedback-questionnaire__next,.feedback-questionnaire__prev{max-width:100%;font-size:16px}.feedback-questionnaire__next.hidden,.feedback-questionnaire__prev.hidden{display:none}@media screen and (width>=768px){.feedback-questionnaire__next,.feedback-questionnaire__prev{width:auto;padding:16px 32px}}.feedback-questionnaire__prev{display:none}@media screen and (width>=992px){.feedback-questionnaire__prev{display:flex}}.feedback-questionnaire__number{color:var(--grey);text-align:center;order:20;margin:32px 0 16px;font-size:14px}@media screen and (width>=768px){.feedback-questionnaire__number{text-align:left;order:0;margin:0}}.feedback-questionnaire__header{margin-bottom:24px;font-size:18px;font-style:normal;font-weight:600;line-height:120%;position:relative}.feedback-questionnaire__header span{color:var(--text-red)}@media screen and (width>=768px){.feedback-questionnaire__header{margin:32px 0 51px;font-size:24px;font-weight:600}.feedback-questionnaire__header:before{content:"";background-color:var(--text-red);width:100px;height:4px;position:absolute;bottom:-16px;left:0}}@media screen and (width>=992px){.feedback-questionnaire__header{font-size:32px;font-weight:600}}.feedback-questionnaire__rating{gap:4px;display:flex}.feedback-questionnaire__star{cursor:pointer;background-image:url(/app/themes/serconsrus/public/build/assets/icon-star-empty-nBEjgO58.svg);background-repeat:no-repeat;background-size:contain;width:24px;height:24px}@media screen and (width>=768px){.feedback-questionnaire__star{width:30px;height:30px}}@media screen and (width>=992px){.feedback-questionnaire__star{width:60px;height:60px}}.feedback-questionnaire__star--filled{background-image:url(/app/themes/serconsrus/public/build/assets/icon-star-filled-MrQPyUrY.svg)}.feedback-questionnaire__options{font-size:14px}.feedback-questionnaire__options label{align-items:center;gap:10px;margin-bottom:16px;display:flex}.feedback-questionnaire__options input{appearance:none;background-image:url(/app/themes/serconsrus/public/build/assets/checkbox-unchecked-BzbtLCBY.svg);background-repeat:no-repeat;background-size:contain;width:16px;height:16px}.feedback-questionnaire__options input:checked{background-image:url(/app/themes/serconsrus/public/build/assets/checkbox-checked-CYtttvEQ.svg)}@media screen and (width>=768px){.feedback-questionnaire__options{column-count:3;font-size:18px}}@media screen and (width>=992px){.feedback-questionnaire__options{font-size:16px}}.feedback-questionnaire__comment{margin-top:16px}.feedback-questionnaire__comment label{margin-bottom:8px;font-size:14px;display:block}.feedback-questionnaire__comment textarea{border:1px solid var(--bg-light-gray);background:#f8f8f8;border-radius:8px;width:100%;min-height:88px;display:block}.feedback-questionnaire__error{color:var(--c-primary);margin:16px 0 30px;font-size:12px}.feedback-questionnaire__final{flex-direction:column;flex-grow:1;justify-content:center;display:flex}.feedback-questionnaire__final img{min-width:100%;margin-bottom:24px}@media screen and (width>=768px){.feedback-questionnaire__final img{display:none}.feedback-questionnaire__final{align-items:center}}.feedback-questionnaire__final .feedback-questionnaire__prev{display:flex}@media screen and (width>=768px){.feedback-questionnaire__final .feedback-questionnaire__prev{display:none}}.clients-by-country li,.clients-by-country li:hover,.clients-by-country li.hover{transition:all .5s}.clients-by-country li:hover,.clients-by-country li.hover{color:#b43838;cursor:pointer}path,path[data-hover=hover],path:hover{transition:all .5s}path#path2924:hover,path#path2924[data-hover=hover]{fill:#b12933}path#path2708:hover,path#path2708[data-hover=hover]{fill:#0000fc}path#path6046:hover,path#path6046[data-hover=hover]{fill:#238880}path#path3510:hover,path#path3510[data-hover=hover]{fill:#b12933}path#path3458:hover,path#path3458[data-hover=hover]{fill:#00ac0d}path#path2906:hover,path#path2906[data-hover=hover]{fill:#0bf1fc}path#ua-:hover,path#ua-[data-hover=hover],path#pl:hover,path#pl[data-hover=hover]{fill:#00ac0d}path#cz:hover,path#cz[data-hover=hover]{fill:#c52229}path#path2182:hover,path#path2182[data-hover=hover]{fill:#eaba81}path#at:hover,path#at[data-hover=hover]{fill:#00ac0d}path#path4682:hover,path#path4682[data-hover=hover]{fill:#6eea34}path#path2656:hover,path#path2656[data-hover=hover]{fill:#00ac0d}path#path3884:hover,path#path3884[data-hover=hover]{fill:#193d57}path#path6484:hover,path#path6484[data-hover=hover]{fill:#00ac0d}path#path3804:hover,path#path3804[data-hover=hover]{fill:#ef7f1b}path#path4548:hover,path#path4548[data-hover=hover]{fill:#075971}.our-customers__row{background:#f0f3fb;padding:32px 0}@media screen and (width>=992px){.our-customers__row{padding:64px 0}}.our-customers__countries{margin:32px 0;padding:0;list-style-type:none}.our-customers__countries>li{justify-content:space-between;gap:10px;margin-bottom:16px;font-size:16px;line-height:22px;display:flex}.our-customers__countries>li>span{align-items:center;gap:10px;display:flex}.our-customers__countries>li>span>span{color:#2e3a4c;font-size:18px;font-style:normal;font-weight:400;line-height:140%}.our-customers__countries>li>p{color:#2e3a4c;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:140%}@media screen and (width>=768px){.our-customers__countries{column-count:3;gap:68px}}@media screen and (width>=992px){.our-customers__countries{gap:76px}}.our-customers__industry{grid-template-columns:repeat(auto-fill,minmax(75px,1fr));gap:30px;margin:0;padding:0;list-style-type:none;display:grid}.our-customers__industry>li{border-radius:15px;align-self:end;height:20px;padding-bottom:20px;transition:all 2s;overflow:hidden}.our-customers__industry>li>span{color:#fff;justify-content:center;align-items:flex-end;width:100%;height:100%;font-size:20px;font-style:normal;font-weight:700;line-height:110%;display:flex}.our-customers__industry-desc{margin:48px 0 0;padding:0;list-style-type:none}.our-customers__industry-desc>li{align-items:center;gap:12px;margin-bottom:12px;display:flex}.our-customers__industry-desc>li>span{border-radius:20px;width:20px;height:20px}.our-customers__industry-desc>li>p{color:#000;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:140%}@media screen and (width>=768px){.our-customers__industry-desc{column-count:2;gap:46px}.our-customers__industry-desc:nth-child(4n){margin:0}}.our-customers__list-checkbox{flex-wrap:nowrap;justify-content:flex-start;gap:10px;margin:0;padding:0 0 16px;list-style-type:none;display:flex;overflow-x:auto}@media screen and (width>=576px){.our-customers__list-checkbox{flex-wrap:wrap;padding:0;overflow-x:visible}}.our-customers__list-checkbox li p{color:#b12933;white-space:nowrap;cursor:pointer;border:1px solid #b12933;border-radius:8px;margin:0;padding:16px 32px;font-size:14px;font-style:normal;font-weight:400;line-height:16px;transition:all .3s;display:flex}.our-customers__list-checkbox li p:hover{background-color:inherit;color:#fff}@media screen and (width>=576px){.our-customers__list-checkbox li p:hover{background-color:#b12933}}.our-customers__list-checkbox li p.sort-js--active{color:#fff;background-color:#b12933}.our-customers__list-company{grid-template-columns:1fr 1fr;gap:16px;margin:0;padding:32px 0 0;list-style-type:none;display:grid}@media screen and (width>=576px){.our-customers__list-company{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:24px}}@media screen and (width>=992px){.our-customers__list-company{padding:64px 0 0}}.our-customers__list-company>li{background:#eaedf2;border-radius:10px;padding:6px;overflow:hidden}.our-customers__list-company>li>img{object-fit:cover;width:100%;max-width:170px;margin:0 auto;display:block}.our-customers__map-svg{width:100%;height:387px}.our-customers__map-country{z-index:1;background-image:url(http://serconsrus.sercons.io/app/uploads/2024/02/rossiya.svg);background-position:50%;background-size:cover;width:36px;height:36px;position:relative}.our-team__row{background-color:#4a4a4a;background-position:50%;background-size:cover;border-radius:16px;margin-bottom:30px;padding:24px 14px 14px}@media screen and (width>=576px){.our-team__row{min-height:460px;padding:44px 26px 26px}}@media screen and (width>=992px){.our-team__row{min-height:600px;margin-bottom:60px;padding:54px}}.our-team__title{color:#fdfdfd;text-align:center;letter-spacing:1.4px;margin:0;font-size:32px;font-weight:600;line-height:normal}@media screen and (width>=576px){.our-team__title{font-size:42px}}@media screen and (width>=992px){.our-team__title{font-size:54px}}.our-team__subtitle{color:#fdfdfd;text-align:center;max-width:600px;margin:16px auto 0;font-size:18px;font-weight:400;line-height:140%}.our-team__list{border:1px solid #fdfdfd;border-radius:8px;grid-template-rows:1fr;grid-template-columns:1fr 1fr 36%;margin:90px 0 0;padding:12px 4px;display:grid}@media screen and (width>=576px){.our-team__list{margin:160px 0 0;padding:21px 26px}}@media screen and (width>=992px){.our-team__list{margin:260px 0 0}}.our-team__list-item{flex-direction:column;align-items:flex-start;gap:5px;display:flex}@media screen and (width>=1200px){.our-team__list-item{flex-direction:row;gap:20px}}.our-team__list-item:nth-child(2){border-left:1px solid #fdfdfd;border-right:1px solid #fdfdfd;margin-right:12px;padding:0 12px}@media screen and (width>=576px){.our-team__list-item:nth-child(2){font-size:42px}}@media screen and (width>=992px){.our-team__list-item:nth-child(2){margin-right:20px;padding:0 20px}}.our-team__number{color:#fdfdfd;font-size:18px;font-style:normal;font-weight:400;line-height:120%}@media screen and (width>=576px){.our-team__number{font-size:24px}}@media screen and (width>=992px){.our-team__number{font-size:46px}}.our-team__text{color:#fdfdfd;margin:0;font-size:12px;font-style:normal;font-weight:300;line-height:140%}.our-team__text p{margin:0}@media screen and (width>=576px){.our-team__text{font-size:14px}}@media screen and (width>=992px){.our-team__text{font-size:18px}}.our-team__leadership-nav{display:none}@media screen and (width>=768px){.our-team__leadership-nav{-webkit-backdrop-filter:blur(6.5px);backdrop-filter:blur(6.5px);z-index:4;background:#0003;padding:20px 0;display:block;position:sticky;top:calc(100% - 88px)}}.our-team__leadership-nav-list{justify-content:center;align-items:center;gap:20px;display:flex;overflow-x:auto}.our-team__leadership-nav-link{color:#2e3a4c;white-space:nowrap;background-color:#fff;border:1px solid #dadada;border-radius:8px;padding:12px 16px;font-size:16px;font-weight:400;line-height:140%;text-decoration:none;transition:all .3s ease-in-out}.our-team__leadership-nav-link:hover{color:#b12933;background-color:#fff5f5;border:1px solid #b12933}.our-team__leadership-nav-link.anchor-link-js--active{color:#fff;background-color:var(--c-primary);border:1px solid var(--c-primary)}@media screen and (width>=992px){.our-team__leadership-nav-link{padding:12px 32px}}.our-team__directors-card{grid-template-columns:repeat(2,1fr);gap:16px;margin:24px 0 0;display:grid}.our-team__directors-card>a{text-decoration:none}.our-team__directors-card>a>img{border-radius:8px;width:100%;transition:all .3s;display:block;overflow:hidden}.our-team__directors-card>a>img:hover{opacity:.8}@media screen and (width>=768px){.our-team__directors-card{grid-template-columns:repeat(3,1fr)}}@media screen and (width>=992px){.our-team__directors-card{gap:24px;margin:40px 0 0}}.our-team__directors-desc{grid-column:2/span 1;position:relative}@media screen and (width>=768px){.our-team__directors-desc{grid-column:2/span 2}}.our-team__directors-desc>h3{color:#000;margin:0;font-size:16px;font-weight:600;line-height:120%}@media screen and (width>=768px){.our-team__directors-desc>h3{font-size:18px}}@media screen and (width>=992px){.our-team__directors-desc>h3{font-size:32px}}.our-team__directors-desc>p{color:#000;margin:8px 0 0;font-size:12px;font-weight:400;line-height:140%}@media screen and (width>=768px){.our-team__directors-desc>p{font-size:18px}}@media screen and (width>=992px){.our-team__directors-desc>p{font-size:24px}}.our-team__directors-desc>blockquote{background-color:#fdfdfd;border:1px solid #dadada;border-radius:8px;margin:0;padding:8px;font-size:12px;font-style:normal;font-weight:600;line-height:110%;position:absolute;bottom:0;left:0}@media screen and (width>=768px){.our-team__directors-desc>blockquote{line-height:120%}}.our-team__directors-desc>blockquote:before{content:"";height:18px;color:var(--c-primary);justify-content:flex-start;align-items:center;width:100%;max-width:100%;margin-bottom:8px;font-family:fontello;font-size:18px;display:flex}@media screen and (width>=768px){.our-team__directors-desc>blockquote:before{height:24px;margin-bottom:12px;font-size:24px}}@media screen and (width>=992px){.our-team__directors-desc>blockquote:before{height:48px;margin-bottom:28px;font-size:48px}}.our-team__directors-desc>blockquote:after{content:"";height:18px;color:var(--c-primary);justify-content:flex-start;align-items:center;width:100%;max-width:100%;margin-top:8px;font-family:fontello;font-size:18px;display:flex;transform:rotate(180deg)}@media screen and (width>=768px){.our-team__directors-desc>blockquote:after{height:24px;margin-top:12px;font-size:24px}}@media screen and (width>=992px){.our-team__directors-desc>blockquote:after{height:48px;margin-top:28px;font-size:48px}}@media screen and (width>=768px){.our-team__directors-desc>blockquote{padding:16px;font-size:16px}}@media screen and (width>=992px){.our-team__directors-desc>blockquote{padding:24px 32px;font-size:24px}}.our-team__leadership-block{padding:30px 0}@media screen and (width>=768px){.our-team__leadership-block{padding:45px 0}.our-team__leadership-block:last-child{padding-bottom:120px}}.our-team__leadership-grid{gap:16px;margin:24px 0 0;padding:0;list-style-type:none;display:grid}.our-team__leadership-grid--33{grid-template-columns:repeat(2,1fr);margin:16px 0 0}@media screen and (width>=768px){.our-team__leadership-grid--33{grid-template-columns:repeat(3,1fr)}}@media screen and (width>=992px){.our-team__leadership-grid--33{margin:24px 0 0}}.our-team__leadership-grid--25{grid-template-columns:repeat(2,1fr)}@media screen and (width>=768px){.our-team__leadership-grid--25{grid-template-columns:repeat(4,1fr)}}@media screen and (width>=992px){.our-team__leadership-grid{gap:24px}}.our-team__leadership-block-item{position:relative}.our-team__leadership-block-item:hover img{opacity:.8}.our-team__leadership-block-item>a{cursor:pointer;z-index:1;text-decoration:none;position:absolute;inset:0}.our-team__leadership-block-item>img{background-color:#f1f1f1;border-radius:8px;width:100%;transition:all .3s;display:block;overflow:hidden}.our-team__leadership-block-item>h3{color:#000;z-index:0;margin:16px 0 8px;font-size:16px;font-weight:600;line-height:120%;position:relative}@media screen and (width>=768px){.our-team__leadership-block-item>h3{font-size:18px}}@media screen and (width>=992px){.our-team__leadership-block-item>h3{margin:24px 0 8px;font-size:32px}}.our-team__leadership-block-item>p{color:#000;z-index:0;margin:0;font-size:14px;font-weight:400;line-height:140%;position:relative}@media screen and (width>=992px){.our-team__leadership-block-item>p{font-size:24px}}.our-team__leadership-block-item--small>h3{font-size:16px}@media screen and (width>=768px){.our-team__leadership-block-item--small>h3{font-size:18px}}@media screen and (width>=992px){.our-team__leadership-block-item--small>h3{font-size:24px}}.our-team__leadership-block-item--small>p{font-size:14px}@media screen and (width>=576px){.our-team__leadership-block-item--small>p{font-size:16px}}.slider-history{background:#f0f3fb;border-radius:10px;padding:20px}.slider-history-js{margin-top:10px}.slider-history__slide{border-radius:10px;height:auto}.slider-history__picture{border-radius:10px;overflow:hidden}.slider-history__picture .swiper-lazy-preloader{border:4px solid #b12933;border-top-color:#0000}.slider-history__picture img{object-fit:cover;width:100%;height:200px;display:block}@media screen and (width>=768px){.slider-history__picture img{height:260px}}.slider-history-photo-js .slider-history__pagination.swiper-pagination{-webkit-backdrop-filter:blur(9.5px);backdrop-filter:blur(9.5px);border-radius:32px;width:max-content;padding:6px 8px;display:flex;left:50%;transform:translate(-50%)}.slider-history-photo-js .slider-history__pagination.swiper-pagination .swiper-pagination-bullet{opacity:.8;background:#fdfdfd;width:10px;height:10px;margin:0 2px!important}.slider-history-photo-js .slider-history__pagination.swiper-pagination .swiper-pagination-bullet-active{background:#b12933}.slider-history__list{max-height:150px;margin:20px 0 0;padding:0 6px 0 0;list-style-type:none;overflow-y:auto}@media screen and (width>=576px){.slider-history__list{max-height:230px}}@media screen and (width>=992px){.slider-history__list{max-height:317px}}.slider-history__list::-webkit-scrollbar{width:6px}.slider-history__list::-webkit-scrollbar-track{background:#fff;border-radius:10px}.slider-history__list::-webkit-scrollbar-thumb{background-color:#b12933;border:3px solid #b12933;border-radius:10px}.slider-history__list-item+.slider-history__list-item{margin-top:16px}.slider-history__title{color:#b12933;margin:0;font-size:16px;font-style:normal;font-weight:600;line-height:120%}.slider-history__text{color:#2e3a4c;margin:4px 0;font-size:18px;font-style:normal;font-weight:400;line-height:140%}.slider-history__row{background-color:#fff;border:1px solid #eaedf2;border-radius:10px;align-items:center;display:flex}.slider-history__row .swiper-button-prev,.slider-history__row .swiper-button-next{position:inherit;margin-top:inherit;flex-shrink:0;width:42px}.slider-history__row .swiper-button-prev{border-right:2px solid #eaedf2}.slider-history__row .swiper-button-next{border-left:2px solid #eaedf2}.slider-history__row .swiper-button-prev:after,.slider-history__row .swiper-button-next:after{color:#282828;font-size:26px}.slider-history__year-slide{cursor:pointer;background-color:#fff;border-left:1px solid #eaedf2;border-right:1px solid #eaedf2;justify-content:center;align-items:center;width:84px;padding:12px 24px;display:flex}.slider-history__year-slide:first-child,.slider-history__year-slide:last-child{border-left:0;border-right:0}.slider-history__year-slide.swiper-slide-thumb-active{background:#eaedf2}.slider-history__year-slide.swiper-slide-thumb-active .slider-history__data{color:#b12933}.slider-history__data{color:#2e3a4c;font-size:16px;font-style:normal;font-weight:400;line-height:140%}.accreditation__sort-item{flex-wrap:nowrap;justify-content:flex-start;gap:10px;margin:0;padding:0 0 16px;list-style-type:none;display:flex;overflow-x:auto}@media screen and (width>=576px){.accreditation__sort-item{flex-wrap:wrap;padding:0;overflow-x:visible}}.accreditation__sort-item li p{color:#b12933;white-space:nowrap;cursor:pointer;border:1px solid #b12933;border-radius:8px;margin:0;padding:16px 32px;font-size:14px;font-style:normal;font-weight:400;line-height:16px;transition:all .3s;display:flex}.accreditation__sort-item li p:hover,.accreditation__sort-item li p.sort-js--active{color:#fff;background-color:#b12933}.accreditation__sort-element{grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:24px;margin:0;padding:32px 0 0;list-style-type:none;display:grid}.accreditation__sort-element>li{background:#f0f3fb;border-radius:10px;padding:20px 24px;overflow:hidden;box-shadow:0 8px 16px #ebe9ff1f}.accreditation__sort-element>li>figure{margin:0}.accreditation__sort-element>li>figure>a{text-decoration:none}.accreditation__sort-element>li>figure>a>img{object-fit:contain;width:100%;max-height:250px;display:block}.accreditation__sort-element>li>figure>figcaption{color:#212121;text-align:center;margin:16px 0 0;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.experts-road__swiper{padding-top:32px}@media screen and (width>=992px){.experts-road__swiper{padding-top:64px}}.experts-road-js .swiper-wrapper{padding-bottom:64px}@media screen and (width>=992px){.experts-road-js .swiper-wrapper{padding-bottom:72px}}.experts-road__swiper-slide>a{border:1px solid #eaedf2;border-radius:10px;padding:20px;text-decoration:none;transition:box-shadow .3s;display:flex;position:relative}.experts-road__swiper-slide>a:hover{box-shadow:0 2px 8px #63636333}.experts-road__swiper-slide>a>figure{margin:0}.experts-road__swiper-slide>a>figure>img{width:100%;display:block}.experts-road__swiper-slide>a>figure>figcaption{color:#2e3a4c;text-align:center;-webkit-line-clamp:3;text-overflow:ellipsis;-webkit-box-orient:vertical;min-height:64px;margin:20px 0 0;font-size:18px;font-style:normal;font-weight:600;line-height:120%;display:-webkit-box;overflow:hidden}.experts-road__swiper-navigation{justify-content:space-between;align-items:center;width:96px;height:40px;display:flex;position:absolute;bottom:0;right:0}.experts-road__button-next,.experts-road__button-prev{border:1px solid #b12933;border-radius:50%;width:40px;height:40px}.experts-road__button-next{right:0}.experts-road__button-prev{left:0}.experts-road__button-next:after,.experts-road__button-prev:after{color:#b12933;font-size:14px}.experts-road__map{border-radius:10px;width:100%;height:314px;overflow:hidden;box-shadow:4px 4px 8px #223c5033}@media screen and (width>=992px){.experts-road__map{height:500px}}.experts-road__map-balloonContent{flex-direction:column;gap:12px;padding:8px 0;display:flex}.experts-road__map-title{color:#000;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.experts-road__map-link{text-align:center;color:#b12933;border:1px solid #b12933;border-radius:10px;padding:16px 32px;font-size:14px;font-style:normal;font-weight:400;line-height:16px;text-decoration:none;transition:all .3s;display:inline-block}.experts-road__map-link:hover{color:#fff;background-color:#b12933}.journal-company{grid-template-columns:repeat(1,1fr);gap:16px;margin:0;padding:0;list-style:none;display:grid}@media screen and (width>=576px){.journal-company{grid-template-columns:repeat(2,1fr)}}@media screen and (width>=768px){.journal-company{grid-template-columns:repeat(3,1fr)}}.journal-company .journal-company__card{background-color:#fff;border:1px solid #eaedf2;border-radius:10px;padding:20px 20px 36px;transition:all .3s;position:relative}.journal-company .journal-company__card:hover{z-index:2;box-shadow:0 2px 8px #63636333}.journal-company .journal-company__card>figure{margin:0}.journal-company .journal-company__card>figure>a{justify-content:center;display:flex}.journal-company .journal-company__card>figure>a>img{object-fit:cover;border-radius:10px;width:150px;height:210px;display:block}.journal-company .journal-company__card>figure>span{color:#2e3a4c;text-align:center;margin:20px 0 4px;font-size:12px;font-style:normal;font-weight:400;line-height:16px;display:block}.journal-company .journal-company__card>figure>figcaption{color:#2e3a4c;text-align:center;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.journal-company__popup{background:0 0;width:100%;padding:0;display:none}@media screen and (width>=992px){.journal-company__popup{width:86%}}.journal-company__popup ._df_book .df-container .df-bg{background:0 0!important}.feedback__content{border:2px solid #eaedf2;border-radius:10px;padding:32px 40px}.feedback__row{flex-direction:column;justify-content:space-between;align-items:center;gap:24px;display:flex}@media screen and (width>=576px){.feedback__row{flex-direction:row}}.feedback__img{width:100%;max-width:210px}@media screen and (width>=576px){.feedback__img{max-width:178px}}.feedback__img>img{width:100%;display:block}.feedback__btn{max-width:260px;margin:24px auto}@media screen and (width>=576px){.feedback__btn{margin:24px 0 0}}.feedback__list{flex-direction:column;gap:24px;margin-top:24px;display:flex}.swiper-custom-bottom{flex-direction:column-reverse;justify-content:space-between;align-items:center;gap:24px;margin-top:24px;display:flex}@media screen and (width>=576px){.swiper-custom-bottom{flex-direction:row}}.swiper-custom-bottom__link{width:100%;max-width:290px}@media screen and (width>=576px){.swiper-custom-bottom__link{max-width:190px}}.swiper-custom-bottom__navigation{justify-content:space-between;align-items:center;gap:16px;width:max-content;display:flex}.swiper-custom-bottom__button-next,.swiper-custom-bottom__button-prev{min-width:40px;max-width:40px;min-height:40px;max-height:40px;position:inherit;border:1px solid #b12933;border-radius:50%;margin-top:auto;top:auto}.swiper-custom-bottom__button-next{right:0}.swiper-custom-bottom__button-prev{left:0}.swiper-custom-bottom__button-next:after,.swiper-custom-bottom__button-prev:after{color:#b12933;font-size:14px}.swiper-custom-bottom__pagination.swiper-pagination{position:inherit;justify-content:center;align-items:center;gap:12px;height:auto;display:flex;top:auto;bottom:auto}@media screen and (width>=576px){.swiper-custom-bottom__pagination.swiper-pagination{display:none}}.swiper-custom-bottom__pagination.swiper-pagination .swiper-pagination-bullet{opacity:1;background:#c5c5c5;width:12px;height:12px}.swiper-custom-bottom__pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#b12933}.department-service{padding-top:32px;padding-bottom:32px;position:relative}@media screen and (width>=992px){.department-service{padding-top:0;padding-bottom:32px}}.department-service:before{content:"";background-color:#f0f3fb;width:100%;height:100%;display:block;position:absolute;bottom:0;left:0}@media screen and (width>=1200px){.department-service:before{height:90%}}@media screen and (width>=768px){.department-service{padding-bottom:32px}}.department-service h1{color:#2e3a4c;margin:0 0 24px;font-size:24px;font-style:normal;font-weight:600;line-height:110%}@media screen and (width>=768px){.department-service h1{font-size:42px}}@media screen and (width>=1200px){.department-service h1{font-size:54px}}.department-service h1>span{color:#b12933}.department-service__row{flex-direction:column-reverse;justify-content:space-between;align-items:center;gap:24px;display:flex;position:relative}@media screen and (width>=768px){.department-service__row{flex-direction:row}}.department-service__description{width:100%}@media screen and (width>=768px){.department-service__description{width:55%}}.department-service__picture{width:100%}@media screen and (width>=576px){.department-service__picture{width:70%}}@media screen and (width>=768px){.department-service__picture{width:45%}}.department-service__picture>img{border-radius:12px 12px 12px 200px;width:100%;display:block}.department-service__list{flex-direction:column;gap:18px;width:97%;margin:38px 0;padding:0;list-style-type:none;display:flex}@media screen and (width>=992px){.department-service__list{width:100%}}.department-service__list>li{flex-direction:column;justify-content:space-between;align-items:flex-start;gap:4px;display:flex}@media screen and (width>=1200px){.department-service__list>li{flex-direction:row;justify-content:flex-start;align-items:center;gap:16px}}.department-service__list>li>p{width:230px}.department-service__link{color:#2e3a4c;font-size:18px;font-weight:600;line-height:140%;text-decoration:none;transition:all .3s}.department-service__link:hover{opacity:.7}.department-service__link--big{font-size:32px;text-decoration:none}.department-service__link--red{color:#b12933}.department-service__btn{max-width:210px}.success{flex-direction:column;align-items:center;padding:24px 0;display:flex}@media screen and (width>=576px){.success{padding:70px 0}}.success>img{width:53px;height:53px}.success__title{color:#000;text-align:center;margin-top:20px;font-size:18px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=576px){.success__title{font-size:24px}}.success__subtitle{color:#000;text-align:center;margin-top:8px;font-size:16px;font-style:normal;font-weight:400;line-height:140%}.video-custom{z-index:1;border-radius:12px;width:100%;height:100%;position:relative;overflow:hidden}.video-custom>video{object-fit:cover;width:100%;height:100%;display:block}.video-custom__background{z-index:2;visibility:visible;opacity:1;background-color:#00000026;width:100%;height:100%;transition:all .3s;position:absolute;top:0;left:0}.video-custom__background--toggle{visibility:hidden;z-index:-1;opacity:0}.video-custom__background--z-index{z-index:auto}.video-custom__background--z-index-0{z-index:0}.video-custom__btn{z-index:3;box-sizing:content-box;cursor:pointer;border-radius:50%;justify-content:center;align-items:center;width:80px;height:80px;display:flex;position:absolute;top:50%;left:50%;transform:translate(-50%)translateY(-50%)}.video-custom__btn:before{content:"";z-index:0;background:#ffffff1a;border-radius:50%;width:80px;height:80px;animation:1.8s ease-out infinite pulse-border;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%)translateY(-50%)}.video-custom__btn:after{content:"";z-index:1;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:#ffffff1a;border-radius:50%;width:80px;height:80px;transition:all .2s;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%)translateY(-50%)}.video-custom__btn>i{z-index:3;color:#b12933;font-size:40px;display:flex;position:relative}.video-custom__btn--small{width:28px;height:28px}.video-custom__btn--small:before,.video-custom__btn--small:after{width:40px;height:40px}.video-custom__btn--small>i{font-size:18px}.video-custom__background--toggle .video-custom__btn{z-index:-1;visibility:hidden}@keyframes pulse-border{0%{opacity:1;transform:translate(-50%)translateY(-50%)translateZ(0)scale(1)}to{opacity:0;transform:translate(-50%)translateY(-50%)translateZ(0)scale(1.5)}}.not-found{padding-bottom:64px}.not-found__svg{max-width:824px;margin:0 auto}.not-found__content{text-align:center}.not-found__title{color:#2e3a4c;margin:0 0 14px;font-size:20px;font-weight:600;line-height:120%}@media screen and (width>=576px){.not-found__title{font-size:42px}}@media screen and (width>=992px){.not-found__title{font-size:54px}}.not-found__btn{justify-content:center;max-width:260px;margin:36px auto auto;display:flex}.block-categories{flex-direction:column;justify-content:center;align-items:center;gap:32px;display:flex}@media screen and (width>=576px){.block-categories{gap:60px}}.block-categories__contain{flex-direction:column;gap:60px;width:100%;display:flex}.block-categories__group{flex-direction:column;display:flex}@media screen and (width>=576px){.block-categories__group{gap:20px}}.block-categories__title{color:#2e3a4c;text-align:center;margin:32px 0 24px;padding:0;font-size:20px;font-style:normal;font-weight:600;line-height:120%;position:relative}@media screen and (width>=576px){.block-categories__title{font-size:24px}}@media screen and (width>=992px){.block-categories__title{font-size:32px}}.block-categories__list{grid-template-columns:repeat(1,1fr);gap:16px;width:100%;margin:0;padding:0;list-style-type:none;display:grid}@media screen and (width>=576px){.block-categories__list{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}}.block-categories__list>li{background-color:#f5f6fa;border-radius:8px}.block-categories__list>li>a{flex-direction:row;justify-content:space-between;gap:8px;padding:16px;text-decoration:none;display:flex}@media screen and (width>=375px){.block-categories__list>li>a{gap:16px}}@media screen and (width>=576px){.block-categories__list>li>a{flex-direction:column;min-height:284px}}.block-categories__list>li>a>span{color:#000;font-size:16px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=576px){.block-categories__list>li>a>span{font-size:18px}}.block-categories__list>li>a>img{object-fit:contain;width:92px;margin-top:auto;display:block}@media screen and (width>=375px){.block-categories__list>li>a>img{width:112px}}@media screen and (width>=576px){.block-categories__list>li>a>img{width:100%}}.block_search{gap:20px;display:flex}#search_on_page_blck{margin-top:30px;margin-bottom:30px}#search_on_page_blck>input{display:none}.okp{width:100%}.okp ul{padding-left:0}.okp ul>li ul{padding:10px 0;display:none}.okp li{cursor:pointer;color:#000;border-bottom:0 solid #ddd;margin:0 0 20px;padding:3px 5px 3px 28px;font-size:16px;font-weight:700;display:block}.okp li.active>ul{display:block}.sub-lvl span{color:#333;font-size:16px;font-weight:400}.sub-lvl li{border-bottom:none;margin-bottom:0;padding:5px 5px 5px 40px}.mainul.active:not(:has(.active)):after{content:"Совпадений не найдено"}.okp .mainul.active li.first{display:none}.okp .mainul.active li.first.active{display:block}.okp li.first span:not(.finish):not(.highlight):before{content:"";z-index:6;background-position:50%;background-size:cover;width:12px;height:12px;display:none;position:absolute;top:.1rem;left:-1rem}.okp .question__icon{width:35px;height:35px;margin:auto;position:absolute;top:-5px;bottom:0;left:-35px}.okp .question__icon .line{-o-transition:all .4s ease-in-out;background:#b12933;width:12px;height:2px;transition:all .4s ease-in-out;position:absolute;top:55%}.question__icon .line:first-child{left:40%;transform:translate(-50%,-50%)rotate(45deg)}.question__icon .line:nth-child(2){left:60%;transform:translate(-50%,-50%)rotate(135deg)}li.active>.d-block .question__icon .line:first-child{left:50%;transform:translate(-50%,-50%)rotate(225deg)}li.active>.d-block .question__icon .line:nth-child(2){left:50%;transform:translate(-50%,-50%)rotate(315deg)}.okp .d-block{color:#000;font-size:18px;font-weight:400;line-height:normal}.okp li.active>.d-block{font-weight:700}.okp li.first .sub-lvl span:not(.finish):not(.highlight):before{width:9px;height:9px}#searchSuggestion{border:1px solid #b12933;border-radius:8px;margin-top:20px;padding:10px 20px;display:block}#searchSuggestion p{margin:0}.page-search{background-color:#f0f3fb;min-height:75vh}.page-search__form{margin:30px 0 24px}@media screen and (width>=576px){.page-search__form{margin:60px 0 30px}}.page-search__form-row{flex-direction:column;justify-content:space-between;align-items:center;gap:20px;display:flex}@media screen and (width>=576px){.page-search__form-row{flex-direction:row}}.page-search__btn{width:100%;max-width:100%}@media screen and (width>=576px){.page-search__btn{max-width:126px}}.page-search__container{overflow:auto}.page-search__container::-webkit-scrollbar{height:6px}.page-search__container::-webkit-scrollbar-track{background:#fff;border-radius:10px}.page-search__container::-webkit-scrollbar-thumb{background-color:#b12933;border:3px solid #b12933;border-radius:10px}.page-search__result{white-space:nowrap;justify-content:flex-start;align-items:center;margin:0 0 10px;padding:0;list-style-type:none;display:inline-flex;overflow:auto}.page-search__result li{background:#fff;border-right:1px solid #eaedf2}.page-search__result li:first-child{border-radius:10px 0 0 10px}.page-search__result li:last-child{border-radius:0 10px 10px 0}.page-search__result li a{cursor:pointer;color:#2e3a4c;-webkit-user-select:none;user-select:none;gap:6px;padding:12px 24px;font-size:18px;font-style:normal;font-weight:400;line-height:120%;text-decoration:none;display:flex}.page-search__result li a.active{pointer-events:none;font-weight:600}.page-search__result li a.active span{color:#b12933}.page-search__result>li:first-child{border-left:0 solid #0000}.page-search__list{margin-top:16px;padding-bottom:32px}.page-search__pagination{justify-content:center;padding-bottom:50px;display:flex}.page-search__pagination>*{padding-top:0}.page-search__pagination ul{padding-left:0}.__jivoMobileButton{margin-bottom:50px}.callback-mobile{z-index:1;color:#fff;text-transform:uppercase;background:#352f39;justify-content:space-between;align-items:center;height:100%;max-height:50px;font-size:14px;display:flex;position:fixed;bottom:0;left:0;right:0}.callback-mobile .callback-mobile__phone,.callback-mobile .callback-mobile__form{color:#fff;justify-content:center;align-items:center;width:50%;height:100%;text-decoration:none;display:flex}.callback-mobile .callback-mobile__phone{gap:4px}.callback-mobile .callback-mobile__form{background:#4b434e}@media screen and (width>=768px){.callback-mobile{display:none}}.list{flex-direction:column;gap:12px;width:100%;margin:16px 0;padding:0;list-style-type:none;display:flex}.list--number,.list--number-round,.list--number-square{counter-reset:num}.list:has(.list) .list{grid-column:span 2;margin:0;padding-left:8px}.list.list--number-square:has(.list) .list{margin:16px 0 0}.list>li{color:#2e3a4c;padding-left:30px;font-size:16px;line-height:130%;text-decoration:none;position:relative}@media screen and (width>=992px){.list>li{padding-bottom:1px;font-size:18px;line-height:140%}}.list>li:has(.list){flex-wrap:wrap;gap:12px;display:flex}.list>li>a:has(img){align-items:center}.list>li>a:has(img) img{flex:1}.list>li>a{color:var(--c-primary);text-decoration:none;transition:all .3s}.list>li>a:hover{opacity:.8;color:var(--c-primary-dark)}.list>li:before{content:"";word-break:normal;width:20px;height:20px;color:var(--c-primary);justify-content:center;align-items:center;font-family:fontello;font-size:18px;font-style:normal;font-weight:600;display:flex;position:absolute;top:2px;left:0}@media screen and (width>=992px){.list>li:before{top:5px}}.list.list-toggle-hidden-js>li{transition-behavior:allow-discrete;transition-duration:.2s}.list.list-toggle-hidden-js>li.visible{opacity:1;display:block}@starting-style{.list.list-toggle-hidden-js>li.visible{opacity:0}}.list.list-toggle-hidden-js>li.hidden{opacity:0;display:none}.list.list--white>li{color:#fff}.list.list--number>li{padding-left:23px}.list.list--number>li:before{content:counter(num) ".";counter-increment:num;width:15px;height:20px;font-family:Segoe UI,Arial,sans-serif;font-size:18px;font-weight:600;top:0}@media screen and (width>=992px){.list.list--number>li:before{height:25px}}.list--marker>li{padding-left:16px}.list--marker>li:before{content:"";background-color:var(--c-primary);border-radius:50%;width:8px;height:8px;display:block;top:7px}@media screen and (width>=992px){.list--marker>li:before{top:9px}}.list--number-round>li{padding-left:40px}@media screen and (width>=992px){.list--number-round>li{padding-left:46px}}.list--number-round>li:before{color:#fff;background-color:var(--c-primary);content:counter(num);counter-increment:num;border-radius:50%;justify-content:center;align-items:center;width:27px;height:27px;font-family:Segoe UI,Arial,sans-serif;font-size:14px;font-weight:400;display:flex;top:0}@media screen and (width>=992px){.list--number-round>li:before{width:30px;height:30px;font-size:16px}}.list--number-square>li{align-items:center;min-width:100%;min-height:48px;padding-left:56px;display:flex}.list--number-square>li>list{margin:16px 0}.list--number-square>li:before{width:48px;height:48px;color:var(--c-primary);content:counter(num);counter-increment:num;background-color:#fff;border-radius:10px;justify-content:center;align-items:center;font-family:Segoe UI,Arial,sans-serif;font-size:24px;font-weight:900;display:flex;top:0}.list--checked>li:before{content:"";color:var(--c-primary);font-family:fontello;font-size:16px;font-style:normal;font-weight:400;display:block}.list--checked.list--checked-hero>li{color:#2e3a4c;font-size:16px;font-weight:600}@media screen and (width>=768px){.list--checked.list--checked-hero>li{font-size:18px}}@media screen and (width>=1200px){.list--checked.list--checked-hero>li{font-size:24px}}.list--checked.list--checked-hero>li:before{font-size:20px;font-weight:600}.list-bullet{flex-direction:column;gap:16px;margin:0;padding:0;list-style-type:none;display:flex}.list-bullet__item{padding-left:15px;transition:all .3s;position:relative}.list-bullet__item:before{content:"";background-color:#b12933;border-radius:50%;width:5px;height:5px;display:block;position:absolute;top:8px;left:0}.list-bullet__item>a{color:inherit;background:linear-gradient(#b12933,#b12933) 100% 100%/0 1px no-repeat;padding-bottom:3px;line-height:1;text-decoration:none;transition:background-size .25s,color .25s}.list-bullet__item>a:hover:where(:hover,:focus-visible){color:#b12933;background-position-x:left;background-size:100% 1px}.fancybox__container{--fancybox-bg:#18181bcc}.fancybox__slide{padding:12px}@media screen and (width>=576px){.fancybox__slide{padding:24px}}.fancybox__caption{font-size:16px}@media screen and (width>=576px){.fancybox__caption{font-size:24px}}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-bg:transparent;color:#2e3a4c;--f-button-svg-width:24px;--f-button-svg-height:24px}html.with-fancybox{scroll-behavior:smooth!important;scrollbar-gutter:stable!important;--fancybox-scrollbar-compensate:0px!important}.nav-i a:before{color:#ce242f;background-position:50%;background-repeat:no-repeat;font-family:fontello;display:flex}.nav-i__email a:before{content:"";font-size:17px}.nav-i__video a:before{content:"";font-size:17px}.edit-btn{z-index:5;color:#fff;text-align:center;cursor:pointer;box-sizing:border-box;text-shadow:0 -1px 1px #656565,1px 0 1px #656565,0 1px 1px #656565,-1px 0 1px #656565;background:#9bc436;border:2px solid #fff;border-radius:50%;width:32px;min-width:32px;height:32px;min-height:32px;padding:5px;font-size:18px;animation-duration:.4s;animation-fill-mode:both;position:absolute;top:0;left:0;box-shadow:0 2px 1px #3c434a26}.edit-btn:hover{background:#aad63e}.articles-list{flex-direction:column;gap:24px;display:flex}.articles{border:1px solid #eaedf2;border-radius:10px;flex-direction:column;gap:24px;padding:20px;transition:all .3s;display:flex;position:relative}@media screen and (width>=768px){.articles{flex-direction:row}}.articles--small{flex-direction:column;max-width:320px;padding:16px}.articles:hover{box-shadow:0 0 20px #2e3a4c1a}.articles:hover .articles__content .article-news__arrow{background-color:#b12933;border:1px solid #b12933}.articles:hover .articles__content .article-news__arrow i{color:#fff}.articles__link{z-index:1;position:absolute;inset:0}.articles__img{border-radius:10px;width:100%;height:100%;position:relative;overflow:hidden}@media screen and (width>=768px){.articles__img{max-width:170px}}.articles__img img{object-fit:cover;width:100%;height:160px;display:block}@media screen and (width>=768px){.articles__img img{max-width:170px;height:117px}}.articles--small .articles__img{max-width:100%}.articles--small .articles__img img{object-fit:cover;max-width:100%;height:160px}.articles__content{width:100%}.articles__title{color:#2e3a4c;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%;text-decoration:none}.articles--small .articles__title{-webkit-line-clamp:3;text-overflow:ellipsis;-webkit-box-orient:vertical;font-size:16px;display:-webkit-box;overflow:hidden}.articles__interview-name,.articles__webinar-date{color:#2e3a4c;margin:0 0 10px;padding:0 0 10px;font-size:18px;font-style:normal;font-weight:600;line-height:120%;position:relative}.articles__interview-name:before,.articles__webinar-date:before{content:"";background-color:#b12933;width:80px;height:2px;display:block;position:absolute;bottom:0;left:0}.articles__heading{justify-content:space-between;align-items:center;gap:8px;margin-bottom:10px;display:flex}@media screen and (width>=768px){.articles__heading{gap:24px}}.article-news__date-row{align-items:baseline;gap:8px;display:flex}.article-news__icon{font-size:16px}.article-news__icon:before{margin-left:0;margin-right:0}.article-news__hide{display:none}.article-news__data{color:#2e3a4c;font-size:14px;font-style:normal;font-weight:400;line-height:16px}.article-news__arrow{border:1px solid #b3b3b3;border-radius:50%;justify-content:center;align-items:center;width:24px;height:24px;transition:all .3s;display:flex}.article-news__arrow>i{color:#b3b3b3;font-size:10px;transition:all .3s}.articles__text{color:#2e3a4c;-webkit-line-clamp:2;text-overflow:ellipsis;-webkit-box-orient:vertical;margin:10px 0 0;font-size:16px;font-style:normal;font-weight:400;line-height:140%;display:-webkit-box;overflow:hidden}.articles__text:empty{display:none}.articles__interview-position{color:#2e3a4c;font-size:12px;line-height:16px}.articles__interview{flex-direction:column;flex:1;align-items:baseline;gap:8px;display:flex}.article__completed{text-transform:uppercase;color:var(--c-primary);margin-top:10px;font-size:12px;font-weight:600;line-height:16px}.article-post{background:#fff;border-radius:8px;padding:32px}.article-post+.article-post{margin-top:8px}.article-post__head{justify-content:space-between;align-items:center;gap:20px;margin-bottom:20px;display:flex}.article-post__head a{color:inherit;flex:1;font-weight:600;text-decoration:none}.article-post__head a:hover{color:var(--c-primary)}.article-post__head h2{color:#2e3a4c;flex:1;margin:0;font-size:24px;font-style:normal;font-weight:600;line-height:120%}.article-post__head h2 span{color:#b12933}.article-post__head>span{-webkit-user-select:none;user-select:none;white-space:pre;text-overflow:ellipsis;background:#eaedf2;border-radius:8px;padding:8px 10px;overflow:hidden}.single-content{padding:32px 0}@media screen and (width>=992px){.single-content{padding:64px 0}}.single-content--search{padding-top:0}.single-gutenberg{gap:24px;display:flex}.single-gutenberg .section{flex:auto}.content{flex:1;width:100%;overflow:hidden}.single-otrasli .content{overflow:initial}.content p{color:#2e3a4c;margin:16px 0;font-size:16px;font-style:normal;font-weight:400;line-height:130%}.content p a{color:#b12933;cursor:pointer;text-decoration:none;transition:all .3s}.content p a:hover{opacity:.5}.content p:first-child{margin-top:0}.content p:last-child{margin-bottom:0!important}.content p:first-child:last-child{margin:0}@media screen and (width>=992px){.content p{font-size:18px;line-height:140%}}.single-gutenberg .content>:first-child{margin-top:0}.single-gutenberg .content>:last-child{margin-bottom:0}.single-gutenberg .content>p{color:#000;font-size:16px;font-style:normal;font-weight:400;line-height:130%}@media screen and (width>=992px){.single-gutenberg .content>p{font-size:18px;line-height:140%}}.aside{width:280px;height:100%;display:none;position:sticky;top:90px}@media screen and (width>=992px){.aside{flex-direction:column;gap:16px;display:flex}}.anchor-links-plugin{background-color:#f0f3fb;border-radius:10px;flex-direction:column;gap:16px;padding:24px 16px;display:flex}.anchor-links-plugin .lwptoc_header{margin-bottom:16px}.anchor-links-plugin .lwptoc_title{color:#000;margin:0;font-size:24px;font-style:normal;font-weight:600;line-height:120%}.anchor-links-plugin ol{flex-direction:column;gap:10px;height:fit-content;max-height:calc(100vh - 656px);margin:0;padding:0;list-style-type:none;display:flex;overflow-y:auto}.anchor-links-plugin ol::-webkit-scrollbar{width:6px}.anchor-links-plugin ol::-webkit-scrollbar-track{background:#fff;border-radius:10px}.anchor-links-plugin ol::-webkit-scrollbar-thumb{background-color:#b12933;border:3px solid #b12933;border-radius:10px}.anchor-links-plugin ol li{padding:0 4px 0 6px;transition:all .3s;position:relative}.anchor-links-plugin ol li.anchor-links-plugin--active:before{content:"";background-color:#cf281d;width:2px;height:12px;transition:all .3s;display:block;position:absolute;top:6px;left:0}.anchor-links-plugin ol li a{color:#2e3a4c;-webkit-line-clamp:2;text-overflow:ellipsis;-webkit-box-orient:vertical;font-size:16px;font-style:normal;font-weight:400;line-height:140%;text-decoration:none;display:-webkit-box;overflow:hidden}figure.wp-block-video{border-radius:20px;margin:32px 0;display:flex;overflow:hidden}.wp-block-embed.is-type-video.is-provider-youtube.wp-block-embed-youtube{border-radius:20px;margin:32px 0;overflow:hidden}p>a{color:var(--c-primary);text-decoration:none;transition:all .3s}p>a:hover{opacity:.8;color:var(--c-primary-dark)}p>b,p>strong{font-weight:600}:where(.wp-block-columns.is-layout-flex){gap:24px}.wp-block-column figure.wp-block-image,.wp-block-column figure.wp-block-image img{height:100%}figure.wp-block-image.default-img{height:auto!important}.wp-block-column figure.wp-block-image img{border-radius:10px;width:100%;overflow:hidden}.webinar-video figure.wp-block-embed.is-type-video.is-provider-youtube.wp-block-embed-youtube{margin-top:0}.wp-block-columns{margin-block:18px}.wp-block-columns .wp-block-column.is-vertically-aligned-top{align-self:auto}.wp-block-columns .wp-block-column>*,.wp-block-columns .acf-block-preview>*{margin-block:0}.columns-wrapper{flex-direction:column;gap:18px;display:flex}@media screen and (width>=992px){.columns-wrapper{flex-direction:row}}.column-item{flex:100}.aside-single-link{border-radius:10px;margin:0;padding:0;list-style-type:none;overflow:hidden}.aside-single-link li{position:relative}.aside-single-link li+li{margin-top:1px}.aside-single-link li a{color:#2e3a4c;background-color:#f0f3fb;padding:20px 12px;font-size:16px;font-weight:400;line-height:140%;text-decoration:none;display:flex;position:relative}.aside-single-link li.current-menu-item a{font-weight:600}.aside-single-link li.current-menu-item a:before{content:"";background:#b12933;width:5px;height:100%;transition:all .3s;display:block;position:absolute;top:0;left:0}.aside-single-link li a:hover:before{content:"";background:#ffe1e1;width:5px;height:100%;transition:all .3s;display:block;position:absolute;top:0;left:0}.ui-kit{background-color:#f0f3fb}.ui-kit-app{justify-content:space-between;gap:24px;width:100%;min-height:100vh;padding:32px 16px;display:flex}.ui-kit-app strong{background-color:#fff7c4;border:1px solid #000;border-radius:10px;margin:16px 0;padding:8px 16px;display:inline-flex}.ui-kit-app__nav{width:200px;max-height:calc(100vh - 96px);padding:0 12px 0 0;overflow-y:auto}.ui-kit-app__btn{color:#2e3a4c;cursor:pointer;border-radius:10px;width:98%;margin:2px 0;padding:8px 14px;font-weight:600;transition:background-color .3s,color .3s,transform .3s}.ui-kit-app__btn:hover{color:#b1293373;background-color:#ffffff73}.ui-kit-app__btn.active{color:#b12933;background-color:#fff;transform:translate(6px)}.ui-kit-app__description{flex:1;overflow:hidden}.ui-kit-app__content{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:visibility .3s,opacity .3s,grid-template-rows .3s;display:grid;overflow:hidden}.ui-kit-app__content.active{visibility:visible;opacity:1;grid-template-rows:1fr}.ui-kit-app__inner{min-height:0}.ui-kit-app__body{background:#fff;border-radius:10px;width:100%;max-width:1920px;padding:20px}.ui-kit-app__body--original{background:0 0;padding:0}.ui-kit-app__tab{border-radius:10px;overflow:hidden}.ui-kit-app__tab-nav{background-color:#f0f3fb;justify-content:flex-start;align-items:center;gap:8px;margin-bottom:12px;display:inline-flex}.ui-kit-app__tab-btn{color:#2e3a4c;cursor:pointer;background-color:#f0f3fb;border-radius:10px;width:178px;padding:8px 14px;font-weight:600;transition:background-color .3s,color .3s,transform .3s}.ui-kit-app__tab-btn:hover{color:#b1293373;background-color:#ffffff73}.ui-kit-app__tab-btn.active{color:#b12933;background-color:#fff}.ui-kit-app__tab-description{max-width:1920px}.ui-kit-app__tab-content{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:visibility .3s,opacity .3s,grid-template-rows .3s;display:grid;overflow:hidden}.ui-kit-app__tab-content.active{visibility:visible;opacity:1;grid-template-rows:1fr}.ui-kit-app__tab-inner{min-height:0}.ui-kit-app__tab-body{background:#fff;border-radius:10px;width:100%;max-width:1696px;padding:20px}.search-form{background:#f8f8f8;border:1px solid #eaedf2;border-radius:47px;margin:16px;padding:9px 10px 9px 24px;transition:all .3s;position:relative;top:0;bottom:0;right:0;overflow:hidden}@media screen and (width>=1200px){.search-form{width:36px;height:36px;margin:auto;position:absolute}.search-form--mobile{display:none}}@media screen and (width<=1199px){.search-form{justify-content:space-between;align-items:center;display:flex}.search-form .js-search-trigger{border:0;position:absolute;right:8px}}.search-form.--active{display:block}.search-form.--active+div{opacity:0;z-index:-1}.search-form form{width:100%;height:100%;display:flex}.search-form input{background:0 0;border:0;width:100%;padding:0;font-size:16px}.search-form input::placeholder{color:#a4a5a9}.search-form input:focus{outline:none}.search-form button{z-index:1;cursor:pointer;-webkit-user-select:none;user-select:none;background:#eaedf2;border:0;border-radius:4px;outline:0;padding:0 8px;font-size:12px;font-style:normal;font-weight:400;line-height:16px;display:none;position:relative}.search-form button.--text{display:block}.custom-wysiwyg-editor p{color:#2e3a4c;margin:16px 0;font-size:16px;font-weight:400;line-height:130%;text-decoration:none;display:block}@media screen and (width>=576px){.custom-wysiwyg-editor p{font-size:18px;line-height:140%}}.custom-wysiwyg-editor p>a{color:#bb2b36;margin:0}.custom-wysiwyg-editor p>a:hover{text-decoration:none}.custom-wysiwyg-editor>:first-child{margin-top:0}.custom-wysiwyg-editor>:last-child{margin-bottom:0}.articles-lab-list{grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px;display:grid}@media screen and (width>=768px){.articles-lab-list{grid-template-columns:repeat(auto-fill,minmax(445px,1fr));margin-bottom:40px}}.articles-lab{border-radius:10px;height:314px;display:flex;position:relative;overflow:hidden}.articles-lab:before{content:"";z-index:1;background:linear-gradient(#28282800 50%,#282828 100%);width:100%;height:100%;display:block;position:absolute;inset:0}.articles-lab--big{height:480px;margin-bottom:40px}.articles-lab__link{z-index:3;position:absolute;inset:0}.articles-lab__img{object-fit:cover;width:100%;display:block}.articles-lab__data{z-index:2;flex-direction:column;gap:8px;display:flex;position:absolute;bottom:32px;left:50px}.articles-lab__title{color:#fff;font-size:24px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=992px){.articles-lab__title{font-size:32px}}.articles-lab__row{align-items:center;gap:12px;display:flex}.articles-lab__row span{color:#fff;font-size:18px;font-style:normal;font-weight:400;line-height:120%}@media screen and (width>=992px){.articles-lab__row span{font-size:24px}}.contact-card-list{grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px;display:grid}.contact-card{background:#f8f8f8;border:1px solid #e8e8e8;border-radius:10px;padding:24px}.contact-card__title{color:#b12933;margin-bottom:8px;font-size:18px;font-weight:600}.contact-card__item{align-items:baseline;gap:6px;display:flex}.contact-card__item a,.contact-card__item span{color:#2e3a4c;font-size:18px;font-weight:400}.contact-card__item a{text-decoration:none;transition:all .3s}.contact-card__item a:hover{opacity:.75}.contact-card__item i{color:#b12933;font-size:18px;display:flex}.contact-card__item+.contact-card__item{margin-top:8px}.info-block{counter-reset:chapter;background-color:#f0f3fb;border-radius:20px;flex-direction:column;gap:18px;margin:18px 0;padding:16px;display:flex;overflow:hidden}@media screen and (width>=992px){.info-block{padding:32px}}@media screen and (width>=768px){.info-block[class*=--column-]{display:grid}.info-block--column-2{grid-template-columns:1fr 1fr}.info-block--column-3{grid-template-columns:1fr 1fr 1fr}.info-block--column-auto-2{grid-template-columns:auto auto}.info-block--column-auto-3{grid-template-columns:auto auto auto}}.info-block--style-transparent{overflow:inherit;background:0 0;border-radius:0;padding:0;overflow:visible}.info-block--style-transparent li{box-shadow:none!important}.info-block--space-minimal .list-block>ul,.info-block--space-none .list-block>ul{gap:0}.info-block--space-none .list-block>ul>li{padding:16px 0}.info-block--no-bg{background:0 0}.info-block--no-margin{margin:0}.content .wp-block-column .info-block{height:100%}.info-block__column{flex-direction:column;gap:18px;display:flex}.info-block__column>*{flex:1}@media screen and (width>=992px){.info-block__column{flex-direction:row}}.info-block__content:has(.btn-list-toggle-js)>.list:not(.--active):after{content:"";background:linear-gradient(#f0f3fb00 0%,#f0f3fb 100%);width:100%;height:80px;margin-top:-80px;display:block;position:relative}.info-block__content.info-block__content--type_2:has(.btn-list-toggle-js)>.list:not(.--active):after{content:"";background:linear-gradient(#f0f3fb00 0%,#fff 100%);width:100%;height:80px;margin-top:-80px;display:block;position:relative}.info-block__content img{border-radius:20px;width:100%;display:block;overflow:hidden}.info-block__content>p{color:#2e3a4c;font-size:16px;font-style:normal;font-weight:400;line-height:130%}@media screen and (width>=992px){.info-block__content>p{font-size:18px;line-height:140%}}.info-block__content>p:has(img){margin:0}:is(.info-block__content>p:has(.alignright)+p,.info-block__content>p:has(.alignleft)+p){margin-top:0}:is(.info-block__content>p:has(.alignright)~div,.info-block__content>p:has(.alignleft)~div){display:flow-root}.info-block--marker-number .info-block__content:before{content:counter(chapter);counter-increment:chapter;background:var(--c-primary);color:#fff;border-radius:19px;justify-content:center;align-items:center;width:60px;height:auto;margin:0 0 20px;padding:5px;font-size:16px;line-height:20px;display:flex;position:static}.info-block__content--type_2{background-color:#fff;border-radius:10px;flex:1;padding:16px}@media screen and (width>=992px){.info-block__content--type_2{padding:24px}}.info-block__content--type_3{background:#f8f8f8;border:1px solid #e8e8e8;border-radius:10px;flex:1}@media screen and (width>=992px){.info-block__content--type_3{padding:24px}}.info-block__content--full{grid-column:1/-1}.info-block .info-block__content>:first-child{margin-top:0}.info-block .info-block__content>:last-child{margin-bottom:0}.info-block__btn-list-show{max-width:194px;margin:24px auto;position:relative}.info-block__btn-list-toggle{color:#b12933;cursor:pointer;justify-content:space-between;align-items:center;gap:8px;width:fit-content;padding-block:10px;font-size:18px;font-style:normal;font-weight:500;line-height:140%;transition:opacity .3s;display:flex;margin-bottom:-10px!important}.info-block__btn-list-toggle:after{content:"";text-align:center;width:1em;margin-left:.2em;margin-right:.2em;font-family:fontello;font-style:normal;font-weight:400;line-height:1em;transform:rotate(90deg)}.info-block__btn-list-toggle.--active:after{transform:rotate(-90deg)}.intro-webinar__intro{background-color:#2e3a4c;padding:0 0 40px}@media screen and (width>=992px){.intro-webinar__intro{padding:0 0 100px}}.intro-webinar__intro .rank-math-breadcrumb a,.intro-webinar__intro .rank-math-breadcrumb span{color:#fff}.intro-webinar__row{flex-direction:column-reverse;justify-content:space-between;align-items:center;gap:32px;display:flex}@media screen and (width>=768px){.intro-webinar__row{flex-direction:row;padding-top:32px}}.intro-webinar__desc{z-index:11;flex:1;position:relative}.intro-webinar__title{color:#fff;margin:0;font-size:24px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=768px){.intro-webinar__title{font-size:36px}}@media screen and (width>=992px){.intro-webinar__title{font-size:48px}}.intro-webinar__subtitle{color:#ffffffbf;margin:24px 0 40px;font-size:18px;font-style:normal;font-weight:400;line-height:120%}@media screen and (width>=768px){.intro-webinar__subtitle{font-size:20px}}@media screen and (width>=992px){.intro-webinar__subtitle{font-size:24px}}.intro-webinar__list{flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:16px;margin:0;padding:0;list-style-type:none;display:flex}@media screen and (width>=992px){.intro-webinar__list{flex-direction:row;align-items:center;gap:32px}}.intro-webinar__list>li{justify-content:flex-start;align-items:center;gap:16px;display:flex}.intro-webinar__list>li>img{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);background:#d3e2ff1f;border:1px solid #fff6f624;border-radius:8px;width:48px;height:48px;padding:8px;display:block}.intro-webinar__list>li>p{color:#fff;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.intro-webinar__btn{max-width:fit-content;margin-top:40px;padding-inline:20px}.intro-webinar__btn-container{max-width:280px;margin-top:40px}.intro-webinar__picture{z-index:1;width:80%;position:relative}@media screen and (width>=768px){.intro-webinar__picture{width:384px}}.intro-webinar__picture>img{width:100%}.intro-webinar__picture:after{content:"";z-index:-1;background-image:url(/app/themes/serconsrus/public/build/assets/webinar-blur-DeZKMDnW.png);background-position:50%;background-size:cover;width:846px;height:846px;margin:auto;display:block;position:absolute;bottom:50%;right:50%;transform:translate(50%,50%)}.intro-webinar__form{position:relative}.intro-webinar__form:before{content:"";background-color:#2e3a4c;width:100%;height:70%;display:block;position:absolute;top:0;left:0}.intro-webinar__form-row{z-index:1;max-width:1080px;margin:0 auto;position:relative}.table-custom-block,.wp-block-table{background-color:#f0f3fb;border-radius:20px;width:100%;margin-block:18px;padding:30px 30px 20px}@media screen and (width>=992px){.table-custom-block,.wp-block-table{padding:30px}}@media screen and (width<=767px){.wp-block-table table{width:max-content!important}}.wp-block-table a{color:#b12933}.wp-block-table a:hover{text-decoration:none}.info-block table{border-radius:20px;width:100%;overflow:hidden}.table-custom-row{overflow-x:auto}.wp-block-table::-webkit-scrollbar{width:4px;height:6px}.table-custom-row::-webkit-scrollbar{width:4px;height:6px}.wp-block-table::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.table-custom-row::-webkit-scrollbar-track{background-color:#fff;border-radius:4px}.wp-block-table::-webkit-scrollbar-thumb:horizontal{background-color:#b12933;border-radius:10px}.table-custom-row::-webkit-scrollbar-thumb:horizontal{background-color:#b12933;border-radius:10px}.table-custom,.wp-block-table table{border-collapse:separate;border-spacing:0 4px;color:#2e3a4c;border-radius:20px;width:max-content;min-width:100%;margin-bottom:10px}.info-block table{border-collapse:separate;border-spacing:0 4px;color:#2e3a4c;border-radius:20px;margin-bottom:10px}.info-block table tfoot td,.info-block table thead th,.info-block table thead th,.info-block table tfoot td,.wp-block-table tfoot td,.wp-block-table thead th,.wp-block-table thead th,.wp-block-table tfoot td,.table-custom tfoot td,.table-custom thead th,.table-custom thead th,.table-custom tfoot td{background:#fff;padding:40px 20px;font-size:18px;font-weight:600;line-height:140%}.info-block table tfoot td,.info-block table thead th,.info-block table thead th,.info-block table tfoot td{padding:20px}.table-custom th:first-child,.table-custom td:first-child{border-radius:10px 0 0 10px}.table-custom th:last-child,.table-custom td:last-child{border-radius:0 10px 10px 0}.info-block td,.wp-block-table td,.table-custom td{background:#fff;width:205px;padding:40px 20px;font-size:16px;font-weight:400;line-height:140%}.info-block td p,.wp-block-table td p,.table-custom td p{font-size:16px}.info-block td{padding:20px}.wp-block-table td,.wp-block-table th{border:0}.wp-block-table table th:first-child,.wp-block-table table td:first-child{border-radius:10px 0 0 10px}.wp-block-table table th:last-child,.wp-block-table table td:last-child{border-radius:0 10px 10px 0}.content>.notification{border:3px solid red}.notification{color:#2e3a4c;clear:both;background:#f0f3fb;border:1px solid #4393c0;border-radius:10px;margin:18px 0;padding:16px 16px 16px 46px;font-size:16px;font-weight:400;line-height:140%;position:relative}.notification>:first-child{margin-top:0}.notification p{margin:0}.notification p>a{color:var(--c-primary);text-decoration:none}.notification p>a:hover{opacity:.8}.notification>b{font-weight:600}.notification>a{color:var(--c-primary);text-decoration:none}.notification>a:hover{opacity:.8}.notification:before{content:"";color:#4393c0;font-family:fontello;font-size:20px;font-weight:400;display:block;position:absolute;top:16px;left:16px}.notification--error{background:#fff5f5;border:1px solid #b12933}.notification--error:before{content:"";color:#b12933}.notification--check{background:#f1fff4;border:1px solid #c0ecd4}.notification--check:before{content:"";color:#439f6e}.document-list{background-color:#f0f3fb;border-radius:12px;flex-direction:column;gap:16px;width:100%;max-width:100%;margin:0;padding:24px 16px;list-style-type:none;display:flex}@media screen and (width>=992px){.document-list{flex:34%}}.document-list__title{color:#292b2e;margin:0;font-size:20px;font-weight:600;line-height:120%}@media screen and (width>=768px){.document-list__title{font-size:24px}}.document{color:#2e3a4c;box-sizing:border-box;border:1px solid #4393c0;border-radius:10px;justify-content:space-between;align-items:center;gap:10px;width:100%;max-width:100%;padding:20px;font-size:16px;font-style:normal;font-weight:400;line-height:140%;text-decoration:none;display:flex}.document:hover{transition:var(--duration);background:#f8fafb}.document__icons{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-file-DbRL7dzn.svg);background-size:cover;width:32px;height:32px}.document__icons--pdf{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-pdf-jetSbloK.svg)}.document__icons[class*=officedocument],.document__icons--doc,.document__icons--docx{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-doc-C3XIs_qz.svg)}.document__icons--bmp{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-bmp--7XO8Foc.svg)}.document__icons--gif{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-gif-BqBnnnLk.svg)}.document__icons--jpg,.document__icons--jpeg{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-jpg-DwmMFAyH.svg)}.document__icons--png{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-png-BkZq2Ecs.svg)}.document__icons--ppt,.document__icons--pptx{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-ppt-C0DkrPuw.svg)}.document__icons--rtf{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-rtf-BpeBuZHM.svg)}.document__icons--tiff{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-tiff-BpUAePo6.svg)}.document__icons--txt{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-txt-DcaT_ZfJ.svg)}.document__icons--xls,.document__icons--xlsx{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-xls-C90vsynk.svg)}.document .document__text{color:#2e3a4c;flex:1;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:140%}.document__icons-download{background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-download-BK7JtL53.svg);background-size:cover;width:24px;height:24px}.expert-card{background-color:#f0f3fb;padding:32px 0 0}@media screen and (width>=768px){.expert-card{background-color:#0000;padding:32px 0 64px}}.expert-card__row{flex-direction:column;justify-content:space-between;align-items:center;gap:16px;width:100%;max-width:894px;margin:0 auto;display:flex}@media screen and (width>=768px){.expert-card__row{background-color:#0000;flex-direction:row;align-items:stretch;gap:24px}}.expert-card__img{border-radius:8px;width:100%;max-width:205px;overflow:hidden}@media screen and (width>=768px){.expert-card__img{max-width:128px}}.expert-card__img>img{object-fit:cover;object-position:top;width:100%;height:210px;display:block}@media screen and (width>=768px){.expert-card__img>img{height:155px}}.expert-card__info{background:#f0f3fb;border-radius:8px;flex-direction:column;flex:1;justify-content:space-between;align-items:center;gap:16px;display:flex}@media screen and (width>=768px){.expert-card__info{border-right:6px solid #b12933;flex-direction:row;padding:32px 40px}}.expert-card__info>a{color:#fff;background-color:#b12933;border:1px solid #b12933;border-radius:8px;justify-content:center;align-items:center;gap:15px;width:100%;max-width:192px;padding:16px 20px;font-size:14px;font-style:normal;font-weight:400;line-height:16px;text-decoration:none;transition:all .3s;display:flex}@media screen and (width>=768px){.expert-card__info>a{color:#b12933;background-color:#0000;width:max-content;padding:10px 20px}}.expert-card__info>a:hover{color:#fff;background-color:#b12933}@media screen and (width>=768px){.expert-card__info>a:after{content:"";color:#b12933;border:1px solid #b12933;border-radius:50%;justify-content:center;align-items:center;width:20px;height:20px;font-family:fontello;font-size:10px;font-weight:600;transition:all .3s;display:flex;transform:translate(-20%)}}.expert-card__info>a:hover:after{color:#fff;border:1px solid #fff;transform:translate(0)}.expert-card__desc{text-align:center;max-width:327px}@media screen and (width>=768px){.expert-card__desc{text-align:left;max-width:100%}}.expert-card__desc>p{color:#2e3a4c;margin:0 0 10px;font-size:24px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=768px){.expert-card__desc>p{font-size:32px}}.expert-card__desc>span{color:#2e3a4c;-webkit-line-clamp:4;text-overflow:ellipsis;-webkit-box-orient:vertical;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:120%;display:-webkit-box;overflow:hidden}@media screen and (width>=768px){.expert-card__desc>span{-webkit-line-clamp:2;font-size:18px}}.learn-more{background-color:#fff;padding:32px 0}.learn-more__list{background:#f0f3fb;border-radius:8px;grid-template-columns:1fr;gap:24px;margin:0;padding:40px;list-style-type:none;display:grid}@media screen and (width>=576px){.learn-more__list{grid-template-columns:repeat(auto-fill,minmax(345px,1fr))}}.learn-more__list-item{cursor:pointer;background:#fff;border:1px solid #0000;border-radius:6px;justify-content:space-between;align-items:center;gap:24px;min-height:78px;padding:16px;transition:all .3s;display:flex;position:relative;box-shadow:0 4px 4px #8e8dd01f}.learn-more__list-item:hover{background:#fff;border-radius:6px;box-shadow:0 8px 16px #8e8dd01f}.learn-more__list-item>a{position:absolute;inset:0}.learn-more__list-item>p{color:#252c32;-webkit-line-clamp:2;text-overflow:ellipsis;-webkit-box-orient:vertical;margin:0;font-size:14px;font-style:normal;font-weight:400;line-height:140%;transition:all .3s;display:-webkit-box;overflow:hidden}@media screen and (width>=576px){.learn-more__list-item>p{font-size:16px}}.learn-more__list-item>i{border:1px solid var(--c-primary);min-width:24px;min-height:24px;color:var(--c-primary);border-radius:50%;justify-content:center;align-items:center;font-size:10px;transition:all .3s;display:flex;transform:translate(-4px)}.learn-more__list-item:hover i{color:#fff;background-color:var(--c-primary);transform:translate(0)}.accordion{width:100%;margin:18px 0}@media screen and (width>=992px){.accordion{flex:66%}}.accordion__list{border-radius:20px;flex-direction:column;gap:10px;display:flex;overflow:hidden}.accordion__box{background-color:#f0f3fb}.accordion__heading{cursor:pointer;justify-content:space-between;align-items:center;gap:40px;transition:all .3s;display:flex}.accordion__heading>h3{color:#2e3a4c;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.accordion__box .accordion__heading{padding:16px}@media screen and (width>=576px){.accordion__box .accordion__heading{padding:24px}}.accordion__title{color:#2e3a4c;margin:0;font-size:18px;font-weight:600;line-height:120%}.accordion__arrow{background-color:#fff;border-radius:50%;min-width:32px;max-width:32px;min-height:32px;max-height:32px;position:relative}.accordion__arrow:before,.accordion__arrow:after{content:"";background:#000c;width:12px;height:2px;transition:all .3s;display:block;position:absolute;top:50%}.accordion__arrow:before{right:14px;transform:rotate(45deg)}.accordion__arrow:after{right:6px;transform:rotate(135deg)}.accordion__box.accordion__box_active .accordion__arrow:before{transform:rotate(-45deg)}.accordion__box.accordion__box_active .accordion__arrow:after{transform:rotate(225deg)}.accordion__body{visibility:hidden;opacity:0;grid-template-rows:0fr;transition:all .3s;display:grid;overflow:hidden}.accordion__box.accordion__box_active .accordion__body{visibility:visible;opacity:1;grid-template-rows:1fr}.accordion__body-inner{min-height:0}.accordion__body-content{padding:0 24px 24px}.accordion__content{background:#fff;border-radius:20px;padding:24px}.accordion__content p{color:#2e3a4c;margin:16px 0;font-size:16px;font-style:normal;font-weight:400;line-height:130%}.accordion__content p:first-child{margin-top:0}.accordion__content p:last-child{margin-bottom:0}.accordion__content p:first-child:last-child{margin:0}@media screen and (width>=992px){.accordion__content p{font-size:18px;line-height:140%}}.accordion__button{max-width:190px;margin:24px auto 0}.services-reviews{padding:32px 0}@media screen and (width>=992px){.services-reviews{padding:32px 0 64px}}.services-reviews__card{background-color:#f0f3fb;border:1px solid #e5e5e5;border-radius:10px;flex-direction:column;gap:24px;padding:16px 20px;display:flex}@media screen and (width>=576px){.services-reviews__card{padding:32px 40px}}.services-reviews__card--white{background:#fafafa1a}.services-reviews__card p{color:#2e3a4c;margin:0;font-size:16px;font-style:normal;font-weight:400;line-height:120%}.services-reviews__card h3{color:#2e3a4c;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.services-reviews__heading{justify-content:space-between;display:flex}.services-reviews__title{flex-direction:column;gap:4px;width:100%;max-width:70%;display:flex}.services-reviews__rating{flex-direction:column;gap:12px;display:flex}.services-reviews__star{gap:4px;display:flex}.services-reviews__star i:before{color:#ffb82e;margin-left:0;margin-right:0;font-size:20px}.services-reviews__star>span{display:none}.services-reviews__data{align-items:baseline;gap:8px;display:flex}.services-reviews__data span{font-size:14px;font-weight:400;line-height:120%}.services-reviews__description{flex-direction:column;gap:8px;display:flex}.home [data-comment-key],.home .services-reviews__comment{-webkit-line-clamp:6;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.services-reviews__document{align-items:center;gap:10px;margin-top:auto;text-decoration:none;display:flex}.services-reviews__document:before{content:"";background-image:url(/app/themes/serconsrus/public/build/assets/doc-icon-pdf-jetSbloK.svg);background-size:cover;width:30px;height:30px;display:block}.services-reviews__document-text{color:#2e3a4c;font-size:14px;font-style:normal;font-weight:400;line-height:120%}.services-reviews__bottom{flex-direction:column-reverse;justify-content:space-between;align-items:center;gap:32px;margin-top:32px;display:flex}@media screen and (width>=576px){.services-reviews__bottom{flex-direction:row}}.services-reviews__page-link{width:100%;max-width:194px}.services-reviews__button-row{align-items:center;gap:16px;display:flex}.services-reviews__button{position:inherit;border:1px solid #b12933;border-radius:50%;width:40px;height:40px;margin-top:auto;transition:all .3s}.services-reviews__button:hover{background-color:#b12933}.services-reviews__button:after{color:#b12933;font-size:14px;font-weight:600;transition:all .3s}.services-reviews__button:hover:after{color:#fff}.slider-clients{background-color:#f0f3fb;padding:40px 0}@media screen and (width>=992px){.slider-clients{padding:80px 0}}.slider-clients-js .swiper-wrapper{transition-timing-function:linear}.slider-clients__card{-webkit-user-select:none;user-select:none;background-color:#eaedf2;border-radius:16px;justify-content:center;align-items:center;height:auto;padding:12px;display:flex}.slider-clients__card-picture{width:100%;max-width:244px}.slider-clients__img{object-fit:cover;-webkit-user-select:none;user-select:none;width:100%;max-height:100px}.accordion-info-documents{padding:0 0 32px}@media screen and (width>=992px){.accordion-info-documents{padding:32px 0}}.accordion-info-documents__row .accordion{margin-top:0}.accordion-info-documents__row{flex-direction:column;align-items:flex-start;gap:24px;display:flex}@media screen and (width>=992px){.accordion-info-documents__row{flex-direction:row}}.slider-gallery{-webkit-user-select:none;user-select:none;width:100%;max-width:894px;margin:0 auto;padding-bottom:32px}.slider-gallery__slide{border-radius:20px;overflow:hidden}.slider-gallery>div:not(.swiper-initialized) .slider-gallery__slide:not(:first-child){display:none}.slider-gallery__img{object-fit:cover;width:100%;max-height:266px;display:block}@media screen and (width>=576px){.slider-gallery__img{max-height:394px}}@media screen and (width>=992px){.slider-gallery__img{max-height:500px}}.slider-gallery__navigation{justify-content:center;align-items:center;width:100%;max-width:330px;margin:42px auto auto;display:flex;position:relative}.slider-gallery__pagination{z-index:-1;position:relative}.slider-gallery__counter{width:70px;height:65px;margin:0 auto;position:relative}.slider-gallery__pagination .swiper-pagination-current{color:#b12933;font-size:32px;font-style:normal;font-weight:600;line-height:120%;position:absolute;top:0;left:0}.slider-gallery__pagination .swiper-pagination-total{color:#b3b3b3;font-size:24px;font-style:normal;font-weight:600;line-height:120%;position:absolute;bottom:0;right:10px}.slider-gallery__slash{transform-origin:0 100%;background-color:#b3b3b3;width:75px;height:2px;position:absolute;bottom:0;left:0;transform:rotate(-38deg)}.slider-gallery__next:after,.slider-gallery__prev:after{content:"";color:#b12933;font-family:fontello;font-size:24px;font-weight:600}.slider-gallery__next:after{transform:rotate(180deg)}.acf-block-preview .slider-team .swiper-wrapper{grid-template-columns:repeat(3,1fr);gap:20px;display:grid}.acf-block-preview .slider-team a{pointer-events:none}.acf-block-preview .swiper-custom-bottom__link{display:none}.slider-team{margin-top:24px}.slider-team__slide{position:relative}.slider-team__slide:hover img{opacity:.8}.slider-team__slide>a{cursor:pointer;z-index:1;width:100%;height:100%;text-decoration:none;position:absolute;inset:0}.slider-team__slide>img{background-color:#f1f1f1;border-radius:8px;width:100%;transition:all .3s;display:block;overflow:hidden}.slider-team__slide>h3{color:#000;margin:16px 0 8px;font-size:16px;font-weight:600;line-height:120%}@media screen and (width>=768px){.slider-team__slide>h3{font-size:18px}}@media screen and (width>=992px){.slider-team__slide>h3{margin:24px 0 8px;font-size:32px}}.slider-team__slide>p{color:#000;margin:0;font-size:14px;font-weight:400;line-height:140%}@media screen and (width>=992px){.slider-team__slide>p{font-size:24px}}.acf-block-preview .slider-branches ul{grid-template-columns:repeat(2,1fr);gap:20px;display:grid}.acf-block-preview .slider-branches a{pointer-events:none}.slider-branches{margin:24px 0 32px}@media screen and (width>=576px){.slider-branches{margin:24px 0 64px}}.slider-branches ul{padding-left:0;list-style-type:none}.link-page{padding:32px 0}.link-page__list{grid-template-columns:repeat(1,1fr);gap:24px;margin:0;padding:0;list-style-type:none;display:grid}@media screen and (width>=768px){.link-page__list{grid-template-columns:repeat(2,1fr)}}@media screen and (width>=992px){.link-page__list{grid-template-columns:repeat(3,1fr)}}.link-page__list--popup{gap:20px;max-height:calc(100vh - 108px);padding:0 8px 0 0;overflow-y:auto}@media screen and (width>=576px){.link-page__list--popup{gap:24px;max-height:594px;padding:0 12px 0 0}}@media screen and (width>=992px){.link-page__list--popup{padding:0 18px 0 0}}.link-page__list-item{border:1px solid #dcdcdc;border-radius:15px;grid-template-columns:1fr 50px;align-items:center;gap:12px;min-height:98px;padding:16px 20px;transition:all .3s;display:grid;position:relative}.link-page__list-item:hover{background:#fff5f5;border:1px solid #b12933;box-shadow:0 0 10px #b1293340}.link-page__link{text-decoration:none;position:absolute;inset:0}.link-page__title{color:#2e3a4c;-webkit-line-clamp:3;text-overflow:ellipsis;-webkit-box-orient:vertical;flex:1;font-size:16px;font-style:normal;font-weight:600;line-height:120%;display:-webkit-box;overflow:hidden}@media screen and (width>=576px){.link-page__title{font-size:18px}}.link-page__img{object-fit:cover;width:50px;height:50px;display:block}.link-page__button{max-width:216px;margin:24px auto auto}.link-page__popup{background:#fff;border-radius:8px;width:100%;max-width:1200px;display:none;box-shadow:0 8px 24px -6px #d1d7de66}.link-page__popup.fancybox__content{padding:20px 18px 20px 20px}@media screen and (width>=992px){.link-page__popup.fancybox__content{padding:40px 18px 40px 40px}}.link-page__popup-title{color:#2e3a4c;max-width:calc(100% - 75px);margin:0 0 20px;font-size:20px;font-weight:600;line-height:120%}@media screen and (width>=992px){.link-page__popup-title{margin:0 0 40px;font-size:32px}}.fancybox__container .link-page__popup.fancybox__content .f-button.is-close-btn{color:#2e3a4c;top:20px;right:34px}@media screen and (width>=992px){.fancybox__container .link-page__popup.fancybox__content .f-button.is-close-btn{top:40px}}.tabs-gutenberg{background:#f0f3fb;border-radius:10px;padding:32px}.tabs-gutenberg .info-block{background:0 0;border-radius:0;margin-top:0;padding:0}.tabs-gutenberg__title{color:#2e3a4c;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.tabs-gutenberg__button{border-radius:10px;margin-bottom:32px}.tabs-gutenberg__button-slide{cursor:pointer;background:#fff;border:1px solid #eaedf2;justify-content:center;align-items:center;min-width:90px;max-width:fit-content;padding:12px 24px;transition:all .3s;display:flex}.tabs-gutenberg__button-slide:hover{background:#f4f7fc}.tabs-gutenberg__button-slide:first-child{border-radius:10px 0 0 10px}.tabs-gutenberg__button-slide:last-child{border-radius:0 10px 10px 0}.tabs-gutenberg__button-slide.swiper-slide-thumb-active{background:#eaedf2;border:1px solid #eaedf2}.tabs-gutenberg__button-slide>p{color:#2e3a4c;margin:0;font-size:16px;font-style:normal;font-weight:600;line-height:140%}.tabs-gutenberg__content:has(.tabs-gutenberg__color--white){background:#fff;border-radius:10px;padding:24px}.quiz{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#fff;border:1px solid #f0f3fb;border-radius:20px;padding:40px;box-shadow:0 8px 24px -6px #d1d7de66}.quiz__list-slide{height:auto}.quiz__question{justify-content:space-between;gap:40px;display:flex}.quiz__start{color:#333;flex-direction:column;justify-content:center;align-items:center;height:100%;display:flex}.quiz__start>h2{text-align:center;margin:0;font-size:32px;font-weight:600;line-height:120%}.quiz__start>p{margin:24px 0 32px;font-size:16px;font-weight:400;line-height:130%}.quiz__start>span{width:100%;max-width:224px}.quiz__img{border-radius:20px}.quiz__img>img{width:100%;display:block}.quiz__description{width:calc(100% - 352px)}.quiz__description--full-width{width:100%}.quiz__heading{justify-content:space-between;gap:32px;display:flex}.quiz__heading>p{color:#2e3a4c;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.quiz__heading>span{width:100%;max-width:92px;display:block}.quiz__options{grid-template-columns:repeat(2,1fr);gap:16px 24px;margin-top:32px;display:grid}.slider-news-services{margin-top:32px}@media screen and (width>=1200px){.slider-news-services{margin-top:64px}}.slider-news-services__slide{border:1px solid #f0f3fb;border-radius:10px;height:auto;position:relative;overflow:hidden}.slider-news-services__slide>a{position:absolute;inset:0}.slider-news-services__slide>img{object-fit:cover;width:100%;height:145px;display:block}.slider-news-services__slide>p{text-align:center;color:#2e3a4c;min-height:44px;margin:20px;font-size:18px;font-style:normal;font-weight:600;line-height:120%;transition:all .3s;display:block}.slider-news-services__slide:hover p{color:var(--c-primary)}.disclaimer__row{background:#fff5f5;border:2px solid #b12933;border-radius:20px;justify-content:space-between;align-items:center;gap:24px;padding:24px;display:flex}@media screen and (width>=768px){.disclaimer__row{padding:32px}}.disclaimer__info{flex:1}.disclaimer__title{color:#2e3a4c;margin:0 0 14px;font-size:20px;font-weight:600;line-height:120%}.disclaimer__title>span{color:#b12933}@media screen and (width>=576px){.disclaimer__title{font-size:24px}}@media screen and (width>=992px){.disclaimer__title{font-size:32px}}.disclaimer__btn{justify-content:center;width:100%;max-width:100%;margin-top:24px;display:flex}@media screen and (width>=768px){.disclaimer__btn{max-width:200px}}.disclaimer__img{display:none}@media screen and (width>=768px){.disclaimer__img{width:210px;display:block}}@media screen and (width>=1440px){.disclaimer__img{width:235px}}.disclaimer__img>img{object-fit:none;width:100%;height:190px;display:block}.list-block{border-radius:10px}.list-block>ul{gap:24px;margin:0;padding:0;list-style-type:none;display:grid}.list-block>ul>li{color:#2e3a4c;background:#fff;border-radius:6px;gap:12px;padding:20px;display:flex;box-shadow:0 4px 4px #8e8dd01f}@media screen and (width>=992px){.list-block>ul>li{font-size:18px;line-height:140%}}.list-block img{width:100%;max-width:36px;display:block}.list-block p{margin:0}.list-block__position--horizontal li{flex-direction:row;align-items:center}.list-block__position--horizontal.list-block__type--no li{align-items:flex-start}.list-block__position--vertical li{flex-direction:column;align-items:flex-start}.list-block__position--vertical.list-block__type--number li:before{width:50px;height:auto}.list-block__type--marker>li{display:flex;position:relative}.list-block__type--marker>:before{content:"";color:var(--c-primary);justify-content:center;align-items:center;font-family:fontello;font-size:24px;font-style:normal;font-weight:600;line-height:20px;display:flex}.list-block__type--number{counter-reset:number}.list-block__type--number>li:before{content:counter(number);counter-increment:number;background:var(--c-primary);color:#fff;border-radius:19px;flex:none;justify-content:center;align-items:center;width:24px;height:24px;padding:5px;font-size:16px;line-height:20px;display:flex;position:static}@media screen and (width>=768px){.list-block__col--2{grid-template-columns:1fr 1fr}.list-block__col--3{grid-template-columns:1fr 1fr 1fr}.list-block__col--4{grid-template-columns:1fr 1fr 1fr 1fr}.list-block__size--36 img{max-width:36px}.list-block__size--72 img{max-width:72px}.list-block__size--108 img{max-width:108px}.list-block__size--144 img{max-width:144px}}.post-social{padding-top:32px}.post-social__row{background:#fff;border:1px solid #eaedf2;border-radius:10px;padding:20px}.post-social__title{color:#2e3a4c;text-align:center;font-size:18px;font-weight:600;line-height:120%}@media screen and (width>=768px){.post-social__title{text-align:left}}.post-social__link{flex-direction:column;justify-content:space-between;align-items:center;gap:16px;margin-top:8px;display:flex}.post-social__link-webinar{margin-top:20px}@media screen and (width>=768px){.post-social__link{flex-direction:row}}.post-social__link-email{color:#2e3a4c;align-items:center;gap:8px;font-size:18px;font-weight:400;line-height:140%;text-decoration:none;transition:all .3s;display:flex}.post-social__link-email:hover{opacity:.8}.post-social__link-email:before{content:"";font-family:fontello;font-size:20px;font-style:normal;font-weight:600;line-height:normal;display:block}.post-social__list{color:#2e3a4c;text-align:center;align-items:center;gap:20px;font-size:18px;font-weight:600;line-height:120%;display:flex}.post-tags{color:#2e3a4c;flex-wrap:wrap;align-items:center;gap:12px;margin-top:24px;font-size:18px;font-style:normal;line-height:120%;display:flex}.post-tags>span{font-weight:600}.post-tags>a{color:#2e3a4c;font-weight:400;text-decoration:none}.post-tags>a:after{content:"";background-color:#2e3a4c;width:100%;height:1px;margin-top:2px;transition:width .3s ease-in-out;display:block}.post-tags>a:hover:after,.post-tags>a:focus:after{width:0}.services-description{padding:32px 0}.services-description>.container>:first-child{margin-top:0}.services-description>.container>:last-child{margin-bottom:0}.services-description>.container>:first-child:last-child{margin:0}.services-disclaimer{padding:32px 0}.page-banner{text-align:center;background-position:50%;border-radius:10px;padding:47px 14px;position:relative;overflow:hidden}@media screen and (width>=768px){.page-banner{padding:87px 24px}}@media screen and (width>=992px){.page-banner{padding:100px 24px}}.page-banner:before{content:"";background:#2e3a4c73;display:block;position:absolute;inset:0}.page-banner h1{position:relative}.page-banner-description{margin-top:24px}.social-link{gap:16px;margin:0;padding:0;list-style-type:none;display:flex}.social-link__item{color:#fff;border-radius:50%;justify-content:center;align-items:center;width:32px;height:32px;transition:opacity .3s;display:flex;position:relative}.social-link__item:hover{opacity:.75}.social-link__item--dark-blue{background-color:#4d76a1}.social-link__item--green{background-color:#2aa81a}.social-link__item--blue{background-color:#1c8adb}.social-link__item--red{background-color:#f20000}.social-link__item>a{width:100%;height:100%;text-decoration:none;position:absolute;top:0;left:0}.social-link__item>i{margin:auto;font-size:28px;display:flex}.webinar-speakers{border-bottom:1px solid #eaedf2;margin-bottom:64px;padding-bottom:24px}.webinar-speakers__title{color:#2e3a4c;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.webinar-speakers__list{grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:32px;margin:24px 0 0;padding:0;list-style-type:none;display:grid}.webinar-speakers__list>li{flex-direction:column;justify-content:center;min-height:56px;padding:0 0 0 72px;display:flex;position:relative}.webinar-speakers__list>li>img{object-fit:cover;object-position:top;border-radius:100px;width:56px;height:56px;position:absolute;top:0;left:0}.webinar-speakers__list>li>p{color:#2e3a4c;margin:0;font-size:18px;font-style:normal;font-weight:600;line-height:120%}.webinar-speakers__list>li>span{white-space:nowrap;text-overflow:ellipsis;font-size:16px;font-style:normal;font-weight:400;line-height:140%;overflow:hidden}.grid-pages{grid-template-columns:repeat(1,1fr);gap:16px;display:grid}@media screen and (width>=768px){.grid-pages{grid-template-columns:repeat(2,1fr)}}@media screen and (width>=1200px){.grid-pages{grid-template-columns:repeat(3,1fr)}}.grid-pages__card{background-color:#fff;border:1px solid #eaedf2;border-radius:8px;flex-direction:column;gap:10px;padding:24px;transition:border .2s;display:flex;position:relative;overflow:visible}@media screen and (width>=768px){.grid-pages__card:hover{border:1px solid #b12933}.grid-pages__card{padding:32px}}.grid-pages__link{width:100%;height:100%;display:block;position:absolute;inset:0}.grid-pages__header,.grid-pages__start{justify-content:space-between;align-items:center;gap:16px;display:flex}.grid-pages__doc{background:#f6f7fb;border-radius:7.5px;justify-content:center;align-items:center;width:48px;height:48px;padding:11.528px 13.5px 10.671px 13.499px;display:flex}.grid-pages__doc i{font-size:25px;display:flex}.grid-pages__question{z-index:1;border-radius:7.5px;justify-content:center;align-items:center;width:48px;height:48px;padding:12px;display:flex;position:relative}.grid-pages__question:hover span{opacity:1;visibility:visible;width:100%;height:auto}.grid-pages__question span{opacity:0;visibility:hidden;background:#f6f7fb;border-radius:7.5px;width:0;min-width:270px;height:0;min-height:100%;padding:46px 12px 12px;transition:opacity .2s;position:absolute;top:0;left:0}.grid-pages__question i{z-index:11;font-size:24px;position:relative}.grid-pages__arrow i{color:#b12933;font-size:16px}.grid-pages__title{font-size:18px;font-style:normal;font-weight:600;line-height:120%}@media screen and (width>=768px){.grid-pages__title{font-size:24px}}.acf-block-preview .grid-pages{pointer-events:none}.content a[title]{position:relative}.content a[title]:hover{opacity:1!important}.content a[title]:hover:after{content:attr(title);opacity:1;visibility:visible;position:absolute}.content a[title]:after{content:attr(title);opacity:0;visibility:hidden;color:#000;z-index:10;pointer-events:none;background:#fff;border-radius:12px;flex-direction:column;align-items:flex-start;gap:10px;width:max-content;max-width:calc(100vw - 40px);padding:20px;font-size:16px;font-style:normal;font-weight:400;line-height:140%;transition:opacity .15s ease-in-out,visibility .15s ease-in-out;position:absolute;top:calc(100% + 2px);left:0;box-shadow:0 8px 10px #0000001a}@media screen and (width>=1200px){.content a[title]:after{max-width:330px;display:flex}}.content a[title]:after{display:none}.tooltip{cursor:pointer;border-bottom:1px dotted #000;position:relative}.tooltip-content{z-index:10;background:#fff;border-radius:12px;flex-direction:column;align-items:flex-start;gap:10px;width:max-content;max-width:calc(100vw - 40px);padding:20px;transition:opacity .15s ease-in-out,visibility .15s ease-in-out;position:absolute;top:calc(100% + 2px);left:0;box-shadow:0 8px 10px #0000001a}@media screen and (width>=1200px){.tooltip-content{max-width:330px}}.tooltip:not(.active) .tooltip-content{opacity:0;visibility:hidden}.tooltip.active>.tooltip-content{opacity:1;visibility:visible}@media screen and (width>=1200px){.tooltip:hover>.tooltip-content{opacity:1;visibility:visible}.tooltip-content{opacity:0;visibility:hidden}}.tooltip-content>:not(button){margin-bottom:15px;line-height:120%}.tooltip-content:hover{cursor:default}.tooltip-content button{cursor:pointer;background:0 0;border:0;outline:0;justify-content:center;align-items:center;padding:0;display:flex;position:absolute;top:10px;right:0;transform:translate(-50%,50%)}@media screen and (width>=1200px){.tooltip-content button{display:none}}.tooltip-content :nth-child(2){margin-top:0}.tooltip-content p:last-child{margin-bottom:0}@media screen and (width>=992px){.tooltip-content,.tooltip-content p{color:#000;font-size:16px;font-style:normal;font-weight:400;line-height:140%}}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-flow:column wrap}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);-ms-touch-action:none;touch-action:none;background:var(--swiper-scrollbar-bg-color,#0000001a);position:relative}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));position:absolute}.swiper-vertical>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical{left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));position:absolute}.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,#00000080);border-radius:var(--swiper-scrollbar-border-radius,10px);width:100%;height:100%;position:relative;top:0;left:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}
