krl-alfred 1.60.0 → 1.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ var jsx_runtime_1 = require("react/jsx-runtime");
18
+ var react_1 = require("react");
19
+ var Banner_styled_1 = require("./Banner.styled");
20
+ var react_slick_1 = __importDefault(require("react-slick"));
21
+ var Button_1 = __importDefault(require("../Button"));
22
+ var Icon_1 = __importDefault(require("../Icon/Icon"));
23
+ var classnames_1 = __importDefault(require("classnames"));
24
+ var Banner = function (props) {
25
+ var data = props.data;
26
+ var _a = (0, react_1.useState)(0), activeSlide = _a[0], setActiveSlide = _a[1];
27
+ var sliderRef = (0, react_1.useRef)(null);
28
+ var settings = {
29
+ dots: false,
30
+ infinite: false,
31
+ speed: 500,
32
+ slidesToShow: 1,
33
+ slidesToScroll: 1,
34
+ afterChange: function (index) { return setActiveSlide(index); }
35
+ };
36
+ var next = function () { return sliderRef.slickNext(); };
37
+ var previous = function () { return sliderRef.slickPrev(); };
38
+ return ((0, jsx_runtime_1.jsxs)(Banner_styled_1.BannerStyled, { children: [(0, jsx_runtime_1.jsx)("div", { className: "inner", children: (0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(react_slick_1.default, __assign({}, settings, { ref: function (slider) {
39
+ sliderRef = slider;
40
+ }, children: data === null || data === void 0 ? void 0 : data.map(function (item, key) {
41
+ return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsxs)("div", { className: "item", children: [(0, jsx_runtime_1.jsxs)("div", { className: "text", children: [(item === null || item === void 0 ? void 0 : item.title) && (0, jsx_runtime_1.jsx)("strong", { className: "title headline-extra-bold-32-39", children: item === null || item === void 0 ? void 0 : item.title }), (item === null || item === void 0 ? void 0 : item.description) && (0, jsx_runtime_1.jsx)("p", { className: "description title-regular-16-19", children: item === null || item === void 0 ? void 0 : item.description }), (item === null || item === void 0 ? void 0 : item.buttonText) && (0, jsx_runtime_1.jsx)(Button_1.default, { size: "big", variant: "primary", onClick: item === null || item === void 0 ? void 0 : item.onClick, children: item === null || item === void 0 ? void 0 : item.buttonText })] }), (0, jsx_runtime_1.jsx)("div", { className: "img", children: item === null || item === void 0 ? void 0 : item.img }), (0, jsx_runtime_1.jsxs)("div", { className: "textMobile title-medium-16-19", onClick: item === null || item === void 0 ? void 0 : item.onClick, children: [(0, jsx_runtime_1.jsx)("div", { className: "titleSm", dangerouslySetInnerHTML: { __html: item === null || item === void 0 ? void 0 : item.shortDesc } }), (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "ArrowRightBig" })] })] }) }, key));
42
+ }) })) }) }), props.showThumbnails && ((0, jsx_runtime_1.jsxs)("div", { className: "thumbnailSlider", children: [(0, jsx_runtime_1.jsx)("button", { className: "swiperNavigation swiperPrev", onClick: previous, children: (0, jsx_runtime_1.jsx)(Icon_1.default, { width: "24px", height: "24px", name: "ArrowLeft" }) }), (0, jsx_runtime_1.jsx)("div", { className: "thumbnailInner", children: data.map(function (item, key) {
43
+ var _a;
44
+ return ((0, jsx_runtime_1.jsx)("div", { onClick: function () { return sliderRef.slickGoTo(key); }, className: (0, classnames_1.default)("thumbnailItem", (_a = {}, _a["active"] = key === activeSlide, _a)), children: item === null || item === void 0 ? void 0 : item.thumbnail }, key));
45
+ }) }), (0, jsx_runtime_1.jsx)("button", { className: "swiperNavigation swiperNext", onClick: next, children: (0, jsx_runtime_1.jsx)(Icon_1.default, { width: "24px", height: "24px", name: "ArrowRight" }) })] }))] }));
46
+ };
47
+ Banner.defaultProps = {
48
+ showThumbnails: true,
49
+ allowTouchMove: true,
50
+ };
51
+ exports.default = Banner;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.BannerStyled = void 0;
11
+ var styled_components_1 = __importDefault(require("styled-components"));
12
+ var devices_1 = require("../../constants/devices");
13
+ exports.BannerStyled = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n max-width: 1050px;\n margin: 0 auto;\n\n .swiper-wrapper {\n align-items: center;\n }\n\n .inner {\n border-radius: 0.5rem;\n box-shadow: 0 6px 30px 0 #EAE9F0;\n position: relative;\n overflow: hidden; \n }\n\n .item {\n padding: 0 5rem;\n display: grid;\n grid-template-columns: 1fr auto;\n align-items: center;\n height: 420px;\n @media only screen and ", " {\n padding: 0;\n display: block;\n height: auto;\n }\n\n .text {\n @media only screen and ", " {\n display: none;\n }\n\n .title {\n margin-bottom: 1.5rem;\n display: block;\n }\n\n .description {\n margin-top: 0;\n margin-bottom: 1.5rem;\n display: block;\n }\n }\n\n .textMobile {\n display: none;\n background-color: var(--primary-shades-dark);\n padding: 1rem;\n color: white;\n align-items: center;\n justify-content: space-between;\n\n svg {\n path {\n stroke: white;\n }\n }\n\n b {\n display: block;\n }\n\n @media only screen and ", " {\n display: flex;\n }\n }\n\n .img {\n text-align: end;\n\n img {\n max-height: 100%;\n max-width: 100%;\n @media only screen and ", " {\n height: auto;\n }\n }\n\n @media only screen and ", " {\n padding: 2.5rem 2.5rem 1rem;\n text-align: center;\n }\n }\n }\n\n .thumbnailSlider {\n margin-top: 3rem;\n display: flex;\n align-items: center;\n justify-content: center;\n @media only screen and ", " {\n display: none;\n }\n\n .thumbnailInner {\n justify-content: center;\n display: flex;\n align-items: center;\n margin: 0 2.5rem;\n\n .thumbnailItem {\n border: 1px solid var(--dark-opacity-10);\n height: 50px;\n border-radius: 0.5rem;\n position: relative;\n overflow: hidden;\n margin: 0 4px;\n box-shadow: 0 6px 30px 0 var(--dark-opacity-5);\n width: 70px;\n padding: 8px;\n box-sizing: border-box;\n cursor: pointer;\n transition: all .1s ease;\n\n &:is(.active) {\n border-color: var(--primary);\n }\n\n > * {\n display: block;\n width: 100%;\n height: 100%;\n object-fit: contain;\n object-position: center center;\n }\n }\n }\n\n .swiperNavigation {\n box-sizing: border-box;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 8px;\n font-family: var(--font-family-sans-serif);\n cursor: pointer;\n transition: all .2s;\n width: 48px;\n height: 48px;\n box-shadow: 0 0 16px 0 white;\n border: 0;\n background-color: white;\n\n svg {\n path {\n stroke: var(--primary);\n }\n }\n\n &:hover {\n box-shadow: 0 0 16px 0 var(--dark-opacity-10);\n }\n }\n }\n"], ["\n max-width: 1050px;\n margin: 0 auto;\n\n .swiper-wrapper {\n align-items: center;\n }\n\n .inner {\n border-radius: 0.5rem;\n box-shadow: 0 6px 30px 0 #EAE9F0;\n position: relative;\n overflow: hidden; \n }\n\n .item {\n padding: 0 5rem;\n display: grid;\n grid-template-columns: 1fr auto;\n align-items: center;\n height: 420px;\n @media only screen and ", " {\n padding: 0;\n display: block;\n height: auto;\n }\n\n .text {\n @media only screen and ", " {\n display: none;\n }\n\n .title {\n margin-bottom: 1.5rem;\n display: block;\n }\n\n .description {\n margin-top: 0;\n margin-bottom: 1.5rem;\n display: block;\n }\n }\n\n .textMobile {\n display: none;\n background-color: var(--primary-shades-dark);\n padding: 1rem;\n color: white;\n align-items: center;\n justify-content: space-between;\n\n svg {\n path {\n stroke: white;\n }\n }\n\n b {\n display: block;\n }\n\n @media only screen and ", " {\n display: flex;\n }\n }\n\n .img {\n text-align: end;\n\n img {\n max-height: 100%;\n max-width: 100%;\n @media only screen and ", " {\n height: auto;\n }\n }\n\n @media only screen and ", " {\n padding: 2.5rem 2.5rem 1rem;\n text-align: center;\n }\n }\n }\n\n .thumbnailSlider {\n margin-top: 3rem;\n display: flex;\n align-items: center;\n justify-content: center;\n @media only screen and ", " {\n display: none;\n }\n\n .thumbnailInner {\n justify-content: center;\n display: flex;\n align-items: center;\n margin: 0 2.5rem;\n\n .thumbnailItem {\n border: 1px solid var(--dark-opacity-10);\n height: 50px;\n border-radius: 0.5rem;\n position: relative;\n overflow: hidden;\n margin: 0 4px;\n box-shadow: 0 6px 30px 0 var(--dark-opacity-5);\n width: 70px;\n padding: 8px;\n box-sizing: border-box;\n cursor: pointer;\n transition: all .1s ease;\n\n &:is(.active) {\n border-color: var(--primary);\n }\n\n > * {\n display: block;\n width: 100%;\n height: 100%;\n object-fit: contain;\n object-position: center center;\n }\n }\n }\n\n .swiperNavigation {\n box-sizing: border-box;\n display: flex;\n justify-content: center;\n align-items: center;\n border-radius: 8px;\n font-family: var(--font-family-sans-serif);\n cursor: pointer;\n transition: all .2s;\n width: 48px;\n height: 48px;\n box-shadow: 0 0 16px 0 white;\n border: 0;\n background-color: white;\n\n svg {\n path {\n stroke: var(--primary);\n }\n }\n\n &:hover {\n box-shadow: 0 0 16px 0 var(--dark-opacity-10);\n }\n }\n }\n"])), devices_1.devices.lg, devices_1.devices.lg, devices_1.devices.lg, devices_1.devices.lg, devices_1.devices.lg, devices_1.devices.lg);
14
+ var templateObject_1;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.default = void 0;
7
+ var Banner_1 = require("./Banner");
8
+ Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(Banner_1).default; } });
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var BannerDefault = {};
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Default = void 0;
7
+ var Banner_1 = __importDefault(require("../Banner"));
8
+ var Banners_1 = __importDefault(require("./../../../jsons/Banners"));
9
+ exports.default = {
10
+ title: 'Components/Banner',
11
+ component: Banner_1.default,
12
+ tags: ['autodocs'],
13
+ argTypes: {}
14
+ };
15
+ exports.Default = {
16
+ args: {
17
+ data: Banners_1.default
18
+ },
19
+ };
@@ -11,7 +11,7 @@ var Footer = function (props) {
11
11
  var year = new Date().getFullYear();
12
12
  return ((0, jsx_runtime_1.jsxs)(Footer_styled_1.FooterStyled, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "footerTop", children: [(0, jsx_runtime_1.jsx)("div", { className: "logo", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "PoweredByQnbLogo", width: "203px", height: "70px" }) }), (0, jsx_runtime_1.jsx)("div", { className: "menus", children: data.map(function (item, key) {
13
13
  return ((0, jsx_runtime_1.jsx)("div", { className: "item", children: (0, jsx_runtime_1.jsx)(item.component, { children: (0, jsx_runtime_1.jsx)("span", { children: item.title }) }) }, key));
14
- }) })] }), (0, jsx_runtime_1.jsxs)("div", { className: "footerBottom", children: [(0, jsx_runtime_1.jsxs)("div", { className: "copyright caption-semi-bold-12-15", children: ["\u00A9 ", year, " kiralars\u0131n.com Her Hakk\u0131 Sakl\u0131d\u0131r.", (0, jsx_runtime_1.jsxs)("div", { className: "cardLogos", children: [(0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Mastercard", width: "18px", height: "11px" }), (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Visa", width: "26px", height: "9px" })] })] }), (0, jsx_runtime_1.jsxs)("div", { className: "followUs", children: [(0, jsx_runtime_1.jsx)("div", { className: "title body-bold-13-16", children: "Bizi Takip Edin - " }), (0, jsx_runtime_1.jsxs)("div", { className: "socials", children: [(0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.facebook.com/kiralarsin", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "FacebookStroke", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.instagram.com/kiralarsin/", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "InstagramNegative", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.youtube.com/channel/UC8cjInv9rJvZxfDhChCvRMg", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Youtube", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://twitter.com/Kiralarsin", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "TwitterStroke", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.linkedin.com/company/kiralars%C4%B1n/", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "LinkedinStroke", width: "16px", height: "16px" }) })] })] })] })] }));
14
+ }) })] }), (0, jsx_runtime_1.jsxs)("div", { className: "footerBottom", children: [(0, jsx_runtime_1.jsxs)("div", { className: "copyright caption-semi-bold-12-15", children: ["\u00A9 ", year, " kiralarsin.com Her Hakk\u0131 Sakl\u0131d\u0131r.", (0, jsx_runtime_1.jsxs)("div", { className: "cardLogos", children: [(0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Mastercard", width: "18px", height: "11px" }), (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Visa", width: "26px", height: "9px" })] })] }), (0, jsx_runtime_1.jsxs)("div", { className: "followUs", children: [(0, jsx_runtime_1.jsx)("div", { className: "title body-bold-13-16", children: "Bizi Takip Edin - " }), (0, jsx_runtime_1.jsxs)("div", { className: "socials", children: [(0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.facebook.com/kiralarsin", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "FacebookStroke", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.instagram.com/kiralarsin/", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "InstagramNegative", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.youtube.com/channel/UC8cjInv9rJvZxfDhChCvRMg", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "Youtube", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://twitter.com/Kiralarsin", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "TwitterStroke", width: "16px", height: "16px" }) }), (0, jsx_runtime_1.jsx)("a", { target: "_blank", rel: "noopener noreferrer", href: "https://www.linkedin.com/company/kiralars%C4%B1n/", children: (0, jsx_runtime_1.jsx)(Icon_1.default, { name: "LinkedinStroke", width: "16px", height: "16px" }) })] })] })] })] }));
15
15
  };
16
16
  Footer.defaultProps = {};
17
17
  exports.default = Footer;
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.Footer = exports.Accordion = exports.Divider = exports.SearchBox = exports.ValueProposition = exports.Textarea = exports.ActionButton = exports.RadioButton = exports.Icon = exports.Agreement = exports.Alert = exports.Stepper = exports.ProductCard = exports.OtpInput = exports.Modal = exports.Input = exports.CircleProgress = exports.Checkbox = exports.CategoryMenu = exports.Breadcrumbs = exports.Spinner = exports.Button = void 0;
6
+ exports.Banner = exports.Footer = exports.Accordion = exports.Divider = exports.SearchBox = exports.ValueProposition = exports.Textarea = exports.ActionButton = exports.RadioButton = exports.Icon = exports.Agreement = exports.Alert = exports.Stepper = exports.ProductCard = exports.OtpInput = exports.Modal = exports.Input = exports.CircleProgress = exports.Checkbox = exports.CategoryMenu = exports.Breadcrumbs = exports.Spinner = exports.Button = void 0;
7
7
  var Button_1 = __importDefault(require("./components/Button"));
8
8
  exports.Button = Button_1.default;
9
9
  var Spinner_1 = __importDefault(require("./components/Spinner"));
@@ -48,3 +48,5 @@ var Accordion_1 = __importDefault(require("./components/Accordion"));
48
48
  exports.Accordion = Accordion_1.default;
49
49
  var Footer_1 = __importDefault(require("./components/Footer"));
50
50
  exports.Footer = Footer_1.default;
51
+ var Banner_1 = __importDefault(require("./components/Banner"));
52
+ exports.Banner = Banner_1.default;
@@ -1 +1 @@
1
- :root{--primary: #9763F6;--primary-press: #462D74;--primary-hover: #7149BB;--primary-shades-dark: #9C6DEF;--primary-shades-soft: #CBB1FB;--primary-opacity-5: #FAF7FF;--primary-opacity-10: #F5EFFE;--primary-opacity-50: #CBB1FB;--primary-opacity-75: #B18AF8;--dark: #0A103D;--dark-opacity-3: #F9F8F9;--dark-opacity-5: #F3F3F5;--dark-opacity-10: #E7E7EC;--dark-opacity-25: #C2C3CE;--dark-opacity-50: #84879E;--dark-opacity-75: #474D6D;--grey-10: #E8E8EB;--grey-20: #D1D2D6;--grey-30: #BABBC2;--grey-40: #A3A5AD;--grey-50: #8C8E99;--green: #0FDF7B;--red: #FF1F1F;--yellow: #FFCE1F;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, Arial, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif}.display-black-96-116{font-weight:900;font-size:96px;line-height:116px}.display-black-72-87{font-weight:900;font-size:72px;line-height:87px}.display-black-64-77{font-weight:900;font-size:64px;line-height:77px}.display-black-56-68{font-weight:900;font-size:56px;line-height:68px}.display-extra-bold-96-116{font-weight:800;font-size:96px;line-height:116px}.display-extra-bold-72-87{font-weight:800;font-size:72px;line-height:87px}.display-extra-bold-64-77{font-weight:800;font-size:64px;line-height:77px}.display-extra-bold-56-68{font-weight:800;font-size:56px;line-height:68px}.display-bold-96-116{font-weight:700;font-size:96px;line-height:116px}.display-bold-72-87{font-weight:700;font-size:72px;line-height:87px}.display-bold-64-77{font-weight:700;font-size:64px;line-height:77px}.display-bold-56-68{font-weight:700;font-size:56px;line-height:68px}.display-semi-bold-96-116{font-weight:600;font-size:96px;line-height:116px}.display-semi-bold-72-87{font-weight:600;font-size:72px;line-height:87px}.display-semi-bold-64-77{font-weight:600;font-size:64px;line-height:77px}.display-semi-bold-56-68{font-weight:600;font-size:56px;line-height:68px}.display-medium-96-116{font-weight:500;font-size:96px;line-height:116px}.display-medium-72-87{font-weight:500;font-size:72px;line-height:87px}.display-medium-64-77{font-weight:500;font-size:64px;line-height:77px}.display-medium-56-68{font-weight:500;font-size:56px;line-height:68px}.display-regular-96-116{font-weight:400;font-size:96px;line-height:116px}.display-regular-72-87{font-weight:400;font-size:72px;line-height:87px}.display-regular-64-77{font-weight:400;font-size:64px;line-height:77px}.display-regular-56-68{font-weight:400;font-size:56px;line-height:68px}.display-light-96-116{font-weight:300;font-size:96px;line-height:116px}.display-light-72-87{font-weight:300;font-size:72px;line-height:87px}.display-light-64-77{font-weight:300;font-size:64px;line-height:77px}.display-light-56-68{font-weight:300;font-size:56px;line-height:68px}.headline-black-48-58{font-weight:900;font-size:48px;line-height:58px}.headline-black-40-48{font-weight:900;font-size:40px;line-height:48px}.headline-black-32-39{font-weight:900;font-size:32px;line-height:39px}.headline-black-24-29{font-weight:900;font-size:24px;line-height:29px}.headline-black-20-24{font-weight:900;font-size:20px;line-height:24px}.headline-black-18-22{font-weight:900;font-size:18px;line-height:22px}.headline-extra-bold-48-58{font-weight:800;font-size:48px;line-height:58px}.headline-extra-bold-40-48{font-weight:800;font-size:40px;line-height:48px}.headline-extra-bold-32-39{font-weight:800;font-size:32px;line-height:39px}.headline-extra-bold-24-29{font-weight:800;font-size:24px;line-height:29px}.headline-extra-bold-20-24{font-weight:800;font-size:20px;line-height:24px}.headline-extra-bold-18-22{font-weight:800;font-size:18px;line-height:22px}.headline-bold-48-58{font-weight:700;font-size:48px;line-height:58px}.headline-bold-40-48{font-weight:700;font-size:40px;line-height:48px}.headline-bold-32-39{font-weight:700;font-size:32px;line-height:39px}.headline-bold-24-29{font-weight:700;font-size:24px;line-height:29px}.headline-bold-20-24{font-weight:700;font-size:20px;line-height:24px}.headline-bold-18-22{font-weight:700;font-size:18px;line-height:22px}.headline-semi-bold-48-58{font-weight:600;font-size:48px;line-height:58px}.headline-semi-bold-40-48{font-weight:600;font-size:40px;line-height:48px}.headline-semi-bold-32-39{font-weight:600;font-size:32px;line-height:39px}.headline-semi-bold-24-29{font-weight:600;font-size:24px;line-height:29px}.headline-semi-bold-20-24{font-weight:600;font-size:20px;line-height:24px}.headline-semi-bold-18-22{font-weight:600;font-size:18px;line-height:22px}.headline-medium-48-58{font-weight:500;font-size:48px;line-height:58px}.headline-medium-40-48{font-weight:500;font-size:40px;line-height:48px}.headline-medium-32-39{font-weight:500;font-size:32px;line-height:39px}.headline-medium-24-29{font-weight:500;font-size:24px;line-height:29px}.headline-medium-20-24{font-weight:500;font-size:20px;line-height:24px}.headline-medium-18-22{font-weight:500;font-size:18px;line-height:22px}.headline-regular-48-58{font-weight:400;font-size:48px;line-height:58px}.headline-regular-40-48{font-weight:400;font-size:40px;line-height:48px}.headline-regular-32-39{font-weight:400;font-size:32px;line-height:39px}.headline-regular-24-29{font-weight:400;font-size:24px;line-height:29px}.headline-regular-20-24{font-weight:400;font-size:20px;line-height:24px}.headline-regular-18-22{font-weight:400;font-size:18px;line-height:22px}.headline-light-48-58{font-weight:300;font-size:48px;line-height:58px}.headline-light-40-48{font-weight:300;font-size:40px;line-height:48px}.headline-light-32-39{font-weight:300;font-size:32px;line-height:39px}.headline-light-24-29{font-weight:300;font-size:24px;line-height:29px}.headline-light-20-24{font-weight:300;font-size:20px;line-height:24px}.headline-light-18-22{font-weight:300;font-size:18px;line-height:22px}.title-black-16-19{font-weight:900;font-size:16px;line-height:19px}.title-extra-bold-16-19{font-weight:800;font-size:16px;line-height:19px}.title-bold-16-19{font-weight:700;font-size:16px;line-height:19px}.title-semi-bold-16-19{font-weight:600;font-size:16px;line-height:19px}.title-medium-16-19{font-weight:500;font-size:16px;line-height:19px}.title-regular-16-19{font-weight:400;font-size:16px;line-height:19px}.title-light-16-19{font-weight:300;font-size:16px;line-height:19px}.body-black-14-17{font-weight:900;font-size:14px;line-height:17px}.body-black-13-16{font-weight:900;font-size:13px;line-height:16px}.body-extra-bold-14-17{font-weight:800;font-size:14px;line-height:17px}.body-extra-bold-13-16{font-weight:800;font-size:13px;line-height:16px}.body-bold-14-17{font-weight:700;font-size:14px;line-height:17px}.body-bold-13-16{font-weight:700;font-size:13px;line-height:16px}.body-semi-bold-14-17{font-weight:600;font-size:14px;line-height:17px}.body-semi-bold-13-16{font-weight:600;font-size:13px;line-height:16px}.body-medium-14-17{font-weight:500;font-size:14px;line-height:17px}.body-medium-13-16{font-weight:500;font-size:13px;line-height:16px}.body-regular-14-17{font-weight:400;font-size:14px;line-height:17px}.body-regular-13-16{font-weight:400;font-size:13px;line-height:16px}.body-light-14-17{font-weight:300;font-size:14px;line-height:17px}.body-light-13-16{font-weight:300;font-size:13px;line-height:16px}.caption-black-12-15{font-weight:900;font-size:12px;line-height:15px}.caption-black-11-13{font-weight:900;font-size:11px;line-height:13px}.caption-black-10-12{font-weight:900;font-size:10px;line-height:12px}.caption-extra-bold-12-15{font-weight:800;font-size:12px;line-height:15px}.caption-extra-bold-11-13{font-weight:800;font-size:11px;line-height:13px}.caption-extra-bold-10-12{font-weight:800;font-size:10px;line-height:12px}.caption-bold-12-15{font-weight:700;font-size:12px;line-height:15px}.caption-bold-11-13{font-weight:700;font-size:11px;line-height:13px}.caption-bold-10-12{font-weight:700;font-size:10px;line-height:12px}.caption-semi-bold-12-15{font-weight:600;font-size:12px;line-height:15px}.caption-semi-bold-11-13{font-weight:600;font-size:11px;line-height:13px}.caption-semi-bold-10-12{font-weight:600;font-size:10px;line-height:12px}.caption-medium-12-15{font-weight:500;font-size:12px;line-height:15px}.caption-medium-11-13{font-weight:500;font-size:11px;line-height:13px}.caption-medium-10-12{font-weight:500;font-size:10px;line-height:12px}.caption-regular-12-15{font-weight:400;font-size:12px;line-height:15px}.caption-regular-11-13{font-weight:400;font-size:11px;line-height:13px}.caption-regular-10-12{font-weight:400;font-size:10px;line-height:12px}.caption-light-12-15{font-weight:300;font-size:12px;line-height:15px}.caption-light-11-13{font-weight:300;font-size:11px;line-height:13px}.caption-light-10-12{font-weight:300;font-size:10px;line-height:12px}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}body{font-family:var(--font-family-sans-serif);color:var(--dark)}/*# sourceMappingURL=style.min.css.map */
1
+ :root{--primary: #9763F6;--primary-press: #462D74;--primary-hover: #7149BB;--primary-shades-dark: #9C6DEF;--primary-shades-soft: #CBB1FB;--primary-opacity-5: #FAF7FF;--primary-opacity-10: #F5EFFE;--primary-opacity-50: #CBB1FB;--primary-opacity-75: #B18AF8;--dark: #0A103D;--dark-opacity-3: #F9F8F9;--dark-opacity-5: #F3F3F5;--dark-opacity-10: #E7E7EC;--dark-opacity-25: #C2C3CE;--dark-opacity-50: #84879E;--dark-opacity-75: #474D6D;--grey-10: #E8E8EB;--grey-20: #D1D2D6;--grey-30: #BABBC2;--grey-40: #A3A5AD;--grey-50: #8C8E99;--green: #0FDF7B;--red: #FF1F1F;--yellow: #FFCE1F;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1400px;--font-family-sans-serif: "Inter", -apple-system, BlinkMacSystemFont, Arial, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif}.display-black-96-116{font-weight:900;font-size:96px;line-height:116px}.display-black-72-87{font-weight:900;font-size:72px;line-height:87px}.display-black-64-77{font-weight:900;font-size:64px;line-height:77px}.display-black-56-68{font-weight:900;font-size:56px;line-height:68px}.display-extra-bold-96-116{font-weight:800;font-size:96px;line-height:116px}.display-extra-bold-72-87{font-weight:800;font-size:72px;line-height:87px}.display-extra-bold-64-77{font-weight:800;font-size:64px;line-height:77px}.display-extra-bold-56-68{font-weight:800;font-size:56px;line-height:68px}.display-bold-96-116{font-weight:700;font-size:96px;line-height:116px}.display-bold-72-87{font-weight:700;font-size:72px;line-height:87px}.display-bold-64-77{font-weight:700;font-size:64px;line-height:77px}.display-bold-56-68{font-weight:700;font-size:56px;line-height:68px}.display-semi-bold-96-116{font-weight:600;font-size:96px;line-height:116px}.display-semi-bold-72-87{font-weight:600;font-size:72px;line-height:87px}.display-semi-bold-64-77{font-weight:600;font-size:64px;line-height:77px}.display-semi-bold-56-68{font-weight:600;font-size:56px;line-height:68px}.display-medium-96-116{font-weight:500;font-size:96px;line-height:116px}.display-medium-72-87{font-weight:500;font-size:72px;line-height:87px}.display-medium-64-77{font-weight:500;font-size:64px;line-height:77px}.display-medium-56-68{font-weight:500;font-size:56px;line-height:68px}.display-regular-96-116{font-weight:400;font-size:96px;line-height:116px}.display-regular-72-87{font-weight:400;font-size:72px;line-height:87px}.display-regular-64-77{font-weight:400;font-size:64px;line-height:77px}.display-regular-56-68{font-weight:400;font-size:56px;line-height:68px}.display-light-96-116{font-weight:300;font-size:96px;line-height:116px}.display-light-72-87{font-weight:300;font-size:72px;line-height:87px}.display-light-64-77{font-weight:300;font-size:64px;line-height:77px}.display-light-56-68{font-weight:300;font-size:56px;line-height:68px}.headline-black-48-58{font-weight:900;font-size:48px;line-height:58px}.headline-black-40-48{font-weight:900;font-size:40px;line-height:48px}.headline-black-32-39{font-weight:900;font-size:32px;line-height:39px}.headline-black-24-29{font-weight:900;font-size:24px;line-height:29px}.headline-black-20-24{font-weight:900;font-size:20px;line-height:24px}.headline-black-18-22{font-weight:900;font-size:18px;line-height:22px}.headline-extra-bold-48-58{font-weight:800;font-size:48px;line-height:58px}.headline-extra-bold-40-48{font-weight:800;font-size:40px;line-height:48px}.headline-extra-bold-32-39{font-weight:800;font-size:32px;line-height:39px}.headline-extra-bold-24-29{font-weight:800;font-size:24px;line-height:29px}.headline-extra-bold-20-24{font-weight:800;font-size:20px;line-height:24px}.headline-extra-bold-18-22{font-weight:800;font-size:18px;line-height:22px}.headline-bold-48-58{font-weight:700;font-size:48px;line-height:58px}.headline-bold-40-48{font-weight:700;font-size:40px;line-height:48px}.headline-bold-32-39{font-weight:700;font-size:32px;line-height:39px}.headline-bold-24-29{font-weight:700;font-size:24px;line-height:29px}.headline-bold-20-24{font-weight:700;font-size:20px;line-height:24px}.headline-bold-18-22{font-weight:700;font-size:18px;line-height:22px}.headline-semi-bold-48-58{font-weight:600;font-size:48px;line-height:58px}.headline-semi-bold-40-48{font-weight:600;font-size:40px;line-height:48px}.headline-semi-bold-32-39{font-weight:600;font-size:32px;line-height:39px}.headline-semi-bold-24-29{font-weight:600;font-size:24px;line-height:29px}.headline-semi-bold-20-24{font-weight:600;font-size:20px;line-height:24px}.headline-semi-bold-18-22{font-weight:600;font-size:18px;line-height:22px}.headline-medium-48-58{font-weight:500;font-size:48px;line-height:58px}.headline-medium-40-48{font-weight:500;font-size:40px;line-height:48px}.headline-medium-32-39{font-weight:500;font-size:32px;line-height:39px}.headline-medium-24-29{font-weight:500;font-size:24px;line-height:29px}.headline-medium-20-24{font-weight:500;font-size:20px;line-height:24px}.headline-medium-18-22{font-weight:500;font-size:18px;line-height:22px}.headline-regular-48-58{font-weight:400;font-size:48px;line-height:58px}.headline-regular-40-48{font-weight:400;font-size:40px;line-height:48px}.headline-regular-32-39{font-weight:400;font-size:32px;line-height:39px}.headline-regular-24-29{font-weight:400;font-size:24px;line-height:29px}.headline-regular-20-24{font-weight:400;font-size:20px;line-height:24px}.headline-regular-18-22{font-weight:400;font-size:18px;line-height:22px}.headline-light-48-58{font-weight:300;font-size:48px;line-height:58px}.headline-light-40-48{font-weight:300;font-size:40px;line-height:48px}.headline-light-32-39{font-weight:300;font-size:32px;line-height:39px}.headline-light-24-29{font-weight:300;font-size:24px;line-height:29px}.headline-light-20-24{font-weight:300;font-size:20px;line-height:24px}.headline-light-18-22{font-weight:300;font-size:18px;line-height:22px}.title-black-16-19{font-weight:900;font-size:16px;line-height:19px}.title-extra-bold-16-19{font-weight:800;font-size:16px;line-height:19px}.title-bold-16-19{font-weight:700;font-size:16px;line-height:19px}.title-semi-bold-16-19{font-weight:600;font-size:16px;line-height:19px}.title-medium-16-19{font-weight:500;font-size:16px;line-height:19px}.title-regular-16-19{font-weight:400;font-size:16px;line-height:19px}.title-light-16-19{font-weight:300;font-size:16px;line-height:19px}.body-black-14-17{font-weight:900;font-size:14px;line-height:17px}.body-black-13-16{font-weight:900;font-size:13px;line-height:16px}.body-extra-bold-14-17{font-weight:800;font-size:14px;line-height:17px}.body-extra-bold-13-16{font-weight:800;font-size:13px;line-height:16px}.body-bold-14-17{font-weight:700;font-size:14px;line-height:17px}.body-bold-13-16{font-weight:700;font-size:13px;line-height:16px}.body-semi-bold-14-17{font-weight:600;font-size:14px;line-height:17px}.body-semi-bold-13-16{font-weight:600;font-size:13px;line-height:16px}.body-medium-14-17{font-weight:500;font-size:14px;line-height:17px}.body-medium-13-16{font-weight:500;font-size:13px;line-height:16px}.body-regular-14-17{font-weight:400;font-size:14px;line-height:17px}.body-regular-13-16{font-weight:400;font-size:13px;line-height:16px}.body-light-14-17{font-weight:300;font-size:14px;line-height:17px}.body-light-13-16{font-weight:300;font-size:13px;line-height:16px}.caption-black-12-15{font-weight:900;font-size:12px;line-height:15px}.caption-black-11-13{font-weight:900;font-size:11px;line-height:13px}.caption-black-10-12{font-weight:900;font-size:10px;line-height:12px}.caption-extra-bold-12-15{font-weight:800;font-size:12px;line-height:15px}.caption-extra-bold-11-13{font-weight:800;font-size:11px;line-height:13px}.caption-extra-bold-10-12{font-weight:800;font-size:10px;line-height:12px}.caption-bold-12-15{font-weight:700;font-size:12px;line-height:15px}.caption-bold-11-13{font-weight:700;font-size:11px;line-height:13px}.caption-bold-10-12{font-weight:700;font-size:10px;line-height:12px}.caption-semi-bold-12-15{font-weight:600;font-size:12px;line-height:15px}.caption-semi-bold-11-13{font-weight:600;font-size:11px;line-height:13px}.caption-semi-bold-10-12{font-weight:600;font-size:10px;line-height:12px}.caption-medium-12-15{font-weight:500;font-size:12px;line-height:15px}.caption-medium-11-13{font-weight:500;font-size:11px;line-height:13px}.caption-medium-10-12{font-weight:500;font-size:10px;line-height:12px}.caption-regular-12-15{font-weight:400;font-size:12px;line-height:15px}.caption-regular-11-13{font-weight:400;font-size:11px;line-height:13px}.caption-regular-10-12{font-weight:400;font-size:10px;line-height:12px}.caption-light-12-15{font-weight:300;font-size:12px;line-height:15px}.caption-light-11-13{font-weight:300;font-size:11px;line-height:13px}.caption-light-10-12{font-weight:300;font-size:10px;line-height:12px}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:100;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");unicode-range:U+1F00-1FFF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");unicode-range:U+0370-03FF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");unicode-range:U+0100-02AF,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:before,.slick-track:after{display:table;content:""}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.slick-arrow.slick-hidden{display:none}.slick-prev,.slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;color:rgba(0,0,0,0);border:none;outline:none;background:rgba(0,0,0,0)}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{color:rgba(0,0,0,0);outline:none;background:rgba(0,0,0,0)}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:"slick";font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}.slick-prev:before{content:"←"}[dir=rtl] .slick-prev:before{content:"→"}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}.slick-next:before{content:"→"}[dir=rtl] .slick-next:before{content:"←"}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:rgba(0,0,0,0);border:0;outline:none;background:rgba(0,0,0,0)}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{font-family:"slick";font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:#000}body{font-family:var(--font-family-sans-serif);color:var(--dark)}/*# sourceMappingURL=style.min.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../src/assets/styles/_root.scss","../../src/assets/styles/_typography.scss","../../src/assets/styles/_font.scss","../../src/assets/styles/style.scss"],"names":[],"mappings":"AAAA,MAEI,4jBAGA,yIAEF,kKCCA,sBACE,YALW,IAMX,eACA,kBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,kBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,kBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,kBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,kBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,kBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,kBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,iBACE,YALW,IAMX,eACA,iBAHF,iBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBCVJ,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJChjBF,KACI,0CACA","file":"style.min.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../src/assets/styles/_root.scss","../../src/assets/styles/_typography.scss","../../src/assets/styles/_font.scss","../../src/assets/styles/slick.scss","../../src/assets/styles/slick-theme.scss","../../src/assets/styles/style.scss"],"names":[],"mappings":"CAAA,MAEI,4jBAGA,yIAEF,kKCCA,sBACE,YALW,IAMX,eACA,kBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,kBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,kBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,kBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,kBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,kBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,kBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,2BACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,wBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,iBACE,YALW,IAMX,eACA,iBAHF,iBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,mBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,kBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,0BACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,oBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,yBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,sBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,uBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBAHF,qBACE,YALW,IAMX,eACA,iBCVJ,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,iFAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,gEAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,0BAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,yGAGF,WACE,oBACA,kBACA,gBACA,kBACA,6GACA,oGAGF,WACE,oBACA,kBACA,gBACA,kBACA,0GACA,yJCpjBF,cAEI,kBAEA,cACA,sBAEA,yBACG,sBACC,qBACI,iBAER,2BACA,wBACA,uBACI,mBACJ,0CAGJ,YAEI,kBAEA,cACA,gBAEA,SACA,UAEJ,kBAEI,aAEJ,qBAEI,eACA,YAGJ,qDAGI,uCACG,oCACC,mCACC,kCACG,+BAGZ,aAEI,kBACA,MACA,OAEA,cACA,iBACA,kBAEJ,uCAGI,cAEA,WAEJ,mBAEI,WAEJ,4BAEI,kBAGJ,aAEI,aACA,WAEA,YACA,eAEJ,uBAEI,YAEJ,iBAEI,cAEJ,+BAEI,aAEJ,0BAEI,oBAEJ,gCAEI,cAEJ,4BAEI,kBAEJ,6BAEI,cAEA,YAEA,+BAEJ,0BACI,aClHJ,wBAGI,YACA,cAEA,kBACA,QAEA,cAEA,WACA,YACA,UACA,qCACA,iCACA,6BAEA,eAEA,oBACA,YACA,aACA,yBAEJ,wEAKI,oBACA,aACA,yBAEJ,oGAKI,UAEJ,oEAGI,YAGJ,sCAGI,oBACA,eACA,cAEA,YACA,WAEA,mCACA,kCAGJ,YAEI,WAEJ,sBAEI,YACA,UAEJ,mBAEI,YAEJ,6BAEI,YAGJ,YAEI,YAEJ,sBAEI,WACA,WAEJ,mBAEI,YAEJ,6BAEI,YAIJ,2BAEI,mBAGJ,YAEI,kBACA,aAEA,cAEA,WACA,UACA,SAEA,gBAEA,kBAEJ,eAEI,kBAEA,qBAEA,WACA,YACA,aACA,UAEA,eAEJ,sBAEI,YACA,cAEA,cAEA,WACA,YACA,YAEA,eAEA,oBACA,SACA,aACA,yBAEJ,wDAGI,aAEJ,sEAGI,UAEJ,6BAEI,oBACA,cACA,iBAEA,kBACA,MACA,OAEA,WACA,YAEA,YACA,kBAEA,YACA,WAEA,mCACA,kCAEJ,0CAEI,YACA,WCrLJ,KACI,0CACA","file":"style.min.css"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "krl-alfred",
3
- "version": "1.60.0",
3
+ "version": "1.61.0",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
@@ -32,8 +32,10 @@
32
32
  "react-otp-input": "^3.0.2",
33
33
  "react-router-dom": "^6.10.0",
34
34
  "react-scripts": "^5.0.1",
35
+ "react-slick": "^0.29.0",
35
36
  "sass": "^1.60.0",
36
37
  "sass-loader": "^13.2.2",
38
+ "slick-carousel": "^1.8.1",
37
39
  "style-loader": "^3.3.2",
38
40
  "styled-components": "^5.0.1",
39
41
  "typescript": "^5.1.6"