:root{--f-spinner-width:36px;--f-spinner-height:36px;--f-spinner-color-1:rgba(0,0,0,0.1);--f-spinner-color-2:rgba(17,24,28,0.8);--f-spinner-stroke:2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg :first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg :last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{to{transform:rotate(1turn)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration,.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration,.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0,calc(var(--f-throw-out-distance, 150px)*-1),0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0,var(--f-throw-out-distance,150px),0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration,.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration,.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{0%{transform:scale(.975) translate3d(0,16px,0);opacity:0}to{transform:scale(1) translateZ(0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(.975) translate3d(0,16px,0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{to{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration,.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration,.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}to{opacity:1}}@keyframes f-fadeFastOut{to{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration,.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration,.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeSlowOut{to{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration,.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, .2s)*0.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-crossfadeOut{to{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}to{transform:translateZ(0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}to{transform:translateZ(0)}}@keyframes f-slideOutNext{to{transform:translateX(-100%)}}@keyframes f-slideOutPrev{to{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration,.85s) cubic-bezier(.16,1,.3,1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes f-classicOutNext{to{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{to{transform:translateX(75px);opacity:0}}:root{--f-button-width:40px;--f-button-height:40px;--f-button-border:0;--f-button-border-radius:0;--f-button-color:#374151;--f-button-bg:#f8f8f8;--f-button-hover-bg:#e0e0e0;--f-button-active-bg:#d0d0d0;--f-button-shadow:none;--f-button-transition:all 0.15s ease;--f-button-transform:none;--f-button-svg-width:20px;--f-button-svg-height:20px;--f-button-svg-stroke-width:1.5;--f-button-svg-fill:none;--f-button-svg-filter:none;--f-button-svg-disabled-opacity:0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover:hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline,2px) var(--f-button-outline-color,var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-next,.f-carousel__nav .f-button.is-prev,.fancybox__nav .f-button.is-next,.fancybox__nav .f-button.is-prev{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden!important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color:#dbdbdb;--fancybox-hover-color:#fff;--fancybox-bg:rgba(24,24,27,0.98);--fancybox-slide-gap:10px;--f-spinner-width:50px;--f-spinner-height:50px;--f-spinner-color-1:hsla(0,0%,100%,0.1);--f-spinner-color-2:#bbb;--f-spinner-stroke:3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex,1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container :after,.fancybox__container :before{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity,1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translateZ(0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-html5video,.fancybox__slide.has-iframe,.fancybox__slide.has-image,.fancybox__slide.has-video{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide:after,.fancybox__slide:before{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__slide:empty,.fancybox__track:empty,.fancybox__viewport:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color,#374151);background:var(--fancybox-content-bg,#fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [contenteditable],.fancybox__content [data-selectable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:50%;transition:none;transform:translateZ(0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);cursor:auto;visibility:visible}.is-closing .fancybox__caption,.is-loading .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width:2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width:34px;--f-button-height:34px;--f-button-border-radius:4px;--f-button-color:var(--fancybox-color,#fff);--f-button-hover-color:var(--fancybox-color,#fff);--f-button-bg:rgba(0,0,0,0);--f-button-hover-bg:rgba(0,0,0,0);--f-button-active-bg:rgba(0,0,0,0);--f-button-svg-width:22px;--f-button-svg-height:22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn,.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity,1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius:50%;--f-button-color:#fff;--f-button-hover-color:#fff;--f-button-outline-color:#000;--f-button-bg:rgba(0,0,0,0.6);--f-button-active-bg:rgba(0,0,0,0.6);--f-button-hover-bg:rgba(0,0,0,0.6);--f-button-svg-width:18px;--f-button-svg-height:18px;--f-button-svg-filter:none;top:5px;right:5px}.fancybox__nav{--f-button-width:50px;--f-button-height:50px;--f-button-border:0;--f-button-border-radius:50%;--f-button-color:var(--fancybox-color);--f-button-hover-color:var(--fancybox-hover-color);--f-button-bg:rgba(0,0,0,0);--f-button-hover-bg:rgba(24,24,27,0.3);--f-button-active-bg:rgba(24,24,27,0.5);--f-button-shadow:none;--f-button-transition:all 0.15s ease;--f-button-transform:none;--f-button-svg-width:26px;--f-button-svg-height:26px;--f-button-svg-stroke-width:2.5;--f-button-svg-fill:none;--f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24,24,27,0.5));--f-button-svg-disabled-opacity:0.65;--f-button-next-pos:1rem;--f-button-prev-pos:1rem;opacity:var(--fancybox-opacity,1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav,.is-idle.is-compact .fancybox__footer{animation:f-fadeOut .15s ease-out both}.is-idle.is-compact .fancybox__footer{pointer-events:none}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top,calc(var(--f-spinner-width)*-0.5)) 0 0 var(--f-spinner-left,calc(var(--f-spinner-height)*-0.5));z-index:30;cursor:pointer}.fancybox-protected{right:0;bottom:0}.fancybox-ghost,.fancybox-protected{position:absolute;top:0;left:0;z-index:40;user-select:none}.fancybox-ghost{width:100%;height:100%;min-height:0;object-fit:contain;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>:not(.fancybox__content),.fancybox__container.is-animated[aria-hidden=false]>:not(.fancybox__backdrop,.fancybox__carousel){animation:var(--f-interface-enter-duration,.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration,.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>:not(.fancybox__content),.fancybox__container.is-animated[aria-hidden=true]>:not(.fancybox__backdrop,.fancybox__carousel){animation:var(--f-interface-exit-duration,.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration,.35s) ease forwards f-fadeOut}.has-html5video .fancybox__content,.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-html5video .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-html5video .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-vimeo .fancybox__content,.has-youtube .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}.f-carousel__thumbs{--f-thumb-width:96px;--f-thumb-height:72px;--f-thumb-outline:0;--f-thumb-outline-color:#5eb0ef;--f-thumb-opacity:1;--f-thumb-hover-opacity:1;--f-thumb-selected-opacity:1;--f-thumb-border-radius:2px;--f-thumb-offset:0px;--f-button-next-pos:0;--f-button-prev-pos:0}.f-carousel__thumbs.is-classic{--f-thumb-gap:8px;--f-thumb-opacity:0.5;--f-thumb-hover-opacity:1;--f-thumb-selected-opacity:1}.f-carousel__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:16px;--f-thumb-clip-width:46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2,#e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translateZ(0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track:before{content:"";position:absolute;top:0;bottom:0;left:calc(var(--f-thumb-clip-width, 0)*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0)*-1px),0,0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path:inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))*(1 - var(--progress, 0))*0.5) round var(--f-thumb-border-radius,0));clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button:after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline,0) solid var(--f-thumb-outline-color,rgba(0,0,0,0));border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width:96px;--f-thumb-height:72px;--f-thumb-border-radius:2px;--f-thumb-outline:2px;--f-thumb-outline-color:#ededed;position:relative;opacity:var(--fancybox-opacity,1);transition:max-height .35s cubic-bezier(.23,1,.32,1)}.fancybox__thumbs.is-classic{--f-thumb-gap:8px;--f-thumb-opacity:0.5;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(hsla(0,0%,100%,.1),hsla(0,0%,100%,.05))}.fancybox__thumbs.is-modern{--f-thumb-gap:4px;--f-thumb-extra-gap:16px;--f-thumb-clip-width:46px;--f-thumb-opacity:1;--f-thumb-hover-opacity:1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(hsla(0,0%,100%,.1),hsla(0,0%,100%,.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width:64px;--f-thumb-clip-width:32px;--f-thumb-height:48px;--f-thumb-extra-gap:10px}.fancybox__thumbs.is-masked{max-height:0!important}.is-closing .fancybox__thumbs{transition:none!important}.fancybox__toolbar{--f-progress-color:var(--fancybox-color,hsla(0,0%,100%,0.94));--f-button-width:46px;--f-button-height:46px;--f-button-color:var(--fancybox-color);--f-button-hover-color:var(--fancybox-hover-color);--f-button-bg:rgba(24,24,27,0.65);--f-button-hover-bg:rgba(70,70,73,0.65);--f-button-active-bg:rgba(90,90,93,0.65);--f-button-border-radius:0;--f-button-svg-width:24px;--f-button-svg-height:24px;--f-button-svg-stroke-width:1.5;--f-button-svg-filter:drop-shadow(1px 1px 1px rgba(24,24,27,0.15));--f-button-svg-fill:none;--f-button-svg-disabled-opacity:0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI Adjusted,Segoe UI,Liberation Sans,sans-serif;color:var(--fancybox-color,currentColor);opacity:var(--fancybox-opacity,1);text-shadow:var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:f-fadeOut .15s ease-out both}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color,var(--f-carousel-theme-color,#0091ff));z-index:30;user-select:none;pointer-events:none}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:rgba(0,0,0,0)}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1332px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1,.col-auto{-webkit-box-flex:0}.col-1{-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-2,.col-3{-webkit-box-flex:0}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-4,.col-5{-webkit-box-flex:0}.col-5{-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-6,.col-7{-webkit-box-flex:0}.col-7{-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-8,.col-9{-webkit-box-flex:0}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-10,.col-11{-webkit-box-flex:0}.col-11{-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column,.flex-row{-webkit-box-direction:normal!important}.flex-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-direction:reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column,.flex-sm-row{-webkit-box-direction:normal!important}.flex-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column,.flex-md-row{-webkit-box-direction:normal!important}.flex-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column,.flex-lg-row{-webkit-box-direction:normal!important}.flex-lg-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-webkit-box-orient:horizontal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column,.flex-xl-row{-webkit-box-direction:normal!important}.flex-xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.75rem!important}.mt-1,.my-1{margin-top:.75rem!important}.mr-1,.mx-1{margin-right:.75rem!important}.mb-1,.my-1{margin-bottom:.75rem!important}.ml-1,.mx-1{margin-left:.75rem!important}.m-2{margin:1.5rem!important}.mt-2,.my-2{margin-top:1.5rem!important}.mr-2,.mx-2{margin-right:1.5rem!important}.mb-2,.my-2{margin-bottom:1.5rem!important}.ml-2,.mx-2{margin-left:1.5rem!important}.m-3{margin:3rem!important}.mt-3,.my-3{margin-top:3rem!important}.mr-3,.mx-3{margin-right:3rem!important}.mb-3,.my-3{margin-bottom:3rem!important}.ml-3,.mx-3{margin-left:3rem!important}.m-4{margin:4.5rem!important}.mt-4,.my-4{margin-top:4.5rem!important}.mr-4,.mx-4{margin-right:4.5rem!important}.mb-4,.my-4{margin-bottom:4.5rem!important}.ml-4,.mx-4{margin-left:4.5rem!important}.m-5{margin:9rem!important}.mt-5,.my-5{margin-top:9rem!important}.mr-5,.mx-5{margin-right:9rem!important}.mb-5,.my-5{margin-bottom:9rem!important}.ml-5,.mx-5{margin-left:9rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.75rem!important}.pt-1,.py-1{padding-top:.75rem!important}.pr-1,.px-1{padding-right:.75rem!important}.pb-1,.py-1{padding-bottom:.75rem!important}.pl-1,.px-1{padding-left:.75rem!important}.p-2{padding:1.5rem!important}.pt-2,.py-2{padding-top:1.5rem!important}.pr-2,.px-2{padding-right:1.5rem!important}.pb-2,.py-2{padding-bottom:1.5rem!important}.pl-2,.px-2{padding-left:1.5rem!important}.p-3{padding:3rem!important}.pt-3,.py-3{padding-top:3rem!important}.pr-3,.px-3{padding-right:3rem!important}.pb-3,.py-3{padding-bottom:3rem!important}.pl-3,.px-3{padding-left:3rem!important}.p-4{padding:4.5rem!important}.pt-4,.py-4{padding-top:4.5rem!important}.pr-4,.px-4{padding-right:4.5rem!important}.pb-4,.py-4{padding-bottom:4.5rem!important}.pl-4,.px-4{padding-left:4.5rem!important}.p-5{padding:9rem!important}.pt-5,.py-5{padding-top:9rem!important}.pr-5,.px-5{padding-right:9rem!important}.pb-5,.py-5{padding-bottom:9rem!important}.pl-5,.px-5{padding-left:9rem!important}.m-n1{margin:-.75rem!important}.mt-n1,.my-n1{margin-top:-.75rem!important}.mr-n1,.mx-n1{margin-right:-.75rem!important}.mb-n1,.my-n1{margin-bottom:-.75rem!important}.ml-n1,.mx-n1{margin-left:-.75rem!important}.m-n2{margin:-1.5rem!important}.mt-n2,.my-n2{margin-top:-1.5rem!important}.mr-n2,.mx-n2{margin-right:-1.5rem!important}.mb-n2,.my-n2{margin-bottom:-1.5rem!important}.ml-n2,.mx-n2{margin-left:-1.5rem!important}.m-n3{margin:-3rem!important}.mt-n3,.my-n3{margin-top:-3rem!important}.mr-n3,.mx-n3{margin-right:-3rem!important}.mb-n3,.my-n3{margin-bottom:-3rem!important}.ml-n3,.mx-n3{margin-left:-3rem!important}.m-n4{margin:-4.5rem!important}.mt-n4,.my-n4{margin-top:-4.5rem!important}.mr-n4,.mx-n4{margin-right:-4.5rem!important}.mb-n4,.my-n4{margin-bottom:-4.5rem!important}.ml-n4,.mx-n4{margin-left:-4.5rem!important}.m-n5{margin:-9rem!important}.mt-n5,.my-n5{margin-top:-9rem!important}.mr-n5,.mx-n5{margin-right:-9rem!important}.mb-n5,.my-n5{margin-bottom:-9rem!important}.ml-n5,.mx-n5{margin-left:-9rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.75rem!important}.mt-sm-1,.my-sm-1{margin-top:.75rem!important}.mr-sm-1,.mx-sm-1{margin-right:.75rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.75rem!important}.ml-sm-1,.mx-sm-1{margin-left:.75rem!important}.m-sm-2{margin:1.5rem!important}.mt-sm-2,.my-sm-2{margin-top:1.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:1.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:1.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:1.5rem!important}.m-sm-3{margin:3rem!important}.mt-sm-3,.my-sm-3{margin-top:3rem!important}.mr-sm-3,.mx-sm-3{margin-right:3rem!important}.mb-sm-3,.my-sm-3{margin-bottom:3rem!important}.ml-sm-3,.mx-sm-3{margin-left:3rem!important}.m-sm-4{margin:4.5rem!important}.mt-sm-4,.my-sm-4{margin-top:4.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:4.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:4.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:4.5rem!important}.m-sm-5{margin:9rem!important}.mt-sm-5,.my-sm-5{margin-top:9rem!important}.mr-sm-5,.mx-sm-5{margin-right:9rem!important}.mb-sm-5,.my-sm-5{margin-bottom:9rem!important}.ml-sm-5,.mx-sm-5{margin-left:9rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.75rem!important}.pt-sm-1,.py-sm-1{padding-top:.75rem!important}.pr-sm-1,.px-sm-1{padding-right:.75rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.75rem!important}.pl-sm-1,.px-sm-1{padding-left:.75rem!important}.p-sm-2{padding:1.5rem!important}.pt-sm-2,.py-sm-2{padding-top:1.5rem!important}.pr-sm-2,.px-sm-2{padding-right:1.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:1.5rem!important}.pl-sm-2,.px-sm-2{padding-left:1.5rem!important}.p-sm-3{padding:3rem!important}.pt-sm-3,.py-sm-3{padding-top:3rem!important}.pr-sm-3,.px-sm-3{padding-right:3rem!important}.pb-sm-3,.py-sm-3{padding-bottom:3rem!important}.pl-sm-3,.px-sm-3{padding-left:3rem!important}.p-sm-4{padding:4.5rem!important}.pt-sm-4,.py-sm-4{padding-top:4.5rem!important}.pr-sm-4,.px-sm-4{padding-right:4.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:4.5rem!important}.pl-sm-4,.px-sm-4{padding-left:4.5rem!important}.p-sm-5{padding:9rem!important}.pt-sm-5,.py-sm-5{padding-top:9rem!important}.pr-sm-5,.px-sm-5{padding-right:9rem!important}.pb-sm-5,.py-sm-5{padding-bottom:9rem!important}.pl-sm-5,.px-sm-5{padding-left:9rem!important}.m-sm-n1{margin:-.75rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.75rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.75rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.75rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.75rem!important}.m-sm-n2{margin:-1.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-1.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-1.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-1.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-1.5rem!important}.m-sm-n3{margin:-3rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-3rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-3rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-3rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-3rem!important}.m-sm-n4{margin:-4.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-4.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-4.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-4.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-4.5rem!important}.m-sm-n5{margin:-9rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-9rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-9rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-9rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-9rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.75rem!important}.mt-md-1,.my-md-1{margin-top:.75rem!important}.mr-md-1,.mx-md-1{margin-right:.75rem!important}.mb-md-1,.my-md-1{margin-bottom:.75rem!important}.ml-md-1,.mx-md-1{margin-left:.75rem!important}.m-md-2{margin:1.5rem!important}.mt-md-2,.my-md-2{margin-top:1.5rem!important}.mr-md-2,.mx-md-2{margin-right:1.5rem!important}.mb-md-2,.my-md-2{margin-bottom:1.5rem!important}.ml-md-2,.mx-md-2{margin-left:1.5rem!important}.m-md-3{margin:3rem!important}.mt-md-3,.my-md-3{margin-top:3rem!important}.mr-md-3,.mx-md-3{margin-right:3rem!important}.mb-md-3,.my-md-3{margin-bottom:3rem!important}.ml-md-3,.mx-md-3{margin-left:3rem!important}.m-md-4{margin:4.5rem!important}.mt-md-4,.my-md-4{margin-top:4.5rem!important}.mr-md-4,.mx-md-4{margin-right:4.5rem!important}.mb-md-4,.my-md-4{margin-bottom:4.5rem!important}.ml-md-4,.mx-md-4{margin-left:4.5rem!important}.m-md-5{margin:9rem!important}.mt-md-5,.my-md-5{margin-top:9rem!important}.mr-md-5,.mx-md-5{margin-right:9rem!important}.mb-md-5,.my-md-5{margin-bottom:9rem!important}.ml-md-5,.mx-md-5{margin-left:9rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.75rem!important}.pt-md-1,.py-md-1{padding-top:.75rem!important}.pr-md-1,.px-md-1{padding-right:.75rem!important}.pb-md-1,.py-md-1{padding-bottom:.75rem!important}.pl-md-1,.px-md-1{padding-left:.75rem!important}.p-md-2{padding:1.5rem!important}.pt-md-2,.py-md-2{padding-top:1.5rem!important}.pr-md-2,.px-md-2{padding-right:1.5rem!important}.pb-md-2,.py-md-2{padding-bottom:1.5rem!important}.pl-md-2,.px-md-2{padding-left:1.5rem!important}.p-md-3{padding:3rem!important}.pt-md-3,.py-md-3{padding-top:3rem!important}.pr-md-3,.px-md-3{padding-right:3rem!important}.pb-md-3,.py-md-3{padding-bottom:3rem!important}.pl-md-3,.px-md-3{padding-left:3rem!important}.p-md-4{padding:4.5rem!important}.pt-md-4,.py-md-4{padding-top:4.5rem!important}.pr-md-4,.px-md-4{padding-right:4.5rem!important}.pb-md-4,.py-md-4{padding-bottom:4.5rem!important}.pl-md-4,.px-md-4{padding-left:4.5rem!important}.p-md-5{padding:9rem!important}.pt-md-5,.py-md-5{padding-top:9rem!important}.pr-md-5,.px-md-5{padding-right:9rem!important}.pb-md-5,.py-md-5{padding-bottom:9rem!important}.pl-md-5,.px-md-5{padding-left:9rem!important}.m-md-n1{margin:-.75rem!important}.mt-md-n1,.my-md-n1{margin-top:-.75rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.75rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.75rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.75rem!important}.m-md-n2{margin:-1.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-1.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-1.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-1.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-1.5rem!important}.m-md-n3{margin:-3rem!important}.mt-md-n3,.my-md-n3{margin-top:-3rem!important}.mr-md-n3,.mx-md-n3{margin-right:-3rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-3rem!important}.ml-md-n3,.mx-md-n3{margin-left:-3rem!important}.m-md-n4{margin:-4.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-4.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-4.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-4.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-4.5rem!important}.m-md-n5{margin:-9rem!important}.mt-md-n5,.my-md-n5{margin-top:-9rem!important}.mr-md-n5,.mx-md-n5{margin-right:-9rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-9rem!important}.ml-md-n5,.mx-md-n5{margin-left:-9rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.75rem!important}.mt-lg-1,.my-lg-1{margin-top:.75rem!important}.mr-lg-1,.mx-lg-1{margin-right:.75rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.75rem!important}.ml-lg-1,.mx-lg-1{margin-left:.75rem!important}.m-lg-2{margin:1.5rem!important}.mt-lg-2,.my-lg-2{margin-top:1.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:1.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:1.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:1.5rem!important}.m-lg-3{margin:3rem!important}.mt-lg-3,.my-lg-3{margin-top:3rem!important}.mr-lg-3,.mx-lg-3{margin-right:3rem!important}.mb-lg-3,.my-lg-3{margin-bottom:3rem!important}.ml-lg-3,.mx-lg-3{margin-left:3rem!important}.m-lg-4{margin:4.5rem!important}.mt-lg-4,.my-lg-4{margin-top:4.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:4.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:4.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:4.5rem!important}.m-lg-5{margin:9rem!important}.mt-lg-5,.my-lg-5{margin-top:9rem!important}.mr-lg-5,.mx-lg-5{margin-right:9rem!important}.mb-lg-5,.my-lg-5{margin-bottom:9rem!important}.ml-lg-5,.mx-lg-5{margin-left:9rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.75rem!important}.pt-lg-1,.py-lg-1{padding-top:.75rem!important}.pr-lg-1,.px-lg-1{padding-right:.75rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.75rem!important}.pl-lg-1,.px-lg-1{padding-left:.75rem!important}.p-lg-2{padding:1.5rem!important}.pt-lg-2,.py-lg-2{padding-top:1.5rem!important}.pr-lg-2,.px-lg-2{padding-right:1.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:1.5rem!important}.pl-lg-2,.px-lg-2{padding-left:1.5rem!important}.p-lg-3{padding:3rem!important}.pt-lg-3,.py-lg-3{padding-top:3rem!important}.pr-lg-3,.px-lg-3{padding-right:3rem!important}.pb-lg-3,.py-lg-3{padding-bottom:3rem!important}.pl-lg-3,.px-lg-3{padding-left:3rem!important}.p-lg-4{padding:4.5rem!important}.pt-lg-4,.py-lg-4{padding-top:4.5rem!important}.pr-lg-4,.px-lg-4{padding-right:4.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:4.5rem!important}.pl-lg-4,.px-lg-4{padding-left:4.5rem!important}.p-lg-5{padding:9rem!important}.pt-lg-5,.py-lg-5{padding-top:9rem!important}.pr-lg-5,.px-lg-5{padding-right:9rem!important}.pb-lg-5,.py-lg-5{padding-bottom:9rem!important}.pl-lg-5,.px-lg-5{padding-left:9rem!important}.m-lg-n1{margin:-.75rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.75rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.75rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.75rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.75rem!important}.m-lg-n2{margin:-1.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-1.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-1.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-1.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-1.5rem!important}.m-lg-n3{margin:-3rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-3rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-3rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-3rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-3rem!important}.m-lg-n4{margin:-4.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-4.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-4.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-4.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-4.5rem!important}.m-lg-n5{margin:-9rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-9rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-9rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-9rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-9rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.75rem!important}.mt-xl-1,.my-xl-1{margin-top:.75rem!important}.mr-xl-1,.mx-xl-1{margin-right:.75rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.75rem!important}.ml-xl-1,.mx-xl-1{margin-left:.75rem!important}.m-xl-2{margin:1.5rem!important}.mt-xl-2,.my-xl-2{margin-top:1.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:1.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:1.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:1.5rem!important}.m-xl-3{margin:3rem!important}.mt-xl-3,.my-xl-3{margin-top:3rem!important}.mr-xl-3,.mx-xl-3{margin-right:3rem!important}.mb-xl-3,.my-xl-3{margin-bottom:3rem!important}.ml-xl-3,.mx-xl-3{margin-left:3rem!important}.m-xl-4{margin:4.5rem!important}.mt-xl-4,.my-xl-4{margin-top:4.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:4.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:4.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:4.5rem!important}.m-xl-5{margin:9rem!important}.mt-xl-5,.my-xl-5{margin-top:9rem!important}.mr-xl-5,.mx-xl-5{margin-right:9rem!important}.mb-xl-5,.my-xl-5{margin-bottom:9rem!important}.ml-xl-5,.mx-xl-5{margin-left:9rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.75rem!important}.pt-xl-1,.py-xl-1{padding-top:.75rem!important}.pr-xl-1,.px-xl-1{padding-right:.75rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.75rem!important}.pl-xl-1,.px-xl-1{padding-left:.75rem!important}.p-xl-2{padding:1.5rem!important}.pt-xl-2,.py-xl-2{padding-top:1.5rem!important}.pr-xl-2,.px-xl-2{padding-right:1.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:1.5rem!important}.pl-xl-2,.px-xl-2{padding-left:1.5rem!important}.p-xl-3{padding:3rem!important}.pt-xl-3,.py-xl-3{padding-top:3rem!important}.pr-xl-3,.px-xl-3{padding-right:3rem!important}.pb-xl-3,.py-xl-3{padding-bottom:3rem!important}.pl-xl-3,.px-xl-3{padding-left:3rem!important}.p-xl-4{padding:4.5rem!important}.pt-xl-4,.py-xl-4{padding-top:4.5rem!important}.pr-xl-4,.px-xl-4{padding-right:4.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:4.5rem!important}.pl-xl-4,.px-xl-4{padding-left:4.5rem!important}.p-xl-5{padding:9rem!important}.pt-xl-5,.py-xl-5{padding-top:9rem!important}.pr-xl-5,.px-xl-5{padding-right:9rem!important}.pb-xl-5,.py-xl-5{padding-bottom:9rem!important}.pl-xl-5,.px-xl-5{padding-left:9rem!important}.m-xl-n1{margin:-.75rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.75rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.75rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.75rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.75rem!important}.m-xl-n2{margin:-1.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-1.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-1.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-1.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-1.5rem!important}.m-xl-n3{margin:-3rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-3rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-3rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-3rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-3rem!important}.m-xl-n4{margin:-4.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-4.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-4.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-4.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-4.5rem!important}.m-xl-n5{margin:-9rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-9rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-9rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-9rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-9rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box}a,abbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:rgba(0,0,0,0)}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}embed,iframe,img,object,video{max-width:100%}a{text-decoration:none}ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help}table{border-collapse:collapse;border-spacing:0;font-size:inherit;font:100%}th{font-weight:700;vertical-align:bottom}td{font-weight:400;vertical-align:middle}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:10px 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom}a:active,a:hover,input:focus,textarea:focus{outline:0}small{font-size:85%}strong,th{font-weight:700}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit],label{cursor:pointer}body,input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button,input,select,textarea{margin:0;resize:none;color:inherit;font:inherit;border:0;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a,button{outline:0}button{width:auto;overflow:visible}textarea{overflow:auto}ins{text-decoration:none}ins,mark{background:#fcd700;color:#000}mark{font-style:italic;font-weight:700}audio,canvas,iframe,img,svg,video{vertical-align:middle}html{font-family:sans-serif;-ms-text-size-adjust:100%}::-moz-selection{background:#000;color:#fff;text-shadow:none}::selection{background:#000;color:#fff;text-shadow:none}html{font-size:62.5%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;color:#000;background:#fff;overscroll-behavior-y:none;padding-top:126px}@media (max-width:991.98px){body{padding-top:86px}}a{color:inherit}.fancybox__backdrop{background:rgba(14,52,102,.8)}.custom-scrollbar{overflow-y:auto;-webkit-overflow-scrolling:touch}.custom-scrollbar::-webkit-scrollbar-track{background-color:#333}.custom-scrollbar::-webkit-scrollbar{width:8px;height:8px;background-color:#333}.custom-scrollbar::-webkit-scrollbar-thumb{background-color:#666}@font-face{font-family:Segoe UI;font-style:normal;font-weight:400;src:local("Segoe UI Regular"),url(../fonts/Segoe\ UI.woff) format("woff")}@font-face{font-family:Segoe UI;font-style:italic;font-weight:400;src:local("Segoe UI Italic"),url("../fonts/Segoe UI Italic.woff") format("woff")}@font-face{font-family:Segoe UI;font-style:normal;font-weight:700;src:local("Segoe UI Bold"),url("../fonts/Segoe UI Bold.woff") format("woff")}@font-face{font-family:Segoe UI;font-style:italic;font-weight:700;src:local("Segoe UI Bold Italic"),url("../fonts/Segoe UI Bold Italic.woff") format("woff")}.c-banner-video{overflow:hidden;position:relative;background-color:#122043}.c-banner-video__video{position:relative;width:100%;padding-top:56.25%}.c-banner-video__video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-banner-video.open__bg-video{visibility:hidden;opacity:0;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-banner-video.open__video{opacity:1;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-book{position:relative;background:-webkit-gradient(linear,left top,left bottom,from(#1d3054),color-stop(45.08%,#122043));background:linear-gradient(180deg,#1d3054,#122043 45.08%);padding:75px 0 155px}.c-book__video{position:relative;max-width:937px;width:100%;cursor:pointer;overflow:hidden;margin:0 auto}.c-book__video__bg-video{z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover}.c-book__video__bg-video:before{content:"";position:absolute;top:50%;left:50%;background:url(../img/layout/play-intro.svg) no-repeat;background-position:50%;background-size:cover;width:clamp(100px,75.85714px + .0619 * 100vw,165px);height:clamp(100px,75.85714px + .0619 * 100vw,165px);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-book__video__iframe{position:relative;width:100%;height:0;margin:0;z-index:1;padding-bottom:56.27198%}.c-book__video__iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-book__video.open__bg-video{visibility:hidden;opacity:0;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-book__video.open__iframe{opacity:1;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-book__info{position:relative;display:grid;grid-template-columns:1fr 2fr;margin-top:75px;padding-bottom:30px}.c-book__info__content{font-family:Georgia,Times New Roman,Times,serif}.c-book__info__content h3{font-size:36px;font-weight:700;line-height:36px;color:#fff;margin-bottom:20px}.c-book__info__content p{font-size:16px;font-weight:400;line-height:20px;color:#fff}.c-book__info__content p+p{margin-top:25px}.c-book__info__cover{margin-right:-15px;background-size:cover;background-position:100%}.c-book__chapters{margin-top:10px}.c-book__chapters__tab{display:grid;grid-template-columns:repeat(7,1fr);font-family:Georgia,Times New Roman,Times,serif;background:#122043;border:1px solid #0e3466}.c-book__chapters__tab__intro,.c-book__chapters__tab__toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px;background-color:rgba(0,0,0,0)}.c-book__chapters__tab__intro.is-active,.c-book__chapters__tab__toggle.is-active{color:#122043;background:#0e3466}.c-book__chapters__tab__intro{font-size:15px;font-weight:400;text-transform:uppercase;line-height:1em;color:#0e3466}.c-book__chapters__tab__toggle{font-size:44px;font-weight:400;text-transform:uppercase;border-left:1px solid #0e3466;color:#0e3466;-webkit-transition:.3s;transition:.3s}.c-book__chapters__item{display:none}.c-book__chapters__item.is-active{display:block;border:25px solid #0e3466}@media (min-width:576px){.c-book__chapters__tab__intro{font-size:25px}.c-book__chapters__tab__toggle{font-size:70px}}@media (min-width:992px){.c-book__info{padding-bottom:100px}.c-book__info__cover{position:absolute;width:60%;right:0;margin-top:40px;margin-right:0;text-align:right}.c-book__chapters__tab__intro:hover,.c-book__chapters__tab__toggle:hover{color:#122043;background:#0e3466}.c-book__chapters__tab__intro{font-size:30px}.c-book__chapters__tab__toggle{font-size:100px}}@media (min-width:1200px){.c-book__chapters__tab__intro{font-size:clamp(30px,20.71429px + .02381 * 100vw,55px)}.c-book__chapters__tab__toggle{font-size:clamp(100px,25.71429px + .19048 * 100vw,300px)}}@media (max-width:991.98px){.c-book__info{grid-template-columns:1fr;margin-top:30px}}@media (max-width:767.98px){.c-book{padding:50px 0 85px}.c-book:after,.c-book:before{content:none}.c-book__info__content h3{font-size:30px;line-height:30px}.c-book__chapters__info{margin-top:10px!important}.c-book__chapters__item.is-active{border:5px solid #0e3466}}.c-button{position:relative;display:inline-block;padding:20px 45px 20px 20px;font-family:Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;font-size:16px;font-weight:500;text-transform:uppercase;text-align:center;color:#fff;background:#0a478a;-webkit-transition:.3s;transition:.3s}.c-button span{position:absolute;top:46%;right:12%;font-size:24px;-webkit-transform:translateY(-46%);-ms-transform:translateY(-46%);transform:translateY(-46%)}.c-button.--secondary{background-color:#009ed6}@media (min-width:992px){.c-button{font-size:20px}.c-button:hover{color:#0a478a;background:#fff}.c-button.--secondary:hover{color:#009ed6;background:#fff}}.c-card-character{font-family:Georgia,Times New Roman,Times,serif;display:block;width:295px;border:5px solid rgba(0,0,0,0);cursor:pointer;-webkit-transition:.3s;transition:.3s;margin-bottom:30px}.c-card-character__cover{position:relative;overflow:hidden;height:400px}.c-card-character__cover>img{position:absolute;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.c-card-character__content{color:#fff;background:#122043;padding:20px 20px 30px;-webkit-transition:.3s;transition:.3s}.c-card-character__content h2{font-size:28px;font-weight:700;margin-bottom:7px}.c-card-character__content p{font-size:14px;font-weight:400}@media (min-width:992px){.c-card-character:hover{border-color:#0a478a}.c-card-character:hover .c-card-character__content{background:#0a478a}}.c-chapter{background:#122043}.c-chapter__content{font-family:Georgia,Times New Roman,Times,serif;display:grid;gap:35px;max-width:80%;margin:0 auto}.c-chapter__item{position:relative;border-bottom:8px solid #0a478a;border-left:1px solid #0a478a;padding:15px;cursor:pointer}.c-chapter__item__number{font-size:100px;font-weight:400;line-height:1;color:rgba(10,71,138,.5);-webkit-transition:.3s;transition:.3s;pointer-events:none}.c-chapter__item__content{text-align:right;-webkit-transition:.3s;transition:.3s}.c-chapter__item__year{font-size:18px;font-weight:400;color:#009ed6}.c-chapter__item__title{margin:12px 0;font-size:22px;font-weight:400;text-transform:uppercase;color:#fff}.c-chapter__item__subtitle{font-size:14px;font-weight:400;color:#fff}.c-chapter__item.--two{border-top:1px solid #0a478a;border-bottom:2px solid #0a478a;border-left:8px solid #0a478a}.c-chapter__item.--three{border-top:1px solid #0a478a;border-right:1px solid #0a478a;border-bottom:8px solid #0a478a}.c-chapter__item.--four{border-top:2px solid #0a478a;border-right:1px solid #0a478a;border-left:8px solid #0a478a}.c-chapter__item.--five{border-left:1px solid #0a478a}.c-chapter__item.--five,.c-chapter__item.--six{border-top:1px solid #0a478a;border-bottom:8px solid #0a478a}.c-chapter__item.--six{border-right:1px solid #0a478a}@media (min-width:576px){.c-chapter__content{grid-template-columns:repeat(2,1fr);max-width:100%}}@media (min-width:1200px){.c-chapter__content{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);grid-auto-flow:column;margin-bottom:-72px}.c-chapter__item{height:410px}.c-chapter__item__number{position:absolute;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;font-size:clamp(100px,-48.57143px + .38095 * 100vw,500px)}.c-chapter__item__content{opacity:0;visibility:hidden;position:absolute;max-width:326px;bottom:85px;right:42px;padding:0}.c-chapter__item__year{font-size:20px}.c-chapter__item__title{margin:15px 0}.c-chapter__item__subtitle{font-size:16px}.c-chapter__item__title{font-size:32px}.c-chapter__item.--six,.c-chapter__item.--three,.c-chapter__item.--two{height:600px}.c-chapter__item.--six .c-chapter__item__number,.c-chapter__item.--three .c-chapter__item__number,.c-chapter__item.--two .c-chapter__item__number{font-size:clamp(100px,-160px + .66667 * 100vw,800px)}.c-chapter__item.--six,.c-chapter__item.--two{position:relative;top:-190px}.c-chapter__item.--one .c-chapter__item__number{right:35px;margin-top:-28px;font-size:clamp(100px,-85.71429px + .47619 * 100vw,600px)}.c-chapter__item.--two .c-chapter__item__number{margin-top:-92px;left:-6px}.c-chapter__item.--three .c-chapter__item__number{margin-top:-158px;left:-28px}.c-chapter__item.--four .c-chapter__item__number{right:0;margin-top:-55px}.c-chapter__item.--five .c-chapter__item__number{left:60px;margin-top:-78px}.c-chapter__item.--six .c-chapter__item__number{margin-top:22px;left:-28px}.c-chapter__item:hover{background-color:#0a478a;background-position:50%;background-size:cover;background-repeat:no-repeat}.c-chapter__item:hover .c-chapter__item__number{color:#122043}.c-chapter__item:hover .c-chapter__item__content{opacity:1;visibility:visible}.c-chapter__item.--one:hover{background-image:url(../img/content/nossa-historia/hover-1.jpg)}.c-chapter__item.--two:hover{background-image:url(../img/content/nossa-historia/hover-2.jpg)}.c-chapter__item.--three:hover{background-image:url(../img/content/nossa-historia/hover-3.jpg)}.c-chapter__item.--four:hover{background-image:url(../img/content/nossa-historia/hover-4.jpg)}.c-chapter__item.--five:hover{background-image:url(../img/content/nossa-historia/hover-5.jpg)}.c-chapter__item.--six:hover{background-image:url(../img/content/nossa-historia/hover-6.jpg)}}@media (max-width:1199.98px){.c-chapter__item.--one{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.c-chapter__item.--two{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.c-chapter__item.--three{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.c-chapter__item.--four{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.c-chapter__item.--five{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.c-chapter__item.--six{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}.c-characters{background:#122043;padding:85px 0 157px}.c-characters__list{display:grid;margin-top:50px;grid-template-columns:repeat(auto-fill,minmax(225px,1fr))}.c-characters__item{overflow:hidden;position:relative;width:100%;min-height:290px;cursor:pointer}.c-characters__item:before{z-index:2;content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:-webkit-gradient(linear,left bottom,left top,color-stop(18%,rgba(0,0,0,.8)),color-stop(92%,rgba(9,54,121,0)));background:linear-gradient(0deg,rgba(0,0,0,.8) 18%,rgba(9,54,121,0) 92%);-webkit-transition:.3s;transition:.3s}.c-characters__item>img{position:absolute;display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top;object-position:top}.c-characters__content{z-index:2;position:absolute;bottom:25px;left:20px;max-width:260px;-webkit-transition:.3s;transition:.3s}.c-characters__content__name{font-family:Georgia,Times New Roman,Times,serif;font-size:20px;font-weight:700;color:#fff;margin-bottom:15px}.c-characters__content__info{display:none;font-size:14px;font-weight:400;color:hsla(0,0%,100%,.8)}.c-characters__content__more{position:relative;display:block;font-size:15px;font-weight:500;text-transform:uppercase;color:#fff}.c-characters__content__more span{font-size:20px;margin-left:6px}.c-characters__more{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:20px;font-weight:500;text-transform:uppercase;color:#fff;background:#0e3466;width:100%;padding:50px 0;-webkit-transition:.3s;transition:.3s}.c-characters__more span{margin-left:6px;margin-top:-3px;font-size:24px}@media (max-width:575.98px){.c-characters__list{max-width:300px;margin:0 auto}.c-characters__content__more span{right:60%}.c-characters__more span{right:23%}}@media (min-width:992px){.c-characters__item:hover .c-characters__content,.c-characters__item:hover:before{z-index:2}.c-characters__item:hover:before{opacity:1}.c-characters__item:hover .c-characters__content{opacity:1;visibility:visible}.c-characters__more:hover{background:#009ed6}}@media (min-width:1200px){.c-characters__list{grid-template-columns:repeat(auto-fill,minmax(325px,1fr))}.c-characters__item:before{opacity:0}.c-characters__content{opacity:0;bottom:35px;left:30px}.c-characters__content__name{margin-bottom:7px;font-size:22px}.c-characters__content__info{display:block}.c-characters__content__more{font-size:16px;margin-top:30px}}.c-footer{background:#0a478a;padding:118px 0 60px}.c-footer__info__text{font-family:Georgia,Times New Roman,Times,serif;font-size:22px;font-weight:400;line-height:30px;text-align:center;max-width:1145px;margin:0 auto;color:#fff}.c-footer__info__brands{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:30px;margin:60px auto}.c-footer__info__brand,.c-footer__info__brands{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c-footer__info__brand{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:90px;text-align:center}.c-footer__contact{border-top:4px solid rgba(29,48,84,.3);border-bottom:4px solid rgba(29,48,84,.3);padding:20px 0}.c-footer__contact__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c-footer__contact__link{font-size:18px;font-weight:700;text-transform:uppercase;color:#009ed6}.c-footer__contact__link:first-child{position:relative;padding-right:65px}.c-footer__contact__link:first-child:after{content:"";position:absolute;top:50%;right:30px;width:2px;height:60px;background:rgba(29,48,84,.3);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.c-footer__social{margin-left:12px}.c-footer__social,.c-footer__social__item{display:-webkit-box;display:-ms-flexbox;display:flex}.c-footer__social__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.c-footer__social__item:not(:first-child){margin-left:12px}.c-footer__agency{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:54px}.c-footer__agency__text{font-size:12px;font-weight:400;text-transform:uppercase;color:#fff;margin-top:3px}.c-footer__agency a{margin-left:10px}@media (max-width:991.98px){.c-footer{padding:65px 0}.c-footer__info__text{font-size:20px;margin:0 20px}.c-footer__contact__wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.c-footer__contact__link:first-child{padding-right:0}.c-footer__contact__link:first-child:after{content:none}.c-footer__contact__link:not(:first-child){margin:20px 0}}@media (min-width:992px){.c-footer__contact__link{font-size:20px}}.c-header-section{text-align:center}.c-header-section+*{margin-top:70px}.c-header-section__title{font-size:36px;font-weight:400;text-transform:uppercase;color:#009ed6}.c-header-section__subtitle{font-size:20px;font-weight:400;color:#fff;margin:10px 0 35px}@media (max-width:991.98px){.c-header-section__title{font-size:26px}.c-header-section__subtitle{font-size:16px}}.c-header{position:fixed;top:0;width:100%;font-size:16px;font-weight:400;text-transform:uppercase;color:#fff;background:#122043;padding:8px 0;z-index:5;border-bottom:1px solid #606c8b}.c-header .container{max-width:880px}.c-header__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.c-header__wrap img{max-height:110px}.c-header__nav{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c-header__nav,.c-header__nav ul{display:-webkit-box;display:-ms-flexbox;display:flex}.c-header__nav ul{margin-top:7px}.c-header__nav ul li:not(:first-child){margin-left:20px}.c-header__nav ul li a{position:relative}.c-header__nav ul li a:after{content:"";-webkit-transition:.3s;transition:.3s}.c-header__right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c-header__logo{width:120px}.c-header .current-menu-item a:after{content:"";position:absolute;left:0;bottom:-7px;width:100%;height:2px;background:#009ed6}.c-header.is-collapsed .c-header__wrap{-webkit-transition:.3s;transition:.3s}.c-header.is-collapsed .c-header__wrap img{max-height:70px}.c-header__button-menu{z-index:3;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:70px;height:70px;border:0;background:rgba(0,0,0,0);padding:0;right:0}.c-header__button-menu span{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-header__button-menu span,.c-header__button-menu span:after,.c-header__button-menu span:before{position:absolute;background:#fff;height:2px;width:70px;-webkit-transition:.3s ease;transition:.3s ease}.c-header__button-menu span:after,.c-header__button-menu span:before{content:"";left:0}.c-header__button-menu span:before{top:-10px;left:auto;right:0}.c-header__button-menu span:after{top:10px}.c-header__button-menu.is-active span{background:none!important}.c-header__button-menu.is-active span:after,.c-header__button-menu.is-active span:before{top:0}.c-header__button-menu.is-active span:before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);margin-left:0}.c-header__button-menu.is-active span:after{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}@media (min-width:992px){.c-header__nav li:hover a:after{content:"";position:absolute;left:0;bottom:-7px;width:100%;height:2px;background:#009ed6}.c-header__button-menu{display:none}}@media (max-width:991.98px){.c-header{position:fixed;width:100%;-webkit-box-shadow:0 0 50px 50px rgba(0,0,0,.2);box-shadow:0 0 50px 50px rgba(0,0,0,.2)}.c-header__wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.c-header__wrap a{max-width:90px}.c-header__nav{display:none}.c-header__button-menu{display:block}.c-header__logo{margin-right:20px}}.c-history-video{background:#0e3466;padding:95px 0 128px}.c-history-video__content{border-top:4px solid #0a478a;border-bottom:4px solid #0a478a;margin-top:35px}.c-history-video__wrap{max-width:1022px;padding:20px 0;margin:0 auto}.c-history-video__video{display:none;position:relative;width:100%;cursor:pointer;overflow:hidden}.c-history-video__video.is-active{display:block}.c-history-video__video__bg-video{z-index:2;position:absolute;width:100%;height:100%;top:0;left:0;background-repeat:no-repeat;background-position:50%;background-size:cover}.c-history-video__video__bg-video:before{content:"";z-index:2;position:absolute;display:block;width:clamp(100px,75.85714px + .0619 * 100vw,165px);height:clamp(100px,75.85714px + .0619 * 100vw,165px);top:50%;left:50%;background:url(../img/layout/play-history.svg) no-repeat 50%;background-size:cover;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-history-video__video__iframe{position:relative;width:100%;height:0;margin:0;z-index:1;padding-bottom:56.27198%}.c-history-video__video__iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-history-video__video.open__bg-video{visibility:hidden;opacity:0;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-history-video__video.open__iframe{opacity:1;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-history-video__list{display:grid;grid-template-columns:repeat(4,1fr);-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px;margin-top:25px}.c-history-video__thumb{position:relative;width:100%;height:140px;cursor:pointer;overflow:hidden;border:5px solid rgba(0,0,0,0)}.c-history-video__thumb__bg-video{z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover}.c-history-video__thumb__bg-video:before{content:"";z-index:2;position:absolute;top:50%;left:50%;background:url(../img/layout/play-history.svg) no-repeat;background-position:50%;background-size:cover;width:clamp(50px,33.28571px + .04286 * 100vw,95px);height:clamp(50px,33.28571px + .04286 * 100vw,95px);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-history-video__thumb.is-active{border-color:#019ed6}.c-history-video__bt{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:20px;font-weight:500;text-transform:uppercase;color:#fff;background:#0a478a;-webkit-transition:.3s;transition:.3s}.c-history-video__bt span{margin-left:6px;margin-top:-3px;font-size:24px}@media (min-width:992px){.c-history-video__bt:hover{background:#009ed6}}@media (max-width:991.98px){.c-history-video{padding:60px 0}.c-history-video__bt{font-size:16px}}@media (max-width:767.98px){.c-history-video__list{grid-template-columns:repeat(3,1fr);gap:10px}.c-history-video__bt{font-size:14px;height:80px;grid-column:1/4}.c-history-video__bt span{right:33%}}.c-history{background:#0e3466;padding:75px 0 165px}.c-history__feature{position:relative;margin-bottom:55px}.c-history__card{margin:0 auto;padding:0 140px}.c-history__card__video{position:relative;width:100%;cursor:pointer;overflow:hidden}.c-history__card__video__bg-video{position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover;z-index:2}.c-history__card__video__bg-video:before{content:"";z-index:2;position:absolute;top:50%;left:50%;background:url(../img/layout/play-history.svg) no-repeat;background-position:50%;background-size:cover;width:clamp(100px,75.85714px + .0619 * 100vw,165px);height:clamp(100px,75.85714px + .0619 * 100vw,165px);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-history__card__video__iframe{position:relative;width:100%;height:0;margin:0;z-index:1;padding-bottom:56.27198%}.c-history__card__video__iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-history__card__video.open__bg-video{visibility:hidden;opacity:0;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-history__card__video.open__iframe{opacity:1;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-history__card__content{padding:42px 60px 70px;background:#0a478a}.c-history__card__time{font-size:22px;font-weight:400;color:#009ed6}.c-history__card__title{font-size:36px;font-weight:700;margin:20px 0}.c-history__card__subtitle,.c-history__card__title{font-family:Georgia,Times New Roman,Times,serif;color:#fff}.c-history__card__subtitle{font-size:20px;font-weight:400}.c-history__thumb{padding-top:50px;border-top:4px solid #0a478a}.c-history__thumb.--no-border{border-top:0}.c-history__thumb__wrapper{display:grid;grid-template-columns:1fr;gap:40px 30px;margin-left:auto;margin-right:auto}.c-history__card-thumb{overflow:hidden;display:block;width:100%;max-width:404px;margin:0 auto;-webkit-transition:.3s;transition:.3s}.c-history__card-thumb__video{position:relative;width:100%;cursor:pointer;overflow:hidden}.c-history__card-thumb__video__bg-video{width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover;z-index:2;padding-top:240px}.c-history__card-thumb__video__icon{position:absolute;top:50%;left:50%;background:url(../img/layout/play-history.svg) no-repeat;background-position:50%;background-size:cover;width:clamp(100px,75.85714px + .0619 * 100vw,165px);height:clamp(100px,75.85714px + .0619 * 100vw,165px);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:2}.c-history__card-thumb__content{height:100%;padding:25px 20px;background:#0a478a;-webkit-transition:.3s;transition:.3s}.c-history__card-thumb__time{font-size:16px;font-weight:400;color:#009ed6}.c-history__card-thumb__title{font-family:Georgia,Times New Roman,Times,serif;font-size:24px;font-weight:700;color:#fff;margin:15px 0 7px}.c-history__card-thumb__subtitle{font-size:14px;font-weight:400;color:#fff}.c-history__arrow-left,.c-history__arrow-right{position:absolute;top:clamp(52px,-114.4px + .42667 * 100vw,500px);width:40px;height:40px;background-repeat:no-repeat;background-size:contain}.c-history__arrow-left{background-image:url(../img/layout/arrow-left-white.svg);left:0}.c-history__arrow-right{background-image:url(../img/layout/arrow-right-white.svg);right:0}@media (min-width:576px){.c-history__arrow-left,.c-history__arrow-right{top:20%}}@media (min-width:768px){.c-history__thumb__wrapper{grid-template-columns:repeat(auto-fit,minmax(407px,auto))}}@media (min-width:992px){.c-history__card-thumb:hover{border-color:#122043}.c-history__card-thumb:hover .c-history__card-thumb__content{background:#122043}.c-history__arrow-left,.c-history__arrow-right{width:80px;height:80px}}@media (min-width:1200px){.c-history__thumb__wrapper{grid-template-columns:repeat(3,1fr)}.c-history__arrow-left,.c-history__arrow-right{top:28%}}@media (min-width:1440px){.c-history__arrow-left,.c-history__arrow-right{width:140px;height:140px}.c-history__arrow-left{left:-26px}.c-history__arrow-right{right:-26px}}@media (max-width:991.98px){.c-history__card{padding:0 90px}}@media (max-width:767.98px){.c-history__card{padding:0}.c-history__card__content{padding:30px}.c-history__card__time{font-size:18px}.c-history__card__title{font-size:24px}.c-history__card__subtitle{font-size:16px}}.c-intro{background:#122043 url(../img/layout/bg-intro.jpg) no-repeat 0 0;background-size:contain}.c-intro__wrap{display:grid;grid-template-columns:1fr 1.5fr;-webkit-column-gap:80px;-moz-column-gap:80px;column-gap:80px;padding:124px 0 25.83%;margin-left:120px}.c-intro__content__title{font-family:Georgia,Times New Roman,Times,serif;font-size:36px;font-weight:700;line-height:36px;color:#fff}.c-intro__content__text{font-family:Georgia,Times New Roman,Times,serif;font-size:16px;font-weight:400;color:hsla(0,0%,100%,.8);margin:30px 0}.c-intro__content .c-button{font-weight:600}.c-intro__video{position:relative;width:100%;cursor:pointer;overflow:hidden;margin-top:75px}.c-intro__video__bg-video{position:absolute;top:0;left:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover;z-index:2}.c-intro__video__bg-video:before{content:"";z-index:2;position:absolute;top:50%;left:50%;background:url(../img/layout/play-intro.svg) no-repeat;background-position:50%;background-size:cover;width:clamp(100px,75.85714px + .0619 * 100vw,165px);height:clamp(100px,75.85714px + .0619 * 100vw,165px);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.c-intro__video__iframe{position:relative;padding-bottom:56.25%;overflow:hidden;max-width:100%}.c-intro__video__iframe iframe{position:absolute;top:0;left:0;width:100%;height:100%}.c-intro__video.open__bg-video{visibility:hidden;opacity:0;-webkit-transition:all .6s .8s;transition:all .6s .8s}.c-intro__video.open__iframe{opacity:1;-webkit-transition:all .6s .8s;transition:all .6s .8s}@media (max-width:1199.98px){.c-intro{background:#122043;padding-bottom:65px}.c-intro__wrap{grid-template-columns:1fr;padding:60px 15px;margin-left:0}.c-intro__content__text{margin:20px 0 30px}.c-intro__content__title{font-size:26px;line-height:25px}.c-intro__video{margin-top:40px}}.c-menu-mobile{display:none;overflow-y:auto;position:fixed;z-index:4;background:#122043;width:100%;top:0;bottom:0;left:0;padding-top:160px;padding-bottom:80px}.c-menu-mobile .menu-principal-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:57px 0 80px}.c-menu-mobile .menu-principal-container ul li{text-align:center}.c-menu-mobile .menu-principal-container ul li+*{margin-top:20px}.c-menu-mobile .menu-principal-container a{position:relative;font-size:20px;font-weight:500;line-height:38px;text-transform:uppercase;color:#fff}.c-menu-mobile .menu-principal-container a:after{content:none;position:absolute}@media (max-width:991.98px){.c-menu-mobile.is-active{display:block}}.c-page-timeline{position:relative;background:#0e3466;padding:107px 0 95px}.c-page-timeline__header{max-width:1145px;margin:0 auto}.c-page-timeline__header p{font-family:Georgia,Times New Roman,Times,serif;font-size:22px;font-weight:400;text-align:center;line-height:30px;color:#fff}.c-page-timeline__content{margin-top:68px}.c-page-timeline__tab{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:none;margin:0 auto;overflow-x:auto}.c-page-timeline__tab__content{position:relative}.c-page-timeline__tab__toggle{display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;font-weight:400;text-transform:uppercase;color:#fff;border-top:1px solid hsla(0,0%,100%,.3);border-right:1px solid hsla(0,0%,100%,.3);background:#0e3466;padding:20px;-webkit-transition:.3s;transition:.3s}.c-page-timeline__tab__toggle.is-active{font-weight:700;color:#0e3466}.c-page-timeline__tab__toggle.--light.is-active{background:#e7e1e0}.c-page-timeline__tab__toggle.--light-2.is-active{background:#e7e5e0}.c-page-timeline__tab__toggle.--light-3.is-active{background:#e0e2e7}.c-page-timeline__tab__items{max-width:705px;margin:0 auto}.c-page-timeline__tab__item{margin:0 auto;display:none}.c-page-timeline__tab__item.is-active{display:block}.c-page-timeline__items{max-width:705px;margin:0 auto}.c-page-timeline__item{max-width:310px;color:#0e3466}.c-page-timeline__item__year{font-family:Georgia,Times New Roman,Times,serif;font-size:50px;font-weight:700;text-align:right}.c-page-timeline__item__year+*{margin-top:20px}.c-page-timeline__item__text{font-size:18px;font-weight:400}.c-page-timeline__item.--big .c-page-timeline__item__year{font-size:80px}@media (min-width:768px){.c-page-timeline__tab__toggle{font-size:18px}}@media (min-width:992px){.c-page-timeline__tab{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-left:1px solid hsla(0,0%,100%,.3);overflow-x:hidden}}@media (min-width:1200px){.c-page-timeline__tab__toggle{font-size:24px}.c-page-timeline__tab__toggle:not(:first-child){border-left:1px solid hsla(0,0%,100%,.3);margin-left:6px}}@media (max-width:767.98px){.c-page-timeline{padding:50px 0 95px}.c-page-timeline__header p{font-size:18px;line-height:25px}}.c-timeline{position:relative;padding:0 15px}.c-timeline__content{position:relative;max-width:705px;margin:0 auto;padding:70px 0;clear:both}.c-timeline__content:before{content:"";z-index:0;position:absolute;display:block;width:2px;height:100%;background:#009ed6;top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);pointer-events:none}.c-timeline__item{position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:60px;text-align:right}.c-timeline__item:before{content:"";position:absolute;display:block;width:30px;height:6px;background:#009ed6;top:5px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.c-timeline__item+.c-timeline__item{margin-top:70px}.c-timeline__item:first-child:before{top:0}.c-timeline__item__subtitle{color:#fff;font-family:Georgia;font-size:24px;font-weight:400}.c-timeline__item__year{position:relative;margin-top:-8px;font-family:Georgia,Times New Roman,Times,serif;font-size:35px;font-weight:700;text-align:right;line-height:1em;color:#009ed6}.c-timeline__item__year+*{margin-top:20px}.c-timeline__item__text{font-size:14px;font-weight:400;line-height:1.5;color:#fff}.c-timeline__item__text+*,.c-timeline__item__text+.c-timeline__item__text{margin-top:20px}.c-timeline__item.--big .c-timeline__item__year{font-size:80px}.c-timeline__item.--content-right,.c-timeline__item.--content-right .c-timeline__item__year{text-align:left}.c-timeline__item.--content-right div:only-child{grid-column:2}.c-timeline__item.--smooth:before{height:2px}.c-timeline__anchor{z-index:2;position:absolute;top:0;right:0;-webkit-transform:translateX(15px);-ms-transform:translateX(15px);transform:translateX(15px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:70px;padding:5px;font-family:Georgia,Times New Roman,Times,serif;text-align:center;font-size:11px;font-weight:700;color:#fff;background:rgba(0,158,214,.9)}.c-timeline__anchor svg{width:15px;height:15px}.c-timeline__anchor.bottom-link{top:30px}.c-timeline__anchor.is-show{display:-webkit-box;display:-ms-flexbox;display:flex}.c-timeline__anchor.is-hide{display:none}.c-timeline.--diff-top{padding:60px 15px 0}.c-timeline.--diff-top .c-timeline__content{padding-top:0}.c-timeline.--light-2 .c-timeline__content:before,.c-timeline.--light-2 .c-timeline__item:before,.c-timeline.--light-3 .c-timeline__content:before,.c-timeline.--light-3 .c-timeline__item:before,.c-timeline.--light .c-timeline__content:before,.c-timeline.--light .c-timeline__item:before{background-color:#0e3466}.c-timeline.--light-2 .c-timeline__item__text,.c-timeline.--light-2 .c-timeline__item__year,.c-timeline.--light-3 .c-timeline__item__text,.c-timeline.--light-3 .c-timeline__item__year,.c-timeline.--light .c-timeline__item__text,.c-timeline.--light .c-timeline__item__year{color:#0e3466}.c-timeline.--light{background:#e7e1e0}.c-timeline.--light-2{background:#e7e5e0}.c-timeline.--light-3{background:#e0e2e7}@media (min-width:992px){.c-timeline__item{gap:80px}.c-timeline__item:before{width:40px;height:10px}.c-timeline__item__year{font-size:50px}.c-timeline__item__subtitle{font-size:35px}.c-timeline__item__text{font-size:18px}.c-timeline__item.--smooth:before{height:4px}.c-timeline__anchor{width:90px;padding:10px;top:70px;font-size:14px;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.c-timeline__anchor svg{width:auto;height:auto}.c-timeline__anchor.bottom-link{top:70px}.c-timeline.--diff-top{padding:80px 15px 0}}.l-character{font-family:Georgia,Times New Roman,Times,serif}.l-character__content{background:#f2f2f2;padding:123px 0 130px}.l-character__content__info{text-align:center}.l-character__content__wrap{position:relative;display:grid;grid-template-columns:1fr 2fr;-webkit-column-gap:65px;-moz-column-gap:65px;column-gap:65px;padding:0 98px}.l-character__content__title{font-size:36px;font-weight:700;color:#000;margin:35px 0 8px}.l-character__content__subtitle{font-size:20px;font-weight:400;color:rgba(0,0,0,.8)}.l-character__content__text{font-size:16px;font-weight:400;color:#000}.l-character__content__text p+p{margin-top:25px}.l-character__list{padding:120px 0;background:#1d3054}.l-character__list__wrap{width:295px;margin:0 auto}.l-character__arrow-left,.l-character__arrow-right{position:absolute;top:clamp(180px,135.42857px + .11429 * 100vw,300px);width:40px;height:40px;background-repeat:no-repeat;background-size:contain}.l-character__arrow-left{background-image:url(../img/layout/arrow-left.svg);left:0}.l-character__arrow-right{background-image:url(../img/layout/arrow-right.svg);right:0}@media (min-width:992px){.l-character__list__wrap{width:auto}.l-character__arrow-left,.l-character__arrow-right{width:80px;height:80px}}@media (min-width:1200px){.l-character__arrow-left,.l-character__arrow-right{top:28%}}@media (min-width:1440px){.l-character__arrow-left,.l-character__arrow-right{width:140px;height:140px}.l-character__arrow-left{left:-37px}.l-character__arrow-right{right:-37px}}@media (max-width:991.98px){.l-character__content{padding:123px 0}.l-character__content__wrap{grid-template-columns:1fr}.l-character__content__text{margin-top:30px}}@media (max-width:575.98px){.l-character__content{padding:70px 0 130px}.l-character__content__wrap{padding:0 50px}.l-character__content__title{font-size:28px}}.l-characters{font-family:Georgia,Times New Roman,Times,serif;background:#1d3054;padding:78px 0 135px}.l-characters__header p{font-size:22px;font-weight:400;text-align:center;line-height:30px;color:#fff}.l-characters__list{width:295px;margin:55px auto 0}.l-characters__list__no-posts{font-family:Georgia,Times New Roman,Times,serif;font-size:18px;font-weight:400;line-height:1.2;color:#fff;text-align:center}@media (min-width:992px){.l-characters__list{width:auto}}@media (max-width:767.98px){.l-characters{padding:70px 0 135px}.l-characters__header p{font-size:18px}}.l-timeline{padding:105px 0 135px;background:#0e3466}.l-timeline .c-button{display:table;margin:30px auto 0}