

/* Start:/local/templates/roso/dist/assets/css/style.css?175447185227355*/
/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Reboot from Bootstrap 4.5.3
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */

/**
 * IE10+ doesn't honor `<meta name="viewport">` in some cases
 */

@-ms-viewport {
  width: device-width;
}

/**
 * general reset
 */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
 * inherit box model for all elements
 */

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */

html {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/**
 * body rules
 * 1. reset line-height to 1
 * 2. set base font-family to sans-serif
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */

body {
  /* 1 */
  line-height: 1;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  text-align: left;
}

/**
 * Future-proof rule: in browsers that support :focus-visible, suppress the focus outline
 * on elements that programmatically receive focus but wouldn't normally show a visible
 * focus outline. In general, this would mean that the outline is only applied if the
 * interaction that led to the element receiving programmatic focus was a keyboard interaction,
 * or the browser has somehow determined that the user is primarily a keyboard user and/or
 * wants focus outlines to always be presented.
 *
 * See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible
 * and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/
 */

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/**
 * Lists
 */

ol,
ul {
  list-style: none;
}

/**
 * Quotes
 */

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/**
 * Tables
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 * 2. Fix alignment for Safari
 */

th {
  /* 1 */
  text-align: inherit;
  /* 2 */
  text-align: -webkit-match-parent;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */

pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */

abbr[title] {
  /* 1 */
  border-bottom: 0;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 3 */
  cursor: help;
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Prevent `em` being affected from global reset
 */

em {
  font-style: italic;
}

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */

svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */

button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */

input,
button,
select,
optgroup,
textarea {
  /* 1 */
  margin: 0;
  /* 2 */
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=reset],
[type=submit],
[type=button] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */

textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */

button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */

button,
select {
  text-transform: none;
}

/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */

[role=button] {
  cursor: pointer;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */

select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */

input[type=radio],
input[type=checkbox] {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */

[tabindex="-1"]:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */

fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */

legend {
  /* 1 */
  max-width: 100%;
  white-space: normal;
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */

textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  /* 1 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */

output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Always hide an element with the `hidden` HTML attribute (from PureCSS).
 * Needed for proper display in IE 10-.
 */

[hidden] {
  display: none;
}

/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */

[role=button],
input[type=button],
input[type=reset],
input[type=submit],
button {
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  color: inherit;
  text-align: inherit;
  background: none;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[role=button]:not(:disabled),
input[type=button]:not(:disabled),
input[type=reset]:not(:disabled),
input[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[role=button]:-moz-focusring,
input[type=button]:-moz-focusring,
input[type=reset]:-moz-focusring,
input[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: none;
}

[role=button]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */

a {
  color: inherit;
  text-decoration: none;
}

a:-moz-focusring {
  outline: none;
}

a:focus {
  outline: none;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-LightItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-LightItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-LightItalic.opt") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-MediumItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-MediumItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-MediumItalic.opt") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-BoldItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-BoldItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-BoldItalic.opt") format("opentype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Light.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Light.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Light.opt") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Medium.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Medium.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Medium.opt") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Bold.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Bold.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-Bold.opt") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-ExtraBold.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-ExtraBold.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Geometria/Geometria-ExtraBold.opt") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ThinItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ThinItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ThinItalic.opt") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLightItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLightItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLightItalic.opt") format("opentype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-LightItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-LightItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-LightItalic.opt") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-RegularItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-RegularItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-RegularItalic.opt") format("opentype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-MediumItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-MediumItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-MediumItalic.opt") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BoldItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BoldItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BoldItalic.opt") format("opentype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBoldItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBoldItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBoldItalic.opt") format("opentype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBoldItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBoldItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBoldItalic.opt") format("opentype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-HeavyItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-HeavyItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-HeavyItalic.opt") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BlackItalic.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BlackItalic.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-BlackItalic.opt") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Thin.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Thin.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Thin.opt") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLight.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLight.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-UltraLight.opt") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Light.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Light.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Light.opt") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Regular.opt") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Medium.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Medium.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Medium.opt") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Bold.opt") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBold.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBold.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-SemiBold.opt") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBold.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBold.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-ExtraBold.opt") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Heavy.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Heavy.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Heavy.opt") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "Gilroy";
  src: url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Black.woff2") format("woff2"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Black.woff") format("woff"), url("/local/templates/roso/dist/assets/css/./../fonts/Gilroy/Gilroy-Black.opt") format("opentype");
  font-weight: 900;
  font-style: normal;
}

h1,
.h1 {
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 120%;
}

h2,
.h2 {
  font-style: normal;
  font-weight: 300;
  font-size: 26px;
  line-height: 120%;
}

h3,
.h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 120%;
}

h4,
.h4 {
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
}

h5,
.h5 {
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --timeTransition: 0.3s;
  --mainFont: Roboto Flex, system-ui, -apple-system, Segoe UI, roboto, Helvetica Neue, arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --mainFontSize: 14px;
  --mainLineHeight: 1.7142857143;
  --mainFontColor: #ffffff;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::after,
*::before {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: calc(var(--vh) * 100);
}

body {
  font-family: "Gilroy";
  min-width: 360px;
  max-width: 5920px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7142857143;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #272940;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.no-touch body.no-scroll {
  padding-right: 10px;
}

.no-touch body.no-scroll-2 {
  padding-right: 10px;
}

body.no-scroll {
  overflow: hidden;
}

body.no-scroll-2 {
  overflow: hidden;
}

body.disable-hover,
body.disable-hover * {
  pointer-events: none !important;
}

body::-webkit-scrollbar {
  position: fixed;
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background: #57a1d4;
  background-clip: content-box;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.page {
  position: relative;
}

span.icon-sprite {
  display: inline-block;
}

header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.icon-sprite {
  width: initial;
  height: initial;
}

.icon-sprite svg {
  width: 100%;
  height: 100%;
}

.svg-root {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.pseudo-scroll {
  height: 4px;
  width: calc(100% - 30px);
  margin: 16px auto 0;
  background-color: rgba(141, 143, 166, 0.2);
  border-radius: 50px;
  pointer-events: none;
}

.pseudo-scroll__drag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 4px;
}

.pseudo-scroll__drag-item {
  background-color: #0066a4;
  height: 4px;
  border-radius: 50px;
}

.swiper-wrapper {
  height: auto !important;
}

#MacroCatalogBtn .macro-dws {
  bottom: 24px !important;
  right: 24px !important;
}

#MacroCatalogBtn .macro-pulse,
.macro-bloc {
  height: 120px !important;
  width: 120px !important;
}

#MacroCatalogBtn .macro-text {
  font-size: 12px !important;
  line-height: 14px !important;
}

.tags-hidden {
  display: none;
}

.tippy-box[data-theme~=tags-elem] {
  background-color: #ffffff;
  border-radius: 24px;
  color: #272940;
  padding: 24px;
  -webkit-box-shadow: 0 0 24px 0 #2729401a;
  box-shadow: 0 0 24px 0 #2729401a;
  cursor: default;
  -webkit-transform: translateY(calc(-100% - 50px));
  -ms-transform: translateY(calc(-100% - 50px));
  transform: translateY(calc(-100% - 50px));
}

.tippy-box[data-theme~=tags-elem] .tippy-content {
  padding: 0;
  cursor: default;
}

.tippy-box[data-theme~=tags-elem] .item-list {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  display: block;
  cursor: default;
}

.tippy-box[data-theme~=tags-elem] .item-list + .item-list {
  margin-top: 16px;
}

input[type=checkbox] {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid #0066a4;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
  background: transparent;
  margin-bottom: -4px;
}

input[type=checkbox]::before {
  position: absolute;
  content: "";
  display: block;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 11px;
  border-style: solid;
  border-color: #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

input[type=checkbox]:checked {
  color: #fff;
  border-color: #0066a4;
  background: #0066a4;
}

input[type=checkbox]:checked::before {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }

  .pseudo-scroll {
    width: 320px;
    margin: 22px auto 0;
    position: relative;
    left: 24px;
  }
}

@media only screen and (min-width: 1361px) {
  h1,
  .h1 {
    font-size: 48px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }

  h3,
  .h3 {
    font-size: 32px;
  }

  h4,
  .h4 {
    font-size: 28px;
  }

  h5,
  .h5 {
    font-size: 24px;
  }

  .wrapper {
    padding: 0 24px;
  }
}

@media only screen and (min-width: 1600px) {
  h1,
  .h1 {
    font-size: 64px;
  }

  h2,
  .h2 {
    font-size: 56px;
  }

  h3,
  .h3 {
    font-size: 48px;
  }

  h4,
  .h4 {
    font-size: 40px;
  }

  h5,
  .h5 {
    font-size: 32px;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */

/* End */


/* Start:/local/templates/roso/css/style.css?1748874025665*/
.project-item__sale {
    background-color: #57a1d4;
}

.project-item__tags-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.project-item__tags-item svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-right: 5px;
}

.copy_url {
    cursor: pointer;
}

.pane-window__politic {
    text-align: justify;
    max-width: inherit;
}

#f_submit_det button[disabled]:hover,
#f_submit button[disabled]:hover {
    background: original-background;
    pointer-events: none;
}

.pane-window__btn-sec button.no_hover:hover {
    color: #57a1d4;
    background-color: rgba(87,161,212,.1);
}

/* End */
/* /local/templates/roso/dist/assets/css/style.css?175447185227355 */
/* /local/templates/roso/css/style.css?1748874025665 */
