@charset "UTF-8";
:root {
  --animation: 150ms linear;
  --border-radius-small: 3px;
  --border-radius-middle: 5px;
  --border-radius-large: 10px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[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 {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

::before,
::after {
  display: inherit;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ol {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
}

h2 {
  padding: 0;
  margin: 0;
}

h3 {
  padding: 0;
  margin: 0;
}

h4 {
  padding: 0;
  margin: 0;
}

h5 {
  padding: 0;
  margin: 0;
}

h6 {
  padding: 0;
  margin: 0;
}

div {
  display: block;
}

a {
  display: inline;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

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

td {
  vertical-align: top;
}

img {
  border: 0px;
  outline: none;
  display: block;
}

input,
select,
textarea {
  display: block;
  outline: none;
  resize: none;
}

::-moz-selection {
  /*color: #ffffff;*/
  /*background: @websitecolor;*/
}

::selection {
  /*color: #ffffff;*/
  /*background: @websitecolor;*/
}

html {
  height: 100%;
}

body {
  position: inherit !important;
  width: 100% !important;
  height: inherit !important;
  overflow: inherit !important;
  clip: inherit !important;
  white-space: inherit !important;
}

body {
  text-align: left;
  font-family: "Inter";
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--color-1);
  overflow: inherit;
  cursor: default;
  position: relative;
  scroll-behavior: smooth;
  height: 100%;
  background-color: var(--color-white);
}

#root {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  padding: 0 80px;
  position: relative;
}
@media (max-width: 1199px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

.error {
  padding: 16px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--error-color);
  font-size: 14px;
  font-weight: bold;
  display: none;
}

.debug {
  margin-top: 30px;
  margin-bottom: 30px;
}

.text-link {
  color: var(--brand-color);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  text-decoration: underline;
}
.text-link:hover {
  opacity: 0.8;
}

.message-sample {
  margin-bottom: 50px;
  border-radius: 5px;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 5px, rgba(255, 255, 255, 0.01) 5px, rgba(255, 255, 255, 0.01) 10px);
}
@media (max-width: 768px) {
  .message-sample {
    margin-bottom: 20px;
  }
}
.message-sample-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.message-sample .icon {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.message-sample-success .icon {
  fill: var(--success-color);
  color: var(--success-color);
}
.message-sample-notice .icon {
  fill: var(--notice-color);
  color: var(--notice-color);
}
.message-sample-error .icon {
  fill: var(--error-color);
  color: var(--error-color);
}
.message-sample p {
  color: #444;
  margin-bottom: 10px;
}
.message-sample p:last-child {
  margin-bottom: 0px;
}
.message-sample strong {
  color: #444;
  font-weight: 500;
}
.message-sample a {
  color: var(--brand-color);
  text-decoration: underline;
}
.message-sample a:hover, .message-sample a:focus {
  opacity: 0.8;
}
.message-sample.type1 {
  padding: 10px;
  background-color: #f5f5f5;
}
.message-sample.type1 .icon {
  width: 24px;
  height: 24px;
}
.message-sample.type2 {
  width: 100%;
  font-size: 16px;
  padding: 20px;
  color: #666;
}
.message-sample.type3 {
  padding: 10px 20px;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01) 5px, rgba(0, 0, 0, 0.025) 5px, rgba(0, 0, 0, 0.025) 10px);
}
.message-sample.type3 .icon {
  width: auto;
  height: auto;
}
.message-sample.type3 .message-sample-wrapper {
  font-weight: 500;
  gap: 14px;
}

.link {
  color: var(--brand-color);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.link:hover {
  opacity: 0.8;
}

.default-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 0 auto;
  margin-bottom: 14px;
  padding-bottom: 17px;
  width: 100%;
  max-width: 980px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .default-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .default-title .line {
    display: none;
  }
}
.default-title p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 300;
  color: var(--brand-color);
  text-transform: uppercase;
  text-align: center;
}
.default-title .line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
}
.default-title .line.line1 {
  background: -webkit-gradient(linear, right top, left top, from(var(--brand-color)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, var(--brand-color), rgba(0, 0, 0, 0));
}
.default-title .line.line2 {
  background: -webkit-gradient(linear, left top, right top, from(var(--brand-color)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, var(--brand-color), rgba(0, 0, 0, 0));
}

.default-text {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
}
@media (max-width: 768px) {
  .default-text {
    margin-bottom: 30px;
  }
}

/* inter-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url("/public/webfonts/Inter/inter-v20-latin-100.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-100.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-100.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-100.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-100.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-100.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-100italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  src: url("/public/webfonts/Inter/inter-v20-latin-100italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-100italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-100italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-100italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-100italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-100italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("/public/webfonts/Inter/inter-v20-latin-200.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-200.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-200.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-200.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-200.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-200.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  src: url("/public/webfonts/Inter/inter-v20-latin-200italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-200italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-200italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-200italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-200italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-200italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/public/webfonts/Inter/inter-v20-latin-300.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-300.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-300.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-300.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-300.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-300.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  src: url("/public/webfonts/Inter/inter-v20-latin-300italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-300italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-300italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-300italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-300italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-300italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/public/webfonts/Inter/inter-v20-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-regular.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-regular.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-regular.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-regular.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("/public/webfonts/Inter/inter-v20-latin-italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/public/webfonts/Inter/inter-v20-latin-500.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-500.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-500.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-500.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-500.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-500.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url("/public/webfonts/Inter/inter-v20-latin-500italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-500italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-500italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-500italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-500italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-500italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/public/webfonts/Inter/inter-v20-latin-600.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-600.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-600.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-600.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-600.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-600.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  src: url("/public/webfonts/Inter/inter-v20-latin-600italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-600italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-600italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-600italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-600italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-600italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/public/webfonts/Inter/inter-v20-latin-700.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-700.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-700.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-700.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-700.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url("/public/webfonts/Inter/inter-v20-latin-700italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-700italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-700italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-700italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-700italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-700italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("/public/webfonts/Inter/inter-v20-latin-800.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-800.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-800.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-800.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-800.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-800.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  src: url("/public/webfonts/Inter/inter-v20-latin-800italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-800italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-800italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-800italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-800italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-800italic.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("/public/webfonts/Inter/inter-v20-latin-900.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-900.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-900.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-900.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-900.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-900.svg#Inter") format("svg"); /* Legacy iOS */
}
/* inter-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  src: url("/public/webfonts/Inter/inter-v20-latin-900italic.eot"); /* IE9 Compat Modes */
  src: url("/public/webfonts/Inter/inter-v20-latin-900italic.eot?#iefix") format("embedded-opentype"), url("/public/webfonts/Inter/inter-v20-latin-900italic.woff2") format("woff2"), url("/public/webfonts/Inter/inter-v20-latin-900italic.woff") format("woff"), url("/public/webfonts/Inter/inter-v20-latin-900italic.ttf") format("truetype"), url("/public/webfonts/Inter/inter-v20-latin-900italic.svg#Inter") format("svg"); /* Legacy iOS */
}
button {
  cursor: pointer;
  background: none;
  border: none;
}

.button-type1 {
  cursor: pointer;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  background-color: var(--color-1);
  color: var(--color-2);
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  -webkit-transition: opacity var(--animation), background var(--animation);
  transition: opacity var(--animation), background var(--animation);
}
.button-type1:hover {
  background-color: var(--brand-color);
}
.button-type1 i {
  font-size: 21px;
}
.button-type1.err {
  background-color: var(--error-color);
}
.button-type1 div[data-loader] {
  position: absolute;
  opacity: 0;
  width: 24px;
  left: calc((100% - 24px) / 2);
  top: calc((100% - 24px) / 2);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.button-type1 div[data-loader] div {
  background-color: #fff;
}
.button-type1[data-loading] {
  color: rgba(0, 0, 0, 0);
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--brand-color);
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button-type1[data-loading] div[data-loader] {
  opacity: 1;
}

.button-type2 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  padding: 0px 20px;
  border-radius: 100px;
  color: #fff;
  gap: 10px;
  height: 43px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  white-space: nowrap;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  background: linear-gradient(-40deg, rgba(193, 148, 0, 0.8) 0%, rgba(228, 175, 0, 0.8) 21%, rgba(193, 148, 0, 0.8) 46%, rgba(220, 169, 0, 0.8) 58%, rgba(193, 148, 0, 0.8) 83%, rgba(193, 148, 0, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: inset 0px 2px 20px 1px rgba(255, 255, 255, 0.4), 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 2px 20px 1px rgba(255, 255, 255, 0.4), 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
}
.button-type2:hover {
  opacity: 0.8;
}
.button-type2 i {
  font-size: 14px;
}
.button-type2 div[data-loader] {
  position: absolute;
  opacity: 0;
  width: 24px;
  left: calc((100% - 24px) / 2);
  top: calc((100% - 24px) / 2);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.button-type2 div[data-loader] div {
  background-color: #fff;
}
.button-type2[data-loading] {
  color: rgba(0, 0, 0, 0);
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--brand-color);
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button-type2[data-loading] div[data-loader] {
  opacity: 1;
}

.button-type3 {
  font-size: 16px;
  font-weight: 400;
  padding: 3px 22px;
  border-radius: 5px;
  color: #fff;
  background-color: #448040;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button-type3:hover {
  opacity: 0.8;
}
.button-type3 i {
  margin-right: 10px;
}

.button-type4 {
  font-size: 14px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--brand-color-light);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button-type4.dark {
  background-color: #333;
}
.button-type4:hover {
  opacity: 0.8;
}
.button-type4 i {
  margin-right: 10px;
}
.button-type4 div[data-loader] {
  position: absolute;
  opacity: 0;
  width: 20px;
  left: calc((100% - 20px) / 2);
  top: calc((100% - 20px) / 2);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.button-type4 div[data-loader] div {
  background-color: #fff;
}
.button-type4[data-loading] {
  color: rgba(0, 0, 0, 0);
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--brand-color-light);
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button-type4[data-loading] div[data-loader] {
  opacity: 1;
}

.form-middle {
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}

.form-type1-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 50px;
}
@media (max-width: 768px) {
  .form-type1-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-type1-group.nobottommargin {
  margin-bottom: 0px;
}
.form-type1-item {
  width: 100%;
  padding-top: 30px;
  margin-bottom: 20px;
}
.form-type1-item.notoppadding {
  padding-top: 0px;
}
.form-type1-item.notoppadding svg.notice-icon {
  top: 6px;
}
.form-type1-item.nobottommargin {
  margin-bottom: 0px;
}
.form-type1-item.frame {
  border: 1px dashed var(--brand-color-light);
  padding: 10px !important;
  border-radius: 5px;
}
.form-type1-error {
  display: none;
  font-size: 16px;
  border-top: 1px solid var(--brand-color);
  padding: 15px 10px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}
.form-type1-error-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-type1-error .icon {
  fill: var(--brand-color);
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.form-type1-link {
  margin-top: 30px;
}
.form-type1-link a {
  text-decoration: underline;
  color: var(--brand-color);
  font-size: 16px;
}
.form-type1 .notice {
  text-align: left;
  font-size: 14px;
  color: var(--brand-color);
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 10px;
  margin-bottom: 5px;
  background-color: #f5f5f5;
  display: none;
}
.form-type1 [data-error] .notice {
  display: block;
}
.form-type1 .notice-icon {
  fill: var(--brand-color);
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  display: none;
}
.form-type1 [data-error] .notice-icon {
  display: block;
}
.form-type1 .success {
  display: none;
}
.form-type1 .success-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  line-height: 1.4;
}
.form-type1 .success-message .icon {
  fill: var(--success-color);
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-type1-wrapper {
  position: relative;
}
.form-type1-mandatory-text {
  font-size: 14px;
  color: #888;
  line-height: 1.4;
  padding-top: 20px;
}
.form-type1-mandatory-text .star {
  color: var(--brand-color);
  font-weight: 500;
}
.form-type1-placeholder {
  position: absolute;
  bottom: 6px;
  left: 0;
  opacity: 0.8;
  padding-left: 1px;
  font-size: 16px;
  -webkit-transition-property: opacity, font-size, -webkit-transform;
  transition-property: opacity, font-size, -webkit-transform;
  transition-property: opacity, transform, font-size;
  transition-property: opacity, transform, font-size, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  cursor: text;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.15;
}
.form-type1-placeholder .star {
  color: var(--brand-color);
  padding-left: 3px;
  font-weight: 500;
}
.form-type1 .mandatory-star {
  color: var(--brand-color);
  padding-left: 3px;
  font-weight: 500;
}
.form-type1-inputlimit {
  position: absolute;
  top: -29px;
  right: 0;
  font-weight: 500;
  font-size: 18px;
}
.form-type1-inputlimit.textarea {
  top: 0px;
}
.form-type1-inputlimit span[data-notice] {
  color: var(--brand-color);
}
.form-type1-label {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #cccccc;
}
.form-type1-label strong {
  font-weight: 700;
}
[data-error] .form-type1-label {
  padding-right: 28px;
}
.form-type1 input {
  display: block;
  width: 100%;
  outline: none;
  resize: none;
  border: none;
  font-size: 18px;
  color: #333;
  padding: 0px 0px 5px 0px;
  border-bottom: 1px solid #cdcdcd;
  -webkit-transition: border-color 250ms ease-in-out;
  transition: border-color 250ms ease-in-out;
}
.form-type1 input:focus {
  border-bottom: 1px solid var(--brand-color-light);
}
.form-type1 input:focus + label {
  opacity: 0.3;
}
.form-type1 input:not(:-moz-placeholder) + label {
  transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 input:not(:-ms-input-placeholder) + label {
  transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 input:not(:placeholder-shown) + label {
  -webkit-transform: translate(-1px, -28px);
          transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 input:not(:-moz-placeholder) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 input:not(:-ms-input-placeholder) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 input:not(:placeholder-shown) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 textarea {
  outline: none;
  resize: none;
  padding: 6px 10px;
  width: 100%;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1 textarea:focus {
  border-bottom: 1px solid var(--brand-color-light);
}
.form-type1 textarea:focus + label {
  opacity: 0.3;
}
.form-type1 textarea::-webkit-input-placeholder {
  color: #b0b0b0;
  font-weight: 300;
}
.form-type1 textarea::-moz-placeholder {
  color: #b0b0b0;
  font-weight: 300;
}
.form-type1 textarea:-ms-input-placeholder {
  color: #b0b0b0;
  font-weight: 300;
}
.form-type1 textarea::-ms-input-placeholder {
  color: #b0b0b0;
  font-weight: 300;
}
.form-type1 textarea::placeholder {
  color: #b0b0b0;
  font-weight: 300;
}
.form-type1 textarea:not(:-moz-placeholder) + label {
  transform: translate(-8px, -32px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 textarea:not(:-ms-input-placeholder) + label {
  transform: translate(-8px, -32px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 textarea:not(:placeholder-shown) + label {
  -webkit-transform: translate(-8px, -32px);
          transform: translate(-8px, -32px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 textarea:not(:-moz-placeholder) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 textarea:not(:-ms-input-placeholder) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 textarea:not(:placeholder-shown) {
  border-bottom: 1px solid #cdcdcd;
}
.form-type1-textarea .form-type1-placeholder {
  top: 9px;
  bottom: auto;
  left: 7px;
}
.form-type1 select {
  display: block;
  width: 100%;
  outline: none;
  resize: none;
  border: none;
  font-size: 16px;
  color: #333;
  padding: 0px 0px 5px 0px;
  border-bottom: 1px solid #cdcdcd;
}
.form-type1 select:not(:-moz-placeholder) + label {
  transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 select:not(:-ms-input-placeholder) + label {
  transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1 select:not(:placeholder-shown) + label {
  -webkit-transform: translate(-1px, -28px);
          transform: translate(-1px, -28px);
  font-size: 13px;
  cursor: default;
  opacity: 0.8;
  font-weight: 400;
}
.form-type1-checkbox {
  margin-top: 30px;
  padding-bottom: 10px;
}
.form-type1-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  font-size: 16px;
  line-height: 1.33;
  color: #333;
  position: relative;
  top: 1px;
}
.form-type1-checkbox label:focus-within .checkbox {
  border: 1.25px solid var(--brand-color);
}
.form-type1-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-type1-checkbox input[type=checkbox]:checked + .checkbox {
  background-color: var(--brand-color);
}
.form-type1-checkbox input[type=checkbox]:checked + .checkbox svg {
  opacity: 1;
}
.form-type1-checkbox .checkbox {
  border: 1.25px solid #2e2f42;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-transition-property: border-color, background-color;
  transition-property: border-color, background-color;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.form-type1-checkbox .checkbox svg {
  opacity: 0;
  fill: #fff;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.form-type1-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  font-size: 16px;
  line-height: 1.33;
  color: #333;
  position: relative;
  top: 1px;
}
.form-type1-radio label:focus-within .checkbox {
  border: 1.25px solid var(--brand-color);
}
.form-type1-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-type1-radio input[type=radio]:checked + .radio {
  background-color: #fff;
}
.form-type1-radio input[type=radio]:checked + .radio::after {
  background-color: var(--brand-color);
  opacity: 1;
}
.form-type1-radio .radio {
  border: 1.25px solid #2e2f42;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  -webkit-transition-property: border-color, background-color;
  transition-property: border-color, background-color;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  position: relative;
}
.form-type1-radio .radio::after {
  content: "";
  opacity: 0;
  fill: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.form-type1-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-type1-checkboxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-type1-checkboxes[data-col="2"] > div {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
      flex-basis: calc((100% - 20px) / 2);
  margin: 0;
  padding: 0;
}
.form-type1-checkboxes[data-col="3"] > div {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
      flex-basis: calc((100% - 40px) / 3);
}
.form-type1-input-file {
  padding-bottom: 5px;
}
.form-type1-input-filename {
  padding-bottom: 5px;
  margin-left: 10px;
  font-weight: 500;
}
.form-type1-input-button {
  border: none;
  background-color: #f5f5f5;
  color: #333;
  font-size: 16px;
  padding: 7px 22px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1-input-button:hover {
  background-color: #e7e7e7;
  -webkit-box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.3);
}
.form-type1-input-addfile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.form-type1-input-addfile-container .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-type1-input-addfile-container i.info-icon {
  opacity: 0.7;
  margin-top: 3px;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1-input-addfile-container i.info-icon:hover {
  opacity: 0.8;
}
.form-type1-input-addfile-container i.info-icon:hover ~ .info {
  opacity: 1;
  -webkit-user-select: inherit;
     -moz-user-select: inherit;
      -ms-user-select: inherit;
          user-select: inherit;
}
.form-type1-input-addfile-container .info {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1-input-addfile-container .info.visible {
  opacity: 1;
}
.form-type1-input-addfile {
  border: none;
  background-color: var(--brand-color-light);
  color: #000;
  font-size: 14px;
  padding: 5px 7px;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1-input-addfile:hover {
  -webkit-box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 5px -3px rgba(0, 0, 0, 0.5);
}
.form-type1-input-addfile .icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  fill: currentColor;
}
.form-type1 .form-element[data-error].form-checkbox {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.form-type1 .form-element[data-error].form-checkbox .text-link {
  color: var(--brand-color);
}
.form-type1 .form-element[data-error] .form-input,
.form-type1 .form-element[data-error] .form-textarea,
.form-type1 .form-element[data-error].form-checkbox {
  border-bottom: 1px solid var(--brand-color);
}
.form-element[data-error] .form-type1-input-file {
  border-bottom: 1px solid var(--brand-color);
}
.form-type1-button-container {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-type1-buttons-container {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .form-type1-buttons-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form-type1-buttons-container.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-type1 .filestatus-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 20px;
}
@media (max-width: 768px) {
  .form-type1 .filestatus-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form-type1 .filestatus-container .file-name {
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .form-type1 .filestatus-container .file-name {
    margin-bottom: 10px;
  }
}
.form-type1-images-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.form-type1-item[data-noitems] .form-type1-images-container {
  margin-top: -20px;
}
.form-type1-files-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.form-type1-item[data-noitems] .form-type1-files-container {
  margin-top: -20px;
}
.form-type1-input-image {
  -ms-flex-preferred-size: calc((100% - 56px) / 5);
      flex-basis: calc((100% - 56px) / 5);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .form-type1-input-image {
    -ms-flex-preferred-size: calc((100% - 28px) / 3);
        flex-basis: calc((100% - 28px) / 3);
  }
}
@media (max-width: 425px) {
  .form-type1-input-image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.form-type1-input-image::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.form-type1-input-image:hover .delete-button {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.form-type1-input-image:hover .rotate-button {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.form-type1-input-image .delete-button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, box-shadow, visibility;
  transition-property: opacity, box-shadow, visibility, -webkit-box-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .form-type1-input-image .delete-button {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.form-type1-input-image .delete-button:hover {
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
}
.form-type1-input-image .rotate-button {
  position: absolute;
  top: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, box-shadow, visibility;
  transition-property: opacity, box-shadow, visibility, -webkit-box-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .form-type1-input-image .rotate-button {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.form-type1-input-image .rotate-button:hover {
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
}
.form-type1-input-image .rotate-button.left {
  left: 5px;
}
.form-type1-input-image .rotate-button.right {
  left: 40px;
}
.form-type1-input-image[data-loading] .delete-button {
  display: none;
}
.form-type1-input-image[data-loading] .rotate-button {
  display: none;
}
.form-type1-input-image[data-loading]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-type1-input-image [data-loader] {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-type1-videos-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.form-type1-item[data-noitems] .form-type1-videos-container {
  margin-top: -20px;
}
.form-type1-input-video {
  -ms-flex-preferred-size: calc((100% - 14px) / 2);
      flex-basis: calc((100% - 14px) / 2);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 768px) {
  .form-type1-input-video {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.form-type1-input-video::before {
  content: "";
  padding-top: 75%;
  display: block;
}
.form-type1-input-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form-type1-input-video:hover .delete-button {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.form-type1-input-video .delete-button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, visibility, -webkit-box-shadow;
  transition-property: opacity, box-shadow, visibility;
  transition-property: opacity, box-shadow, visibility, -webkit-box-shadow;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .form-type1-input-video .delete-button {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.form-type1-input-video .delete-button:hover {
  -webkit-box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.3);
}
.form-type1-input-video[data-loading] .delete-button {
  display: none;
}
.form-type1-input-video[data-loading]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-type1-input-video [data-loader] {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-type1-counter {
  float: right;
}
.form-type1-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.form-type1-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.form-type1 .button {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background-color: var(--brand-color-light);
  padding: 7px 36px;
  border-radius: 35px;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
  cursor: pointer;
  border: 5px solid #fff;
  -webkit-box-shadow: 0px 0px 1px 1px var(--brand-color-light);
          box-shadow: 0px 0px 1px 1px var(--brand-color-light);
  position: relative;
}
.form-type1 .button div[data-loader] {
  position: absolute;
  opacity: 0;
  width: 24px;
  left: calc((100% - 24px) / 2);
  top: calc((100% - 24px) / 2);
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.form-type1 .button div[data-loader] div {
  background-color: #fff;
}
.form-type1 .button[data-loading] {
  color: rgba(0, 0, 0, 0);
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--brand-color);
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-type1 .button[data-loading] div[data-loader] {
  opacity: 1;
}

.form-type1 .button:hover {
  background-color: var(--brand-color);
}

.contact-form {
  padding: 100px 0px;
  background-color: #f5f5f5;
}
@media (max-width: 1024px) {
  .contact-form {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .contact-form {
    padding: 60px 0px;
  }
}
.contact-form h2 {
  margin: 0 auto;
  margin-bottom: 48px;
  max-width: 980px;
  width: 100%;
  color: var(--brand-color);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 400;
  text-align: center;
}
.contact-form .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  padding: 50px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .contact-form .contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .contact-form .contact-container {
    padding: 30px;
  }
}
@media (max-width: 425px) {
  .contact-form .contact-container {
    gap: 0px;
    padding: 0px;
    background: none;
  }
}
.contact-form .contact-container .contactform-type1-component {
  max-width: 60%;
}
@media (max-width: 1024px) {
  .contact-form .contact-container .contactform-type1-component {
    max-width: 100%;
  }
}
.contact-form .contact-container .contact-text {
  padding-top: 40px;
  font-size: 18px;
  line-height: 1.6;
}
.contact-form .contact-container .contact-text p {
  font-weight: 300;
}
.contact-form .contact-container .contact-text p strong {
  font-weight: 500;
}

.loader-type1 {
  display: inline-block;
  position: relative;
  width: 40px;
}
.loader-type1::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.loader-type1 div {
  position: absolute;
  top: 0px;
  left: 45%;
  width: 10%;
  height: 27%;
  border-radius: 45%;
  background: #000;
  -webkit-transform-origin: 50% 185.1851851852%;
          transform-origin: 50% 185.1851851852%;
  -webkit-animation: loader-type1 1.2s linear infinite;
          animation: loader-type1 1.2s linear infinite;
}

.loader-type1 div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.loader-type1 div:nth-child(2) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.loader-type1 div:nth-child(3) {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.loader-type1 div:nth-child(4) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.loader-type1 div:nth-child(5) {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.loader-type1 div:nth-child(6) {
  -webkit-transform: rotate(150deg);
          transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.loader-type1 div:nth-child(7) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.loader-type1 div:nth-child(8) {
  -webkit-transform: rotate(210deg);
          transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.loader-type1 div:nth-child(9) {
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.loader-type1 div:nth-child(10) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.loader-type1 div:nth-child(11) {
  -webkit-transform: rotate(300deg);
          transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.loader-type1 div:nth-child(12) {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes loader-type1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loader-type1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.uploading-progress {
  width: 200px;
  height: auto;
  background-color: #d2d2d2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 19px;
}
.uploading-progress div {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  background-color: var(--brand-color);
  width: 0%;
  height: 100%;
  overflow: hidden;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.uploading-progress div::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -20px;
  width: calc(100% + 20px);
  height: 100%;
  display: block;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 5px, rgba(255, 255, 255, 0.1) 5px, rgba(255, 255, 255, 0.1) 10px);
  -webkit-animation: slide-background 0.5s linear infinite;
          animation: slide-background 0.5s linear infinite;
}
.uploading-progress p {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

@-webkit-keyframes slide-background {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 15px 0;
  }
}

@keyframes slide-background {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 15px 0;
  }
}
.standard-product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 310px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: -webkit-box-shadow 100ms linear;
  transition: -webkit-box-shadow 100ms linear;
  transition: box-shadow 100ms linear;
  transition: box-shadow 100ms linear, -webkit-box-shadow 100ms linear;
}
.standard-product-item:hover {
  -webkit-box-shadow: 0px 0px 3px 1px var(--brand-color);
          box-shadow: 0px 0px 3px 1px var(--brand-color);
}
.standard-product-item .image {
  width: 100%;
  height: 190px;
  background-size: contain !important;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .standard-product-item .image {
    height: 170px;
  }
}
.standard-product-item .icon {
  display: block;
  margin: 0px auto 50px auto;
  width: 150px;
  height: 150px;
  fill: rgba(86, 159, 152, 0.3);
}
.standard-product-item .wrapcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.standard-product-item .wrapcontainer .price {
  font-weight: 800;
  font-size: 16px;
}
.standard-product-item .wrapcontainer button {
  font-size: 14px;
}
@media (max-width: 1199px) {
  .standard-product-item .wrapcontainer {
    display: block;
  }
  .standard-product-item .wrapcontainer .price {
    margin-bottom: 10px;
    text-align: end;
  }
  .standard-product-item .wrapcontainer button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 540px) {
  .standard-product-item {
    height: 300px;
  }
}

#notificationburger {
  position: fixed;
  z-index: 3;
  right: 20px;
  top: 20px;
  width: 280px;
}
#notificationburger .item {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  -webkit-transition: margin 150ms ease-in-out;
  transition: margin 150ms ease-in-out;
}
#notificationburger .item .title {
  margin-bottom: 5px;
  font-weight: 600;
}
#notificationburger .item .infocontainer .name {
  color: var(--brand-color);
}
#notificationburger .item:not(:last-child) {
  margin-bottom: 10px;
}

.productnotification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 0px;
  padding: 0px 20px;
  font-size: 18;
  font-weight: 400;
  background-color: rgb(242, 243, 247);
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: height 100ms linear, padding 100ms linear, margin-bottom 100ms linear;
  transition: height 100ms linear, padding 100ms linear, margin-bottom 100ms linear;
}
@media (max-width: 768px) {
  .productnotification {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.productnotification .button-type1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.productnotification .name {
  color: var(--brand-color);
}
.productnotification.show {
  margin-bottom: 20px;
  padding: 20px;
  height: auto;
}
@media (max-width: 768px) {
  .productnotification.show {
    padding: 14px;
  }
}

.checkbox1_label {
  cursor: pointer;
}
.checkbox1_label input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.checkbox1_label input:checked + .checkbox1 .checkbox1_bg {
  background-color: var(--brand-color);
}
.checkbox1_label .checkbox1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  -webkit-transition: background-color 150ms linear, border 150ms linear;
  transition: background-color 150ms linear, border 150ms linear;
}
.checkbox1_label .checkbox1 .checkbox1_bg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.checkbox1_label .text {
  padding-left: 26px;
}

.ordersteps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #f5f5f5;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ordersteps {
    font-size: 12px;
  }
}
@media (max-width: 570px) {
  .ordersteps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 30px;
    background-color: #fff;
    overflow: visible;
  }
}
.ordersteps .step {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0px 15px 0px 35px;
  margin-right: 15px;
  background-color: #ebebeb;
  position: relative;
  margin-left: -15px;
}
@media (max-width: 570px) {
  .ordersteps .step {
    margin-left: -20px;
    padding-left: 20px;
    width: 110px;
    background: none;
    height: 32px;
    line-height: 32px;
  }
}
.ordersteps .step:hover {
  background-color: #e3e3e3;
}
.ordersteps .step:hover::after {
  border-left: 15px solid #e3e3e3;
}
.ordersteps .step::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -15px;
  width: 0px;
  height: 0px;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 15px solid #ffffff;
}
@media (max-width: 570px) {
  .ordersteps .step::before {
    display: none;
  }
}
.ordersteps .step::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -14px;
  width: 0px;
  height: 0px;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 15px solid #ebebeb;
}
@media (max-width: 570px) {
  .ordersteps .step::after {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    right: -16px;
    top: 0px;
    display: none;
  }
}
.ordersteps .step.active {
  background-color: var(--brand-color);
  color: #fff;
}
.ordersteps .step.active:hover {
  background-color: var(--brand-color);
}
.ordersteps .step.active:hover::after {
  border-left: 15px solid var(--brand-color);
}
@media (max-width: 570px) {
  .ordersteps .step.active:hover::after {
    border-left: 16px solid var(--brand-color);
  }
}
.ordersteps .step.active::after {
  border-left: 15px solid var(--brand-color);
}
@media (max-width: 570px) {
  .ordersteps .step.active::after {
    border-left: 16px solid var(--brand-color);
    display: block;
  }
}
.ordersteps .step.inactive {
  color: #999;
  background-color: #efefef;
}
.ordersteps .step.inactive:hover {
  background-color: #efefef;
}
.ordersteps .step.inactive:hover::after {
  border-left: 15px solid #efefef;
}
.ordersteps .step.inactive::after {
  color: #999;
  border-left: 15px solid #efefef;
}
@media (max-width: 570px) {
  .ordersteps .step.inactive {
    background: none;
  }
  .ordersteps .step.inactive:hover {
    background: none;
  }
}

#searchproductsmodal {
  position: absolute;
  z-index: 1;
  top: 42px;
  left: 0;
  display: none;
  min-width: 400px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (max-width: 500px) {
  #searchproductsmodal {
    position: fixed;
    top: 72px;
    min-width: auto;
    width: calc(100% - 40px);
    left: 20px;
  }
}
#searchproductsmodal .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.3s background-color ease-in-out;
  transition: 0.3s background-color ease-in-out;
  padding: 7px;
}
#searchproductsmodal .item a:hover {
  background-color: #f5f5f5;
}
#searchproductsmodal .item .image {
  width: 38px;
  height: 38px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
}
#searchproductsmodal.show {
  display: block;
}
#searchproductsmodal .loader {
  width: 40px;
  height: 40px;
}

#productnotificationmodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4);
}
#productnotificationmodal .modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 50px);
  max-width: 500px;
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.6;
}
#productnotificationmodal .modal button {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 100px;
}
#productnotificationmodal .modal button:hover svg {
  fill: var(--brand-color);
}
#productnotificationmodal .modal button svg {
  width: 26px;
  height: 26px;
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}

#scrollupbutton {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 1;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--brand-color);
  border-radius: 100px;
  font-size: 30px;
  color: #fff;
}
@media (max-width: 1024px) {
  #scrollupbutton {
    display: none !important;
  }
}

h1 {
  font-size: clamp(26px, 3vw, 32px);
}

h2 {
  font-size: clamp(24px, 3vw, 28px);
}

.cards-title-general {
  font-size: calc(20px + 1vw);
  padding: 40px 0 50px 0;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.cards-title-general::before,
.cards-title-general::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: var(--brand-color);
  margin-left: -1px;
}

.cards-title-general::after {
  top: auto;
  bottom: 10px;
}

.cards-text-general {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.news-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-top: 50px;
}
@media (max-width: 1199px) {
  .news-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.textcontent .iframe-container {
  position: relative;
}
.textcontent .iframe-container::before {
  content: "";
  padding-top: 56%;
}
.textcontent .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Cookies */
.cookies-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cookies-banner-bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cookies-banner-modal {
  width: 700px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 7px;
  overflow-y: auto;
  z-index: 1;
  color: #000;
}
@media (max-width: 768px) {
  .cookies-banner-modal {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 16px;
    border-radius: 0px;
  }
}
.cookies-banner-mainbutton {
  position: fixed;
  z-index: 1;
  bottom: -5px;
  right: 100px;
  background-color: #f5f5f5;
  padding: 4px 14px 9px 14px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  color: #000;
}
.cookies-banner-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cookies-banner-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .cookies-banner-title {
    font-size: 16px;
  }
}
.cookies-banner-text {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cookies-banner-text {
    margin-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .cookies-banner-text {
    font-size: 12px;
  }
}
.cookies-banner-text p {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .cookies-banner-text p {
    margin-bottom: 5px;
  }
}
.cookies-banner-button {
  background-color: var(--brand-color);
  padding: 14px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .cookies-banner-button {
    padding: 8px 12px;
    margin-bottom: 10px;
  }
}
.cookies-banner-button:hover {
  opacity: 0.9;
}
.cookies-banner-button.secondary {
  background-color: #e1e1e1;
  margin-bottom: 0px;
  color: #333;
}
.cookies-banner-optionlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cookies-banner-optionlist {
    margin-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .cookies-banner-optionlist {
    gap: 6px;
  }
}
.cookies-banner-option-title {
  padding: 10px;
  border-radius: 5px;
  background-color: #e1e1e1;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-right: 30px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .cookies-banner-option-title {
    font-size: 14px;
    padding: 4px 10px;
    padding-right: 30px;
  }
}
.cookies-banner-option-arrow {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-left: 1px solid #d3d3d3;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  cursor: pointer;
  -webkit-transition-property: "background-color";
  transition-property: "background-color";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.cookies-banner-option-arrow:hover {
  background-color: #e4e4e4;
}
.cookies-banner-option-text {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
  width: 100% !important;
}
@media (max-width: 768px) {
  .cookies-banner-option-text {
    font-size: 12px;
  }
}
.cookies-banner-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.toggler {
  display: inline-block;
  width: 55px;
  height: 24px;
  background: -webkit-gradient(linear, left top, right top, from(var(--brand-color-light)), to(var(--brand-color-dark)));
  background: linear-gradient(90deg, var(--brand-color-light) 0%, var(--brand-color-dark) 100%);
  border-radius: 100px;
  -webkit-box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
          box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  position: relative;
}
.toggler.off {
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#eaeaea));
  background: linear-gradient(90deg, #ffffff 0%, #eaeaea 100%);
  -webkit-box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: inset 2px 2px 5px 0px rgba(0, 0, 0, 0.4);
}
.toggler.disabled {
  cursor: default;
  opacity: 0.3;
}
.toggler .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0px 3px 3px 0px rgb(255, 255, 255);
          box-shadow: 0px 3px 3px 0px rgb(255, 255, 255);
  border-radius: 100px;
}
.toggler .point {
  position: absolute;
  width: 34%;
  top: 11%;
  right: 6%;
  left: 60%;
  bottom: 11%;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #9e9e9e 100%);
  border-radius: 100px;
}
.toggler .point div {
  position: absolute;
  width: 90%;
  top: 5%;
  left: 5%;
  bottom: 5%;
  background: linear-gradient(135deg, #c7c7c7 0%, #ffffff 100%);
  border-radius: 100px;
}
.toggler.off .point {
  left: 6%;
}
.toggler.off .point div {
  background: linear-gradient(135deg, #c7c7c7 0%, #ffffff 100%);
}

.boardarea {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.boardarea .title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.boardarea .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.boardarea .item {
  -ms-flex-preferred-size: calc((100% - 120px) / 4);
      flex-basis: calc((100% - 120px) / 4);
}
@media (max-width: 1024px) {
  .boardarea .item {
    -ms-flex-preferred-size: calc((100% - 40px) / 2);
        flex-basis: calc((100% - 40px) / 2);
  }
}
@media (max-width: 425px) {
  .boardarea .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.boardarea a.item {
  text-decoration: none;
}
.boardarea a.item .name {
  color: inherit;
}
.boardarea a.item .role {
  color: #999;
}
.boardarea .image {
  margin-bottom: 10px;
  position: relative;
}
.boardarea .image::after {
  content: "";
  padding-top: 100%;
}
.boardarea .image img {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.boardarea .name {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.boardarea .role {
  text-align: center;
  font-size: 16px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}

/* FAQs */
.faqpage {
  margin: 100px 0px;
}
@media (max-width: 1024px) {
  .faqpage {
    margin: 80px 0px;
  }
}
@media (max-width: 768px) {
  .faqpage {
    margin: 40px 0px;
  }
}
.faqpage .faq {
  margin: 80px 0px;
}
@media (max-width: 768px) {
  .faqpage .faq {
    margin: 40px 0px;
  }
}
.faqpage .faq .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .faqpage .faq .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.faqpage .faq .wrapper .left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
}
@media (max-width: 1024px) {
  .faqpage .faq .wrapper .left {
    text-align: center;
    width: 100%;
  }
}
.faqpage .faq .wrapper .left h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--secondary-color);
}
.faqpage .faq .wrapper .left .text {
  margin-bottom: 20px;
}
.faqpage .faq .wrapper .left img {
  width: 100%;
}
@media (max-width: 1024px) {
  .faqpage .faq .wrapper .left img {
    margin: 0 auto;
    max-width: 360px;
  }
}
.faqpage .previewtext {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .faqpage .previewtext {
    margin-bottom: 40px;
  }
}
.faqpage .textcontent {
  margin: 80px 0px;
}
@media (max-width: 768px) {
  .faqpage .textcontent {
    margin: 40px 0px;
  }
}
.faqpage .subtext {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .faqpage .subtext {
    margin-top: 40px;
  }
}

#about-page .previewtext {
  margin-bottom: 64px;
  font-size: 18px;
}
#about-page .previewtext p {
  font-size: 18px;
}
@media (max-width: 768px) {
  #about-page .previewtext {
    margin-bottom: 32px;
  }
}
#about-page .subtext {
  margin-top: 64px;
}
@media (max-width: 768px) {
  #about-page .subtext {
    margin-top: 32px;
  }
}
#about-page .hero {
  position: relative;
  padding-top: 190px;
  padding-bottom: 359px;
  border-bottom: 15px solid #f1ba87;
}
@media (max-width: 1024px) {
  #about-page .hero {
    padding-bottom: 0;
  }
}
#about-page .hero > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  #about-page .hero > .wrapper {
    margin-bottom: 100px;
  }
}
#about-page .hero > .wrapper h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 500;
  text-align: center;
}
#about-page .hero > .wrapper .textcontent p {
  font-size: 24px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: -1.8px;
  text-align: center;
}
#about-page .hero .manufacturer {
  position: absolute;
  bottom: -170px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  #about-page .hero .manufacturer {
    position: static;
  }
}
@media (max-width: 1024px) {
  #about-page .hero .manufacturer .wrapper {
    padding: 0;
  }
}
#about-page .hero .manufacturer .wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
  padding: 40px;
  padding-top: 32px;
  padding-bottom: 100px;
  background-color: rgba(244, 247, 250, 0.95);
}
@media (max-width: 1024px) {
  #about-page .hero .manufacturer .wrapper .content {
    padding: 30px;
    gap: 30px;
  }
}
#about-page .hero .manufacturer .wrapper .content h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.8px;
  text-align: center;
}
#about-page .hero .manufacturer .wrapper .content .text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: -1.8px;
  text-align: center;
}
#about-page .handmade {
  padding-top: 248px;
  padding-bottom: 80px;
  background-color: var(--secondary-color);
}
@media (max-width: 1024px) {
  #about-page .handmade {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #about-page .handmade {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#about-page .handmade .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1199px) {
  #about-page .handmade .wrapper {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  #about-page .handmade .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}
#about-page .handmade .wrapper .content h2 {
  margin-bottom: 16px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#about-page .handmade .wrapper .content .text p {
  margin-bottom: 38px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#about-page .handmade .wrapper .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style-type: disc;
  margin-left: 20px;
}
#about-page .handmade .wrapper .content .list li {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#about-page .handmade .wrapper img {
  max-width: 543px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
#about-page .familybusiness {
  position: relative;
}
#about-page .familybusiness .top {
  background-position: center;
  background-size: cover;
  height: 368px;
}
#about-page .familybusiness .content-wrap {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
@media (max-width: 1024px) {
  #about-page .familybusiness .content-wrap {
    position: static;
  }
}
#about-page .familybusiness .content-wrap .wrapper .content {
  padding: 25px 70px;
  padding-bottom: 100px;
  border-radius: 5px;
  background-color: rgba(244, 247, 250, 0.95);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  #about-page .familybusiness .content-wrap .wrapper .content {
    padding: 40px 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
  }
}
#about-page .familybusiness .content-wrap .wrapper .content h2 {
  margin-bottom: 90px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.8px;
  text-align: center;
}
@media (max-width: 1024px) {
  #about-page .familybusiness .content-wrap .wrapper .content h2 {
    margin-bottom: 40px;
  }
}
#about-page .familybusiness .content-wrap .wrapper .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  #about-page .familybusiness .content-wrap .wrapper .content .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#about-page .familybusiness .content-wrap .wrapper .content .list li {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.15;
}
#about-page .familybusiness .bottom {
  height: 300px;
  background-color: #f1ba87;
}
@media (max-width: 1024px) {
  #about-page .familybusiness .bottom {
    display: none;
  }
}

#product-page .previewtext {
  margin-bottom: 64px;
  font-size: 18px;
}
#product-page .previewtext p {
  font-size: 18px;
}
@media (max-width: 768px) {
  #product-page .previewtext {
    margin-bottom: 32px;
  }
}
#product-page .subtext {
  margin-top: 64px;
}
@media (max-width: 768px) {
  #product-page .subtext {
    margin-top: 32px;
  }
}
#product-page .hero {
  position: relative;
  padding-top: 167px;
  padding-bottom: 108px;
}
#product-page .hero > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  #product-page .hero > .wrapper {
    margin-bottom: 100px;
  }
}
#product-page .hero > .wrapper h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 500;
  text-align: center;
}
#product-page .hero > .wrapper .textcontent p {
  font-size: 24px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: -1.8px;
  text-align: center;
}
#product-page .ourproducts .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0px;
    gap: 40px;
  }
}
#product-page .ourproducts .list li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#product-page .ourproducts .list li:nth-child(even) .text-conteiner {
  background-color: var(--color-white);
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li:nth-child(even) .text-conteiner {
    background: none;
  }
}
#product-page .ourproducts .list li:nth-child(even) .text-conteiner .wrapper h2 {
  color: var(--color-1);
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li:nth-child(even) .text-conteiner .wrapper h2 {
    color: var(--color-white);
  }
}
#product-page .ourproducts .list li:nth-child(even) .text-conteiner .wrapper .text {
  color: var(--color-1);
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li:nth-child(even) .text-conteiner .wrapper .text {
    color: var(--color-white);
  }
}
#product-page .ourproducts .list li .img-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 670px;
  padding: 80px 0px;
}
@media (max-width: 1199px) {
  #product-page .ourproducts .list li .img-container {
    padding: 60px 0px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li .img-container {
    padding: 0px;
  }
}
#product-page .ourproducts .list li .img-container img {
  width: 457px;
  height: 457px;
  border-radius: 100%;
}
@media (max-width: 1199px) {
  #product-page .ourproducts .list li .img-container img {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li .img-container img {
    width: 220px;
    height: 220px;
  }
}
#product-page .ourproducts .list li .text-conteiner {
  width: 100%;
  padding: 80px 0px;
}
@media (max-width: 1199px) {
  #product-page .ourproducts .list li .text-conteiner {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li .text-conteiner {
    padding: 0px;
  }
}
#product-page .ourproducts .list li .text-conteiner .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
  height: 100%;
}
@media (max-width: 1199px) {
  #product-page .ourproducts .list li .text-conteiner .wrapper {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  #product-page .ourproducts .list li .text-conteiner .wrapper {
    gap: 20px;
  }
}
#product-page .ourproducts .list li .text-conteiner .wrapper h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
}
#product-page .ourproducts .list li .text-conteiner .wrapper .text {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
}

#becomepartner-page .previewtext {
  margin-bottom: 64px;
  font-size: 18px;
}
#becomepartner-page .previewtext p {
  font-size: 18px;
}
@media (max-width: 768px) {
  #becomepartner-page .previewtext {
    margin-bottom: 32px;
  }
}
#becomepartner-page .subtext {
  margin-top: 64px;
}
@media (max-width: 768px) {
  #becomepartner-page .subtext {
    margin-top: 32px;
  }
}
#becomepartner-page .hero {
  position: relative;
  padding-top: 119px;
  padding-bottom: 40pxpx;
  background: -webkit-gradient(linear, left top, right bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom right/50.01% 50.01% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom left/50.01% 50.01% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top left/50.01% 50.01% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top right/50.01% 50.01% no-repeat;
  background: linear-gradient(to bottom right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom right/50.01% 50.01% no-repeat, linear-gradient(to bottom left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom left/50.01% 50.01% no-repeat, linear-gradient(to top left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top left/50.01% 50.01% no-repeat, linear-gradient(to top right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top right/50.01% 50.01% no-repeat;
}
#becomepartner-page .hero > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#becomepartner-page .hero > .wrapper h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 500;
  text-align: center;
}
#becomepartner-page .hero > .wrapper .textcontent p {
  font-size: 24px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: -1.8px;
  text-align: center;
}
#becomepartner-page .partnerinfo {
  position: relative;
}
#becomepartner-page .partnerinfo .top {
  background-position: center;
  background-size: cover;
  height: 368px;
}
#becomepartner-page .partnerinfo .content-wrap {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #becomepartner-page .partnerinfo .content-wrap {
    position: static;
  }
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content {
  padding: 25px 70px;
  padding-bottom: 100px;
  border-radius: 5px;
  background-color: rgba(244, 247, 250, 0.95);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  #becomepartner-page .partnerinfo .content-wrap .wrapper .content {
    padding: 40px 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
  }
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  #becomepartner-page .partnerinfo .content-wrap .wrapper .content .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list li h2 {
  margin-bottom: 40px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.8px;
  text-align: center;
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list li .text {
  margin-bottom: 80px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  padding: 10px 32px;
  padding-bottom: 4px;
  background-color: var(--color-1);
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  color: var(--color-2);
  font-size: 20px;
  font-weight: 400;
}
#becomepartner-page .partnerinfo .content-wrap .wrapper .content .list li a .icon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
}
#becomepartner-page .partnerinfo .bottom {
  height: 406px;
  background-color: var(--secondary-color);
}
@media (max-width: 1024px) {
  #becomepartner-page .partnerinfo .bottom {
    display: none;
  }
}
#becomepartner-page .franchise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom right/50.01% 50.01% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom left/50.01% 50.01% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top left/50.01% 50.01% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top right/50.01% 50.01% no-repeat;
  background: linear-gradient(to bottom right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom right/50.01% 50.01% no-repeat, linear-gradient(to bottom left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom left/50.01% 50.01% no-repeat, linear-gradient(to top left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top left/50.01% 50.01% no-repeat, linear-gradient(to top right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top right/50.01% 50.01% no-repeat;
}
#becomepartner-page .franchise .wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  #becomepartner-page .franchise .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#becomepartner-page .franchise .wrapper .title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
#becomepartner-page .franchise .wrapper .title-container h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  line-height: 1, 6;
  letter-spacing: -1.8px;
}
#becomepartner-page .franchise .wrapper .title-container .icon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}
#becomepartner-page .franchise .wrapper .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
#becomepartner-page .franchise .wrapper .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#becomepartner-page .franchise .wrapper .list li .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 33px;
  fill: var(--color-1);
}
#becomepartner-page .franchise .bgimage {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  #becomepartner-page .franchise .bgimage {
    display: none;
  }
}
#becomepartner-page .franchise2 {
  padding: 80px 0px;
  background-color: var(--brand-color);
}
@media (max-width: 1024px) {
  #becomepartner-page .franchise2 {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .franchise2 {
    padding: 40px 0px;
  }
}
#becomepartner-page .franchise2 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
}
@media (max-width: 768px) {
  #becomepartner-page .franchise2 .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#becomepartner-page .franchise2 .wrapper .list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
}
#becomepartner-page .franchise2 .wrapper .list-container h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  line-height: 1, 6;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#becomepartner-page .franchise2 .wrapper .list-container .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style: disc;
  margin-left: 20px;
}
#becomepartner-page .franchise2 .wrapper .list-container .list li {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#becomepartner-page .welooking {
  background-position: center;
  background-size: cover;
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #becomepartner-page .welooking {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .welooking {
    padding: 40px 0px;
  }
}
#becomepartner-page .welooking .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 55px;
}
#becomepartner-page .welooking .wrapper .text {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  text-align: center;
}
#becomepartner-page .eventshappenings {
  padding-top: 80px;
  background-color: var(--secondary-color);
}
@media (max-width: 1024px) {
  #becomepartner-page .eventshappenings {
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings .content {
    margin-bottom: 30px;
  }
}
#becomepartner-page .eventshappenings .content .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media (max-width: 1199px) {
  #becomepartner-page .eventshappenings .content .wrapper {
    gap: 60px;
  }
}
#becomepartner-page .eventshappenings .content .wrapper .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 50%;
  aspect-ratio: 1;
  border-radius: 100%;
}
@media (max-width: 1199px) {
  #becomepartner-page .eventshappenings .content .wrapper .image {
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings .content .wrapper .image {
    display: none;
  }
}
#becomepartner-page .eventshappenings .content .wrapper .text-content h2 {
  margin-bottom: 80px;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-white);
}
@media (max-width: 1199px) {
  #becomepartner-page .eventshappenings .content .wrapper .text-content h2 {
    margin-bottom: 40px;
  }
}
#becomepartner-page .eventshappenings .content .wrapper .text-content .text {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: -1.8px;
  color: var(--color-white);
}
#becomepartner-page .eventshappenings .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#becomepartner-page .eventshappenings .list li {
  background-position: center;
  background-size: cover;
  width: 50%;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings .list li {
    width: 100%;
    padding: 20px 0px;
  }
}
#becomepartner-page .eventshappenings .list li .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#becomepartner-page .eventshappenings .list li .wrapper h3 {
  margin-bottom: 60px;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -1.8px;
  text-align: start;
  width: 100%;
  color: var(--color-white);
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings .list li .wrapper h3 {
    margin-bottom: 20px;
  }
}
#becomepartner-page .eventshappenings .list li .wrapper .text {
  margin-bottom: 45px;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-white);
  width: 100%;
  text-align: start;
}
@media (max-width: 768px) {
  #becomepartner-page .eventshappenings .list li .wrapper .text {
    margin: 0px;
  }
}
#becomepartner-page .eventshappenings .list li .wrapper a {
  color: var(--color-2);
}
#becomepartner-page .partnership {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  #becomepartner-page .partnership {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#becomepartner-page .partnership .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 500px;
  aspect-ratio: 1;
  background-color: var(--brand-color);
  padding: 20px 63px;
}
@media (max-width: 768px) {
  #becomepartner-page .partnership .left {
    aspect-ratio: 0;
    max-width: 100%;
    width: 100%;
  }
}
#becomepartner-page .partnership .left h2 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
}
#becomepartner-page .partnership .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
#becomepartner-page .partnership .wrapper .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
#becomepartner-page .contactform {
  background-position: center;
  background-size: cover;
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #becomepartner-page .contactform {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #becomepartner-page .contactform {
    padding: 40px 0px;
  }
}
#becomepartner-page .contactform .wrapper h2 {
  margin-bottom: 60px;
  color: #2A2929;
  text-align: center;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
}

#startpage .previewtext {
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #startpage .previewtext {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #startpage .previewtext {
    padding-bottom: 40px;
  }
}
#startpage .textcontent {
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #startpage .textcontent {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #startpage .textcontent {
    padding-bottom: 40px;
  }
}
#startpage .subtext {
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #startpage .subtext {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #startpage .subtext {
    padding-bottom: 40px;
  }
}
#startpage .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  padding-top: 180px;
  padding-bottom: 287px;
  background: -webkit-gradient(linear, left top, right bottom, from(#FAD6A6), color-stop(15%, #F3BE8C), color-stop(32%, #EAA36E), color-stop(50%, #DF7D45)) bottom right/50.1% 50.1% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#FAD6A6), color-stop(15%, #F3BE8C), color-stop(32%, #EAA36E), color-stop(50%, #DF7D45)) bottom left/50.1% 50.1% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#FAD6A6), color-stop(15%, #F3BE8C), color-stop(32%, #EAA36E), color-stop(50%, #DF7D45)) top left/50.1% 50.1% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#FAD6A6), color-stop(15%, #F3BE8C), color-stop(32%, #EAA36E), color-stop(50%, #DF7D45)) top right/50.1% 50.1% no-repeat;
  background: linear-gradient(to bottom right, #FAD6A6 0%, #F3BE8C 15%, #EAA36E 32%, #DF7D45 50%) bottom right/50.1% 50.1% no-repeat, linear-gradient(to bottom left, #FAD6A6 0%, #F3BE8C 15%, #EAA36E 32%, #DF7D45 50%) bottom left/50.1% 50.1% no-repeat, linear-gradient(to top left, #FAD6A6 0%, #F3BE8C 15%, #EAA36E 32%, #DF7D45 50%) top left/50.1% 50.1% no-repeat, linear-gradient(to top right, #FAD6A6 0%, #F3BE8C 15%, #EAA36E 32%, #DF7D45 50%) top right/50.1% 50.1% no-repeat;
}
@media (max-width: 1024px) {
  #startpage .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
#startpage .hero .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(50% - 22.5px);
}
@media (max-width: 1024px) {
  #startpage .hero .wrapper {
    width: 100%;
  }
}
#startpage .hero .wrapper h1 {
  margin-bottom: 134px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #startpage .hero .wrapper h1 {
    margin-bottom: 64px;
  }
}
#startpage .hero .wrapper a {
  margin-bottom: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-radius: 6px;
  background-color: var(--color-1);
  color: #fadcc0;
  font-size: 24px;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
}
@media (max-width: 768px) {
  #startpage .hero .wrapper a {
    padding: 6px 16px;
    font-size: 18px;
  }
}
#startpage .hero .wrapper a .icon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  #startpage .hero .wrapper a .icon {
    width: 24px;
    height: 24px;
  }
}
#startpage .hero .wrapper a:hover {
  background-color: var(--brand-color);
}
#startpage .hero .slider-container {
  padding-bottom: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(50% - 22.5px);
}
@media (max-width: 1024px) {
  #startpage .hero .slider-container {
    width: 100%;
    aspect-ratio: 2/1;
  }
}
#startpage .homeabout {
  background-position: center;
  background-size: cover;
  height: clamp(500px, 80vw, 762px);
}
@media (max-width: 1024px) {
  #startpage .homeabout {
    height: auto;
  }
}
#startpage .homeabout .wrapper {
  width: 100%;
  height: 100%;
}
#startpage .homeabout .wrapper .container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  #startpage .homeabout .wrapper .container {
    padding: 20px 0px;
  }
}
#startpage .homeabout .wrapper .content {
  position: absolute;
  top: -192px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  width: 100%;
  padding: 32px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
@media (max-width: 1024px) {
  #startpage .homeabout .wrapper .content {
    position: static;
  }
}
#startpage .homeabout .wrapper .content .icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 49px;
}
#startpage .homeabout .wrapper .content .title {
  font-size: 42px;
  font-weight: 400;
}
#startpage .homeabout .wrapper .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
#startpage .homeabout .wrapper .content .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: calc((100% - 80px) / 3);
}
@media (max-width: 1024px) {
  #startpage .homeabout .wrapper .content .list li {
    width: 100%;
  }
}
#startpage .homeabout .wrapper .content .list li h3 {
  font-size: 20px;
  font-weight: 600;
}
#startpage .homeabout .wrapper .content .list li .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
#startpage .homeinfo .mainlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1199px) {
  #startpage .homeinfo .mainlist {
    gap: 40px;
  }
}
#startpage .homeinfo .mainlist .mainitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  #startpage .homeinfo .mainlist .mainitem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
#startpage .homeinfo .mainlist .mainitem:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  #startpage .homeinfo .mainlist .mainitem:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#startpage .homeinfo .mainlist .mainitem:nth-child(even) .topic {
  background: var(--secondary-color);
}
#startpage .homeinfo .mainlist .mainitem ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  #startpage .homeinfo .mainlist .mainitem ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#startpage .homeinfo .mainlist .mainitem ul li .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  opacity: 0.8;
}
#startpage .homeinfo .mainlist .mainitem .topic {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 440px;
  aspect-ratio: 1;
  padding: 20px;
  background-color: var(--brand-color);
}
@media (max-width: 1199px) {
  #startpage .homeinfo .mainlist .mainitem .topic {
    aspect-ratio: 0;
    width: 100%;
  }
}
#startpage .homeinfo .mainlist .mainitem .topic div {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}
#startpage .homeinfo .mainlist .mainitem .topic h2 {
  text-align: center;
  color: var(--color-white);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 400;
  line-height: 1.5;
}
#startpage .ouricecream {
  background-position: center;
  background-size: cover;
  height: clamp(500px, 80vw, 762px);
}
@media (max-width: 1024px) {
  #startpage .ouricecream {
    height: auto;
  }
}
#startpage .ouricecream .wrapper {
  width: 100%;
  height: 100%;
}
#startpage .ouricecream .wrapper .container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  #startpage .ouricecream .wrapper .container {
    padding: 20px 0px;
  }
}
#startpage .ouricecream .wrapper .content {
  position: absolute;
  top: 192px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  z-index: 1;
  width: 100%;
  padding: 32px;
  padding-bottom: 124px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
@media (max-width: 1024px) {
  #startpage .ouricecream .wrapper .content {
    position: static;
    padding-bottom: 32px;
  }
}
#startpage .ouricecream .wrapper .content .icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 49px;
}
#startpage .ouricecream .wrapper .content .title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -1.8px;
}
#startpage .ouricecream .wrapper .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1199px) {
  #startpage .ouricecream .wrapper .content .list {
    gap: 32px 16px;
  }
}
@media (max-width: 768px) {
  #startpage .ouricecream .wrapper .content .list {
    gap: 16px;
  }
}
#startpage .ouricecream .wrapper .content .list li {
  width: calc((100% - 128px) / 4);
  height: 414px;
}
@media (max-width: 1199px) {
  #startpage .ouricecream .wrapper .content .list li {
    width: calc((100% - 64px) / 4);
  }
}
@media (max-width: 1024px) {
  #startpage .ouricecream .wrapper .content .list li {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 768px) {
  #startpage .ouricecream .wrapper .content .list li {
    width: 100%;
  }
}
#startpage .ouricecream .wrapper .content .list li:nth-child(2) {
  margin-right: 32px;
}
@media (max-width: 1199px) {
  #startpage .ouricecream .wrapper .content .list li:nth-child(2) {
    margin-right: 16px;
  }
}
@media (max-width: 1024px) {
  #startpage .ouricecream .wrapper .content .list li:nth-child(2) {
    margin-right: 0px;
  }
}
#startpage .ouricecream .wrapper .content .list li a {
  display: block;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding: 36px 16px;
  border-radius: 5px;
}
#startpage .ouricecream .wrapper .content .list li a h3 {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 600;
  text-align: center;
  color: var(--color-white);
}
#startpage .becomepartner {
  position: relative;
  padding-top: 240px;
  padding-bottom: 460px;
  background: -webkit-gradient(linear, left top, right bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom right/50.01% 50.01% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom left/50.01% 50.01% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top left/50.01% 50.01% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top right/50.01% 50.01% no-repeat;
  background: linear-gradient(to bottom right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom right/50.01% 50.01% no-repeat, linear-gradient(to bottom left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom left/50.01% 50.01% no-repeat, linear-gradient(to top left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top left/50.01% 50.01% no-repeat, linear-gradient(to top right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top right/50.01% 50.01% no-repeat;
}
@media (max-width: 1024px) {
  #startpage .becomepartner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#startpage .becomepartner .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  #startpage .becomepartner .wrapper {
    gap: 32px;
  }
}
#startpage .becomepartner .wrapper .title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -1.8px;
}
#startpage .becomepartner .wrapper .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
  width: 100%;
}
@media (max-width: 1024px) {
  #startpage .becomepartner .wrapper .list {
    margin-bottom: 64px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #startpage .becomepartner .wrapper .list {
    gap: 16px;
  }
}
#startpage .becomepartner .wrapper .list li {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1024px) {
  #startpage .becomepartner .wrapper .list li {
    max-width: 100%;
    width: 100%;
  }
}
#startpage .becomepartner .wrapper .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  height: 152px;
  width: 100%;
  background-color: var(--color-1);
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
}
@media (max-width: 1024px) {
  #startpage .becomepartner .wrapper .list li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: auto;
    padding: 10px;
    gap: 10px;
  }
}
#startpage .becomepartner .wrapper .list li a:hover {
  background-color: var(--brand-color);
}
#startpage .becomepartner .wrapper .list li a h3 {
  color: #FADCC0;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #startpage .becomepartner .wrapper .list li a h3 {
    font-size: 16px;
  }
}
#startpage .becomepartner .wrapper .list li a .icon {
  background-position: center;
  background-size: contain;
  width: 48px;
  height: 48px;
}
@media (max-width: 768px) {
  #startpage .becomepartner .wrapper .list li a .icon {
    width: 32px;
    height: 32px;
  }
}
#startpage .becomepartner .whychoosingsreja {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  #startpage .becomepartner .whychoosingsreja {
    position: static;
  }
}
#startpage .becomepartner .whychoosingsreja .whychoosingsreja_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 32px 128px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
@media (max-width: 1199px) {
  #startpage .becomepartner .whychoosingsreja .whychoosingsreja_content {
    padding: 32px 64px;
  }
}
@media (max-width: 1024px) {
  #startpage .becomepartner .whychoosingsreja .whychoosingsreja_content {
    gap: 32px;
    padding: 32px;
  }
}
@media (max-width: 768px) {
  #startpage .becomepartner .whychoosingsreja .whychoosingsreja_content {
    padding: 16px;
  }
}
#startpage .becomepartner .whychoosingsreja .whychoosingsreja_title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
}
#startpage .becomepartner .whychoosingsreja .listwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 40px;
}
@media (max-width: 1024px) {
  #startpage .becomepartner .whychoosingsreja .listwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
@media (max-width: 768px) {
  #startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list li .icon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list li h3 {
  font-size: 36px;
  font-weight: 400;
  opacity: 0.9;
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_list li .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  opacity: 0.8;
}
#startpage .becomepartner .whychoosingsreja .listwrap .whychoosingsreja_image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 226px;
  max-width: 450px;
  width: 100%;
}
#startpage .ourpartners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--secondary-color);
}
#startpage .ourpartners .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: center;
  background-size: cover;
  width: 520px;
}
@media (max-width: 1024px) {
  #startpage .ourpartners .image {
    display: none;
  }
}
#startpage .ourpartners .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  padding-top: 147px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  #startpage .ourpartners .content {
    padding: 64px 0px;
    gap: 64px;
  }
}
@media (max-width: 768px) {
  #startpage .ourpartners .content {
    padding: 32px 0px;
    gap: 32px;
  }
}
#startpage .ourpartners .content .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 16px;
}
#startpage .ourpartners .content .wrapper .icon {
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
}
#startpage .ourpartners .content .wrapper .title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -1.8px;
  color: var(--color-2);
}
#startpage .ourpartners .content .wrapper .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-2);
}
#startpage .ourpartners .content .wrapper a {
  padding: 10px 32px;
  font-size: 24px;
  font-weight: 400;
  background-color: var(--color-1);
  color: var(--color-2);
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
}
#startpage .ourpartners .content .wrapper a:hover {
  background-color: var(--brand-color);
}
#startpage .ourpartners .content .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding: 0px 32px;
}
#startpage .ourpartners .content .list li {
  height: 50px;
}
@media (max-width: 1024px) {
  #startpage .ourpartners .content .list li {
    height: 30px;
  }
}
#startpage .ourpartners .content .list li img {
  width: auto;
  height: 100%;
}
#startpage .knownfrom {
  padding: 80px 0px;
  background-color: var(--brand-color);
}
@media (max-width: 1024px) {
  #startpage .knownfrom {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #startpage .knownfrom {
    padding: 40px 0px;
  }
}
#startpage .knownfrom .wrapper h2 {
  margin-bottom: 84px;
  color: var(--color-2);
}
#startpage .cooperation {
  padding: 80px 0px;
  background-color: var(--brand-color);
}
@media (max-width: 1024px) {
  #startpage .cooperation {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #startpage .cooperation {
    padding: 40px 0px;
  }
}
#startpage .cooperation .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1024px) {
  #startpage .cooperation .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
#startpage .cooperation .wrapper .left {
  width: 100%;
}
#startpage .cooperation .wrapper .left video {
  width: 100%;
  max-width: 845px;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  #startpage .cooperation .wrapper .left video {
    max-width: 100%;
  }
}
#startpage .cooperation .wrapper .left video::-webkit-media-controls {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#startpage .cooperation .wrapper .left video::-webkit-media-controls-enclosure {
  opacity: 0;
}
#startpage .cooperation .wrapper .left video:hover::-webkit-media-controls {
  opacity: 1;
}
#startpage .cooperation .wrapper .left video:hover::-webkit-media-controls-enclosure {
  opacity: 1;
}
#startpage .cooperation .wrapper .right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 26px;
  max-width: 30%;
  text-align: right;
}
@media (max-width: 1024px) {
  #startpage .cooperation .wrapper .right {
    max-width: 100%;
    text-align: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
#startpage .cooperation .wrapper .right h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-2);
}
#startpage .cooperation .wrapper .right img {
  max-width: 188px;
  width: 100%;
  height: auto;
}
#startpage .gallery-type2-component {
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  #startpage .gallery-type2-component {
    padding-bottom: 40px;
  }
}

#shoppage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
#shoppage .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc((100% - 60px) / 4);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}
#shoppage .product-title {
  text-align: center;
  margin-bottom: 10px;
}
#shoppage .product-img {
  width: 100%;
  height: 190px;
  background-size: contain !important;
}

#contact-page .textcontent {
  text-align: start;
}
#contact-page .hero {
  background-position: center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 140px;
  padding-bottom: 50px;
}
#contact-page .hero .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#contact-page .hero h1 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 425px) {
  #contact-page .hero .breadcrumb-type1-component {
    display: none;
  }
}
#contact-page .content {
  padding: 80px 0px;
}
@media (max-width: 1024px) {
  #contact-page .content {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  #contact-page .content {
    padding: 40px 0px;
  }
}
#contact-page .content .wrapper .map-container {
  margin-bottom: 100px;
  width: 100%;
  height: 450px;
}
@media (max-width: 1024px) {
  #contact-page .content .wrapper .map-container {
    margin-bottom: 50px;
  }
}
#contact-page .content .wrapper .map-container iframe {
  width: 100%;
  height: 100%;
}
#contact-page .content .wrapper .map-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact-page .content .wrapper .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  #contact-page .content .wrapper .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
#contact-page .content .wrapper .wrap .textcontent {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#contact-page .content .wrapper .wrap .contactform-type1-component {
  min-width: 50%;
}
#contact-page .faq-type3-component {
  background-color: #F5F5F5;
}

.ckeditorhtml,
.cke_contents {
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 1.4;
}
.ckeditorhtml .icon,
.cke_contents .icon {
  max-width: 32px;
}
.ckeditorhtml table,
.cke_contents table {
  font-size: 18px;
  line-height: 1.4;
}
.ckeditorhtml table.floors,
.cke_contents table.floors {
  border: none;
}
@media (max-width: 768px) {
  .ckeditorhtml table.floors,
  .cke_contents table.floors {
    float: none;
    width: 100% !important;
  }
}
.ckeditorhtml table.floors h1,
.ckeditorhtml table.floors h2,
.ckeditorhtml table.floors h3,
.ckeditorhtml table.floors h4,
.ckeditorhtml table.floors h5,
.ckeditorhtml table.floors h6,
.cke_contents table.floors h1,
.cke_contents table.floors h2,
.cke_contents table.floors h3,
.cke_contents table.floors h4,
.cke_contents table.floors h5,
.cke_contents table.floors h6 {
  margin: 0px;
  margin-bottom: 10px;
}
.ckeditorhtml table.floors img,
.cke_contents table.floors img {
  margin: 0px;
  margin-right: 20px;
  max-width: 100px;
}
@media (max-width: 768px) {
  .ckeditorhtml table.floors img,
  .cke_contents table.floors img {
    margin-bottom: 10px;
  }
}
.ckeditorhtml table.floors p,
.cke_contents table.floors p {
  font-size: 14px;
  margin: 0px;
}
@media (max-width: 768px) {
  .ckeditorhtml table.floors p,
  .cke_contents table.floors p {
    margin-bottom: 20px;
  }
}
.ckeditorhtml table.floors tbody,
.cke_contents table.floors tbody {
  border: none;
}
.ckeditorhtml table.floors tbody tr,
.cke_contents table.floors tbody tr {
  border: none;
}
.ckeditorhtml table.floors tbody tr td,
.cke_contents table.floors tbody tr td {
  padding: 0px;
  border: none;
}
.ckeditorhtml table tbody,
.cke_contents table tbody {
  border: 1px solid #e6e6e6;
}
.ckeditorhtml table tbody table td,
.ckeditorhtml table tbody table th,
.cke_contents table tbody table td,
.cke_contents table tbody table th {
  border: none;
}
.ckeditorhtml table tbody tr,
.cke_contents table tbody tr {
  border: 1px solid #e6e6e6;
}
.ckeditorhtml table tbody tr td,
.cke_contents table tbody tr td {
  border: 1px solid #e6e6e6;
  padding: 4px 10px;
}
.ckeditorhtml p,
.cke_contents p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}
.ckeditorhtml h1,
.ckeditorhtml h2,
.ckeditorhtml h3,
.ckeditorhtml h4,
.ckeditorhtml h5,
.ckeditorhtml h6,
.cke_contents h1,
.cke_contents h2,
.cke_contents h3,
.cke_contents h4,
.cke_contents h5,
.cke_contents h6 {
  text-align: left;
  line-height: 1.3;
  font-weight: 600;
  color: #0a0a0a;
}
.ckeditorhtml h1,
.cke_contents h1 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: clamp(30px, 5vw, 38px);
}
.ckeditorhtml h2,
.cke_contents h2 {
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 32px);
}
.ckeditorhtml h3,
.cke_contents h3 {
  margin-top: 26px;
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 28px);
}
.ckeditorhtml h4,
.cke_contents h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 24px);
}
.ckeditorhtml h5,
.cke_contents h5 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: clamp(18px, 2vw, 20px);
}
.ckeditorhtml h6,
.cke_contents h6 {
  margin-bottom: 10px;
  font-size: 18px;
}
.ckeditorhtml a,
.cke_contents a {
  display: inline;
  color: var(--brand-color);
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
  text-decoration: underline;
}
.ckeditorhtml a:hover,
.cke_contents a:hover {
  opacity: 0.8;
}
.ckeditorhtml blockquote,
.cke_contents blockquote {
  border-left: solid 4px var(--brand-color);
  background-color: fade(var(--brand-color), 5%);
  padding: 4px 20px;
  margin: 0 0 20px 0;
  font-weight: 300;
}
.ckeditorhtml blockquote p:last-child,
.cke_contents blockquote p:last-child {
  margin-bottom: 0;
}
.ckeditorhtml strong,
.cke_contents strong {
  font-weight: 700 !important;
}
.ckeditorhtml img,
.cke_contents img {
  max-width: 100%;
  border-radius: 5px;
  margin: 0 20px 20px 20px;
}
@media (max-width: 768px) {
  .ckeditorhtml img,
  .cke_contents img {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.ckeditorhtml .faq-type2-component .wrapper,
.cke_contents .faq-type2-component .wrapper {
  padding: 0px;
}

.cke_contents table {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.ckeditorhtml ul,
.cke_contents ul {
  float: none;
  padding: 15px;
  padding-top: 0px;
  padding-left: 24px;
  list-style-type: disc;
}

.ckeditorhtml ol,
.cke_contents ol {
  float: none;
  padding: 15px;
  padding-top: 0px;
  padding-left: 24px;
  list-style-type: decimal;
}

.ckeditorhtml ul li,
.cke_contents ul li,
.ckeditorhtml ol li,
.cke_contents ol li {
  float: none;
  margin-bottom: 3px;
}

.ckeditorhtml ul ul,
.cke_contents ul ul {
  list-style-type: circle;
  padding-left: 33px;
}

.ckeditorhtml img.full,
.cke_contents img.full {
  margin: 0 0 20px 0;
}

.ckeditorhtml .noborder,
.cke_contents .noborder {
  border: none;
  border-collapse: collapse;
}

#menumobile {
  display: none;
  z-index: 12;
}
@media (max-width: 1024px) {
  #menumobile {
    display: inline-block;
  }
}
#menumobile.scrolled {
  position: fixed;
  top: 30px;
}
#menumobile input {
  position: absolute;
  top: 40px;
  right: 40px;
  height: 20px;
  width: 26px;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 4;
}
@media (max-width: 768px) {
  #menumobile input {
    top: 30px;
    right: 20px;
  }
}
#menumobile .background {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
}
#menumobile .hamburger-lines {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: 40px;
  height: 20px;
  width: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  #menumobile .hamburger-lines {
    top: 30px;
    right: 20px;
  }
}
#menumobile .hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: var(--color-1);
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
}
#menumobile .hamburger-lines .line1 {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
#menumobile .hamburger-lines .line2 {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
#menumobile .hamburger-lines .line3 {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
#menumobile input[type=checkbox]:checked {
  padding-right: 5px;
}
#menumobile input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menumobile input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
#menumobile input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menumobile input[type=checkbox]:checked ~ nav#menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}
#menumobile input[type=checkbox]:checked ~ .background {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 400ms;
  transition: 400ms;
}

nav#menu {
  float: left;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 500px;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}
nav#menu .loading {
  width: 100%;
  height: 100px;
  margin: 0;
  margin-left: 10px;
  text-decoration: none;
  display: none;
  background: url(/public/base_images/loading2.gif) center no-repeat rgba(255, 255, 255, 0.1);
  background-size: 30px 30px;
}
nav#menu .logo {
  margin: -20px -20px 0px -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px;
  padding: 14px 20px;
  height: 80px;
  border-bottom: 1px solid var(--secondary-color);
}
@media (max-width: 1024px) {
  nav#menu .logo {
    padding: 10px 20px;
  }
}
nav#menu .logo img {
  height: 100%;
  width: auto;
}
nav#menu .logo .title {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
}
nav#menu .logo .close-button {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: var(--secondary-color);
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
nav#menu .logo .close-button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  nav#menu .logo .close-button {
    top: 25px;
  }
}
nav#menu .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px 0px -20px;
}
nav#menu .tabs .item {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  background-color: #f5f5f5;
  cursor: pointer;
}
nav#menu .tabs .item.active {
  background-color: #fff;
}
nav#menu .tab {
  width: 100%;
  display: none;
}
nav#menu .tab.active {
  display: block !important;
}
nav#menu ul.navi {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 -20px;
  margin-bottom: 20px;
  width: calc(100% + 40px);
}
nav#menu ul.navi > li {
  float: left;
  width: 100%;
}
nav#menu ul.navi li {
  position: relative;
}
nav#menu ul.navi li.header-button {
  background-color: var(--brand-color);
  color: var(--color-1);
}
nav#menu ul.navi li .open {
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(/public/base_images/plus.png) no-repeat center;
  height: 44px;
  width: 44px;
  z-index: 1;
  display: none;
  cursor: pointer;
  -webkit-transition: 100ms;
  transition: 100ms;
  border-radius: 3px;
}
nav#menu ul.navi li .close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(/public/base_images/minus.png) no-repeat center;
  height: 44px;
  width: 44px;
  z-index: 1;
  display: none;
  cursor: pointer;
  -webkit-transition: 100ms;
  transition: 100ms;
  border-radius: 3px;
}
nav#menu ul.navi li .open:hover, nav#menu ul.navi li .close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: 100ms;
  transition: 100ms;
}
nav#menu ul.navi li img {
  width: 30px;
  margin-right: 4px;
}
nav#menu ul.navi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  height: 44px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 20px;
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
nav#menu ul.navi a svg {
  width: 22px;
  height: 22px;
}
nav#menu ul.navi a.last {
  border-bottom: 0px;
}
nav#menu ul.navi a:hover {
  color: var(--brand-color);
}
nav#menu ul.navi a:hover svg {
  width: 22px;
  height: 22px;
}
nav#menu ul.navi a.active {
  cursor: default;
  font-weight: 500;
  color: var(--brand-color);
}
nav#menu ul.navi > li > ul {
  display: none;
}
nav#menu ul.navi > li > ul > li > a {
  padding-left: 30px;
}
nav#menu ul.navi > li > ul > li > ul {
  display: none;
}
nav#menu ul.navi > li > ul > li > ul > li > a {
  padding-left: 50px;
}
nav#menu ul.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 -20px;
}
nav#menu ul.categories li {
  width: 100%;
  border-top: 1px solid #e9e9e9;
}
nav#menu ul.categories li.hidden {
  display: none;
}
nav#menu ul.categories li span,
nav#menu ul.categories li a {
  display: block;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
nav#menu ul.categories li span.hidden,
nav#menu ul.categories li a.hidden {
  display: none;
}
nav#menu ul.categories li span i,
nav#menu ul.categories li a i {
  font-size: 12px;
}
nav#menu ul.categories li span i.back,
nav#menu ul.categories li a i.back {
  display: none;
}
nav#menu ul.categories li.active > span {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 700;
  color: var(--brand-color);
  border-bottom: 1px solid #e9e9e9;
}
nav#menu ul.categories li.active > span i.back {
  display: block;
}
nav#menu ul.categories li.active > span i.forward {
  display: none;
}
nav#menu ul.categories li:first-child {
  border: none;
}
nav#menu ul.categories li ul.hidden {
  display: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header-main {
  width: 100%;
  height: 100px;
  padding: 10px 0px;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
}
@media (max-width: 768px) {
  .header-main {
    height: 80px;
  }
}
.header-main > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
.header-main.scrolled {
  position: fixed;
  top: 0px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.header-main .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .header-main .wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.header-main .wrapper .button-type1 {
  background: #FFC0AB;
}
@media (max-width: 1024px) {
  .header-main .wrapper .button-type1 {
    display: none;
  }
}
.header-main .header-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
.header-main .header-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
.header-main .header-logo-link img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-main .header-logo-title {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 425px) {
  .header-main .header-logo-title {
    display: none;
  }
}
.header-main .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 32px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .header-main .right {
    display: none;
  }
}
@media (max-width: 425px) {
  .header-main .right {
    display: none;
  }
}
.header-main .right .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header-main .right .links li {
  height: 100%;
}
.header-main .right .links li.active {
  text-decoration: underline;
}
.header-main .right .links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.header-main .right .links li a:hover {
  color: var(--brand-color);
}
.header-main .right .language-dropdown {
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.header-main .right .language-dropdown summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.header-main .right .language-dropdown summary svg {
  margin-right: 6px;
  width: 18px;
  height: 18px;
  fill: var(--color-1);
  -webkit-transition: fill var(--animation);
  transition: fill var(--animation);
}
.header-main .right .language-dropdown summary i {
  margin-left: 3px;
  font-size: 10px;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.header-main .right .language-dropdown summary:hover {
  color: var(--brand-color);
}
.header-main .right .language-dropdown summary:hover svg {
  fill: var(--brand-color);
}
.header-main .right .language-dropdown summary:hover i {
  color: var(--brand-color);
}
.header-main .right .language-dropdown[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header-main .right .language-dropdown .languages {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  border-radius: 2px;
  background: var(--secondary-color);
  overflow: hidden;
}
.header-main .right .language-dropdown .languages .language a {
  display: block;
  text-decoration: none;
  padding: 4px;
  font-size: 16px;
  font-weight: 400;
}
.header-main .right .language-dropdown .languages .language a.active {
  font-weight: 600;
}

.startpage-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 92px);
  position: relative;
}

.startpage-hero .text-block {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px 60px 30px calc(65% - (300px - 1vw));
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
}

.startpage-hero .title {
  font-size: calc(32px + 1.5vw);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.startpage-hero .text {
  font-size: calc(20px + 1.2vw);
  font-weight: 400;
  line-height: 1.4;
}

.startpage-hero .link {
  display: inline-block;
  font-size: calc(16px + 0.3vw);
  margin-top: 30px;
  padding: 10px 30px;
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transform: 300ms;
          transform: 300ms;
}

.startpage-hero .link:hover {
  opacity: 0.8;
}

.registration__as {
  text-align: center;
  margin-top: -20px;
}
.registration__account-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.registration__account-types__item {
  width: calc((100% - 40px) / 3);
  background-color: #f5f5f5;
  background: url(/public/base_images/footprint-bg-small.png) repeat center #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  opacity: 0.7;
  border: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition-property: opacity, border-color, color, -webkit-transform;
  transition-property: opacity, border-color, color, -webkit-transform;
  transition-property: opacity, border-color, transform, color;
  transition-property: opacity, border-color, transform, color, -webkit-transform;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  border: 1px solid #ccc;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .registration__account-types__item {
    width: 100%;
  }
}
.registration__account-types__item:hover, .registration__account-types__item:focus {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  opacity: 1;
  border: 2px solid var(--brand-color-light);
  color: var(--brand-color);
}

.landingpage img {
  width: 100%;
  margin-bottom: 50px;
}

#sidebasket {
  width: 100%;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 15;
  display: none;
}
#sidebasket .bg {
  width: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
#sidebasket .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 350px;
  position: absolute;
  top: 0px;
  right: -400px;
  bottom: 0px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 425px) {
  #sidebasket .inner {
    width: 100%;
  }
}
#sidebasket .inner .sidebasket-loader {
  position: absolute;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
#sidebasket .inner .sidebasket-loader img {
  width: 100px;
  height: 100px;
}
#sidebasket .inner .sidebasket-loader.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sidebasket .loader {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0px;
  background: url(../base_images/loading1.gif) no-repeat center rgba(255, 255, 255, 0.6);
  background-size: 30px auto;
  display: none;
}
#sidebasket .closebutton {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
}
#sidebasket .closebutton .icon {
  width: 100%;
  height: 100%;
  fill: #4a4a4a;
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}
#sidebasket .closebutton:hover .icon {
  fill: var(--brand-color);
}
#sidebasket .top {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  background-color: #f2f2f2;
}
#sidebasket .title {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  color: #231f20;
}
#sidebasket .text {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}
#sidebasket .text span {
  font-size: 16px;
  color: var(--brand-color);
}
#sidebasket .main {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}
#sidebasket .main::-webkit-scrollbar {
  width: 5px;
  background-color: rgb(228, 226, 226);
  border-radius: 5px;
  height: 200px;
}
#sidebasket .main::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}
#sidebasket .line {
  width: 100%;
  padding: 0 5px 20px 5px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}
#sidebasket .line a {
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
#sidebasket .line a:hover {
  color: var(--brand-color);
}
#sidebasket .line .quantity {
  font-size: 14px;
  color: #acacac;
}
#sidebasket .line .price {
  font-size: 14px;
  color: #333;
}
#sidebasket .bottom {
  width: 100%;
}
#sidebasket .subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 30px;
  font-size: 15px;
  font-weight: 400;
  background-color: #fff;
}
#sidebasket .subtotal span {
  font-size: 20px;
}
#sidebasket .button50 {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 50%;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--brand-color);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#sidebasket .button50:hover {
  opacity: 0.7;
}
#sidebasket .button50.checkout {
  color: #fff;
  background-color: #444;
}
#sidebasket .button50.checkout:hover {
  background-color: #333;
}
#sidebasket .button50.checkout .icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
#sidebasket .noproducts p {
  font-size: 15px;
}
#sidebasket .noproducts a {
  margin-top: 20px;
}

#basketpage {
  padding-bottom: 20px;
}
#basketpage .freeshipping {
  padding: 10px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
#basketpage .freeshipping .progressline {
  width: 100%;
  max-width: 300px;
  height: 14px;
  border-radius: 20px;
  background-color: rgba(100, 100, 100, 0.2);
  overflow: hidden;
  margin-bottom: 10px;
}
#basketpage .freeshipping .progressline div {
  background-color: var(--brand-color);
  height: 100%;
}
#basketpage .freeshipping p {
  font-size: 16px;
}
@media (max-width: 768px) {
  #basketpage .freeshipping p {
    font-size: 14px;
  }
}
#basketpage .freeshipping p span {
  color: var(--brand-color);
  font-weight: 600;
}
#basketpage form#shopbasket {
  position: relative;
}
#basketpage form#shopbasket.loader .shopbasket-loader {
  opacity: 1;
}
#basketpage form#shopbasket.loader .contentwrapper {
  opacity: 0.3;
}
#basketpage .shopbasket-loader {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
}
#basketpage .shopbasket-loader img {
  width: 100%;
  height: 100%;
}
#basketpage .contentwrapper {
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #basketpage .contentwrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  #basketpage .contentwrapper .left {
    margin-bottom: 30px;
  }
}
#basketpage .contentwrapper .left .list-header {
  display: grid;
  grid-template-columns: 40px 2fr 1fr 110px 1fr;
  border-bottom: 2px solid #e3e3e3;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
#basketpage .contentwrapper .left .list-header > :nth-child(2) {
  justify-self: start;
}
@media (max-width: 425px) {
  #basketpage .contentwrapper .left .list-header {
    grid-template-columns: 30px 2fr 0.7fr 76px 0.7fr;
    font-size: 14px;
  }
}
#basketpage .contentwrapper .left .products-list {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}
#basketpage .contentwrapper .left .products-list .item {
  display: grid;
  grid-template-columns: 40px 2fr 1fr 110px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  min-height: 40px;
  font-size: 16px;
  color: var(--brand-color);
}
#basketpage .contentwrapper .left .products-list .item:not(:last-child) {
  margin-bottom: 10px;
}
#basketpage .contentwrapper .left .products-list .item > :nth-child(2) {
  justify-self: start;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .left .products-list .item {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  #basketpage .contentwrapper .left .products-list .item {
    grid-template-columns: 30px 2fr 0.7fr 76px 0.7fr;
    font-size: 12px;
  }
}
#basketpage .contentwrapper .left .products-list .item .delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#basketpage .contentwrapper .left .products-list .item .delete .icon {
  width: 24px;
  height: 24px;
  fill: #000;
  cursor: pointer;
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}
#basketpage .contentwrapper .left .products-list .item .delete .icon:hover {
  fill: var(--error-color);
}
#basketpage .contentwrapper .left .products-list .item .name {
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}
#basketpage .contentwrapper .left .products-list .item .name p {
  overflow-wrap: anywhere;
}
#basketpage .contentwrapper .left .products-list .item .name:hover {
  color: var(--brand-color);
}
#basketpage .contentwrapper .left .products-list .item .quantitybox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  height: 30px;
}
@media (max-width: 425px) {
  #basketpage .contentwrapper .left .products-list .item .quantitybox {
    gap: 0;
  }
}
#basketpage .contentwrapper .left .products-list .item .quantitybox input {
  width: 50px;
  height: 28px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 425px) {
  #basketpage .contentwrapper .left .products-list .item .quantitybox input {
    width: 28px;
  }
}
#basketpage .contentwrapper .left .products-list .item .quantitybox .icon {
  width: 24px;
  height: 24px;
  fill: #000;
  cursor: pointer;
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}
#basketpage .contentwrapper .left .products-list .item .quantitybox .icon:hover {
  fill: var(--brand-color);
}
#basketpage .contentwrapper .left .products-list .item .quantitybox .minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#basketpage .contentwrapper .left .products-list .item .quantitybox .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#basketpage .contentwrapper .left .coupon-code {
  margin-bottom: 50px;
}
#basketpage .contentwrapper .left .coupon-code .title {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#basketpage .contentwrapper .left .coupon-code .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#basketpage .contentwrapper .left .coupon-code input {
  width: 300px;
  max-width: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px 4px 0px;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  height: 30px;
  -webkit-transition: border 150ms ease-in-out;
  transition: border 150ms ease-in-out;
  outline: none;
}
#basketpage .contentwrapper .left .coupon-code input:focus {
  border-bottom: 1px solid var(--brand-color);
}
#basketpage .contentwrapper .left .coupon-code .cashinbutton {
  cursor: pointer;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: var(--brand-color);
  padding: 0px 20px;
  position: relative;
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
}
#basketpage .contentwrapper .left .coupon-code .cashinbutton:hover {
  background-color: var(--brand-color-dark);
}
#basketpage .contentwrapper .left .refreshbutton {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 15px 30px;
  font-weight: 500;
  font-size: 15px;
  color: var(--brand-color);
  background-color: #fff;
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  -webkit-transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out, color 150ms ease-in-out;
}
#basketpage .contentwrapper .left .refreshbutton:hover {
  background-color: var(--brand-color);
  color: #fff;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .left .refreshbutton {
    padding: 10px 20px;
  }
}
#basketpage .contentwrapper .right .title {
  font-size: 16px;
  font-weight: 600;
}
#basketpage .contentwrapper .right .price {
  font-size: 16px;
}
#basketpage .contentwrapper .right .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0px;
}
#basketpage .contentwrapper .right .subtotal {
  border-bottom: 1px solid #e3e3e3;
}
#basketpage .contentwrapper .right .promocode {
  border-bottom: 1px solid #e3e3e3;
}
#basketpage .contentwrapper .right .shipping {
  display: block;
  border-bottom: 1px solid #e3e3e3;
  height: auto;
}
#basketpage .contentwrapper .right .shipping .title {
  font-size: 16px;
  margin-bottom: 12px;
}
#basketpage .contentwrapper .right .shipping .inputwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
#basketpage .contentwrapper .right .shipping label {
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
}
#basketpage .contentwrapper .right .shipping label p {
  font-size: 12px;
}
#basketpage .contentwrapper .right .shipping .price {
  text-align: end;
}
#basketpage .contentwrapper .right .total {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .right .total {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    height: 34px;
  }
}
#basketpage .contentwrapper .right .total .title {
  font-size: 18px;
}
#basketpage .contentwrapper .right .total .price {
  font-size: 18px;
  font-weight: 600;
}
#basketpage .contentwrapper .right .text {
  font-size: 13px;
  color: #666;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .right .text {
    font-size: 12px;
  }
}
#basketpage .contentwrapper .right .submit-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  background-color: var(--brand-color);
  font-size: 18px;
  color: #fff;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
}
#basketpage .contentwrapper .right .submit-button:hover {
  background-color: var(--brand-color-dark);
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .right .submit-button {
    font-size: 16px;
    height: 38px;
  }
}
#basketpage .contentwrapper .right .submit-button .icon {
  width: 28px;
  height: 28px;
  fill: #fff;
}
@media (max-width: 1024px) {
  #basketpage .contentwrapper .right .submit-button .icon {
    width: 24px;
    height: 24px;
  }
}
#basketpage .noproducts p {
  font-size: 22px;
  margin-bottom: 30px;
}
#basketpage .productnotification.refresh {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
}
#basketpage .productnotification.refresh .icon {
  width: 28px;
  height: 28px;
  fill: var(--brand-color);
}

/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.shop-product-page {
  padding: 40px 0;
}
.shop-product-page .breadcramp_list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .shop-product-page .breadcramp_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.shop-product-page .startproductinfo {
  display: none;
}
@media (max-width: 768px) {
  .shop-product-page .startproductinfo {
    display: block;
  }
}
.shop-product-page .startproductinfo .brand_image {
  width: 120px;
  margin-bottom: 10px;
}
.shop-product-page .startproductinfo .brand_image img {
  width: 100%;
  height: 100%;
}
.shop-product-page .startproductinfo .product_name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.shop-product-page .startproductinfo .product_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}
.shop-product-page .startproductinfo .product_id {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #a8a8a8;
}
.shop-product-page .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .shop-product-page .product {
    display: block;
  }
}
.shop-product-page .product .left {
  position: relative;
  width: 40%;
}
@media (max-width: 768px) {
  .shop-product-page .product .left {
    width: 100%;
  }
}
.shop-product-page .product .right {
  width: calc(60% - 50px);
}
@media (max-width: 768px) {
  .shop-product-page .product .right {
    width: 100%;
  }
}
.shop-product-page .product .right .brand_image {
  width: 120px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .shop-product-page .product .right .brand_image {
    display: none;
  }
}
.shop-product-page .product .right .brand_image img {
  width: 100%;
  height: 100%;
}
.shop-product-page .product .right .variants_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.shop-product-page .product .right .variants_list .item {
  cursor: pointer;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  -webkit-transition: border 100ms linear;
  transition: border 100ms linear;
  overflow: hidden;
  text-align: center;
}
.shop-product-page .product .right .variants_list .item.active {
  cursor: default;
  border: 1px solid var(--brand-color);
}
.shop-product-page .product .right .variants_list .item.active a {
  cursor: default;
}
.shop-product-page .product .right .variants_list .item:hover {
  border: 1px solid var(--brand-color);
}
.shop-product-page .product .right .variants_list .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  width: 60px;
  height: 60px;
}
.shop-product-page .product .right .variants_list .item a img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-product-page .product .right .variants_list .item a p {
  word-break: break-all;
}
.shop-product-page .product .right .variants_sizes_container {
  position: relative;
  margin-bottom: 20px;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 8px 0px 14px;
  height: 36px;
  width: 100px;
  background: none;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_button .icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_button .icon.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_dropdown {
  position: absolute;
  left: 0px;
  top: 36px;
  width: 100px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  border-top: none;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  z-index: 6;
  max-height: 250px;
  overflow-x: auto;
  pointer-events: none;
  height: 0px;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_dropdown.open {
  height: auto;
  pointer-events: all;
  opacity: 1;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_dropdown a {
  padding-left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_dropdown a:hover {
  background-color: #f0f0f0;
}
.shop-product-page .product .right .variants_sizes_container .variants_sizes_dropdown a.active {
  cursor: default;
  background-color: #f0f0f0;
}
.shop-product-page .product .product-not-found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0 auto;
}
.shop-product-page .product .product-not-found img {
  width: 400px;
  height: 400px;
}
.shop-product-page .product .product-not-found .not-found-text-container {
  padding-top: 55px;
}
.shop-product-page .product .product-not-found .not-found-text-container .not-found-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  border: none;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.shop-product-page .product .product-not-found .not-found-text-container .not-found-text {
  font-size: 24px;
}
.shop-product-page .product .product-not-found .not-found-text-container .not-found-text a {
  color: var(--brand-color);
  text-decoration: underline;
}
.shop-product-page .product .product_imagewrapper {
  width: 100%;
  position: relative;
  border: 1px solid #e3e3e3;
}
.shop-product-page .product .product_imagewrapper::after {
  content: "";
  display: block;
  padding-top: 70%;
}
.shop-product-page .product .product_image_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.shop-product-page .product .product_image_container .product_image {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.shop-product-page .product .product_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .shop-product-page .product .product_name {
    display: none;
  }
}
.shop-product-page .product .product_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .shop-product-page .product .product_title {
    display: none;
  }
}
.shop-product-page .product .product_id {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #a8a8a8;
}
@media (max-width: 768px) {
  .shop-product-page .product .product_id {
    display: none;
  }
}
.shop-product-page .product .product_quantity {
  margin-top: 30px;
  width: 120px;
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.shop-product-page .product .product_quantity span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.shop-product-page .product .product_quantity span svg {
  width: 30px;
  height: 30px;
  fill: #333;
}
.shop-product-page .product .product_quantity input {
  width: 100%;
  border: none;
  border-left: 1px solid #a8a8a8;
  border-right: 1px solid #a8a8a8;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.shop-product-page .product .product_quantity input::-webkit-outer-spin-button,
.shop-product-page .product .product_quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-product-page .product .product_quantity input[type=number] {
  -moz-appearance: textfield;
}
.shop-product-page .product .product_price {
  font-size: 24px;
  font-weight: 500;
  color: #a8a8a8;
  text-decoration: line-through;
}
.shop-product-page .product .product_lowprice {
  font-size: 34px;
  font-weight: 900;
}
.shop-product-page .product .product_discount {
  max-width: 550px;
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
  font-size: 20px;
  background-color: #f5f5f5;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
}
.shop-product-page .product .product_discount::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px dashed #fff;
  border-radius: 10px;
  pointer-events: none;
}
.shop-product-page .product .product_discount .logo {
  display: block;
  width: 100%;
  max-width: 240px;
  margin-bottom: 30px;
}
.shop-product-page .product .product_discount .percent {
  font-weight: 900;
  color: var(--brand-color);
}
.shop-product-page .product .product_discount .text {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}
.shop-product-page .product .product_discount .text a {
  color: var(--brand-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-product-page .product .product_discount .text a:hover {
  color: var(--brand-color);
}
.shop-product-page .product .product_discount .price {
  font-size: 30px;
  font-weight: 900;
  color: var(--brand-color);
}
.shop-product-page .product .product_discount a {
  text-decoration: underline;
  font-weight: 500;
}
.shop-product-page .product .product_discount a:hover {
  color: var(--brand-color);
}
.shop-product-page .product .product_button {
  margin-top: 30px;
}
.shop-product-page .product .product_description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.shop-product-page .product .product_attributes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.shop-product-page .product .product_attributes .item {
  display: grid;
  grid-template-columns: 50% 50%;
}
.shop-product-page .product .product_attributes .item:not(:last-child) {
  padding-bottom: 5px;
  border-bottom: 1px dashed #f3f3f3;
}
.shop-product-page .product .product_attributes .item p {
  margin: 0;
}
.shop-product-page .product .product_color-attributes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shop-product-page .product .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f3f3f3;
  text-transform: uppercase;
}

.customer-area {
  padding-top: 40px;
  padding-bottom: 60px;
}
.customer-area .customer-area-username {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  text-align: end;
}
.customer-area .customer-area-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.customer-area__maintitle {
  margin-top: 0;
  margin-left: 250px;
}
@media (max-width: 1024px) {
  .customer-area__maintitle {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.customer-area__aside {
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 1024px) {
  .customer-area__aside {
    display: none;
  }
}
.customer-area__main {
  width: 100%;
  -webkit-box-shadow: -5px 0px 5px -5px rgba(0, 0, 0, 0.3);
          box-shadow: -5px 0px 5px -5px rgba(0, 0, 0, 0.3);
  padding: 12px 0px 12px 50px;
  font-size: 16px;
  color: #333;
}
@media (max-width: 1024px) {
  .customer-area__main {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 0;
  }
}
.customer-area__navi__item[data-logout] {
  -webkit-box-shadow: 0px -16px 3px -17px rgba(0, 0, 0, 0.3);
          box-shadow: 0px -16px 3px -17px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}
.customer-area__navi__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  width: 100%;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.customer-area__navi__item__link svg {
  width: 22px;
  height: 22px;
  opacity: 0.6;
}
.customer-area__navi__item__link:hover {
  opacity: 1;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.customer-area__navi__item__link:hover svg {
  opacity: 0.8;
}
.customer-area__navi__item__link:focus {
  opacity: 1;
}
.customer-area__navi__item__link:focus svg {
  opacity: 0.8;
}
.customer-area__navi__item__link[data-active] {
  font-weight: 500;
}
.customer-area__navi__item__link[data-loading] [data-loader] {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7px;
}
.customer-area__navi__item__link[data-loading] [data-loader] div {
  background-color: var(--brand-color);
}
.customer-area__form {
  width: 650px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .customer-area__form {
    width: 100% !important;
  }
}
.customer-area__text {
  margin-bottom: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  color: #333;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px dashed #e3e3e3;
}
.customer-area__text strong {
  font-weight: 500;
}
.customer-area__text p {
  margin-bottom: 20px;
}
.customer-area__text p:last-child {
  margin-bottom: 0px;
}
.customer-area__fileline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .customer-area__fileline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 30px;
  }
}
.customer-area__fileline .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-area__fileline .link {
  color: var(--brand-color);
  margin-left: 5px;
}
.customer-area__fileline .link:hover {
  text-decoration: underline;
}
.customer-area__fileline .date {
  color: #666;
}
@media (max-width: 768px) {
  .customer-area__fileline .date {
    font-size: 14px;
  }
}
.customer-area__fileline button.delete {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 3px;
  background-color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .customer-area__fileline button.delete {
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
.customer-area__fileline button.delete[data-loading] {
  cursor: default;
}
.customer-area__fileline button.delete[data-loading]:hover {
  background-color: inherit;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0);
}
.customer-area__fileline button.delete[data-loading] svg.icon {
  display: none;
}
.customer-area__fileline button.delete [data-loader] {
  width: 20px;
  height: 20px;
  cursor: default;
}
.customer-area__fileline button.delete [data-loader] div {
  background-color: var(--brand-color);
}
.customer-area__fileline button.delete:hover {
  background-color: #f5f5f5;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}
.customer-area__fileline .state {
  color: var(--brand-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.customer-area-categories-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.customer-area-categories-container .maincategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-right: 1px solid #ccc;
  padding: 8px 40px 8px 0;
}
.customer-area-categories-container .maincategory.noborder {
  border: none;
}
.customer-area-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.customer-area-categories select {
  width: 100%;
}
.customer-area-categories[data-loading] [data-loader] {
  width: 20px;
  position: absolute;
  bottom: -30px;
  left: 10px;
}
.customer-area-categories[data-loading] [data-loader] div {
  background-color: var(--brand-color);
}

.customer-backlink {
  margin-bottom: 30px;
  display: inline-block;
}

.customer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.categories-type1__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.categories-type1__inner[data-loading] {
  pointer-events: none;
}
.categories-type1__item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
      flex-basis: calc((100% - 60px) / 4);
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.03), 0px 1px 30px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.03), 0px 1px 30px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out;
  position: relative;
}
.categories-type1__item:hover {
  -webkit-box-shadow: 0px 3px 7px -2px rgba(0, 0, 0, 0.2), 0px 1px 30px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 7px -2px rgba(0, 0, 0, 0.2), 0px 1px 30px 0px rgba(0, 0, 0, 0.05);
}
.categories-type1__item.active {
  border: 3px double var(--brand-color-light);
}
.categories-type1__item:hover .categories-type1__container {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (max-width: 1024px) {
  .categories-type1__item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .categories-type1__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.categories-type1__item[data-loading]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.categories-type1__item[data-loading] [data-loader] {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.categories-type1__item[data-loading] [data-loader] div {
  background-color: var(--brand-color);
}
.categories-type1__image {
  margin-bottom: 20px;
  text-align: center;
}
.categories-type1__imagewrapper {
  display: inline-block;
  width: 80px;
  max-width: 100%;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  position: relative;
}
.categories-type1__imagewrapper::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.categories-type1__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.categories-type1__title {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.categories-type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1px;
}
.categories-type2__item {
  -ms-flex-preferred-size: calc((100% - 2px) / 3);
      flex-basis: calc((100% - 2px) / 3);
  text-align: left;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.categories-type2__item:hover {
  background-color: #f5f5f5;
}
.categories-type2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  padding: 10px;
  padding-left: 80px;
  cursor: pointer;
  width: 100%;
}

.categories-type3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
.categories-type3__item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: left;
  -webkit-box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 2px -2px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.categories-type3__item:hover {
  background-color: rgba(0, 0, 0, 0.02);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.categories-type3__item[data-active] {
  background: url(/public/base_images/footprint-bg-small.png) repeat center rgba(0, 0, 0, 0.02);
  border-left: 2px solid var(--brand-color-light);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.categories-type3__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  padding: 5px;
  padding-left: 60px;
  cursor: pointer;
  width: 100%;
}
.categories-type3__link.first {
  font-size: 16px;
  font-weight: 500;
  padding-left: 20px;
}
.categories-type3__item[data-active] .categories-type3__link {
  padding-left: 58px;
}
.categories-type3__item[data-active] .categories-type3__link.first {
  padding-left: 18px;
}

.shop-products-page {
  background-color: #f5f5f5;
  padding-top: 20px;
  padding-bottom: 40px;
}
.shop-products-page .title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.shop-products-page .title_wrap .products-title {
  font-size: 24px;
}
@media (max-width: 768px) {
  .shop-products-page .title_wrap .products-title {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .shop-products-page .title_wrap {
    display: block;
    margin-bottom: 30px;
  }
}
.shop-products-page .products-notfound {
  text-align: center;
}
.shop-products-page .products-notfound p {
  font-size: 18px;
  margin-bottom: 20px;
}
.shop-products-page .products-notfound p span {
  font-weight: 700;
}
.shop-products-page .products-notfound .button-type1 {
  margin-bottom: 20px;
}
.shop-products-page .sortingwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.shop-products-page .sortingwrapper .sorting {
  position: relative;
  background-color: #fff;
}
.shop-products-page .sortingwrapper .sorting .sorting_button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 140px;
  gap: 8px;
  padding: 0px 8px 0px 14px;
  height: 36px;
  background: none;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
}
.shop-products-page .sortingwrapper .sorting .sorting_button .icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}
.shop-products-page .sortingwrapper .sorting .sorting_button .icon.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.shop-products-page .sortingwrapper .sorting .sorting_dropdown {
  position: absolute;
  left: 0px;
  top: 36px;
  overflow: hidden;
  min-width: 140px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  border-top: none;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  z-index: 6;
  max-height: 250px;
  overflow-x: auto;
  pointer-events: none;
  height: 0px;
}
.shop-products-page .sortingwrapper .sorting .sorting_dropdown.open {
  height: auto;
  pointer-events: all;
  opacity: 1;
}
.shop-products-page .sortingwrapper .sorting .sorting_dropdown button {
  padding: 0px 14px;
  display: block;
  height: 36px;
  white-space: nowrap;
  width: 100%;
  text-align: start;
}
.shop-products-page .sortingwrapper .sorting .sorting_dropdown button:hover {
  background-color: #f0f0f0;
}
.shop-products-page .sortingwrapper .sorting .sorting_dropdown button.active {
  cursor: default;
  background-color: #f0f0f0;
}
.shop-products-page .contentwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .shop-products-page .contentwrapper {
    display: block;
  }
}
.shop-products-page .contentwrapper .loader {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(245, 245, 245, 0.584);
}
.shop-products-page .contentwrapper .loader img {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}
.shop-products-page .contentwrapper .filteropen {
  margin-bottom: 20px;
  display: none;
}
@media (max-width: 768px) {
  .shop-products-page .contentwrapper .filteropen {
    display: block;
  }
}
.shop-products-page #filtersform {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  width: calc((100% - 20px) / 4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
}
@media (max-width: 1024px) {
  .shop-products-page #filtersform {
    width: calc((100% - 20px) / 3);
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .shop-products-page #filtersform {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 14;
    display: none;
    padding: 20px;
    overflow-y: auto;
  }
  .shop-products-page #filtersform::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(228, 226, 226);
    border-radius: 5px;
    height: 200px;
  }
  .shop-products-page #filtersform::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
  }
}
.shop-products-page #filtersform .titlewrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.shop-products-page #filtersform .titlewrapper .title {
  font-size: 18px;
}
.shop-products-page #filtersform .titlewrapper .closeformbutton {
  display: none;
  padding: 0;
}
@media (max-width: 768px) {
  .shop-products-page #filtersform .titlewrapper .closeformbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30px;
    height: 30px;
  }
  .shop-products-page #filtersform .titlewrapper .closeformbutton svg {
    width: 100%;
    height: 100%;
  }
  .shop-products-page #filtersform .titlewrapper .closeformbutton:hover svg {
    fill: var(--brand-color);
  }
}
.shop-products-page #filtersform .activefilters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}
.shop-products-page #filtersform .activefilters button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 4px 8px;
  font-size: 12px;
  border: 1px solid var(--brand-color);
  border-radius: 100px;
  -webkit-transition: border 150ms ease-in-out;
  transition: border 150ms ease-in-out;
}
.shop-products-page #filtersform .activefilters button:hover {
  border-color: var(--error-color);
}
.shop-products-page #filtersform .activefilters button .icon {
  width: 14px;
  height: 14px;
}
.shop-products-page #filtersform .filter-container {
  margin-bottom: 30px;
}
.shop-products-page #filtersform .filter-container .filter-list {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}
.shop-products-page #filtersform .filter-container .filter-list::-webkit-scrollbar {
  width: 5px;
  background-color: rgb(228, 226, 226);
  border-radius: 5px;
  height: 200px;
}
.shop-products-page #filtersform .filter-container .filter-list::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}
.shop-products-page #filtersform .filter-container label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-products-page #filtersform .filter-container label:not(:last-child) {
  margin-bottom: 5px;
}
.shop-products-page #filtersform .filter-container label .checkbox1 {
  margin-right: 10px;
}
.shop-products-page #filtersform .filter-container .checkbox1_label {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.shop-products-page #filtersform .filter-container .checkbox1_label .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-products-page #filtersform .filter-container .checkbox1_label .number {
  margin-left: 10px;
}
.shop-products-page #filtersform .filter-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.shop-products-page #filtersform .inputs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.shop-products-page #filtersform .inputs-container input {
  padding: 0 10px;
  height: 30px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000;
  outline: none;
}
.shop-products-page #filtersform .inputs-container .button-type1 {
  height: 30px;
  padding: 0 10px;
  margin-left: 14px;
  background-color: #000;
}
.shop-products-page .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.shop-products-page .list .standard-product-item {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 1024px) {
  .shop-products-page .list .standard-product-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 540px) {
  .shop-products-page .list .standard-product-item {
    width: 100%;
  }
}

.shop-enterdata-page .bigboxexcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .shop-enterdata-page .bigboxexcontainer {
    display: block;
  }
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 {
  width: 50%;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata {
  width: 100%;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .top-error {
  display: none;
  font-size: 16px;
  margin-bottom: 20px;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .top-error_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .top-error .icon {
  fill: var(--error-color);
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .input-container {
  margin-bottom: 20px;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .input-container .input-wrapper {
  position: relative;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .notice {
  color: var(--error-color);
  font-weight: 500;
  margin-top: 5px;
  display: none;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .notice-icon {
  fill: var(--error-color);
  position: absolute;
  bottom: calc(50% - 19px);
  right: 8px;
  width: 18px;
  height: 18px;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .required {
  color: #790000;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata input,
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata select,
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata textarea {
  width: 100%;
  padding: 9px 15px;
  height: 43px;
  font-size: 12px;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata select {
  padding: 8px 11px;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata select option {
  background-color: #fff;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .success {
  width: 100%;
  margin: 20px 0;
  padding: 23px 10px 10px 35px;
  display: none;
  background: url(../base_images/ok-icon.png) 0 50% no-repeat;
  background-size: 25px 25px;
  font-size: 15px;
  color: #67bb23;
}
.shop-enterdata-page .bigboxexcontainer .bigbox1 #enterdata .error {
  width: 100%;
  margin-bottom: 25px;
  padding: 16px 0px;
  color: #ba5241;
  font-size: 14px;
  font-weight: bold;
}
.shop-enterdata-page .bigboxexcontainer .rightcontainer {
  width: 50%;
}
.shop-enterdata-page .bigboxexcontainer .bigbox2 {
  margin-bottom: 30px;
}
.shop-enterdata-page .backbutton {
  margin-bottom: 30px;
  background-color: #efefef;
  color: #000;
}
.shop-enterdata-page .second-form .column_title {
  margin-bottom: 36px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .shop-enterdata-page .second-form .column_title {
    font-size: 24px;
  }
}
.shop-enterdata-page .second-form .form-type1-item {
  padding: 0;
  margin-bottom: 40px;
}
.shop-enterdata-page .second-form .wrap-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .shop-enterdata-page .second-form .wrap-container {
    display: block;
  }
}
.shop-enterdata-page .second-form .wrap-container .inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 425px) {
  .shop-enterdata-page .second-form .wrap-container .inputs-wrapper {
    display: block;
  }
}
.shop-enterdata-page .second-form .wrap-container .leftcolumn {
  width: 100%;
}
.shop-enterdata-page .second-form .wrap-container .rightcolumn {
  width: 100%;
}
.shop-enterdata-page .second-form .wrap-container .rightcolumn .shippingaddresscheckbox {
  margin-bottom: 36px;
}
.shop-enterdata-page .second-form .wrap-container .rightcolumn .shippingaddresscheckbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  cursor: pointer;
}
.shop-enterdata-page .second-form .wrap-container .rightcolumn .textarea_container label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-size: 16px;
}
.shop-enterdata-page .second-form .buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.shop-enterdata-page .second-form .buttons-container a {
  background-color: #efefef;
  color: #000;
}

.shop-confirm-page .shopconfirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .shop-confirm-page .shopconfirm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.shop-confirm-page .shopconfirm .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  gap: 5px 10px;
}
.shop-confirm-page .shopconfirm .title.title1 {
  margin-top: 50px;
}
.shop-confirm-page .shopconfirm .title .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 16px;
  color: var(--brand-color);
}
.shop-confirm-page .shopconfirm .title .icon {
  width: 13px;
  height: 13px;
  fill: var(--brand-color);
}
.shop-confirm-page .shopconfirm .leftcolumn {
  width: 100%;
}
.shop-confirm-page .shopconfirm .leftcolumn .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.shop-confirm-page .shopconfirm .leftcolumn .subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method_title {
  margin-top: 50px;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method label .checkbox1 {
  margin-right: 14px;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method_1 {
  margin-bottom: 30px;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method_1 label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.shop-confirm-page .shopconfirm .leftcolumn .payment-method_1 img {
  width: 100%;
  max-width: 220px;
}
.shop-confirm-page .shopconfirm .rightcolumn {
  width: 100%;
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer {
  margin-bottom: 30px;
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 16px;
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer label .checkbox1 {
  margin-right: 14px;
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer label .link {
  color: var(--brand-color);
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer .notice {
  margin-top: 20px;
  color: var(--error-color);
  font-size: 16px;
}
.shop-confirm-page .shopconfirm .rightcolumn .checkboxcotainer.err label .checkbutton {
  border: 5px solid var(--error-color);
}
.shop-confirm-page .buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.shop-confirm-page .buttons-container a {
  background-color: #efefef;
  color: #000;
}

.shop-thankyou-page .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: rgb(242, 243, 247);
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.shop-thankyou-page .container .icon {
  width: 28px;
  height: 28px;
  fill: var(--brand-color);
}
.shop-thankyou-page .container.err .icon {
  fill: var(--error-color);
}
.shop-thankyou-page .resultcode {
  font-size: 16px;
  color: var(--brand-color);
}

.basketpreview {
  margin-bottom: 30px;
}
.basketpreview .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
}
@media (max-width: 425px) {
  .basketpreview .row {
    font-size: 14px;
  }
}
.basketpreview .row.first {
  font-weight: 700;
}
.basketpreview .row.lastrow {
  border: none;
}
.basketpreview .row.lastrow .maintitle {
  font-size: 20px;
  font-weight: 600;
}
.basketpreview .row.lastrow .maintitle .subtext {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
}
.basketpreview .price {
  font-weight: 400;
}
.basketpreview .price.mainprice {
  font-weight: 700;
  font-size: 20px;
}
.basketpreview .bold {
  font-weight: 700;
}
.basketpreview .bold .subtext {
  font-weight: 400;
  font-size: 14px;
}

.navi-categories {
  position: absolute;
  top: 54px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navi-categories.opened {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  pointer-events: all !important;
  opacity: 1 !important;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.navi-categories .left-bar {
  width: 250px;
  background-color: #f5f5f5;
  padding: 20px 0 20px 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.navi-categories .left-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.navi-categories .left-bar ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 5px 0 0 5px;
  color: #000;
}
.navi-categories .left-bar ul li span:hover {
  background-color: #fff;
}
.navi-categories .left-bar ul li span i {
  font-size: 12px;
}
.navi-categories .left-bar ul li.active span {
  background-color: #fff;
}
.navi-categories .right-content {
  width: 100%;
  padding: 40px;
}
.navi-categories .right-content > ul {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.navi-categories .right-content > ul > li {
  width: calc((100% - 60px) / 4);
}
.navi-categories .right-content > ul > li > span {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 4px 0;
  color: #000;
}
.navi-categories .right-content > ul > li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.navi-categories .right-content > ul > li > ul > li > a {
  padding: 3px 0;
  display: block;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  color: #000;
}
.navi-categories .right-content > ul > li > ul > li > a:hover {
  opacity: 0.7;
}
.navi-categories .right-content > ul.opened {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1 !important;
}

#content-page .previewtext {
  margin-bottom: 64px;
  font-size: 18px;
}
#content-page .previewtext p {
  font-size: 18px;
}
@media (max-width: 768px) {
  #content-page .previewtext {
    margin-bottom: 32px;
  }
}
#content-page .hero {
  background-position: center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 140px;
  padding-bottom: 50px;
}
#content-page .hero .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#content-page .hero .wrapper h1 {
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 500;
  text-align: center;
}
#content-page .hero .wrapper .textcontent p {
  font-size: 24px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: -1.8px;
  text-align: center;
}
#content-page .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  #content-page .content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #content-page .content-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#content-page .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#content-page .content h1 {
  margin-bottom: 64px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
}
#content-page .socialconnections {
  padding-top: 30px;
  background-color: #eaeaea;
}
@media (max-width: 768px) {
  #content-page .socialconnections {
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
}
#content-page .socialconnections .wrapper h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-color);
  text-transform: uppercase;
}
#content-page .socialconnections .wrapper h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  height: 2px;
  width: 25px;
  background-color: var(--brand-color);
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
#content-page .socialconnections .wrapper h3 {
  font-family: "Raleway";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand-color-dark);
  max-width: 60%;
}
@media (max-width: 1199px) {
  #content-page .socialconnections .wrapper h3 {
    max-width: 100%;
  }
}
#content-page .brandslist {
  padding: 30px 0px;
  background-color: #eaeaea;
}
#content-page .brandslist .list {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  #content-page .brandslist .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding: 0;
  }
}
#content-page .brandslist .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 33.3333333333%;
}
#content-page .brandslist .list .item a {
  -webkit-transition: -webkit-transform var(--animation);
  transition: -webkit-transform var(--animation);
  transition: transform var(--animation);
  transition: transform var(--animation), -webkit-transform var(--animation);
}
#content-page .brandslist .list .item a:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
#content-page .brandslist .list .item a img {
  max-height: 150px;
  max-width: 220px;
}
@media (max-width: 768px) {
  #content-page .brandslist .list .item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 425px) {
  #content-page .brandslist .list .item {
    width: 100%;
  }
}
#content-page .getapp {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFECD2), to(#FFC0AB));
  background: linear-gradient(180deg, #FFECD2 0%, #FFC0AB 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  #content-page .getapp {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  #content-page .getapp {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#content-page .getapp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 150px;
}
@media (max-width: 1199px) {
  #content-page .getapp .wrap {
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  #content-page .getapp .wrap {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  #content-page .getapp .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#content-page .getapp .wrap .left {
  width: 100%;
  max-width: 510px;
}
@media (max-width: 768px) {
  #content-page .getapp .wrap .left {
    max-width: 100%;
  }
}
#content-page .getapp .wrap .left .getapp_subtitle {
  margin-bottom: 30px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1;
}
#content-page .getapp .wrap .left .getapp_subtext {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
}
#content-page .getapp .wrap .left .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
#content-page .getapp .wrap .left .link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 10px 26px;
  background-color: #000;
  border-radius: 5px;
}
#content-page .getapp .wrap .left .link-container a .icon {
  height: 25px;
  width: 25px;
  fill: #fff;
}
#content-page .getapp .wrap .left .link-container a span {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
#content-page .getapp .wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 342px;
}

/*
  CARDS TYPE 1 V.1.1.3
  © www.webcrew.at 2024
*/
.cards-type1-component {
  padding: 50px 0;
}
.cards-type1-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.cards-type1-component .item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
      flex-basis: calc((100% - 60px) / 4);
  padding: 20px;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f0f0f0));
  background: linear-gradient(#f7f7f7 0%, #f0f0f0 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .cards-type1-component .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cards-type1-component .item .image {
  margin-bottom: 20px;
  aspect-ratio: 1;
  width: 120px;
  max-width: 100%;
  padding: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards-type1-component .item .image .container {
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.cards-type1-component .item .image:hover .container {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cards-type1-component .item .title {
  font-size: clamp(18px, 3vw, 20px);
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  color: #333;
}
.cards-type1-component .item .text {
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  font-weight: normal;
  color: #333;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 300;
}
.cards-type1-component .item .text a {
  color: var(--brand-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.cards-type1-component .item .text a:hover {
  opacity: 0.8;
}
.cards-type1-component .item .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards-type1-component .item .more {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  padding: 7px 45px 6px 45px;
  border-radius: var(--border-radius-small);
  color: #fff;
  text-transform: uppercase;
  background-color: var(--brand-color);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.cards-type1-component .item .more:hover {
  opacity: 0.7;
}

/*
  CARDS TYPE 2 V.1.1.3
  © www.webcrew.at 2024
*/
.cards-type2-component {
  padding: 50px 0;
  background-color: #f5f5f5;
}
.cards-type2-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.cards-type2-component .item {
  -ms-flex-preferred-size: calc((100% - 120px) / 4);
      flex-basis: calc((100% - 120px) / 4);
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: var(--border-radius-small);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.cards-type2-component .item .icon {
  width: 60px;
  height: 60px;
  margin: 20px 0 30px 0;
  opacity: 0.9;
}
.cards-type2-component .item .icon img {
  width: 100%;
}
.cards-type2-component .item .title {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif, Tahoma, Verdana, Arial;
  text-align: center;
  font-weight: 500;
  color: #333;
}
.cards-type2-component .item .text {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cards-type2-component .item .link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--brand-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--border-radius-small);
}
.cards-type2-component .item .link:hover {
  background-color: #333;
  -webkit-transition: 300ms;
  transition: 300ms;
  color: #fff;
}

/*
  CARDS TYPE 3 V.1.2
  © www.webcrew.at 2024
*/
.cards-type3-component {
  padding: 100px 0;
}
.cards-type3-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 425px) {
  .cards-type3-component .innerwrapper {
    gap: 20px;
  }
}
.cards-type3-component .main-title {
  font-size: 28px;
}
.cards-type3-component .main-text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.cards-type3-component .item {
  -ms-flex-preferred-size: calc((100% - 90px) / 4);
      flex-basis: calc((100% - 90px) / 4);
  text-align: center;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-small);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .cards-type3-component .item {
    -ms-flex-preferred-size: calc((100% - 30px) / 2);
        flex-basis: calc((100% - 30px) / 2);
  }
}
@media only screen and (max-width: 425px) {
  .cards-type3-component .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cards-type3-component .item:hover {
  opacity: 0.8;
  -webkit-box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.4);
}
.cards-type3-component .item .image {
  aspect-ratio: 1.35;
  margin-bottom: 30px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.cards-type3-component .item .title {
  float: left;
  width: 100%;
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .cards-type3-component .item .title {
    font-size: 18px;
  }
}
.cards-type3-component .item .text {
  float: left;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  padding: 0 20px;
}
.cards-type3-component .item .link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--brand-color);
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--border-radius-small);
}

/*
  CARDS TYPE 4 V.1.2
  © www.webcrew.at 2024
*/
.cards-type4-component {
  padding: 100px 0;
  background-color: var(--color-1);
}
.cards-type4-component .main-text {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
.cards-type4-component .main-title {
  font-size: 44px;
  color: #fff;
  font-weight: 900;
}
.cards-type4-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.cards-type4-component .item {
  -ms-flex-preferred-size: calc((100% - 80px) / 3);
      flex-basis: calc((100% - 80px) / 3);
  text-align: center;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-small);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  background-color: #121212;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1024px) {
  .cards-type4-component .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cards-type4-component .item:hover {
  opacity: 0.8;
  -webkit-box-shadow: 0 3px 10p 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 10p 2px rgba(0, 0, 0, 0.4);
}
.cards-type4-component .item .image::before {
  content: "";
  padding-top: 70%;
}
.cards-type4-component .item .icon {
  color: var(--brand-color);
  font-size: 50px;
  margin: 20px 0 30px 0;
}
.cards-type4-component .item .title {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #cbcbcb;
  text-align: center;
  font-weight: 900;
}
.cards-type4-component .item .text1 {
  font-size: 16px;
  line-height: 1.8;
  color: #a4a4a4;
  margin-bottom: 30px;
}
.cards-type4-component .item .text2 {
  font-size: 14px;
  line-height: 1.8;
  color: #cbcbcb;
  font-weight: 300;
}
.cards-type4-component .item .link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--brand-color);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cards-type4-component .item .link:hover {
  background-color: var(--brand-color);
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*
CARDS TYPE 5 V.1.2
© www.webcrew.at 2024
*/
.cards-type5-component {
  padding: 50px 0;
}
@media only screen and (max-width: 1300px) {
  .cards-type5-component {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .cards-type5-component {
    padding-bottom: 50px;
  }
}
.cards-type5-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.cards-type5-component .item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
      flex-basis: calc((100% - 60px) / 4);
  padding: 30px;
  background-color: var(--brand-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .cards-type5-component .item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .cards-type5-component .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cards-type5-component .item .icon {
  margin-bottom: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
}
.cards-type5-component .item .icon i {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 50px;
  color: #fff;
}
.cards-type5-component .item:hover .icon i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.cards-type5-component .item .title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 900;
  color: #000;
}
.cards-type5-component .item .text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cards-type5-component .item .text a {
  color: var(--brand-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.cards-type5-component .item .text a:hover {
  opacity: 0.8;
}
.cards-type5-component .item .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards-type5-component .item .more {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  padding: 7px 45px 6px 45px;
  border-radius: var(--border-radius-small);
  border: 1px solid var(--brand-color);
  color: #333;
  text-transform: uppercase;
  background-color: #fff;
}
.cards-type5-component .item .more:hover {
  -webkit-transition: 300ms;
  transition: 300ms;
  color: #fff;
  background-color: var(--color-dark);
}

/*
CARDS TYPE 6 V.1.2
© www.webcrew.at 2024
*/
.cards-type6-component {
  padding: 50px 0;
}
@media only screen and (max-width: 425px) {
  .cards-type6-component {
    padding: 30px 0;
  }
}
.cards-type6-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .cards-type6-component .innerwrapper {
    gap: 30px;
  }
}
.cards-type6-component .item {
  -ms-flex-preferred-size: calc((100% - 120px) / 4);
      flex-basis: calc((100% - 120px) / 4);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .cards-type6-component .item {
    -ms-flex-preferred-size: calc((100% - 30px) / 2);
        flex-basis: calc((100% - 30px) / 2);
  }
}
.cards-type6-component .item .image {
  display: block;
  margin-bottom: 20px;
  border-radius: var(--border-radius-small);
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.cards-type6-component .item .image:hover {
  opacity: 0.8;
}
.cards-type6-component .item .image::after {
  content: "";
  padding-top: 65%;
}
.cards-type6-component .item .title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 425px) {
  .cards-type6-component .item .title {
    font-size: 22px;
    text-align: left;
  }
}
.cards-type6-component .item .text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cards-type6-component .item .text a {
  color: var(--brand-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.cards-type6-component .item .text a a:hover {
  opacity: 0.8;
}
.cards-type6-component .item .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cards-type6-component .item .more {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 15px;
  border-radius: var(--border-radius-small);
  color: #fff;
  background-color: var(--brand-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.cards-type6-component .item .more:hover {
  opacity: 0.7;
}
.cards-type6-component .item .more .icon {
  display: block;
  margin-left: 7px;
}

/*
CARDS TYPE 7 V.1.2
© www.webcrew.at 2024
*/
.cards-type7-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.cards-type7-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
.cards-type7-component .list .item {
  width: calc((100% - 60px) / 4);
  padding: 20px;
  background-color: #fff;
  border-radius: var(--border-radius-middle);
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-box-shadow 250ms ease-in-out;
  transition: -webkit-box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out, -webkit-box-shadow 250ms ease-in-out;
  margin: 0;
}
@media (max-width: 1400px) {
  .cards-type7-component .list .item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 1199px) {
  .cards-type7-component .list .item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 1024px) {
  .cards-type7-component .list .item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .cards-type7-component .list .item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 425px) {
  .cards-type7-component .list .item {
    width: 100%;
  }
}
.cards-type7-component .list .item:hover {
  opacity: 1;
}
.cards-type7-component .list .item .image {
  width: 120px !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
}
.cards-type7-component .list .item .title {
  font-size: 15px;
  font-weight: 400;
  color: var(--brand-color);
  line-height: 1.4;
}
.cards-type7-component .list .item .title p {
  margin: 0;
}

/*
CARDS TYPE 8 V.1.2
© www.webcrew.at 2024
*/
.cards-type8-component {
  padding: 0 0 100px 0;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
@media only screen and (max-width: 1300px) {
  .cards-type8-component {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .cards-type8-component {
    padding-bottom: 50px;
  }
}
.cards-type8-component .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.cards-type8-component .item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
      flex-basis: calc((100% - 60px) / 4);
  padding: 30px;
  background-color: var(--brand-color);
  border-radius: var(--border-radius-large);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .cards-type8-component .item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .cards-type8-component .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.cards-type8-component .item .image {
  margin-bottom: 20px;
  text-align: center;
}
.cards-type8-component .item .image .imagewrapper {
  display: inline-block;
  width: 104px;
  max-width: 100%;
  border: 1px dashed #a1a1a1;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  position: relative;
  border-radius: 100px;
}
.cards-type8-component .item .image .imagewrapper::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.cards-type8-component .item .image .imagewrapper .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cards-type8-component .item .image .imagewrapper:hover .container {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cards-type8-component .item .title {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
}
.cards-type8-component .item .text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cards-type8-component .item .text a {
  color: var(--brand-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.cards-type8-component .item .text a:hover {
  opacity: 0.8;
}
.cards-type8-component .item .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cards-type8-component .item .more {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  padding: 7px 45px 6px 45px;
  border-radius: var(--border-radius-small);
  border: 1px solid var(--brand-color);
  color: #333;
  text-transform: uppercase;
  background-color: #fff;
}
.cards-type8-component .item .more:hover {
  -webkit-transition: 300ms;
  transition: 300ms;
  color: #fff;
  background-color: var(--color-dark);
}

/*
CARDS TYPE 9 V.1.2
© www.webcrew.at 2024
*/
.cards-type9-component {
  padding: 0 0 100px 0;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
@media only screen and (max-width: 1300px) {
  .cards-type9-component {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .cards-type9-component {
    padding-bottom: 50px;
  }
}
.cards-type9-component .cardlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.cards-type9-component .card {
  -ms-flex-preferred-size: calc((100% - 30px) / 2);
      flex-basis: calc((100% - 30px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cards-type9-component .image {
  width: 150px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  padding: 7px;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.15);
}
.cards-type9-component .image img {
  border-radius: var(--border-radius-small);
  width: 100%;
  display: block;
}
.cards-type9-component .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-color);
}
.cards-type9-component .text {
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 300px;
}
.cards-type9-component .text1 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #666;
}

/*
  CARDS TYPE 10 V.1.2
  © www.webcrew.at 2024
*/
.cards-type10-component {
  background-color: #f5f5f5;
  padding: 40px 0;
}
.cards-type10-component .category {
  margin-bottom: 20px;
  text-align: left;
  font-weight: 300;
}
.cards-type10-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1199px) {
  .cards-type10-component .list {
    gap: 10px;
  }
}
.cards-type10-component .list .standard-product-item {
  width: calc((100% - 60px) / 4);
}
@media (max-width: 1199px) {
  .cards-type10-component .list .standard-product-item {
    width: calc((100% - 42px) / 4);
  }
}
@media (max-width: 1024px) {
  .cards-type10-component .list .standard-product-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 540px) {
  .cards-type10-component .list .standard-product-item {
    width: 100%;
  }
}

/*
  CARDS TYPE 11 V.1.0
  © www.webcrew.at 2024
*/
.cards-type11-component {
  background-color: #f7f7f7;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .cards-type11-component {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .cards-type11-component {
    padding: 40px 0px;
  }
}
.cards-type11-component h2 {
  margin-bottom: 40px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  text-align: center;
  color: var(--secondary-color);
}
.cards-type11-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  .cards-type11-component .list {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .cards-type11-component .list {
    gap: 30px;
  }
}
.cards-type11-component .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 16px;
  width: calc((100% - 80px) / 3);
}
@media (max-width: 1024px) {
  .cards-type11-component .list .item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  .cards-type11-component .list .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 500px) {
  .cards-type11-component .list .item {
    width: 100%;
  }
}
.cards-type11-component .list .item .icon {
  display: contents;
  font-size: 60px;
  color: var(--brand-color);
  text-align: center;
}
.cards-type11-component .list .item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}
.cards-type11-component .list .item .text {
  text-align: center;
}

/*
  NAVI TYPE 2 V.1.1
  © www.webcrew.at 2023
*/
.categories-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}
@media (max-width: 425px) {
  .categories-type1-component li {
    width: 100%;
  }
}

.categories-type1-component li a {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  height: 60px;
  font-weight: 300;
  color: #444;
  opacity: 1;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 250ms, color 250ms;
  transition: opacity 250ms, color 250ms;
  padding: 12px 25px 12px 12px;
  background-color: #f5f5f5;
  border-radius: var(--border-radius-small);
}
.categories-type1-component li a.active {
  color: var(--brand-color);
}
.categories-type1-component li a .icon {
  fill: #444;
  width: 36px;
  height: 36px;
  -webkit-transition: fill 250ms;
  transition: fill 250ms;
}
.categories-type1-component li a:hover, .categories-type1-component li a:focus {
  opacity: 0.8;
  color: var(--brand-color);
}
.categories-type1-component li a:hover .icon, .categories-type1-component li a:focus .icon {
  fill: var(--brand-color);
}
@media (max-width: 425px) {
  .categories-type1-component li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact-type1-component {
  padding: 50px 0px;
}
@media (max-width: 1024px) {
  .contact-type1-component {
    padding: 40px 0px;
  }
}
.contact-type1-component .text-container {
  margin: 0 auto;
  margin-bottom: 50px;
  text-align: center;
}
.contact-type1-component .text-container h2 {
  text-align: center;
}
.contact-type1-component .text-container .ckeditorhtml {
  text-align: center;
}
.contact-type1-component .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
@media (max-width: 1024px) {
  .contact-type1-component .contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.contact-type1-component .contact-container .contactform-type1-component {
  width: 100%;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .contact-type1-component .contact-container .contactform-type1-component {
    max-width: 100%;
  }
}
.contact-type1-component .contact-container .contact-text {
  font-size: 18px;
  line-height: 1.6;
}
.contact-type1-component .contact-container .contact-text p {
  font-weight: 300;
}
.contact-type1-component .contact-container .contact-text p strong {
  font-weight: 500;
}

/*
  CONTACTFORM TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.contactform-type1-component {
  width: 100%;
}
.contactform-type1-component .main-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.contactform-type1-component .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 32px;
}
.contactform-type1-component .group .box {
  position: relative;
}
.contactform-type1-component .group .box svg {
  position: absolute;
  left: 16px;
  top: 12.5px;
  width: 31px;
  height: 31px;
  fill: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input,
.contactform-type1-component .group textarea {
  padding: 16px 16px;
  padding-left: 54px;
  font-size: 18px;
  display: block;
  width: 100%;
  outline: none;
  border: none;
  background-color: #FCF0E3;
  border-radius: 18px;
  color: #000;
}
.contactform-type1-component .group input::-webkit-input-placeholder, .contactform-type1-component .group textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input::-moz-placeholder, .contactform-type1-component .group textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input:-ms-input-placeholder, .contactform-type1-component .group textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input::-ms-input-placeholder, .contactform-type1-component .group textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input::placeholder,
.contactform-type1-component .group textarea::placeholder {
  color: rgba(0, 0, 0, 0.63);
}
.contactform-type1-component .group input {
  height: 56px;
}
.contactform-type1-component .group textarea {
  height: 270px;
  resize: none;
  padding-left: 16px;
}
.contactform-type1-component .group .left {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.contactform-type1-component .group .box-message {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.contactform-type1-component .group .box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  width: 100%;
}
@media (max-width: 768px) {
  .contactform-type1-component .group .box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.contactform-type1-component .group .box-wrap .box {
  width: 100%;
}
.contactform-type1-component .row {
  margin-bottom: 14px;
}
.contactform-type1-component .notice {
  padding: 5px 0 0 0;
  display: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--error-color);
}
.contactform-type1-component .required {
  color: var(--error-color);
}
.contactform-type1-component .success {
  display: none;
}
.contactform-type1-component .button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .contactform-type1-component .button-box {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .contactform-type1-component .button-box {
    margin-top: 30px;
  }
}
.contactform-type1-component .button-box .button-type1 {
  font-size: 24px;
  font-weight: 400;
}
.contactform-type1-component .button-box .button-type2 {
  cursor: pointer;
}
.contactform-type1-component .privacy-policy {
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactform-type1-component .privacy-policy input {
  position: relative;
}
.contactform-type1-component .privacy-policy span {
  display: ruby;
  font-size: 16px;
}
.contactform-type1-component .privacy-policy span a {
  color: var(--link-color);
  font-weight: 500;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.contactform-type1-component .privacy-policy span a:hover {
  opacity: 0.8;
}
.contactform-type1-component .required-text {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}

/*
  CONTACTFORM TYPE 2 V.1.1
  © www.webcrew.at 2023
*/
.contactform-type2-plugin {
  width: 100%;
}
.contactform-type2-plugin .row {
  margin-bottom: 14px;
}
.contactform-type2-plugin .row.group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media (max-width: 768px) {
  .contactform-type2-plugin .row.group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contactform-type2-plugin .row.group > div {
  -ms-flex-preferred-size: calc(50% - 7px);
      flex-basis: calc(50% - 7px);
}
.contactform-type2-plugin .notice {
  padding: 5px 0 0 0;
  display: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--error-color);
}
.contactform-type2-plugin .required {
  color: #790000;
}
.contactform-type2-plugin .success {
  display: none;
}
.contactform-type2-plugin .title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.contactform-type2-plugin .radiobuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.contactform-type2-plugin .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
}
.contactform-type2-plugin .radio input {
  width: auto;
}
.contactform-type2-plugin .privacy-policy {
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contactform-type2-plugin .privacy-policy input {
  width: auto;
  position: relative;
  bottom: -4px;
}
.contactform-type2-plugin .privacy-policy a {
  color: var(--link-color);
  font-weight: 700;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.contactform-type2-plugin .privacy-policy a:hover {
  opacity: 0.8;
}
.contactform-type2-plugin .required-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  font-weight: 300;
}
.contactform-type2-plugin input, .contactform-type2-plugin select, .contactform-type2-plugin textarea {
  padding: 9px 16px;
  font-size: 16px;
  border-radius: 3px;
  color: #000;
  display: block;
  width: 100%;
  outline: none;
  border: 1px solid #8a8a8a;
}
.contactform-type2-plugin input::-webkit-input-placeholder, .contactform-type2-plugin select::-webkit-input-placeholder, .contactform-type2-plugin textarea::-webkit-input-placeholder {
  color: #afafaf;
}
.contactform-type2-plugin input::-moz-placeholder, .contactform-type2-plugin select::-moz-placeholder, .contactform-type2-plugin textarea::-moz-placeholder {
  color: #afafaf;
}
.contactform-type2-plugin input:-ms-input-placeholder, .contactform-type2-plugin select:-ms-input-placeholder, .contactform-type2-plugin textarea:-ms-input-placeholder {
  color: #afafaf;
}
.contactform-type2-plugin input::-ms-input-placeholder, .contactform-type2-plugin select::-ms-input-placeholder, .contactform-type2-plugin textarea::-ms-input-placeholder {
  color: #afafaf;
}
.contactform-type2-plugin input::placeholder, .contactform-type2-plugin select::placeholder, .contactform-type2-plugin textarea::placeholder {
  color: #afafaf;
}

/*
  CONTACTFORM TYPE 3 V.1.0
  © www.webcrew.at 2024
*/
.contactform-type3-component {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.contactform-type3-component .row:not(:last-child) {
  margin-bottom: 20px;
}
.contactform-type3-component .notice {
  padding: 5px 0 0 0;
  display: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--error-color);
}
.contactform-type3-component .required {
  color: var(--error-color);
}
.contactform-type3-component .success {
  display: none;
}
.contactform-type3-component .privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.contactform-type3-component .privacy-policy input {
  width: auto;
  cursor: pointer;
}
.contactform-type3-component .privacy-policy span {
  display: ruby;
}
.contactform-type3-component .privacy-policy a {
  color: var(--link-color);
  font-weight: 700;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.contactform-type3-component .privacy-policy a:hover {
  opacity: 0.8;
}
.contactform-type3-component .required-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contactform-type3-component .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contactform-type3-component input,
.contactform-type3-component select,
.contactform-type3-component textarea {
  height: 56px;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 3px;
  color: #000;
  width: 100%;
  border: 1px solid #eee;
  background-color: #eee;
  border-radius: var(--border-radius-small);
}
.contactform-type3-component input::-webkit-input-placeholder, .contactform-type3-component select::-webkit-input-placeholder, .contactform-type3-component textarea::-webkit-input-placeholder {
  color: #afafaf;
}
.contactform-type3-component input::-moz-placeholder, .contactform-type3-component select::-moz-placeholder, .contactform-type3-component textarea::-moz-placeholder {
  color: #afafaf;
}
.contactform-type3-component input:-ms-input-placeholder, .contactform-type3-component select:-ms-input-placeholder, .contactform-type3-component textarea:-ms-input-placeholder {
  color: #afafaf;
}
.contactform-type3-component input::-ms-input-placeholder, .contactform-type3-component select::-ms-input-placeholder, .contactform-type3-component textarea::-ms-input-placeholder {
  color: #afafaf;
}
.contactform-type3-component input::placeholder,
.contactform-type3-component select::placeholder,
.contactform-type3-component textarea::placeholder {
  color: #afafaf;
}
.contactform-type3-component textarea {
  height: 150px;
}

/*
  CONTACTFORM TYPE 4 V.1.0
  © www.webcrew.at 2025
*/
.contactform-type4-component {
  width: 100%;
  max-width: 800px;
}
.contactform-type4-component .box {
  width: 100%;
  margin-bottom: 44px;
}
.contactform-type4-component .box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .contactform-type4-component .box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.contactform-type4-component input {
  padding: 9px 0px;
  font-size: 18px;
  display: block;
  height: 42px;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #C4C4C4;
  background: none;
}
.contactform-type4-component input::-webkit-input-placeholder {
  color: #171717;
}
.contactform-type4-component input::-moz-placeholder {
  color: #171717;
}
.contactform-type4-component input:-ms-input-placeholder {
  color: #171717;
}
.contactform-type4-component input::-ms-input-placeholder {
  color: #171717;
}
.contactform-type4-component input::placeholder {
  color: #171717;
}
.contactform-type4-component .notice {
  display: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--error-color);
  margin-top: 10px;
}
.contactform-type4-component .required {
  color: var(--error-color);
}
.contactform-type4-component .success {
  display: none;
  margin-top: 20px;
}
.contactform-type4-component .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.contactform-type4-component .privacy-policy {
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactform-type4-component .privacy-policy input {
  position: relative;
  height: 14px;
  width: 14px;
  margin: 0px;
}
.contactform-type4-component .privacy-policy span {
  display: ruby;
  font-size: 16px;
}
.contactform-type4-component .privacy-policy span a {
  color: var(--link-color);
  font-weight: 700;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.contactform-type4-component .privacy-policy span a:hover {
  opacity: 0.8;
}
.contactform-type4-component .required-text {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}

/*
  NAVI TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.navi-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navi-type1-component .icon {
  fill: currentColor;
  width: auto;
  height: 21px;
}
.navi-type1-component li a {
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  padding: 5px 15px;
  font-weight: 400;
  color: #333;
  opacity: 1;
  font-size: 18px;
  -webkit-transition: 400ms;
  transition: 400ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.navi-type1-component li a:hover {
  opacity: 0.8;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.navi-type1-component li a.active {
  color: #fff;
}
.navi-type1-component li a img {
  width: 25px;
  margin-right: 7px;
}

/*
  NAVI TYPE 2 V.1.2
  © www.webcrew.at 2024
*/
.navi-type2-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .navi-type2-component {
    display: none;
  }
}
.navi-type2-component li a {
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  padding: 5px 12px;
  font-weight: 300;
  color: #333;
  opacity: 1;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}
.navi-type2-component li a:hover,
.navi-type2-component li a:focus {
  opacity: 0.8;
}
.navi-type2-component li a.active {
  color: var(--brand-color);
}
.navi-type2-component li a .icon {
  position: absolute;
  top: -25px;
  left: calc(50% - 10px);
  fill: var(--brand-color);
  width: 20px;
  height: auto;
}
.navi-type2-component li a img {
  width: 25px;
  margin-right: 7px;
}

/*
  CONTACTS TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.contacts-type1-component {
  width: 100%;
  height: 60px;
}
@media (max-width: 768px) {
  .contacts-type1-component {
    height: 72px;
  }
}
.contacts-type1-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px 30px;
  height: 100%;
}
@media (max-width: 768px) {
  .contacts-type1-component .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contacts-type1-component .item {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.contacts-type1-component .item:hover {
  opacity: 0.8;
}
.contacts-type1-component .item .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--brand-color);
}

/*
  CONTACTS TYPE 2 V.1.0
  © www.webcrew.at 2025
*/
.contacts-type2-plugin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  font-size: 16px;
  background-color: #252628;
}
@media (max-width: 1024px) {
  .contacts-type2-plugin {
    height: 100px;
  }
}
@media (max-width: 520px) {
  .contacts-type2-plugin {
    height: 150px;
  }
}
.contacts-type2-plugin .text span {
  color: #fff;
}
.contacts-type2-plugin .wrapper {
  height: 100%;
}
.contacts-type2-plugin .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 55px;
  height: 100%;
}
@media (max-width: 1024px) {
  .contacts-type2-plugin .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.contacts-type2-plugin .wrap .left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}
@media (max-width: 1024px) {
  .contacts-type2-plugin .wrap .left {
    height: 50%;
  }
}
@media (max-width: 768px) {
  .contacts-type2-plugin .wrap .left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 520px) {
  .contacts-type2-plugin .wrap .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100px;
    gap: 0;
  }
}
.contacts-type2-plugin .wrap .left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skew(-26deg);
          transform: skew(-26deg);
  padding-left: 20px;
  background-color: var(--brand-color-dark);
}
.contacts-type2-plugin .wrap .left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -300%;
  width: 300%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skew(-26deg);
          transform: skew(-26deg);
  padding-left: 20px;
  background-color: var(--brand-color-dark);
}
@media (max-width: 1024px) {
  .contacts-type2-plugin .wrap .left::before {
    left: -100%;
  }
}
.contacts-type2-plugin .wrap .item {
  color: #fff;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 50%;
}
@media (max-width: 520px) {
  .contacts-type2-plugin .wrap .item {
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.contacts-type2-plugin .wrap .item:hover {
  opacity: 0.7;
}
.contacts-type2-plugin .wrap .item .icon {
  color: var(--brand-color);
  display: block;
  margin-right: 14px;
  font-size: 16px;
  fill: currentColor;
}

/*
  SLIDER TYPE 1 V.1.1
  © www.webcrew.at 2023
*/
.slider-type1-component {
  overflow: hidden;
  height: clamp(400px, 100vh, 100vh - 155px);
}
@media (max-width: 768px) {
  .slider-type1-component {
    height: 610px;
  }
}
.slider-type1-component .slider-type1-swiper {
  position: relative;
  height: 100%;
}
.slider-type1-component .swiper-wrapper {
  z-index: 0;
}
.slider-type1-component .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .slider-type1-component .swiper-slide .wrapper {
    display: none;
  }
}
.slider-type1-component .swiper-slide .wrapper .title {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 32px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .slider-type1-component .swiper-slide .wrapper .title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.slider-type1-component .swiper-slide .wrapper .text {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slider-type1-component .swiper-slide .wrapper .text {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.slider-type1-component .swiper-slide .wrapper .button-type1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.slider-type1-component .permanent-container {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  z-index: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .slider-type1-component .permanent-container {
    left: 0px;
    bottom: 0px;
    top: 0px;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
.slider-type1-component .navigation-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius-small);
}
@media only screen and (max-width: 1300px) {
  .slider-type1-component .navigation-button {
    display: none;
  }
}
.slider-type1-component .navigation-button .icon {
  display: block;
  width: 20px;
  height: auto;
  stroke: #fff;
}
.slider-type1-component .navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.slider-type1-component .navigation-button.button-prev {
  left: 40px;
}
.slider-type1-component .navigation-button.button-next {
  right: 40px;
}
.slider-type1-component .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.slider-type1-component .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  border: 1px solid #fff;
}

/*
  SLIDER TYPE 2 V.1.1
  © www.webcrew.at 2022
*/
.slider-type2-component {
  position: relative;
  padding-top: 90px;
  padding-bottom: 140px;
}
@media (max-width: 1199px) {
  .slider-type2-component {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .slider-type2-component {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
.slider-type2-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  inset: 0;
  background: url("/public/base_images/footerbg.png") center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.slider-type2-component .text {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--brand-color-dark);
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .slider-type2-component .text {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.slider-type2-component .swiper-pagination {
  bottom: -60px !important;
}
.slider-type2-component .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #E7E7E7;
  opacity: 1;
}
.slider-type2-component .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}
.slider-type2-component .slider-type2-swiper {
  position: relative;
  overflow: hidden;
}
.slider-type2-component .swiper-slide {
  padding: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFC0AB), to(#FFECD2));
  background: linear-gradient(360deg, #FFC0AB 0%, #FFECD2 100%);
  border-radius: 10px;
}
.slider-type2-component .swiper-slide .quote {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 60px;
  color: var(--brand-color);
}
.slider-type2-component .swiper-slide .ckeditorhtml {
  margin-bottom: 30px;
  width: 100%;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  text-align: start;
}
.slider-type2-component .swiper-slide .ckeditorhtml p {
  margin: 0px;
}
.slider-type2-component .swiper-slide .creator-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.slider-type2-component .swiper-slide .image {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-type2-component .swiper-slide .name {
  margin-bottom: 9px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--brand-color);
}
.slider-type2-component .swiper-slide .source {
  font-size: clamp(16px, 1.5vw, 18px);
}
.slider-type2-component .swiper-slide .stars {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  color: var(--brand-color);
  display: flex;
  gap: 5px;
}
.slider-type2-component .navigation-button {
  position: absolute;
  top: 69%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  width: 40px;
  height: 40px;
  -webkit-transition: opacity var(--animation), background var(--animation);
  transition: opacity var(--animation), background var(--animation);
}
@media (max-width: 1199px) {
  .slider-type2-component .navigation-button {
    display: none;
  }
}
.slider-type2-component .navigation-button svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.slider-type2-component .navigation-button.button-prev {
  left: 30px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider-type2-component .navigation-button.button-next {
  right: 30px;
}

/*
  SLIDER TYPE 3 V.1.1
  © www.webcrew.at 2023
*/
.slider-type3-component {
  height: 100%;
}
.slider-type3-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.slider-type3-swiper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.slider-type3-swiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 1024px) {
  .slider-type3-component .navigation-button {
    padding: 8px;
    width: 36px;
    height: 36px;
  }
}
.slider-type3-component .navigation-button:hover {
  opacity: 0.7;
}

.slider-type3-component .button-prev {
  left: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type3-component .button-prev {
    left: 20px;
  }
}
.slider-type3-component .button-next {
  right: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type3-component .button-next {
    right: 20px;
  }
}
.slider-type3-component .navigation-button .icon {
  display: block;
  width: auto;
  height: 100%;
  stroke: #000;
}

.slider-type3-component .button-prev .icon {
  margin-right: 5px;
}

.slider-type3-component .button-next .icon {
  margin-left: 5px;
}

.slider-type3-component .navigation-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.slider-type3-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0.3;
}

/*
  SLIDER TYPE 4 V.1.2
  © www.webcrew.at 2024
*/
.slider-type4-component {
  margin-bottom: 50px;
}

.slider-type4-swiper {
  overflow: hidden;
  padding: 10px 0px;
  margin-top: -10px;
}
.slider-type4-swiper .swiper-slide {
  height: auto;
}

.slider-type4-maincontainer {
  position: relative;
  z-index: 0;
}
.slider-type4-slide {
  padding: 0 5px;
  height: 100%;
}
.slider-type4-item {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  cursor: pointer;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
}
@media (max-width: 599px) {
  .slider-type4-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 425px) {
  .slider-type4-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.slider-type4-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.slider-type4-image {
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 425px) {
  .slider-type4-image {
    width: 100%;
  }
}
.slider-type4-image::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.slider-type4-container {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider-type4-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}
.slider-type4-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-color);
  margin-bottom: 20px;
}
.slider-type4-address {
  color: #888;
  font-size: 12px;
}
.slider-type4-allcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.slider-type4-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  background-color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 1024px) {
  .slider-type4-component .navigation-button {
    padding: 8px;
    width: 36px;
    height: 36px;
  }
}
.slider-type4-component .navigation-button:hover {
  opacity: 0.7;
}

.slider-type4-component .button-prev {
  left: -30px;
}

@media only screen and (max-width: 768px) {
  .slider-type4-component .button-prev {
    left: 20px;
  }
}
.slider-type4-component .button-next {
  right: -30px;
}

@media only screen and (max-width: 768px) {
  .slider-type4-component .button-next {
    right: 20px;
  }
}
.slider-type4-component .navigation-button .icon {
  display: block;
  width: auto;
  height: 100%;
  stroke: #000;
}

.slider-type4-component .button-prev .icon {
  margin-right: 5px;
}

.slider-type4-component .button-next .icon {
  margin-left: 5px;
}

.slider-type4-component .navigation-button.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

.slider-type4-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0;
}

/*
  SLIDER TYPE 3 V.1.1
  © www.webcrew.at 2023
*/
.slider-type5-component {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .slider-type5-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.slider-type5-component .mainimage {
  width: 100%;
  border-radius: 3px;
}
.slider-type5-component .mainimage::after {
  content: "";
  padding-top: 75%;
}
.slider-type5-component .thumbs {
  width: 104px;
  height: 560px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  position: relative;
}
@media (max-width: 768px) {
  .slider-type5-component .thumbs {
    height: auto;
    width: 560px;
  }
}
@media only screen and (max-width: 600px) {
  .slider-type5-component .thumbs {
    width: 332px;
  }
}
@media only screen and (max-width: 425px) {
  .slider-type5-component .thumbs {
    width: 218px;
  }
}
.slider-type5-component .thumbs .item {
  width: 100px;
  height: 100px;
  display: block;
  margin: 2px;
  border-radius: 2px;
  -webkit-transition-property: "transform", "transform";
  transition-property: "transform", "transform";
  transition-property: "transform";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-type5-component .thumbs .item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.slider-type5-component .thumbs .item::after {
  content: "";
  padding-top: 100%;
}
.slider-type5-component .navigation-button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 22px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.slider-type5-component .navigation-button.button-prev {
  top: 10px;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button.button-prev {
    left: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
}
.slider-type5-component .navigation-button.button-prev i {
  margin-top: 1px;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button.button-prev i {
    margin-top: 0px;
    margin-right: 1px;
  }
}
.slider-type5-component .navigation-button.button-next {
  bottom: 10px;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button.button-next {
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    bottom: auto;
    left: auto;
  }
}
.slider-type5-component .navigation-button.button-next i {
  margin-top: 3px;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button.button-next i {
    margin-top: 0px;
    margin-left: 1px;
  }
}
.slider-type5-component .navigation-button.swiper-button-disabled {
  display: none;
}
.slider-type5-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0.3;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button .fa-angle-up {
    display: none;
  }
}
.slider-type5-component .navigation-button .fa-angle-left {
  display: none;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button .fa-angle-left {
    display: block;
  }
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button .fa-angle-down {
    display: none;
  }
}
.slider-type5-component .navigation-button .fa-angle-right {
  display: none;
}
@media (max-width: 768px) {
  .slider-type5-component .navigation-button .fa-angle-right {
    display: block;
  }
}

.slider-type5-swiper {
  overflow: hidden;
  position: relative;
}

/*
@media only screen and (max-width: 1024px) {
  .slider-type3-swiper {
    height: 40vw;
  }
}

@media only screen and (max-width: 768px) {
  .slider-type3-swiper {
    height: 50vw;
  }
}

.slider-type3-component .navigation-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  background-color: rgb(255 255 255 / 0.7);
  padding: 16px;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  transition: 300ms;
}

@media only screen and (max-width: 1024px) {
  .slider-type3-component .navigation-button {
    padding: 8px;
    width: 36px;
    height: 36px;
  }
}

.slider-type3-component .navigation-button:hover {
  opacity: 0.7;
}

.slider-type3-component .button-prev {
  left: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type3-component .button-prev {
    left: 20px;
  }
}

.slider-type3-component .button-next {
  right: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type3-component .button-next {
    right: 20px;
  }
}

.slider-type3-component .navigation-button .icon {
  display: block;
  width: auto;
  height: 100%;
  stroke: #000;
}

.slider-type3-component .button-prev .icon {
  margin-right: 5px;
}

.slider-type3-component .button-next .icon {
  margin-left: 5px;
}

.slider-type3-component .navigation-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.slider-type3-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0.3;
}
*/
/*
  SLIDER TYPE 3 V.1.1
  © www.webcrew.at 2023
*/
.slider-type6-swiper {
  overflow: hidden;
  position: relative;
  height: 100px;
}
.slider-type6-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 280px) / 8);
}
@media only screen and (max-width: 1024px) {
  .slider-type6-swiper .swiper-slide {
    width: calc((100% - 150px) / 6);
  }
}
@media only screen and (max-width: 768px) {
  .slider-type6-swiper .swiper-slide {
    width: calc((100% - 60px) / 4);
  }
}
.slider-type6-swiper img {
  width: 100%;
}

.slider-type6-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 16px;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}

@media only screen and (max-width: 1024px) {
  .slider-type6-component .navigation-button {
    padding: 8px;
    width: 36px;
    height: 36px;
  }
}
.slider-type6-component .navigation-button:hover {
  opacity: 0.7;
}

.slider-type6-component .button-prev {
  left: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type6-component .button-prev {
    left: 20px;
  }
}
.slider-type6-component .button-next {
  right: 50px;
}

@media only screen and (max-width: 768px) {
  .slider-type6-component .button-next {
    right: 20px;
  }
}
.slider-type6-component .navigation-button .icon {
  display: block;
  width: auto;
  height: 100%;
  stroke: #000;
}

.slider-type6-component .button-prev .icon {
  margin-right: 5px;
}

.slider-type6-component .button-next .icon {
  margin-left: 5px;
}

.slider-type6-component .navigation-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.slider-type6-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0.3;
}

/*
  SLIDER TYPE 3 V.1.1
  © www.webcrew.at 2023
*/
.slider-type7-component .wrapper {
  padding: 0;
}
.slider-type7-component .slider-type7-swiper {
  overflow: hidden;
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper1 {
  position: relative;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  width: 100%;
  height: 350px;
  padding: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper1 .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper1 .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper2 {
  width: 100%;
  height: 80px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider-type7-component .slider-type7-swiper .slider-type7-swiper2 {
    display: none;
  }
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper2 .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0);
  padding: 5px;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  width: 25%;
  cursor: pointer;
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper2 .swiper-slide.swiper-slide-thumb-active {
  cursor: default;
  border: 1px solid var(--brand-color);
}
.slider-type7-component .slider-type7-swiper .slider-type7-swiper2 .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slider-type7-component .image-not-found {
  display: block;
  width: 100%;
  height: clamp(200px, 20vw, 350px);
  fill: rgba(86, 159, 152, 0.3);
  border: 1px solid #e3e3e3;
  padding: 10px;
}
.slider-type7-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.slider-type7-component .navigation-button:hover {
  opacity: 0.8;
}
.slider-type7-component .navigation-button .icon {
  display: block;
  width: auto;
  height: 100%;
  stroke: #333;
}
.slider-type7-component .navigation-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  background: none;
}
.slider-type7-component .navigation-button.swiper-button-disabled:hover {
  opacity: 0.3;
}
.slider-type7-component .button-prev {
  left: 20px;
}
.slider-type7-component .button-next {
  right: 20px;
}

/*
  SLIDER TYPE 8 V.1.0
  © www.webcrew.at 2024
*/
.slider-type8-component {
  position: relative;
  height: 624px;
  width: 318px;
  overflow: hidden;
  padding: 14px 10px;
  border-radius: 10px;
}
.slider-type8-component .phone {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/public/base_images/phone.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.slider-type8-component .slider-type8-swiper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.slider-type8-component .swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  border-radius: 18px;
  z-index: -1;
}

/*
  SLIDER TYPE 9 V.1.0
  © www.webcrew.at 2024
*/
.slider-type9-component {
  overflow: hidden;
  height: clamp(600px, 100vh, 750px);
}
.slider-type9-component .swiper-wrapper {
  z-index: 0;
}
.slider-type9-component .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 120px;
}
.slider-type9-component .swiper-slide .wrapper .title {
  position: relative;
  max-width: 800px;
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 800;
  padding-bottom: 22px;
  margin-bottom: 22px;
  color: #fff;
}
.slider-type9-component .swiper-slide .wrapper .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-1);
}
.slider-type9-component .swiper-slide .wrapper .title span {
  color: var(--brand-color);
}
.slider-type9-component .swiper-slide .wrapper .text {
  max-width: 800px;
  margin-bottom: 36px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: #fff;
}
.slider-type9-component .slider-type9-swiper {
  position: relative;
  height: 100%;
}
@media (max-width: 1024px) {
  .slider-type9-component .container {
    display: none;
  }
}
.slider-type9-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 1300px) {
  .slider-type9-component .navigation-button {
    display: none;
  }
}
.slider-type9-component .navigation-button .icon {
  display: block;
  width: 12px;
  height: auto;
  stroke: #fff;
}
.slider-type9-component .button-prev {
  left: 10px;
}
.slider-type9-component .button-next {
  right: 10px;
}
.slider-type9-component .navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
@media only screen and (max-width: 1300px) {
  .slider-type9-component .swiper-pagination {
    display: block;
  }
}
.slider-type9-component .swiper-pagination-bullet {
  border: 1px solid rgba(0, 0, 0, 0.7);
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.7);
}
.slider-type9-component .swiper-pagination-bullet-active {
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
}
.slider-type9-component .mobilecontainer {
  display: none;
  background-color: #fafafa;
  padding: 20px 0;
  position: relative;
  margin-top: 20px;
}
.slider-type9-component .mobilecontainer::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
.slider-type9-component .mobilecontainer::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
@media only screen and (max-width: 1024px) {
  .slider-type9-component .mobilecontainer {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .slider-type9-component .mobilecontainer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 425px) {
  .slider-type9-component .mobilecontainer .wrapper {
    gap: 10px;
  }
}
.slider-type9-component .titlemobile {
  font-weight: 400;
  font-size: calc(0.5vw + 16px);
  line-height: 1.3;
  text-align: center;
}
.slider-type9-component .textmobile {
  font-size: calc(0.8vw + 18px);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
/*
  SLIDER TYPE 10 V.1.0
  © www.webcrew.at 2025
*/
.slider-type10-component {
  position: relative;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.slider-type10-component:hover .navigation-button {
  opacity: 1;
}
@media (max-width: 1024px) {
  .slider-type10-component {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .slider-type10-component {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.slider-type10-component .wrapper {
  padding: 0px 120px;
}
@media (max-width: 1199px) {
  .slider-type10-component .wrapper {
    padding: 0px 40px;
  }
}
.slider-type10-component .swiper-pagination {
  bottom: -32px !important;
}
.slider-type10-component .swiper-pagination-bullet-active {
  background-color: var(--brand-color-light);
}
.slider-type10-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  opacity: 0;
  width: 40px;
  height: 40px;
  background-color: #b7b7b7;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  -webkit-transition: opacity var(--animation), background var(--animation);
  transition: opacity var(--animation), background var(--animation);
}
.slider-type10-component .navigation-button:hover {
  background-color: #d83030;
}
.slider-type10-component .navigation-button.button-prev {
  left: 40px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.slider-type10-component .navigation-button.button-next {
  right: 40px;
}
.slider-type10-component .slider-type10-swiper {
  overflow: hidden;
  padding: 15px 15px;
}
.slider-type10-component .swiper-slide:nth-child(even) .quote .icon i {
  background-color: #f3a712;
  border: 1px dashed #f3a712;
}
.slider-type10-component .swiper-slide .text-container {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-small);
}
.slider-type10-component .swiper-slide .quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 20px;
  color: #fff;
}
.slider-type10-component .swiper-slide .quote .line {
  height: 2px;
  width: 30%;
  background-color: rgba(0, 0, 0, 0.1);
}
.slider-type10-component .swiper-slide .quote .icon {
  padding: 2px;
  border: 1px dashed #d83030;
  border-radius: 100px;
}
.slider-type10-component .swiper-slide .quote .icon i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 41px;
  height: 41px;
  background-color: #d83030;
  border-radius: 100%;
  font-size: 16px;
}
.slider-type10-component .swiper-slide .text {
  width: 100%;
  max-width: 760px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  text-align: center;
}
.slider-type10-component .swiper-slide .creator-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.slider-type10-component .swiper-slide .image {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-type10-component .swiper-slide .source {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 300;
}
.slider-type10-component .swiper-slide .name {
  margin-bottom: 4px;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 500;
  color: var(--brand-color-dark);
}
.slider-type10-component .swiper-slide .stars {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  color: var(--brand-color);
  display: flex;
  gap: 5px;
}

/*
  SLIDER TYPE 9 V.1.0
  © www.webcrew.at 2024
*/
.slider-type11-component {
  overflow: hidden;
}
.slider-type11-component .swiper-wrapper {
  z-index: 0;
  height: 100%;
}
.slider-type11-component .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.slider-type11-component .swiper-slide .wrapper {
  padding: 0px 250px;
}
@media (max-width: 1199px) {
  .slider-type11-component .swiper-slide .wrapper {
    padding: 0px 40px;
  }
}
@media (max-width: 768px) {
  .slider-type11-component .swiper-slide .wrapper {
    display: none;
    padding: 0px 20px;
  }
}
.slider-type11-component .slider-type11-swiper {
  position: relative;
  height: 100%;
}
.slider-type11-component .title {
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  margin-bottom: 16px;
}
.slider-type11-component .title span {
  color: var(--brand-color);
}
.slider-type11-component .text {
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slider-type11-component .text {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.slider-type11-component .button-type1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.slider-type11-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 1300px) {
  .slider-type11-component .navigation-button {
    display: none;
  }
}
.slider-type11-component .button-prev {
  left: 10px;
}
.slider-type11-component .button-next {
  right: 10px;
}
.slider-type11-component .navigation-button .icon {
  display: block;
  width: 20px;
  height: auto;
  stroke: #fff;
}
.slider-type11-component .navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.slider-type11-component .swiper-pagination {
  bottom: 14px;
}
.slider-type11-component .swiper-pagination-bullet {
  margin: 0 4px !important;
  width: 10px;
  height: 10px;
  border: none;
  opacity: 1;
  background-color: #fff;
}
.slider-type11-component .swiper-pagination-bullet-active {
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
}
.slider-type11-component .mobilecontainer {
  display: none;
  background-color: #fafafa;
  padding: 20px 0;
  position: relative;
  margin-top: 20px;
}
.slider-type11-component .mobilecontainer::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
.slider-type11-component .mobilecontainer::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
@media only screen and (max-width: 1024px) {
  .slider-type11-component .mobilecontainer {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .slider-type11-component .mobilecontainer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 425px) {
  .slider-type11-component .mobilecontainer .wrapper {
    gap: 10px;
  }
}
.slider-type11-component .titlemobile {
  font-weight: 400;
  font-size: calc(0.5vw + 16px);
  line-height: 1.3;
  text-align: center;
}
.slider-type11-component .textmobile {
  font-size: calc(0.8vw + 18px);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
/*
  SLIDER TYPE 9 V.1.0
  © www.webcrew.at 2024
*/
.slider-type12-component {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-type12-component .swiper-wrapper {
  z-index: 0;
  height: 100%;
}
.slider-type12-component .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.slider-type12-component .swiper-slide .wrapper {
  padding: 0px 250px;
}
@media (max-width: 1199px) {
  .slider-type12-component .swiper-slide .wrapper {
    padding: 0px 40px;
  }
}
@media (max-width: 768px) {
  .slider-type12-component .swiper-slide .wrapper {
    display: none;
    padding: 0px 20px;
  }
}
.slider-type12-component .slider-type12-swiper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.slider-type12-component .title {
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
  margin-bottom: 16px;
}
.slider-type12-component .title span {
  color: var(--brand-color);
}
.slider-type12-component .text {
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slider-type12-component .text {
    margin-bottom: 14px;
    font-size: 18px;
  }
}
.slider-type12-component .button-type1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.slider-type12-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 1300px) {
  .slider-type12-component .navigation-button {
    display: none;
  }
}
.slider-type12-component .button-prev {
  left: 10px;
}
.slider-type12-component .button-next {
  right: 10px;
}
.slider-type12-component .navigation-button .icon {
  display: block;
  width: 20px;
  height: auto;
  stroke: #fff;
}
.slider-type12-component .navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
.slider-type12-component .swiper-pagination {
  bottom: -25px;
}
.slider-type12-component .swiper-pagination-bullet {
  margin: 0 4px !important;
  width: 9px;
  height: 9px;
  border: none;
  opacity: 1;
  background-color: #fff;
}
.slider-type12-component .swiper-pagination-bullet-active {
  background-color: var(--color-1);
  border: 1px solid var(--color-1);
}
.slider-type12-component .mobilecontainer {
  display: none;
  background-color: #fafafa;
  padding: 20px 0;
  position: relative;
  margin-top: 20px;
}
.slider-type12-component .mobilecontainer::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
.slider-type12-component .mobilecontainer::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
@media only screen and (max-width: 1024px) {
  .slider-type12-component .mobilecontainer {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .slider-type12-component .mobilecontainer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 425px) {
  .slider-type12-component .mobilecontainer .wrapper {
    gap: 10px;
  }
}
.slider-type12-component .titlemobile {
  font-weight: 400;
  font-size: calc(0.5vw + 16px);
  line-height: 1.3;
  text-align: center;
}
.slider-type12-component .textmobile {
  font-size: calc(0.8vw + 18px);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
/*
  SLIDER TYPE 9 V.1.0
  © www.webcrew.at 2024
*/
.slider-type13-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 355px;
  height: 55px;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 6px 0 0 0 #000537;
          box-shadow: 6px 0 0 0 #000537;
}
.slider-type13-component .marquee {
  height: 20px;
  overflow: clip;
}
.slider-type13-component .marquee .marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee-move 10s linear infinite;
          animation: marquee-move 10s linear infinite;
}
.slider-type13-component .marquee .marquee-track img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

@-webkit-keyframes marquee-move {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-move {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*
  SLIDER TYPE 9 V.5.0
  © www.webcrew.at 2024
*/
.slider-type14-component {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-type14-component .swiper-wrapper {
  z-index: 0;
}
.slider-type14-component .slider-type14-swiper {
  height: 402px;
  width: calc(100% - 100px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider-type14-component .slider-type14-swiper {
    width: 100%;
  }
}
.slider-type14-component .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0.92;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom right/50.5% 50.5% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom left/50.5% 50.5% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top left/50.5% 50.5% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top right/50.5% 50.5% no-repeat;
  background: linear-gradient(to bottom right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom right/50.5% 50.5% no-repeat, linear-gradient(to bottom left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom left/50.5% 50.5% no-repeat, linear-gradient(to top left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top left/50.5% 50.5% no-repeat, linear-gradient(to top right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top right/50.5% 50.5% no-repeat;
}
.slider-type14-component .swiper-slide:hover .cover {
  opacity: 0;
  pointer-events: none;
}
.slider-type14-component .swiper-slide .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom right/50.5% 50.5% no-repeat, -webkit-gradient(linear, right top, left bottom, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) bottom left/50.5% 50.5% no-repeat, -webkit-gradient(linear, right bottom, left top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top left/50.5% 50.5% no-repeat, -webkit-gradient(linear, left bottom, right top, from(#f9d2a2), color-stop(15%, #f6c896), color-stop(32%, #efb481), color-stop(50%, #edab77)) top right/50.5% 50.5% no-repeat;
  background: linear-gradient(to bottom right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom right/50.5% 50.5% no-repeat, linear-gradient(to bottom left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) bottom left/50.5% 50.5% no-repeat, linear-gradient(to top left, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top left/50.5% 50.5% no-repeat, linear-gradient(to top right, #f9d2a2 0%, #f6c896 15%, #efb481 32%, #edab77 50%) top right/50.5% 50.5% no-repeat;
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.slider-type14-component .swiper-slide .cover .logo {
  opacity: 1;
}
.slider-type14-component .swiper-slide .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  opacity: 0.1;
}
.slider-type14-component .swiper-slide .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px;
  height: 100%;
}
.slider-type14-component .swiper-slide .wrapper .text-container {
  margin-bottom: 14px;
  overflow-y: auto;
  height: 100%;
}
.slider-type14-component .swiper-slide .wrapper .title {
  position: relative;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.slider-type14-component .swiper-slide .wrapper .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.53;
}
.slider-type14-component .swiper-slide .wrapper .button-type1 {
  width: 100%;
}
@media (max-width: 1024px) {
  .slider-type14-component .container {
    display: none;
  }
}
.slider-type14-component .navigation-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}
@media (max-width: 768px) {
  .slider-type14-component .navigation-button {
    display: none;
  }
}
.slider-type14-component .navigation-button .icon {
  display: block;
  width: 12px;
  height: auto;
  stroke: var(--color-2);
  stroke-width: 2px;
}
.slider-type14-component .button-prev {
  left: 0px;
}
.slider-type14-component .button-next {
  right: 0px;
}
.slider-type14-component .navigation-button.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}
@media only screen and (max-width: 1300px) {
  .slider-type14-component .swiper-pagination {
    display: block;
  }
}
.slider-type14-component .swiper-pagination-bullet {
  border: 1px solid rgba(0, 0, 0, 0.7);
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.7);
}
.slider-type14-component .swiper-pagination-bullet-active {
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
}
.slider-type14-component .mobilecontainer {
  display: none;
  background-color: #fafafa;
  padding: 20px 0;
  position: relative;
  margin-top: 20px;
}
.slider-type14-component .mobilecontainer::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
.slider-type14-component .mobilecontainer::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #f2f1f1;
}
@media only screen and (max-width: 1024px) {
  .slider-type14-component .mobilecontainer {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .slider-type14-component .mobilecontainer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 425px) {
  .slider-type14-component .mobilecontainer .wrapper {
    gap: 10px;
  }
}
.slider-type14-component .titlemobile {
  font-weight: 400;
  font-size: calc(0.5vw + 16px);
  line-height: 1.3;
  text-align: center;
}
.slider-type14-component .textmobile {
  font-size: calc(0.8vw + 18px);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}
/*
  PAGINATION TYPE 1 V.1.1
  © www.webcrew.at 2023
*/
.pagination-type1-component {
  margin-top: 40px;
}
.pagination-type1-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-type1-component .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.pagination-type1-component .button {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 500;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition-property: "opacity", "box-shadow", "box-shadow";
  transition-property: "opacity", "box-shadow", "box-shadow";
  transition-property: "opacity", "box-shadow";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination-type1-component .button:hover {
  opacity: 0.8;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.pagination-type1-component .button.active {
  background-color: var(--brand-color);
  color: #fff;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  .pagination-type1-component .page3 {
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  .pagination-type1-component .page2 {
    display: none;
  }
}

/*
MAIN NAVI TYPE 1 V.1.1
© www.webcrew.at 2022
*/
:root {
  --animation: 150ms linear;
  --border-radius-small: 3px;
  --border-radius-middle: 5px;
  --border-radius-large: 10px;
}

.main-navi-type1-component {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  height: 100%;
  width: auto;
}
@media (max-width: 1024px) {
  .main-navi-type1-component {
    display: none;
  }
}
.main-navi-type1-component .mainitem {
  text-align: center;
  position: relative;
  height: 100%;
}
.main-navi-type1-component .mainitem > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 20px 0px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--color-1);
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.main-navi-type1-component .mainitem > a .icon {
  margin-top: -4px;
}
.main-navi-type1-component .mainitem > a.active {
  text-decoration: underline;
}
.main-navi-type1-component .mainitem > a:hover {
  color: var(--brand-color);
}
.main-navi-type1-component .mainitem:hover .submenu-container {
  opacity: 1 !important;
  top: 100%;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  pointer-events: all;
}

/* sub menu */
.main-navi-type1-component li.mainitem .submenu-container {
  position: absolute;
  top: 90%;
  left: 0px;
  z-index: 5;
  width: 240px;
  opacity: 0;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  -webkit-transition-property: opacity, top, -webkit-transform;
  transition-property: opacity, top, -webkit-transform;
  transition-property: opacity, transform, top;
  transition-property: opacity, transform, top, -webkit-transform;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.main-navi-type1-component li.mainitem .submenu-container[data-categories] {
  width: 780px;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu {
  position: relative;
  background-color: rgba(0, 0, 0, 0.61);
  width: 100%;
  border-radius: 0px 0px 0px var(--border-radius-middle);
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem {
  position: relative;
  width: 100%;
  cursor: pointer;
  text-align: left;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem:last-child > a {
  border-radius: 0px 0px 0px var(--border-radius-middle);
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem:hover .subsubmenu {
  opacity: 1 !important;
  top: 0;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  pointer-events: all;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 8px 20px;
  font-size: 14px;
  -webkit-transition: background var(--animation), color var(--animation);
  transition: background var(--animation), color var(--animation);
  color: #fff;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem > a:hover {
  color: var(--brand-color);
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem > a.active {
  color: var(--brand-color);
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem .withoutpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 6px 20px 6px 20px;
  font-size: 16px;
  font-weight: 600;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem .withoutpage:hover span {
  margin-left: 10px;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem .withoutpage.active {
  font-weight: 600;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem .withoutpage.active span {
  color: #000;
  margin-left: 10px;
}
.main-navi-type1-component li.mainitem .submenu-container .submenu .subitem .withoutpage span {
  color: #fff;
  -webkit-transition: margin 150ms linear;
  transition: margin 150ms linear;
}

/* sub sub menu */
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu {
  position: absolute;
  top: 10px;
  left: 100%;
  background-color: rgba(0, 0, 0, 0.61);
  min-width: 210px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  border-radius: 0px var(--border-radius-middle) var(--border-radius-middle) 0px;
  overflow: hidden;
}
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu .subsubitem {
  min-width: 200px;
  cursor: pointer;
  text-align: left;
}
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu .subsubitem:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu .subsubitem > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 8px 20px;
  font-size: 14px;
  -webkit-transition: background var(--animation), color var(--animation);
  transition: background var(--animation), color var(--animation);
  color: #fff;
}
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu .subsubitem > a:hover {
  color: var(--brand-color);
}
.main-navi-type1-component li.mainitem ul.submenu li.subitem ul.subsubmenu .subsubitem > a.active {
  color: var(--brand-color);
}

/*
  FOOTER TYPE 1 V.1.1
  © www.webcrew.at 2022
*/
.footer-type1-plugin {
  background-color: #111111;
  color: #f5f5f5;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 300;
}
.footer-type1-plugin .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 150px;
}
.footer-type1-plugin .col {
  -ms-flex-preferred-size: calc((100% - 300px) / 3);
      flex-basis: calc((100% - 300px) / 3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
  .footer-type1-plugin .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer-type1-plugin .col a {
  color: var(--brand-color);
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type1-plugin .col a:hover {
  opacity: 0.8;
}
.footer-type1-plugin .col .title {
  font-size: 23px;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 5px solid var(--secondary-color);
}
.footer-type1-plugin .col .text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-type1-plugin .subblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-type1-plugin .col .subtitle {
  width: 70px;
  line-height: 1.5;
  color: var(--secondary-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-type1-plugin .col .subtext {
  line-height: 1.5;
}
.footer-type1-plugin .col .subtext a {
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type1-plugin .col .subtext a:hover {
  opacity: 0.8;
}
.footer-type1-plugin .col .links {
  margin-bottom: 30px;
}
.footer-type1-plugin .col .links a {
  font-size: 24px;
  margin-right: 10px;
  background-color: var(--brand-color);
  font-family: "Themify";
  color: #fff;
  padding: 6px 24px;
  border-radius: 3px;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type1-plugin .col .links a:hover {
  opacity: 0.8;
}
.footer-type1-plugin .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-type1-plugin .socials a {
  font-size: 14px;
  width: 44px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #222;
  color: var(--brand-color);
  border-radius: var(--border-radius-small);
  font-size: 22px;
  -webkit-transition-property: "background-color";
  transition-property: "background-color";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type1-plugin .socials a:hover {
  background-color: var(--secondary-color);
}
.footer-type1-plugin .col .logos {
  margin-bottom: 30px;
}
.footer-type1-plugin .col .logos a {
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type1-plugin .col .logos a:hover {
  opacity: 0.8;
}
.footer-type1-plugin .col .logos img {
  width: 150px;
  max-width: 100%;
}

/*
  FOOTER TYPE 2 V.1.2
  © www.webcrew.at 2024
*/
.footer-type2-component {
  text-align: center;
  background-color: #242424;
  color: #888;
  padding: 20px 0px;
  font-size: 18px;
  font-weight: 300;
}

.footer-type2-component .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.footer-type2-component .block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-type2-component .madeby {
  float: right;
}
.footer-type2-component .madeby a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer-type2-component .madeby a:hover {
  opacity: 0.8;
}

.footer-type2-component .madeby span {
  float: left;
  font-size: 18px;
  font-weight: 300;
  padding: 12px 20px 0 0;
  text-align: center;
}

.footer-type2-component .madeby img {
  float: right;
  width: 88px;
}

.footer-type2-component .socials {
  margin-top: 10px;
}

.footer-type2-component .socials a {
  display: inline-block;
  font-size: 18px;
  margin: 8px;
  font-weight: 300;
  color: var(--brand-color);
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.footer-type2-component .socials a:hover {
  opacity: 0.8;
}

.footer-type2-component .footer-menu {
  float: left;
  font-size: 16px;
  font-weight: 300;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-type2-component .footer-menu li.item {
  float: left;
  margin: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-type2-component .footer-menu li.item a {
  display: inline-block;
  font-size: 18px;
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.footer-type2-component .footer-menu li.item a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1024px) {
  .footer-type2-component .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*
  FOOTER TYPE 3 V.1.2
  © www.webcrew.at 2024
*/
.footer-type3-plugin {
  background-color: var(--color-1);
  background: url(/public/base_images/footer-bg.png) repeat center;
  color: #f5f5f5;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 300;
}

.footer-type3-plugin .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.footer-type3-plugin .col {
  -ms-flex-preferred-size: calc(33.3333333333% - 20px);
      flex-basis: calc(33.3333333333% - 20px);
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer-type3-plugin .col a {
  color: var(--brand-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-type3-plugin .col a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-type3-plugin .col .contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 15px;
}

.footer-type3-plugin .col .title {
  font-size: 23px;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}

.footer-type3-plugin .col .title:before {
  content: "";
  height: 100%;
  width: 5px;
  background-color: var(--brand-color);
  position: absolute;
  left: 0px;
  top: 0px;
}

.footer-type3-plugin .col .text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-type3-plugin .col .subtitle {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
  color: var(--secondary-color);
}

.footer-type3-plugin .col .subtext {
  line-height: 1.5;
}

.footer-type3-plugin .col .subtext a {
  color: var(--brand-color);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-type3-plugin .col .subtext a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-type3-plugin .col .links {
  margin-bottom: 40px;
}

.footer-type3-plugin .col .links a {
  font-size: 24px;
  margin-right: 10px;
  background-color: var(--brand-color);
  font-family: "Themify";
  color: #fff;
  padding: 6px 24px;
  border-radius: var(--border-radius-small);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-type3-plugin .col .links a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-type3-plugin .col .links a.email:before {
  content: "\e75a";
}

.footer-type3-plugin .col .links a.phone:before {
  content: "\e719";
}

.footer-type3-plugin .col .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-type3-plugin .col .socials a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--secondary-color);
  color: #000;
  border-radius: var(--border-radius-small);
  font-size: 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-type3-plugin .col .socials a:hover {
  background-color: var(--brand-color);
  color: #fff;
}

.footer-type3-plugin .col .map iframe {
  width: 100%;
  height: 250px;
}

@media only screen and (max-width: 1024px) {
  .footer-type3-plugin .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*
  FOOTER TYPE 4 V.1.2
  © www.webcrew.at 2024
*/
.footer-type4-plugin {
  background-color: #19191c;
  color: #f5f5f5;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 300;
}

.footer-type4-plugin .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}

.footer-type4-plugin .col {
  -ms-flex-preferred-size: calc((100% - 150px) / 4);
      flex-basis: calc((100% - 150px) / 4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media only screen and (max-width: 1200px) {
  .footer-type4-plugin .col {
    -ms-flex-preferred-size: calc((100% - 50px) / 2);
        flex-basis: calc((100% - 50px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .footer-type4-plugin .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer-type4-plugin .col .contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 15px;
}

.footer-type4-plugin .col .title {
  font-size: 23px;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}

.footer-type4-plugin .col .title:before {
  content: "";
  height: 100%;
  width: 5px;
  background-color: var(--brand-color);
  position: absolute;
  left: 0px;
  top: 0px;
}

.footer-type4-plugin .col .maintext {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: #fff;
}

.footer-type4-plugin .col .text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-type4-plugin .col .subtitle {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
  font-weight: 700;
}

.footer-type4-plugin .col .subtext {
  line-height: 1.5;
}

.footer-type4-plugin .col .subtext a {
  font-weight: 300;
  color: #fff;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.footer-type4-plugin .col .subtext a:hover {
  opacity: 0.7;
}

.footer-type4-plugin .col .links {
  margin-bottom: 40px;
}

.footer-type4-plugin .col .links a {
  font-size: 24px;
  margin-right: 10px;
  background-color: var(--brand-color);
  font-family: "Themify";
  color: #fff;
  padding: 6px 24px;
  border-radius: 3px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.footer-type4-plugin .col .links a:hover {
  opacity: 0.7;
}

.footer-type4-plugin .col .links a.email:before {
  content: "\e75a";
}

.footer-type4-plugin .col .links a.phone:before {
  content: "\e719";
}

.footer-type4-plugin .footer-menu {
  font-size: 16px;
  font-weight: 300;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  margin-left: 50px;
}

@media only screen and (max-width: 1200px) {
  .footer-type4-plugin .footer-menu {
    margin-left: 0;
  }
}
.footer-type4-plugin .footer-menu li.item {
  margin-bottom: 10px;
}

.footer-type4-plugin .footer-menu li.item a {
  font-weight: 500;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.footer-type4-plugin .footer-menu li.item a:hover {
  opacity: 0.7;
}

.footer-type4-plugin .footer-menu li.item a.active {
  color: #fff;
  font-weight: 500;
}

/*
  FOOTER TYPE 5 V.1.2
  © www.webcrew.at 2024
*/
.footer-type5-plugin {
  text-align: center;
  background-color: #111;
  color: #eaeaea;
  padding: 20px 0px;
  font-size: 16px;
  font-weight: 300;
}

.footer-type5-plugin .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.footer-type5-plugin .block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-type5-plugin .madeby {
  float: right;
}

.footer-type5-plugin .madeby span {
  float: left;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.6;
  color: #eaeaea;
  text-align: center;
}

.footer-type5-plugin .madeby a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer-type5-plugin .madeby img {
  float: right;
  width: 68px;
  opacity: 0.7;
}

.footer-type5-plugin .socials {
  margin-top: 10px;
}

.footer-type5-plugin .socials a {
  display: inline-block;
  font-size: 14px;
  margin: 5px;
  font-weight: 400;
  color: var(--brand-color);
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.footer-type5-plugin .socials a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1024px) {
  .footer-type5-plugin .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*
  FOOTER TYPE 6 V.1.1
  © www.webcrew.at 2023
*/
.footer-type6-component {
  background-color: #111;
  color: #eee;
  padding: 50px 0;
  font-size: 16px;
  font-weight: 300;
}
.footer-type6-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 100px;
}
@media only screen and (max-width: 1024px) {
  .footer-type6-component .wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-type6-component .col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media only screen and (max-width: 1024px) {
  .footer-type6-component .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer-type6-component .col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
@media only screen and (max-width: 1024px) {
  .footer-type6-component .col-1 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer-type6-component .col-2 {
  -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
}
@media only screen and (max-width: 1024px) {
  .footer-type6-component .col-2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.footer-type6-component .logo {
  max-width: 100px;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type6-component .logo img {
  width: 100%;
}
.footer-type6-component .logo:hover {
  opacity: 0.8;
}
.footer-type6-component .image img {
  width: 200px;
}
.footer-type6-component .contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 15px;
}
.footer-type6-component .contact-row:last-child {
  margin-bottom: 0px;
}
.footer-type6-component .title {
  font-size: 23px;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 15px;
  border-left: 5px solid var(--brand-color);
  color: #fff;
}
.footer-type6-component .maintext {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.footer-type6-component .text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-type6-component .subtitle {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.6;
  font-weight: 700;
}
.footer-type6-component .subtext {
  line-height: 1.6;
}
.footer-type6-component .subtext a {
  font-weight: 300;
  color: #eee;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-type6-component .subtext a:hover {
  opacity: 0.8;
}
.footer-type6-component p {
  margin-bottom: 14px;
}
.footer-type6-component p:last-child {
  margin-bottom: 0px;
}
.footer-type6-component strong {
  color: #fff;
  font-weight: 600;
}

.footer-type7-component {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 0px;
  background-color: #000;
}
@media (max-width: 1024px) {
  .footer-type7-component {
    padding: 50px 0px;
  }
}
.footer-type7-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .footer-type7-component .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}
.footer-type7-component .logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  width: 100%;
}
.footer-type7-component .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type7-component .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-type7-component .logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-type7-component .logo-link img {
  height: auto;
  width: 100%;
}
.footer-type7-component .logo-link p {
  font-size: 24px;
  font-weight: 800;
}
.footer-type7-component .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-type7-component .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1024px) {
  .footer-type7-component .contact-info {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer-type7-component .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type7-component .contact-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 1199px) {
  .footer-type7-component .contact-info .list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: start;
  }
}
.footer-type7-component .contact-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer-type7-component .contact-info .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-type7-component .contact-info .item {
    font-size: 16px;
  }
}
.footer-type7-component .contact-info .item .icon {
  width: 22px;
  height: 22px;
  fill: var(--brand-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-type7-component .socials-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 40%;
}
@media (max-width: 1199px) {
  .footer-type7-component .socials-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .footer-type7-component .socials-wrap {
    width: 100%;
  }
}
.footer-type7-component .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer-type7-component .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-type7-component .socials .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.footer-type7-component .socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.footer-type7-component .socials a:hover {
  opacity: 0.8;
}
.footer-type7-component .socials .icon {
  width: 32px;
  height: 32px;
  fill: #fff;
  -webkit-transition: fill var(--animation);
  transition: fill var(--animation);
}
.footer-type7-component .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 30px;
  width: 100%;
  max-width: 430px;
}
@media (max-width: 1199px) {
  .footer-type7-component .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1024px) {
  .footer-type7-component .wrap {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-type7-component ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-type7-component ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type7-component ul li {
  width: 100%;
}
.footer-type7-component ul li a {
  display: block;
  margin: 0;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-type7-component ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
  }
}
.footer-type7-component ul li a:hover {
  color: var(--brand-color);
}
.footer-type7-component .links1 {
  width: 100%;
}
.footer-type7-component .links2 {
  width: 100%;
}

/*
  FOOTER TYPE 8 V.1
  © www.webcrew.at 2024
*/
.footer-type8-component {
  background-color: var(--color-1);
  padding: 50px 0;
}
.footer-type8-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1024px) {
  .footer-type8-component .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.footer-type8-component .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  min-width: 200px;
}
@media (max-width: 1024px) {
  .footer-type8-component .col {
    min-width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 768px) {
  .footer-type8-component .col {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 100%;
    text-align: center;
  }
}
.footer-type8-component .col.col3 img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.footer-type8-component .col .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer-type8-component .col .title {
    gap: 20px;
  }
}
.footer-type8-component .col .text {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: #888;
}
.footer-type8-component .col .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 32px;
  color: #888;
}
.footer-type8-component .col .social-links .facebook {
  font-size: 28px;
}
.footer-type8-component .col .social-links a {
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.footer-type8-component .col .social-links a.facebook {
  font-size: 28px;
}
.footer-type8-component .col .social-links a:hover {
  opacity: 0.8;
}

/*
  FOOTER TYPE 9 V.1.0
  © www.webcrew.at 2024
*/
.footer-type9-component {
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 20px 0px;
  font-size: 16px;
  font-weight: 300;
}

.footer-type9-component .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.footer-type9-component .block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-type9-component .madeby {
  float: right;
}
.footer-type9-component .madeby a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer-type9-component .madeby a:hover {
  opacity: 0.7;
}

.footer-type9-component .madeby span {
  float: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #eaeaea;
  text-align: center;
}

.footer-type9-component .madeby img {
  float: right;
  width: 88px;
}

.footer-type9-component .socials {
  margin-top: 10px;
}

.footer-type9-component .socials a {
  display: inline-block;
  font-size: 14px;
  margin: 5px;
  font-weight: 400;
  color: var(--brand-color);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-type9-component .socials a:hover {
  opacity: 0.7;
}

.footer-type9-component .footer-menu {
  float: left;
  font-size: 16px;
  font-weight: 300;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-type9-component .footer-menu li.item {
  float: left;
  margin: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-type9-component .footer-menu li.item a {
  display: inline-block;
  font-size: 16px;
  color: #eaeaea;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.footer-type9-component .footer-menu li.item a:hover {
  color: var(--secondary-color);
}

.footer-type9-component .footer-menu li.item a.active {
  color: #fff;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) {
  .footer-type9-component .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-type10-component {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 0px;
  background-color: #252628;
}
@media (max-width: 1024px) {
  .footer-type10-component {
    padding: 50px 0px;
  }
}
.footer-type10-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1199px) {
  .footer-type10-component .wrapper {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer-type10-component .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type10-component .box h2 {
  margin-bottom: 30px;
  color: #fff;
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 700;
}
.footer-type10-component .box .text {
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
  color: #bbb;
}
@media (max-width: 1024px) {
  .footer-type10-component .box .text {
    width: auto;
  }
}
.footer-type10-component .box1 {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 1024px) {
  .footer-type10-component .box1 {
    width: 100%;
    max-width: 100%;
  }
}
.footer-type10-component .box1 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer-type10-component .box1 .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer-type10-component .box1 .list .item .icon {
  margin-top: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 15px;
  color: #bbb;
}
.footer-type10-component .box2, .footer-type10-component .box3 {
  min-width: 210px;
}
.footer-type10-component .box4 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer-type10-component .box4 {
    width: 100%;
  }
}
.footer-type10-component .box4 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.footer-type10-component .box4 .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.8;
  color: #bbb;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.footer-type10-component .box4 .list a:hover {
  color: #fff;
}
.footer-type10-component .box4 .list a i {
  font-size: 10px;
}

.footer-type11-component {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 0px;
  background-color: rgba(0, 0, 0, 0.19);
}
@media (max-width: 1024px) {
  .footer-type11-component {
    padding: 50px 0px;
  }
}
.footer-type11-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .footer-type11-component .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}
.footer-type11-component .contact-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
@media (max-width: 1024px) {
  .footer-type11-component .contact-wrap {
    width: 100%;
  }
}
.footer-type11-component .contact-wrap h2 {
  margin-bottom: 50px;
  font-size: clamp(22px, 3vw, 32px);
  font-family: "Albert Sans";
}
@media (max-width: 1199px) {
  .footer-type11-component .contact-wrap h2 {
    margin-bottom: 40px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .footer-type11-component .contact-wrap h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer-type11-component .contact-wrap h2 {
    margin-bottom: 20px;
  }
}
.footer-type11-component .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-type11-component .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1024px) {
  .footer-type11-component .contact-info {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer-type11-component .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type11-component .contact-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 1199px) {
  .footer-type11-component .contact-info .list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: start;
  }
}
.footer-type11-component .contact-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-family: "Albert Sans";
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer-type11-component .contact-info .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-type11-component .contact-info .item {
    font-size: 16px;
  }
}
.footer-type11-component .contact-info .item .icon {
  width: 32px;
  height: 32px;
  fill: var(--secondary-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-type11-component .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 30px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type11-component .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1024px) {
  .footer-type11-component .wrap {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-type11-component ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-type11-component ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type11-component ul li {
  width: 100%;
}
.footer-type11-component ul li a {
  display: block;
  margin: 0;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  font-family: "Albert Sans";
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-type11-component ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
  }
}
.footer-type11-component ul li a:hover {
  color: var(--brand-color);
}
.footer-type11-component .links1 {
  width: 100%;
}
.footer-type11-component .links2 {
  width: 100%;
}

.footer-type12-component {
  position: relative;
  background-color: #383838;
}
.footer-type12-component .top {
  padding-top: 50px;
  padding-bottom: 30px;
}
.footer-type12-component .top .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type12-component .top .wrapper .logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 244px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .logo-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-type12-component .top .wrapper .logo-wrap .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .logo-wrap .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-type12-component .top .wrapper .logo-wrap .logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-type12-component .top .wrapper .logo-wrap .logo-link img {
  height: auto;
  width: 100%;
}
.footer-type12-component .top .wrapper .logo-wrap .logo-link p {
  font-size: 24px;
  font-weight: 800;
}
.footer-type12-component .top .wrapper .title {
  margin-bottom: 30px;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .title {
    text-align: center;
  }
}
.footer-type12-component .top .wrapper .about {
  width: 50%;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .about {
    max-width: 600px;
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .about .text {
    text-align: center;
  }
}
.footer-type12-component .top .wrapper .about .text p {
  font-size: 16px;
  color: #fff;
}
.footer-type12-component .top .wrapper .about .text p strong {
  font-weight: 700 !important;
}
.footer-type12-component .top .wrapper .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 350px;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .footer-type12-component .top .wrapper .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type12-component .top .wrapper .contact-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 1199px) {
  .footer-type12-component .top .wrapper .contact-info .list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: start;
  }
}
.footer-type12-component .top .wrapper .contact-info .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer-type12-component .top .wrapper .contact-info .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-type12-component .top .wrapper .contact-info .item {
    font-size: 16px;
  }
}
.footer-type12-component .top .wrapper .contact-info .item .icon {
  width: 22px;
  height: 22px;
  fill: var(--brand-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-type12-component .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-type12-component ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 1199px) {
  .footer-type12-component ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type12-component ul li {
  width: 100%;
}
.footer-type12-component ul li a {
  display: block;
  margin: 0;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  color: #fff;
}
@media (max-width: 1199px) {
  .footer-type12-component ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-type12-component ul li a {
    font-size: 18px;
  }
}
.footer-type12-component ul li a.active {
  font-weight: 700;
}
.footer-type12-component ul li a:hover {
  color: var(--brand-color);
}
.footer-type12-component .links1 {
  width: 100%;
  max-width: 200px;
}
.footer-type12-component .links2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 20px 0px;
  padding-bottom: 50px;
}
@media (max-width: 425px) {
  .footer-type12-component .links2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .footer-type12-component .links2 span {
    display: none;
  }
}
.footer-type12-component .links2 a {
  color: #fff;
}
.footer-type12-component .links2 li {
  width: auto;
}

.footer-type13-component {
  position: relative;
  background-color: var(--brand-color);
  padding: 40px 0px;
}
@media (max-width: 1024px) {
  .footer-type13-component {
    padding: 30px 0px;
  }
}
@media (max-width: 768px) {
  .footer-type13-component {
    padding: 20px 0px;
  }
}
.footer-type13-component .top {
  margin-bottom: 100px;
}
.footer-type13-component .top .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1199px) {
  .footer-type13-component .top .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-type13-component .top .wrapper .logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 244px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type13-component .top .wrapper .logo-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1024px) {
  .footer-type13-component .top .wrapper .logo-wrap {
    max-width: 120px;
  }
}
.footer-type13-component .top .wrapper .logo-wrap .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-type13-component .top .wrapper .logo-wrap .logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-type13-component .top .wrapper .logo-wrap .logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-type13-component .top .wrapper .logo-wrap .logo-link img {
  height: auto;
  width: 100%;
}
.footer-type13-component .top .wrapper .logo-wrap .logo-link p {
  font-size: 24px;
  font-weight: 800;
}
.footer-type13-component .top .wrapper .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  max-width: 1000px;
}
.footer-type13-component .top .wrapper .contact-info .title {
  font-size: clamp(28px, 22px + 12 * (100vw - 325px) / 699, 42px);
  font-weight: 400;
  color: var(--color-white);
}
@media (max-width: 1199px) {
  .footer-type13-component .top .wrapper .contact-info .title {
    text-align: center;
  }
}
.footer-type13-component .top .wrapper .contact-info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer-type13-component .top .wrapper .contact-info .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-type13-component .top .wrapper .contact-info .list .item {
  width: 100%;
}
.footer-type13-component .top .wrapper .contact-info .list .item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .footer-type13-component .top .wrapper .contact-info .list .item .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer-type13-component .top .wrapper .contact-info .list .item .container .icon {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer-type13-component .top .wrapper .contact-info .list .item .container .textcontent h3 {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}
.footer-type13-component .top .wrapper .contact-info .list .item .container .textcontent p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
.footer-type13-component .bottom .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
}

/*
  NAVI ASIDE TYPE 1 V.1.1
  © www.webcrew.at 2024
*/
.navi-aside-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}
.navi-aside-type1-component li a {
  display: inline-block;
  padding: 4px 10px 4px 20px;
  color: #666;
  position: relative;
  font-size: 14px;
}
.navi-aside-type1-component li a:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  top: 5px;
  left: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navi-aside-type1-component li a:hover {
  color: var(--brand-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navi-aside-type1-component li a:hover:before {
  color: var(--brand-color);
  left: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
  COUNTER TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.counter-type1-component {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .counter-type1-component {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.counter-type1-component .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  .counter-type1-component .item {
    width: calc((100% - 20px) / 2);
  }
}
.counter-type1-component .item-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 116px;
}
.counter-type1-component .item-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 101px;
  height: 101px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 100%;
}
.counter-type1-component .item .item-bar::before {
  content: "";
  padding-top: 100%;
}
.counter-type1-component .number {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.counter-type1-component .item-title {
  margin-bottom: 14px;
  margin-top: 14px;
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
}
.counter-type1-component .item-text {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #B4B4B4;
}
.counter-type1-component .outer {
  border-radius: 50%;
  position: absolute;
}
.counter-type1-component .inner {
  float: left;
  position: absolute;
  border-radius: 50%;
}
.counter-type1-component svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.counter-type1-component .svg1 circle {
  fill: none;
  stroke: url(#bar-gradient-color1);
}
.counter-type1-component .svg2 circle {
  fill: none;
  stroke: url(#bar-gradient-color2);
}
.counter-type1-component .svg3 circle {
  fill: none;
  stroke: url(#bar-gradient-color3);
}
.counter-type1-component .svg4 circle {
  fill: none;
  stroke: url(#bar-gradient-color4);
}

/*
  COUNTER TYPE 2 V.1.2
  © www.webcrew.at 2024
*/
.counter-type2-component {
  position: relative;
  padding: 70px 0px;
}
.counter-type2-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  background-size: 1600px 404px;
  background-image: url("/public/base_images/darkbg.png");
  opacity: 0.25;
}
.counter-type2-component::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-size: 30px 30px;
  background-image: url("/public/base_images/dot.png");
  opacity: 0.35;
}
.counter-type2-component .textbottom {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-color);
  margin-bottom: 30px;
  font-weight: 300;
}
.counter-type2-component .innerwrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 90px;
}
@media (max-width: 768px) {
  .counter-type2-component .innerwrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.counter-type2-component .item {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .counter-type2-component .item {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
}
.counter-type2-component .item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 1024px) {
  .counter-type2-component .item .inner {
    gap: 14px;
  }
}
.counter-type2-component .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 60px;
  color: #fff;
}
.counter-type2-component .item .number-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(30px, 5vw, 60px);
  text-align: center;
  font-weight: 700;
  color: var(--brand-color);
}
.counter-type2-component .item .text {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.4;
  text-align: center;
  font-weight: 300;
  color: #000;
}

/*
  COUNTER TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.counter-type4-component {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .counter-type4-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.counter-type4-component .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: calc((100% - 10px) / 2);
}
@media (max-width: 768px) {
  .counter-type4-component .item {
    width: 100%;
  }
}
.counter-type4-component .item-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 64px;
}
.counter-type4-component .item .item-bar::before {
  content: "";
  padding-top: 100%;
}
.counter-type4-component .number {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 54%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.counter-type4-component .item-title {
  margin-bottom: 14px;
  margin-top: 14px;
  text-align: start;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
}
.counter-type4-component .item-text {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #B4B4B4;
}
.counter-type4-component .outer {
  border-radius: 50%;
  position: absolute;
}
.counter-type4-component .inner {
  float: left;
  position: absolute;
  border-radius: 50%;
}
.counter-type4-component svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.counter-type4-component .svg1 circle {
  fill: none;
  stroke: url(#bar-gradient-color1);
}
.counter-type4-component .svg2 circle {
  fill: none;
  stroke: url(#bar-gradient-color2);
}
.counter-type4-component .svg3 circle {
  fill: none;
  stroke: url(#bar-gradient-color3);
}
.counter-type4-component .svg4 circle {
  fill: none;
  stroke: url(#bar-gradient-color4);
}

/*
  GALLERY TYPE 1 V.1.2
  © www.webcrew.at 2024
*/
.gallery-type1-plugin {
  background-color: #111;
  padding: 100px 0;
}

.gallery-type1-plugin .cards-text-general {
  color: #fff;
}

.gallery-type1-plugin .cards-title-general {
  color: #fff;
}

.gallery-type1-plugin .cards-mainlink-container {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-type1-plugin .cards-mainlink {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.gallery-type1-plugin .cards-mainlink:hover {
  opacity: 0.8;
}

.gallery-type1-plugin .innerwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}

.gallery-type1-plugin .item {
  -ms-flex-preferred-size: calc(33.3333333333% - 33.3333333333px);
      flex-basis: calc(33.3333333333% - 33.3333333333px);
  position: relative;
}

.gallery-type1-plugin .item::before {
  content: "";
  padding-top: 75%;
}

.gallery-type1-plugin .item .item-inner {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-small);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-type1-plugin .item .item-inner:hover {
  -webkit-box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.4);
}

.gallery-type1-plugin .item:nth-child(2) .item-inner {
  height: calc(200% + 50px);
}

.gallery-type1-plugin .item:nth-child(5) {
  z-index: -1;
}

.gallery-type1-plugin .item:nth-child(6) .item-inner {
  height: calc(200% + 50px);
}

.gallery-type1-plugin .item:nth-child(7) .item-inner {
  width: calc(200% + 50px);
}

.gallery-type1-plugin .item .image {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-type1-plugin .item .text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 94, 47, 0.7);
  backdrop-filter: blur(1px);
  opacity: 0;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-type1-plugin .item:hover .text-block {
  opacity: 1;
}

.gallery-type1-plugin .item .title {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
}

.gallery-type1-plugin .item .text {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

.gallery-type1-plugin .item .link {
  display: inline-block;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--brand-color);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-type1-plugin .item .link:hover {
  background-color: var(--secondary-color);
  color: #333;
}

.gallery-type1-plugin .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
}

.gallery-type1-plugin .button-container .more-button {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--brand-color);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--border-radius-small);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gallery-type1-plugin .button-container .more-button:hover {
  background-color: var(--secondary-color);
  color: #333;
}

@media only screen and (max-width: 1024px) {
  .gallery-type1-plugin .innerwrapper {
    gap: 30px;
  }
  .gallery-type1-plugin .item:nth-child(2) .item-inner {
    height: calc(200% + 30px);
  }
  .gallery-type1-plugin .item:nth-child(6) .item-inner {
    height: calc(200% + 30px);
  }
  .gallery-type1-plugin .item:nth-child(7) .item-inner {
    width: calc(200% + 30px);
  }
  .gallery-type1-plugin .item {
    -ms-flex-preferred-size: calc(33.3333333333% - 20px);
        flex-basis: calc(33.3333333333% - 20px);
    position: relative;
  }
  .gallery-type1-plugin .item .text-block {
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  .gallery-type1-plugin .innerwrapper {
    gap: 20px;
  }
  .gallery-type1-plugin .item {
    -ms-flex-preferred-size: calc(33.3333333333% - 13.3333333333px);
        flex-basis: calc(33.3333333333% - 13.3333333333px);
    position: relative;
  }
  .gallery-type1-plugin .item:nth-child(2) .item-inner {
    height: calc(200% + 20px);
  }
  .gallery-type1-plugin .item:nth-child(6) .item-inner {
    height: calc(200% + 20px);
  }
  .gallery-type1-plugin .item:nth-child(7) .item-inner {
    width: calc(200% + 20px);
  }
  .gallery-type1-plugin .item {
    -ms-flex-preferred-size: calc(33.3333333333% - 13.3333333333px);
        flex-basis: calc(33.3333333333% - 13.3333333333px);
    position: relative;
  }
}
/*
  GALLERY TYPE 2 V.1.2
  © www.webcrew.at 2024
*/
.gallery-type2-component {
  padding: 64px 0px;
}
@media (max-width: 768px) {
  .gallery-type2-component {
    padding: 40px 0px;
  }
}
.gallery-type2-component .wrapper {
  padding: 0;
}
.gallery-type2-component .wrapper .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list {
    gap: 20px;
  }
}
.gallery-type2-component .wrapper .list.type4 {
  gap: 30px;
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list.type4 {
    gap: 20px;
  }
}
.gallery-type2-component .wrapper .list.type4 .galleryimg {
  width: calc((100% - 90px) / 4);
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list.type4 .galleryimg {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .gallery-type2-component .wrapper .list.type4 .galleryimg {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 530px) {
  .gallery-type2-component .wrapper .list.type4 .galleryimg {
    width: 100%;
  }
}
.gallery-type2-component .wrapper .list.type5 {
  gap: 20px;
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list.type5 {
    gap: 10px;
  }
}
.gallery-type2-component .wrapper .list.type5 .galleryimg {
  width: calc((100% - 80px) / 5);
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list.type5 .galleryimg {
    width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 768px) {
  .gallery-type2-component .wrapper .list.type5 .galleryimg {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 530px) {
  .gallery-type2-component .wrapper .list.type5 .galleryimg {
    width: 100%;
  }
}
.gallery-type2-component .wrapper .list .galleryimg {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc((100% - 80px) / 3);
  height: 320px;
  border-radius: var(--border-radius-middle);
}
@media (max-width: 1024px) {
  .gallery-type2-component .wrapper .list .galleryimg {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .gallery-type2-component .wrapper .list .galleryimg {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .gallery-type2-component .wrapper .list .galleryimg {
    padding-top: 40px;
    gap: 60px;
  }
}
@media (max-width: 530px) {
  .gallery-type2-component .wrapper .list .galleryimg {
    width: 100%;
  }
}

/*
MAIN NAVI TYPE 1 V.1.0
© www.webcrew.at 2024
*/
.faq-type1-component {
  width: 100%;
}
.faq-type1-component .wrapper {
  width: 100%;
  padding: 0;
}
.faq-type1-component .title {
  margin-bottom: 48px;
  font-size: 36px;
  font-weight: 200;
  text-transform: uppercase;
  text-align: center;
}
.faq-type1-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.faq-type1-component .list .item {
  margin: 0px;
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.faq-type1-component .list .item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type1-component .list .item.active {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type1-component .list .item.active + * {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type1-component .list .item.active .question .icon .line1 {
  background-color: var(--secondary-color);
}
.faq-type1-component .list .item.active .question .icon .line2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--secondary-color);
}
.faq-type1-component .list .item.active .question .icon2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-type1-component .list .item .question {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
}
.faq-type1-component .list .item .question .icon {
  position: relative;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-type1-component .list .item .question .icon .line1 {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 1px;
  width: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation);
  transition: background-color var(--animation);
}
.faq-type1-component .list .item .question .icon .line2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  width: 1px;
  height: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: transform var(--animation), background-color var(--animation);
  transition: transform var(--animation), background-color var(--animation), -webkit-transform var(--animation);
}
.faq-type1-component .list .item .question .icon2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--secondary-color);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform var(--animation);
  transition: -webkit-transform var(--animation);
  transition: transform var(--animation);
  transition: transform var(--animation), -webkit-transform var(--animation);
}
.faq-type1-component .list .item .answer {
  display: none;
  width: 100% !important;
  padding: 10px 20px;
  padding-top: 6px;
}
.faq-type1-component .list .item .answer p {
  margin: 0px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

/*
MAIN NAVI TYPE 2 V.1.0
© www.webcrew.at 2024
*/
.faq-type2-component {
  width: 100%;
  background-color: var(--color-white);
}
.faq-type2-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0;
  max-width: 980px;
  padding: 0px 40px;
}
@media (max-width: 768px) {
  .faq-type2-component .wrapper {
    padding: 0px 20px;
  }
}
.faq-type2-component .container-title {
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--brand-color);
  text-align: center;
}
.faq-type2-component .text {
  margin-bottom: 50px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  text-align: center;
}
.faq-type2-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0;
  list-style-type: none;
}
.faq-type2-component .list .item {
  margin: 0px;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
  border-top: 1px solid #EBEBEB;
}
.faq-type2-component .list .item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type2-component .list .item.active {
  background-color: var(--color-1);
  border-radius: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type2-component .list .item.active + * {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type2-component .list .item.active .question .icon .line1 {
  background-color: var(--secondary-color);
}
.faq-type2-component .list .item.active .question .icon .line2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--secondary-color);
}
.faq-type2-component .list .item.active .question .icon2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-type2-component .list .item .question {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 20px;
  font-size: 20px;
  font-weight: 400;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
  text-align: start;
  color: #231F20;
}
@media (max-width: 520px) {
  .faq-type2-component .list .item .question {
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 500;
  }
}
.faq-type2-component .list .item .question .icon {
  position: relative;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-type2-component .list .item .question .icon .line1 {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 1px;
  width: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation);
  transition: background-color var(--animation);
}
.faq-type2-component .list .item .question .icon .line2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  width: 1px;
  height: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: transform var(--animation), background-color var(--animation);
  transition: transform var(--animation), background-color var(--animation), -webkit-transform var(--animation);
}
.faq-type2-component .list .item .question .icon2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--secondary-color);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform var(--animation);
  transition: -webkit-transform var(--animation);
  transition: transform var(--animation);
  transition: transform var(--animation), -webkit-transform var(--animation);
}
.faq-type2-component .list .item .answer {
  display: none;
  width: 100% !important;
  padding: 20px;
  padding-top: 0px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 300;
  line-height: 1.6;
}
.faq-type2-component .list .item .answer p {
  margin: 0px;
  color: #231F20;
}

/*
MAIN NAVI TYPE 2 V.1.0
© www.webcrew.at 2024
*/
.faq-type3-component {
  position: relative;
  overflow: hidden;
  padding: 100px 0px;
  padding-top: 130px;
  width: 100%;
}
@media (max-width: 1024px) {
  .faq-type3-component {
    padding: 80px 0px;
  }
}
@media (max-width: 768px) {
  .faq-type3-component {
    padding: 60px 0px;
  }
}
.faq-type3-component .wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0;
  max-width: 980px;
  padding: 0px 40px;
}
@media (max-width: 768px) {
  .faq-type3-component .wrapper {
    padding: 0px 20px;
  }
}
.faq-type3-component .container-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 0 auto;
  margin-bottom: 14px;
  width: 100%;
  max-width: 980px;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.faq-type3-component .text {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--brand-color-dark);
  text-align: center;
}
@media (max-width: 768px) {
  .faq-type3-component .text {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.faq-type3-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0;
  list-style-type: none;
}
.faq-type3-component .list .item {
  margin: 0px;
  -webkit-transition: background var(--animation);
  transition: background var(--animation);
  border-top: 1px solid #EBEBEB;
}
.faq-type3-component .list .item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type3-component .list .item.active {
  background-color: #FFECD2;
  border-radius: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type3-component .list .item.active + * {
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.faq-type3-component .list .item.active .question .icon .line1 {
  background-color: var(--secondary-color);
}
.faq-type3-component .list .item.active .question .icon .line2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--secondary-color);
}
.faq-type3-component .list .item.active .question .icon2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-type3-component .list .item .question {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding: 20px 32px;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 500;
  -webkit-transition: color var(--animation);
  transition: color var(--animation);
  text-align: start;
}
@media (max-width: 520px) {
  .faq-type3-component .list .item .question {
    padding: 20px 10px;
  }
}
.faq-type3-component .list .item .question .icon {
  position: relative;
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-type3-component .list .item .question .icon .line1 {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  height: 1px;
  width: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation);
  transition: background-color var(--animation);
}
.faq-type3-component .list .item .question .icon .line2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  width: 1px;
  height: 100%;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: background-color var(--animation), -webkit-transform var(--animation);
  transition: transform var(--animation), background-color var(--animation);
  transition: transform var(--animation), background-color var(--animation), -webkit-transform var(--animation);
}
.faq-type3-component .list .item .question .icon2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: #000;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform var(--animation);
  transition: -webkit-transform var(--animation);
  transition: transform var(--animation);
  transition: transform var(--animation), -webkit-transform var(--animation);
}
.faq-type3-component .list .item .answer {
  display: none;
  width: 100% !important;
  padding: 20px 32px;
  padding-top: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.faq-type3-component .list .item .answer p {
  margin: 0px;
  color: #17161A;
}

/*
  BREADCRUMB TYPE 1 V.1.0
  © www.webcrew.at 2024
*/
.breadcrumb-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  font-size: 18px;
}
.breadcrumb-type1-component a {
  -webkit-transition: color var(--animation), opacity var(--animation);
  transition: color var(--animation), opacity var(--animation);
}
.breadcrumb-type1-component a.disabled {
  pointer-events: none;
}
.breadcrumb-type1-component a:hover {
  opacity: 0.8;
}

/*
  HERO TYPE 1 V.1.0
  © www.webcrew.at 2024
*/
.hero-type1-component {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  max-height: 400px;
  min-height: 250px;
}
.hero-type1-component .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.hero-type1-component .wrapper .title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-type1-component .wrapper .title {
    margin-bottom: 20px;
  }
}

/*
  PAGES LIST TYPE 1 V.1.0
  © www.webcrew.at 2024
*/
.pageslist-type1-component .pageslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 30px;
  padding: 0;
  list-style-type: none;
}
.pageslist-type1-component .pageslist li {
  position: relative;
  width: calc((100% - 60px) / 3);
  overflow: hidden;
  margin: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1199px) {
  .pageslist-type1-component .pageslist li {
    width: 100%;
    max-width: 460px;
  }
}
.pageslist-type1-component .pageslist li:hover::after {
  width: 100%;
  left: 0;
}
.pageslist-type1-component .pageslist li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 2px;
  width: 0px;
  background-color: var(--brand-color);
  -webkit-transition: all var(--animation);
  transition: all var(--animation);
}
.pageslist-type1-component .pageslist li a {
  width: 100%;
  text-decoration: none;
}
.pageslist-type1-component .pageslist li a:hover {
  opacity: 1;
}
.pageslist-type1-component .pageslist li p {
  margin: 0;
}
.pageslist-type1-component .pageslist li .image {
  display: block;
  width: 100%;
  height: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity var(--animation);
  transition: opacity var(--animation);
}
.pageslist-type1-component .pageslist li .image img {
  width: 100%;
  height: 100% !important;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.pageslist-type1-component .pageslist li .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 16px 0px;
}
.pageslist-type1-component .pageslist li .text-container .title {
  margin: 0;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  color: rgb(10, 10, 10);
}
.pageslist-type1-component .pageslist li .text-container .category {
  font-size: 14px;
  color: rgb(120, 120, 120);
}
.pageslist-type1-component .pageslist li .text-container .text {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(23, 23, 23, 0.65);
}
.pageslist-type1-component .pageslist li .text-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--brand-color);
  text-decoration: underline;
  font-size: 20px;
}

/*
  PAGES LIST TYPE 1 V.1.1.3
  © www.webcrew.at 2024
*/
.pageslist-type2-component .pageslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 600px) {
  .pageslist-type2-component .pageslist {
    gap: 40px;
  }
}
.pageslist-type2-component .pageslist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1024px) {
  .pageslist-type2-component .pageslist li {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 600px) {
  .pageslist-type2-component .pageslist li {
    width: 100%;
  }
}
.pageslist-type2-component .pageslist li p {
  margin: 0;
}
.pageslist-type2-component .pageslist li .image {
  display: block;
  width: 100%;
  height: 286px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 20px;
}
.pageslist-type2-component .pageslist li .image:hover {
  opacity: 1;
}
.pageslist-type2-component .pageslist li .image img {
  width: 100%;
  height: 100% !important;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageslist-type2-component .pageslist li .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.pageslist-type2-component .pageslist li .text-container .title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}
.pageslist-type2-component .pageslist li .text-container .text {
  margin-bottom: 20px;
  color: #4a4a4a;
  font-size: 15px;
}
.pageslist-type2-component .pageslist li .text-container .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px !important;
}
.pageslist-type2-component .pageslist li .text-container .button-container .button-type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  background: var(--brand-color);
  color: #333;
}
.pageslist-type2-component .pageslist li .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
}
.pageslist-type2-component .pageslist li .date p {
  position: relative;
  color: #4a4a4a;
  font-size: 12px;
}
.pageslist-type2-component .pageslist li .date p:not(:last-child) {
  padding-right: 8px;
  margin-right: 8px;
}
.pageslist-type2-component .pageslist li .date p:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}

/*
  PAGES LIST TYPE 1 V.1.1.3
  © www.webcrew.at 2024
*/
.pageslist-type3-component .pageslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
  padding: 0;
  list-style-type: none;
}
.pageslist-type3-component .pageslist li {
  width: calc((100% - 60px) / 3);
  overflow: hidden;
  margin: 0;
}
@media (max-width: 1024px) {
  .pageslist-type3-component .pageslist li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 600px) {
  .pageslist-type3-component .pageslist li {
    width: 100%;
  }
}
.pageslist-type3-component .pageslist li a {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.pageslist-type3-component .pageslist li a h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-color);
}
.pageslist-type3-component .pageslist li a img {
  margin-bottom: 10px;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageslist-type3-component .pageslist li a .text {
  font-size: 12px;
  line-height: 1.6;
}

/*
  FORM TYPE 1 V.1.0
  © www.webcrew.at 2024
*/
.form-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .form-type1-component {
    max-width: 100%;
    height: 100%;
  }
}
.form-type1-component h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: #c5c5c5;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
}
.form-type1-component .rowwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form-type1-component .rowwrapper .row {
  width: calc((100% - 40px) / 3);
  min-width: 180px;
  color: #c5c5c5;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.form-type1-component .rowwrapper .row .star {
  color: #790000;
}
.form-type1-component .notice {
  padding: 5px 0 0 0;
  display: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--error-color);
}
.form-type1-component .required {
  color: var(--error-color);
}
.form-type1-component .success {
  display: none;
  margin-top: 20px;
  color: var(--success-color);
}
.form-type1-component .success .icon {
  margin-right: 4px;
  font-size: 22px;
}
.form-type1-component .required-text {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  font-weight: 300;
}
.form-type1-component .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.form-type1-component .button-container .button-type1 {
  padding: 0 50px;
  height: 38px;
  border-radius: var(--border-radius-small);
  font-size: 16px;
  font-weight: 500;
}
.form-type1-component input,
.form-type1-component select,
.form-type1-component textarea {
  margin-top: 4px;
  height: 36px;
  padding: 0px 16px;
  font-size: 14px;
  color: #000;
  width: 100%;
  border: 1px solid #bcbcbc;
  background-color: rgba(238, 238, 238, 0.55);
  border-radius: var(--border-radius-small);
}
.form-type1-component input::-webkit-input-placeholder, .form-type1-component select::-webkit-input-placeholder, .form-type1-component textarea::-webkit-input-placeholder {
  color: #afafaf;
}
.form-type1-component input::-moz-placeholder, .form-type1-component select::-moz-placeholder, .form-type1-component textarea::-moz-placeholder {
  color: #afafaf;
}
.form-type1-component input:-ms-input-placeholder, .form-type1-component select:-ms-input-placeholder, .form-type1-component textarea:-ms-input-placeholder {
  color: #afafaf;
}
.form-type1-component input::-ms-input-placeholder, .form-type1-component select::-ms-input-placeholder, .form-type1-component textarea::-ms-input-placeholder {
  color: #afafaf;
}
.form-type1-component input::placeholder,
.form-type1-component select::placeholder,
.form-type1-component textarea::placeholder {
  color: #afafaf;
}
.form-type1-component textarea {
  height: 150px;
}

.audiolist-type1-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  list-style-type: none;
  padding: 0px;
}
@media (max-width: 1024px) {
  .audiolist-type1-component .list {
    gap: 40px;
  }
}
.audiolist-type1-component .list .item {
  width: calc((100% - 200px) / 5);
}
@media (max-width: 1199px) {
  .audiolist-type1-component .list .item {
    width: calc((100% - 150px) / 4);
  }
}
@media (max-width: 1024px) {
  .audiolist-type1-component .list .item {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 768px) {
  .audiolist-type1-component .list .item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 425px) {
  .audiolist-type1-component .list .item {
    width: 100%;
  }
}
.audiolist-type1-component .list .item.active .playaudio-button svg.pause {
  display: block !important;
}
.audiolist-type1-component .list .item.active .playaudio-button svg.play {
  display: none;
}
.audiolist-type1-component .list .item img {
  margin: 0px;
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.audiolist-type1-component .list .item .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.audiolist-type1-component .list .item .wrap .info h3 {
  margin: 0px;
  margin-bottom: 4px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  color: #000;
}
.audiolist-type1-component .list .item .wrap .info .author {
  font-size: 14px;
  color: #777;
}
.audiolist-type1-component .list .item .wrap .playaudio-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--brand-color);
  border-radius: 100%;
}
.audiolist-type1-component .list .item .wrap .playaudio-button svg {
  width: 19px;
  height: 20px;
  fill: #fff;
}
.audiolist-type1-component .list .item .wrap .playaudio-button svg.pause {
  display: none;
  width: 22px;
  height: 22px;
}

.audioplayer-type1-component {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  width: 100%;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(11px);
}
.audioplayer-type1-component .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
@media (max-width: 768px) {
  .audioplayer-type1-component .wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.audioplayer-type1-component .wrapper .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 18px;
  color: #fff;
}
.audioplayer-type1-component .wrapper audio {
  width: 100%;
  color-scheme: dark;
}
.audioplayer-type1-component .wrapper audio::-webkit-media-controls-enclosure {
  background: none;
}
.audioplayer-type1-component .wrapper .close-button {
  position: absolute;
  top: 0px;
  right: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px;
  width: 22px;
  height: 22px;
  background: none;
  font-size: 18px;
  color: var(--brand-color);
}
@media (max-width: 1199px) {
  .audioplayer-type1-component .wrapper .close-button {
    right: 59px;
  }
}
@media (max-width: 768px) {
  .audioplayer-type1-component .wrapper .close-button {
    right: 39px;
  }
}

.videolist-type1-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
  padding: 0px;
  list-style-type: none;
}
@media (max-width: 1024px) {
  .videolist-type1-component .list {
    gap: 40px;
  }
}
.videolist-type1-component .list .item {
  width: calc((100% - 144px) / 4);
}
@media (max-width: 1199px) {
  .videolist-type1-component .list .item {
    width: calc((100% - 96px) / 3);
  }
}
@media (max-width: 1024px) {
  .videolist-type1-component .list .item {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) {
  .videolist-type1-component .list .item {
    width: 100%;
  }
}
.videolist-type1-component .list .item .video-wrapper {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  aspect-ratio: 5/3.2;
  border-radius: 5px;
  overflow: hidden;
}
.videolist-type1-component .list .item .video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.videolist-type1-component .list .item .video-wrapper .poster {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.videolist-type1-component .list .item .video-wrapper .poster button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
}
.videolist-type1-component .list .item .video-wrapper .poster button .icon {
  fill: #fff;
  width: 32px;
  height: 32px;
}
.videolist-type1-component .list .item .info {
  padding: 0px 10px;
}
.videolist-type1-component .list .item .info h3 {
  margin: 0px;
  margin-bottom: 4px;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  color: #000;
}
.videolist-type1-component .list .item .playaudio-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--brand-color);
  border-radius: 100%;
}
.videolist-type1-component .list .item .playaudio-button svg {
  width: 19px;
  height: 20px;
  fill: #fff;
}
.videolist-type1-component .list .item .playaudio-button svg.pause {
  display: none;
  width: 22px;
  height: 22px;
}

.calendar-type1-component ul {
  padding: 0px !important;
  margin: 0px !important;
  list-style-type: none !important;
}
.calendar-type1-component ul li {
  margin: 0px !important;
}
.calendar-type1-component p {
  margin: 0;
}
.calendar-type1-component .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.calendar-type1-component .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 30px;
}
.calendar-type1-component .list .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
}
.calendar-type1-component .list .item .title h2 {
  margin: 0px;
}
.calendar-type1-component .list .item .items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
.calendar-type1-component .list .item .items-list .items-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
@media (max-width: 1024px) {
  .calendar-type1-component .list .item .items-list .items-list_item {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .calendar-type1-component .list .item .items-list .items-list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 16px;
  }
}
.calendar-type1-component .list .item .items-list .items-list_item .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  color: var(--brand-color);
}
.calendar-type1-component .list .item .items-list .items-list_item .info {
  width: 100%;
}
.calendar-type1-component .list .item .items-list .items-list_item .info h3 {
  margin: 0px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 500;
}
.calendar-type1-component .list .item .items-list .items-list_item .info .text {
  font-size: 18px;
  font-weight: 300;
}
.calendar-type1-component .list .item .items-list .items-list_item .button-type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}

.artist-type1-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .artist-type1-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.artist-type1-component p {
  margin: 0px;
}
.artist-type1-component img {
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 520px;
  margin: 0;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .artist-type1-component img {
    max-width: 320px;
    max-height: 320px;
  }
}
.artist-type1-component .right .text-container {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .artist-type1-component .right .text-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 18px;
  }
}
.artist-type1-component .right .text-container .title {
  margin: 0;
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: #171717;
}
.artist-type1-component .right .text-container .text p {
  text-align: start;
}
.artist-type1-component .right .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 50px;
  padding: 0px;
  list-style-type: none;
}
.artist-type1-component .right .list .item {
  margin: 0px;
}
.artist-type1-component .right .list .item h3 {
  margin: 0px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.artist-type1-component .right .list .item .text {
  font-size: 18px;
}
.artist-type1-component .right .buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.artist-type1-component .right .buttons-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.artist-type1-component .right .buttons-container .button-type1 {
  padding: 0px 24px;
}
@media (max-width: 425px) {
  .artist-type1-component .right .buttons-container .button-type1 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */