/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
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;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

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

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		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.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
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 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
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.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

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

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

::-webkit-inner-spin-button,
::-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.
*/

::-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 Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


dl,
h1,
h2,
h3,
h4,
hr,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Montserrat; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

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

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
iframe {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 913px) {
  .container {
    max-width: 913px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.visible {
  visibility: visible;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-y-14 {
  top: 3.5rem;
  bottom: 3.5rem;
}

.inset-y-1\/3 {
  top: 33.333333%;
  bottom: 33.333333%;
}

.bottom-8 {
  bottom: 2rem;
}

.z-50 {
  z-index: 50;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.float-right {
  float: right;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-14 {
  margin-right: 3.5rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-4 {
  height: 1rem;
}

.h-8 {
  height: 2rem;
}

.h-14 {
  height: 3.5rem;
}

.h-full {
  height: 100%;
}

.w-4 {
  width: 1rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-80 {
  width: 20rem;
}

.w-96 {
  width: 24rem;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-full {
  width: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-disc {
  list-style-type: disc;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.border {
  border-width: 1px;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgba(165, 6, 52, var(--tw-border-opacity));
}

.fill-current {
  fill: currentColor;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.leading-none {
  line-height: 1;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgba(165, 6, 52, var(--tw-text-opacity));
}

.text-darkGrey {
  --tw-text-opacity: 1;
  color: rgba(160, 160, 160, var(--tw-text-opacity));
}

.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgba(165, 6, 52, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

$themeColor: #007aff !default;

@font-face {
  font-family: 'swiper-icons';

  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA')
    format('woff');

  font-weight: 400;

  font-style: normal;
}

:root {
  --swiper-theme-color: #{$themeColor};
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
  }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    height: auto;
  }

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }

/* 3D Effects */

.swiper-3d,
  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
  }

.swiper-3d .swiper-wrapper,
  .swiper-3d .swiper-slide,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
  }

.swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;
  }

/* For Internet Explorer and Edge */

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
      display: none;
    }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
  }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
  }

.swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999;
  }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
      height: 100%;
      width: var(--swiper-centered-offset-after);
    }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
      width: 100%;
      height: var(--swiper-centered-offset-after);
    }

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
  }

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  /*
      */
  left: 0;
  /*
      /*rtl:end:ignore*/
  /*
      */
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  /*
      */
  right: 0;
  /*
      /*rtl:end:ignore*/
  /*
      */
}

/*
      /*rtl:begin:ignore*/

/*
      /*rtl:end:ignore*/

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}

.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}

.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57,57,57,0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57,57,57,0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.flatpickr-calendar .flatpickr-months .flatpickr-month{
      background-color: #FAFAFA;
    }

.flatpickr-calendar .flatpickr-day.selected{
    background-color: #A50634;
    border-color: #A50634;
  }

:root{
  --font-size-lg: 18px;
  --line-height-lg: 20px;
  --font-size-md: 14px;
  --line-height-md: 16px;
  --font-size-xs: 9px;
  --line-height-xs: 11px;
}

@font-face {
  font-family: 'Montserrat';

  src: local('Montserrat'), url(../fonts/Montserrat-Medium.ttf);

  font-weight: normal;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: local('Montserrat'), url(../fonts/Montserrat-Italic.ttf);

  font-weight: normal;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: local('Montserrat'), url(../fonts/Montserrat-Regular.ttf);

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: local('Montserrat'), url(../fonts/Montserrat-SemiBold.ttf);

  font-weight: 600;

  font-style: bold;

  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';

  src: local('Montserrat'), url(../fonts/Montserrat-Bold.ttf);

  font-weight: 800;

  font-style: bold;

  font-display: swap;
}

html {
  font-style: normal;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

@media (min-width: 913px) {

html {
    font-size: var(--font-size-md);

    line-height: var(--line-height-md)
}
  }

@media (min-width: 1024px) {

html {
    font-size: var(--font-size-lg);

    line-height: var(--line-height-lg)
}
  }

h1 {
  font-weight: 700;
  font-style: normal;
  font-size: 3.625rem;
  line-height: 3.375rem;
}

@media (min-width: 913px){

h1 {
    font-size: 3.125rem;

    line-height: 2.938rem;
}
  }

h1 {
  color: #fff;
}

h2 {
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.438rem;
}

@media (min-width: 913px){

h2 {
    font-size: 1.750rem;

    line-height: 2.125rem;
}
  }

h2 {
  color: #fff;
}

h3 {
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2.375rem;
}

@media (min-width: 913px){

h3 {
    font-size: 1.125rem;

    line-height: 1.188rem;
}
  }

h3 {
  color: #fff;
}

h4 {
  font-weight: 500;
  font-style: normal;
  font-size: 1.250rem;
  line-height: 1.750rem;
}

@media (min-width: 913px){

h4 {
    font-size: 0.875rem;

    line-height: 1.188rem;
}
  }

h4 {
  color: #fff;
}

a{
  color: #A50634;
}

input,
select,
textarea {
  background: #FAFAFA;
  border-radius: 8px;
  border: 1px solid #A0A0A0;
  padding: 1rem;
}

@media (min-width: 913px){

input,
select,
textarea {
    padding: 0.75rem 1rem 0.75rem 1rem;

    font-size: 0.8rem
}
  }

input:focus,select:focus,textarea:focus{
    outline: none;
    border: 2px solid #A50634;
  }

input:focus::-moz-placeholder, select:focus::-moz-placeholder, textarea:focus::-moz-placeholder{
      color: #A50634;
    }

input:focus::placeholder,select:focus::placeholder,textarea:focus::placeholder{
      color: #A50634;
    }

select{
  //padding: 1rem 10% 1rem 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select:invalid, select option:disabled{
    color: #A0A0A0;
  }

select option, select optgroup{
    color: #000;
  }

@media (min-width: 1024px){

select{
    background: url('/img/down-arrow.svg') no-repeat 95% 50% #FAFAFA;

    background-size: 0.5555555555555556rem
}
  }

@media (min-width: 913px){

.input-group{
    position: relative
}
  }

.input-group {
  display: flex;
  flex-direction: column;
}

@media (min-width: 913px){

.input-group label {
      font-size: 0.8rem
  }
    }

.validation-error{
  color: red;
  width: -moz-max-content;
  width: max-content;
}

@media (min-width: 913px){

.validation-error{
    top: 2.5rem;

    font-size: 0.625rem
}
  }

.terms-checkbox {
  cursor: pointer;
  font-size: 1rem;
}

@media (min-width: 913px){

.terms-checkbox {
    font-size: 0.75rem
}
  }

.terms-checkbox input{
    position: relative;
    top: 0.4rem;
    margin-right: 0.4rem;
  }

@media (min-width: 913px){

.terms-checkbox input{
      font-size: 0.7rem;

      top: 0.1rem
  }
    }

button {
  padding: 1.5rem 3rem;
  font-size: 1.25em;
  font-weight: 700;
  background-color: #A50634;
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

@media (min-width: 913px){

button {
    padding: 0 1rem;

    font-size: 0.875em;

    width: 11.6874rem;

    height: 3.4375rem;

    border-radius: 12px
}
  }

button:disabled,
button[disabled]{
  background-color: lightgray;
}

button:disabled,
button[disabled]{
  background-color: lightgray;
  cursor: not-allowed;
}

header {
  padding: 2.375rem 1.875em;
}

@media (min-width: 913px){

header {
    padding: 2.375rem 3.75rem
}
  }

header .dropdown-menu a:hover{
    -webkit-text-stroke: 0.5px #A50634;
  }

header a{
    color: #000;
  }

header img{
    width: 14rem;
  }

@media (min-width: 913px){

header img{
      width: 10rem
  }
    }

header #menu .dropdown-menu {
      box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.3);
    }

header #menu .dropdown-menu a{
      color: #000;
      background-color: #fff;
    }

header #menu .accordion a{
      font-weight: 700;
    }

header #menu a{
      font-style: normal;
      font-size: 1.5rem;
      line-height: 2.375rem;
    }

@media (min-width: 913px){

header #menu a{
        font-size: 0.625rem;

        line-height: 0.7488rem
    }
      }

header .phone {
    font-size: 0.625rem;
    background-color: #A50634;
  }

header h2 {
    color: #000;
  }

header #boton svg{
      width: 2rem;
    }

header #menu-modal #menu{
      padding-top: 2.750rem;
    }

header #menu-modal .modal-content{
      border: none;
      border-radius: 0%;
      padding: 2.6em 3.75em;
    }

header #menu-modal .modal-content h3{
        color: #000;
      }

header #menu-modal .modal-content h3 + svg{
          color: #F2F2F2;
        }

header #menu-modal .modal-content .accordion-item-content ul{
          padding: 1em 0;
          list-style-type: none;
        }

header #menu-modal .modal-content .accordion-item-content a{
          padding: 0.3rem 0;
          font-weight: 600;
          font-size: 1rem;
          line-height: 2.375rem;
        }

section, footer{
  padding: 0 3.375rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 913px){

section, footer{
    padding: 0 3.75em
}
  }

.container{
  max-width: 1200px;
}

section.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.875em;
}

@media (min-width: 913px){

section.hero {
    padding: 0 3.75em
}
  }

@media (min-width: 913px) {

section.hero .container >div:first-child h1{
          max-width: 50%
      }
        }

section.hero .container >div:first-child {
      padding: 3.75rem;
      text-align: center;
      background-color: #A50634;
}

section.hero .container >div:first-child .description{
        font-size: 1.250rem;
        line-height: 1.750rem;
      }

@media (min-width: 913px){

section.hero .container >div:first-child .description{
          font-size: 0.875rem;

          line-height: 1.188rem;
      }
        }

section.hero .container >div:first-child .description {
        color: #fff;
}

section.hero .container >div:first-child .price{
        font-size: 1.5rem;
        line-height: 2.375rem;
        font-weight: bold;
      }

@media (min-width: 913px){

section.hero .container >div:first-child .price{
          font-size: 1.125rem;

          line-height: 1.188rem;
      }
        }

section.hero .container >div:first-child .price {
        color: #fff;
}

@media (min-width: 913px){

section.hero .container >div:first-child {
        background-color: #fff;

        background-image: url('/img/hero-background.png');

        background-size: cover
    }
      }

section.hero .container >div:first-child {
      box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
      border-radius: 10px;
}

@media (min-width: 913px){

section.hero .container >div:first-child {
        padding: 3.75em 3.75em 7em 3.75em;

        text-align: left;

        border-radius: 28px
    }
      }

section.hero .container div.form {
      border-radius: 12px;
      background-color: #fff;
      border: 1px solid #A50634;
      box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
      padding: 2rem;
    }

@media (min-width: 913px){

section.hero .container div.form {
        padding: 1.875rem 5.625rem 1.875rem 5.625rem
    }
      }

section.hero .container div.form div{
        width: 100%;
      }

@media (min-width: 913px){

section.hero .container div.form a{
          font-size: 0.75rem
      }
        }

section.hero .container div.form label{
        font-size: 0.875rem;
        text-align: center;
      }

@media (min-width: 913px){

section.hero .container div.form label{
          font-size: 0.75rem
      }
        }

section.hero .container div.form .label {
        font-size: 1.25rem;
      }

@media (min-width: 913px){

section.hero .container div.form .label {
          font-size: 0.75rem;
      }
        }

section.hero .container div.form .label {
        margin-bottom: 15px;
        color: #000;
}

@media (min-width: 913px){

section.hero .container div.form input::-moz-placeholder{
          font-size: 0.75rem
      }

section.hero .container div.form input::placeholder{
          font-size: 0.75rem
      }
        }

section.hero .container div.form botton{
        padding: 1rem;
        font-size: 1rem;
        color: #000;
      }

section.info-text{
  padding: 2.5rem 3.75em;
  line-height: 1.438rem;
}

section.info-text p{
    margin-bottom: 2rem;
  }

@media (min-width: 913px){

section.info-text p{
      font-size: 0.75rem
  }
    }

section.info-text ul{
    margin-left: 2rem;
    list-style-type: disc;
  }

@media (min-width: 913px){

section.info-text ul{
      font-size: 0.75rem
  }
    }

section.info-text ol{
    margin-left: 2rem;
    list-style-type: decimal;
  }

@media (min-width: 913px){

section.info-text ol{
      font-size: 0.75rem
  }
    }

.accordion-section,
section.faqs{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.875em;
  color: #000;
}

.accordion-section .container,section.faqs .container{
    padding: 2rem;
  }

.accordion-section .container .accordion,section.faqs .container .accordion{
      width: 100%;
    }

@media (min-width: 913px){

.accordion-section .container .accordion,section.faqs .container .accordion{
        display: flex;

        flex-direction: column;

        align-items: center
    }
      }

.accordion-section .container .accordion .accordion-item,section.faqs .container .accordion .accordion-item{
        flex-shrink: 0;
        cursor: pointer;
        margin-bottom: 0.75rem;
        background: #fff;
        border: 1px solid #A0A0A0;
        box-shadow: 6px 6px 12px -8px rgba(0, 0, 0, 0.5);
        border-radius: 16px;
        margin-right: 0.625rem;
        padding: 2rem;
      }

@media (min-width: 913px){

.accordion-section .container .accordion .accordion-item,section.faqs .container .accordion .accordion-item{
          padding: 1.25rem
      }
        }

.accordion-section .container .accordion .accordion-item,section.faqs .container .accordion .accordion-item {
        width: 100%;
}

@media (min-width: 913px){

.accordion-section .container .accordion .accordion-item,section.faqs .container .accordion .accordion-item{
          width: 29.813rem
      }
        }

.accordion-section .container .accordion .accordion-item h3,section.faqs .container .accordion .accordion-item h3{
          font-size: 1.25rem;
          line-height: 1.5rem;
        }

@media (min-width: 913px){

.accordion-section .container .accordion .accordion-item h3,section.faqs .container .accordion .accordion-item h3{
            font-size: 0.75rem
        }
          }

.accordion-section .container .accordion .accordion-item p, .accordion-section .container .accordion .accordion-item li, section.faqs .container .accordion .accordion-item p, section.faqs .container .accordion .accordion-item li{
          margin-top: 0.688rem;
        }

@media (min-width: 913px){

.accordion-section .container .accordion .accordion-item p, .accordion-section .container .accordion .accordion-item li, section.faqs .container .accordion .accordion-item p, section.faqs .container .accordion .accordion-item li{
            font-size: 0.625rem;
        }
          }

.accordion-section .container .accordion .accordion-item p, .accordion-section .container .accordion .accordion-item li, section.faqs .container .accordion .accordion-item p, section.faqs .container .accordion .accordion-item li {
          padding-right: 3.688rem;
}

.accordion-section .container .accordion .accordion-item .accordion-item-content,section.faqs .container .accordion .accordion-item .accordion-item-content{
          cursor: auto;
        }

.accordion-section .container .accordion .accordion-item .accordion-item-content ul,section.faqs .container .accordion .accordion-item .accordion-item-content ul{
            margin-left: 2rem;
            list-style: disc;
          }

.accordion-section .container .accordion .accordion-item .accordion-item-content ol,section.faqs .container .accordion .accordion-item .accordion-item-content ol{
            margin-left: 2rem;
            list-style-type: decimal;
          }

div.card {
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #A50634;
  box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
  padding: 1.625em;
}

@media (min-width: 913px) {

div.card input, div.card textarea, div.card select {
      font-size: 0.8rem
  }
    }

div.card label.checkbox {
    color: #000;
    /*                 display: flex;
        @screen md{
            align-items: baseline;
        } */
  }

.dropdown:hover .dropdown-menu {
    display: block;
  }

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
}

.modal .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    opacity: 1;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #A50634;
    max-width: 1024px;
  }

.modal .modal-content >div:first-child {
      padding: 2rem 1rem 2rem 1rem;
    }

@media (min-width: 913px){

.modal .modal-content >div:first-child {
        padding: 4.375rem 5.625rem 4.375rem 5.625rem
    }
      }

.modal .modal-content input, .modal .modal-content select{
      border: 1px solid #A0A0A0;
      background: #FAFAFA;
    }

.button-fixed-bottom-right{
  background-color: #A50634;
  padding: 0.5rem;
  border-radius: 12px;
  border: 2px solid #F2F2F2;
  width: auto;
  height: auto;
  z-index: 1;
}

.checkbox{
  cursor: pointer;
  font-size: 1rem;
}

@media (min-width: 913px){

.checkbox{
    font-size: 0.8rem
}
  }

.buttonSelect{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.buttonSelect button{
    background-color: #fff;
    color: #000;
    border: 1px solid #A50634;
    width: 100%;
  }

.buttonSelect button.selected{
    background-color: #A50634;
    color: #fff;
  }

span.badge{
  border-radius: 1rem;
  background-color: #A0A0A0;
  color: white;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
}

@media (min-width: 913px){

span.badge{
    font-size: 0.8rem;

    padding: 0.1rem 0.4rem
}
  }

button.link {
  padding: 0;
  background: none;
  color: #A50634;
  width: auto;
  height: auto;
  border-radius: 0;
}

.spinner .spinner-dot{
    background-color: #A50634;
  }

.annotation {
  font-size: 0.8rem;
  color: #A0A0A0;
  font-style: italic;
}

.icon {
  width: 1.5rem;
}

.user-badge{
  background-color: #A50634;
  color: white;
}

.break-line::after{
  content: "\a";
  white-space: pre;
}

.grecaptcha-terms{
  color: #A0A0A0;
}

.grecaptcha-badge{
  visibility: hidden;
}

.blog header, 
    .blog footer {
    box-shadow: none;
    background: #fff !important;
  }

.blog main h1, .blog main h2, .blog main h3, .blog main h4, .blog main h5, .blog main h6{
      color: #000;
    }

.blog main .title {
      font-weight: 700;
      font-style: normal;
      font-size: 1.7875rem;
      line-height: 2.125rem;
      color: #000;
    }

.blog main {
    display: flex;
    justify-content: center;
    padding: 0 3.375rem 3.375rem 3.375rem;
}

.blog main article {
      margin: 1.938rem 0;
      border: 1px solid #A50634;
      border-radius: 12px;
      box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
    }

.blog main article h1, 
            .blog main article h2, 
            .blog main article h3, 
            .blog main article h4, 
            .blog main article h5{
        margin: 1rem 0;
      }

.blog main article img.post-thumbnail {
        flex-shrink: 0;
        width: 100% !important;
      }

@media (min-width: 913px) {

.blog main article img.post-thumbnail {
          width: 33% !important
      }
        }

.blog main article img.post-thumbnail {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
}

@media (min-width: 913px) {

.blog main article img.post-thumbnail {
          border-top-left-radius: 12px;

          border-top-right-radius: initial;

          border-bottom-left-radius: 12px
      }
        }

.blog main article .entry-content {
        padding: 1.75rem 1.75rem 3.375rem 1.75rem;
      }

@media (min-width: 913px) {

.blog main article .entry-content {
          padding: 1.75rem 3.375rem 1.75rem 1.75rem
      }
        }

.blog main article .entry-content .title {
          font-size: 1.375rem;
          line-height: 2.125rem;
        }

.blog main article .entry-content .date {
          color: #A0A0A0;
        }

@media (min-width: 913px) {

.blog main article .entry-content .date {
            font-size: 0.625rem;

            line-height: 0.75rem;

            letter-spacing: 0.052rem;
        }
          }

.blog main article .entry-content .date {
          font-weight: 600;
          margin-bottom: 0.75rem;
}

.blog main article .entry-content p {
          text-align: justify;
          color: #000;
        }

@media (min-width: 913px) {

.blog main article .entry-content p {
            font-size: 0.75rem;

            line-height: 0.938rem
        }
          }

@media (min-width: 913px) {

.blog main article .entry-content ul {
            font-size: 0.8rem
        }
          }

.blog main article .entry-content ul li{
            margin: 1rem 0 1rem 1rem;
            list-style-type: disc;
          }

.blog main article .entry-footer {
        padding: 1.75rem 1.75rem 3.375rem 1.75rem;
      }

@media (min-width: 913px) {

.blog main article .entry-footer {
          padding: 1.75rem 3.375rem 1.75rem 1.75rem
      }
        }

.blog main article .entry-footer .other-posts{
          width: 100%;
        }

@media (min-width: 913px) {

.blog main article .entry-footer .other-posts{

            width: 50%
        }
            .blog main article .entry-footer .other-posts a, .blog main article .entry-footer .other-posts .date {
              font-size: 0.8rem;
            }
          }

.blog main ol, .blog main ul {
      list-style: unset !important;
    }

.blog .nav-links {
    display: flex;
    gap: 1rem;
    font-size: 1.125rem;
    align-items: center;
  }

@media (min-width: 913px) {

.blog .nav-links {
      font-size: 1rem
  }
    }

.blog .nav-links .next, .blog .nav-links .prev {
      display: flex;
      align-items: center;
    }

.single header {
    background-color: #fff;
    box-shadow: none;
  }

.single footer {
    background-color: #fff;
    box-shadow: none;
  }

.single main {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
  }

@media (min-width: 913px) {

.single main {
      padding: 0 3.75em
  }
    }

.single main .container header {
        background-color: #fff;
      }

.single main .container article.post {
        border: none;
        box-shadow: none;
        margin: 0;
      }

.single main .container footer {
        background-color: #fff;
        box-shadow: none;
      }

.single main .container article .date {
          color: #000;
        }

@media (min-width: 913px) {

.single main .container article .date {
            letter-spacing: 0.052rem;
        }
          }

.single main .container article .date {
          font-weight: 600;
          margin: 0.75rem 0 0 0;
}

.single main .container article p {
          line-height: 1.75rem;
          margin-bottom: 1rem;
        }

.contacto section.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.875em;
  }

@media (min-width: 913px){

.contacto section.hero {
      padding: 0 3.75em
  }
    }

.contacto section.hero .container >div:first-child {
        padding: 3.75rem;
        text-align: center;
        background-color: #A50634;
      }

@media (min-width: 913px){

.contacto section.hero .container >div:first-child {
          background-color: #fff
      }
        }

.contacto section.hero .container >div:first-child {
        box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
        border-radius: 10px;
}

@media (min-width: 913px){

.contacto section.hero .container >div:first-child {
          text-align: left;

          border-radius: 28px
      }
        }

.contacto section.hero .container >div:first-child .description{
          font-size: 1.5rem;
          line-height: 2.375rem;
          font-weight: bold;
        }

@media (min-width: 913px){

.contacto section.hero .container >div:first-child .description{
            font-size: 1.125rem;

            line-height: 1.188rem;
        }
          }

.contacto section.hero .container >div:first-child .description {
          color: #fff;
}

.contacto section.info-text p{
      padding: 0 1.875rem;
      font-size: 1.25rem;
    }

@media (min-width: 913px){

.contacto section.info-text p{
        font-size: 0.75rem;

        padding: 0 3.75rem;

        width: 100%
    }
      }

.contacto section.contact-form{
    padding: 0 1.875em;
  }

@media (min-width: 913px){

.contacto section.contact-form{
      padding: 0 3.75em
  }
    }

.contacto section.contact-form .container form {
        padding: 2rem;
      }

@media (min-width: 913px){

.contacto section.contact-form .container form {
          padding: 1.875rem 5.625rem;
      }
        }

.contacto section.contact-form .container form {
        border: 1px solid #A50634;
        border-radius: 12px;
}

.contacto footer{
    background-color:inherit;
  }

/* body > section.pasos.md\:px-24.md\:py-16 > h3 {
        color: red;
    } */

@media (min-width: 913px) {

.home input,
    .home select,
    .home textarea {
      font-size: 1rem;

      border: none
  }
    }

.home section.hero .container div.form-home {
        border-radius: 12px;
        background-color: #fff;
        border: 1px solid #A50634;
        box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
        padding: 1.1875em 1.625em 1.1875em 1.625em;
        margin: 0 1.6874em;
        width: 95%;
        display: inline-block;
      }

.home section.hero .container div.form-home label {
          display: none;
          color: #A0A0A0;
          font-size: 0.625em;
        }

@media (min-width: 913px) {

.home section.hero .container div.form-home label {
            display: inline-block
        }
          }

.home section.hero .container div.form-home hr {
          display: none;
          height: 3em;
          margin: -0.2em 1em;
        }

@media (min-width: 913px) {

.home section.hero .container div.form-home hr {
            display: inline-block
        }
          }

.home section.hero .container div.form-home input,
                .home section.hero .container div.form-home select {
          margin: 0.5rem 0;
          height: 100%;
          width: 100%;
          background: #fff;
        }

@media (min-width: 913px) {

.home section.hero .container div.form-home input,
                .home section.hero .container div.form-home select {
            font-size: 1rem;

            padding: 0.5em 10% 0 0;

            margin: 0
        }
          }

.home section.hero .container div.form-home select {
          background: url('/img/down-arrow.svg') no-repeat 95% 50% #fff;
        }

.home section.hero .container div.form-home button {
          flex-shrink: 0;
          margin-top: 1rem;
        }

@media (min-width: 913px) {

.home section.hero .container div.form-home button {
            margin-top: 0
        }
          }

.home section.hero .container div.form-home #modal-calcular-precio .modal-content .section-title {
              font-weight: 700;
              font-style: normal;
              font-size: 1.5rem;
              line-height: 2.375rem;
              margin-bottom: 1rem;
            }

@media (min-width: 913px) {

.home section.hero .container div.form-home #modal-calcular-precio .modal-content .section-title {
                font-size: 1.125rem;

                line-height: 1.188rem
            }
              }

@media (min-width: 913px) {

.home section.hero .container div.form-home #modal-calcular-precio .modal-content >div:first-child {
                padding: 0rem 5.625rem 2.1875rem 5.625rem
            }
              }

.home section.hero .container div.form-home #modal-calcular-precio .modal-content div .input-group {
              height: 100%;
              width: 100%;
            }

.home section.hero .container div.form-home #modal-calcular-precio .modal-content div .input-group input,
                            .home section.hero .container div.form-home #modal-calcular-precio .modal-content div .input-group select {
                height: 100%;
                width: 100%;
                border: 1.5px solid;
                padding: 10px !important;
              }

@media (min-width: 913px) {

.home section.hero .container div.form-home #modal-calcular-precio .modal-content div .input-group input,
                            .home section.hero .container div.form-home #modal-calcular-precio .modal-content div .input-group select {
                  font-size: 1rem;

                  padding: 0.5em 10% 0 0;

                  margin: 0
              }
                }

.home section.pasos {
    padding: 3.75rem 3.75rem 4.25rem 3.75rem;
  }

.home section.pasos .container .card {
        box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
        border: 1px solid #A0A0A0;
        border-radius: 16px;
        padding: 1rem 1rem 3rem 1rem;
      }

@media (min-width: 913px) {

.home section.pasos .container .card {
          padding: 1.5625rem 0.3125rem 2.875rem 0.3125rem
      }
        }

.home section.pasos .container .card h3{
          font-size: 1rem;
        }

@media (min-width: 913px) {

.home section.pasos .container .card h3{
            font-size: 0.8rem
        }
          }

.home section.pasos .container .card svg {
          width: 2.5rem;
          height: 2.5rem;
        }

.home section.pasos .container .card span font-size {
            font-size: 1.25rem;
            line-height: 1.5rem;
          }

@media (min-width: 913px) {

.home section.pasos .container .card span {
            font-size: 0.75rem;

            line-height: 0.875rem
        }
          }

.home section.pasos .container .card p {
          font-size: 1rem;
          line-height: 1.25;
          margin-left: 5px;
          flex-basis: 100%;
        }

@media (min-width: 913px) {

.home section.pasos .container .card p {
            margin-left: inherit;

            font-size: 0.625rem;

            line-height: 0.75rem;

            padding: 0 0.6875em
        }
          }

.home section.pasos .container .card .text {
          text-align: left;
          display: inline-block;
        }

@media (min-width: 913px) {

.home section.pasos .container .card .text {
            width: auto;

            text-align: inherit;

            display: inherit;

            margin-left: inherit
        }
          }

.home section.servicios {
    background-color: #A50634;
  }

.home section.servicios .container h2 {
        line-height: 2.125rem;
      }

.home section.servicios .container .card {
        padding: 1.5625rem 1rem 1.5625rem 1rem;
        border-radius: 10px;
      }

@media (min-width: 1024px) {

.home section.servicios .container .card {
          border-radius: 16px
      }
        }

.home section.servicios .container .card {
        box-shadow: 6px 6px 12px -8px rgba(0, 0, 0, 0.5);
}

.home section.servicios .container .card img {
          width: 2rem;
          height: 2rem;
        }

.home section.servicios .container .card p, .home section.servicios .container .card a {
          font-size: 0.625rem;
        }

.home section.servicios .container .card p.font-bold, .home section.servicios .container .card a.font-bold {
          font-size: 1.25rem;
        }

@media (min-width: 913px) {

.home section.servicios .container .card p.font-bold, .home section.servicios .container .card a.font-bold {
            font-size: 0.75rem;

            line-height: 0.914rem
        }
          }

.home section.servicios .container .card a.font-bold {
          color: #000;
        }

.home section.servicios .container .card a.font-bold:hover {
          color: #A50634;
        }

.home section.big-text {
    background-color: #F2F2F2;
  }

.home section.big-text .container {
      width: 32.25rem;
    }

@media (min-width: 913px) {

.home section.big-text .container {
        width: 39.625rem
    }
      }

.home section.big-text .container p {
        font-size: 1.75rem;
        line-height: 2.134rem;
      }

@media (min-width: 913px) {

.home section.big-text .container p {
          font-size: 1.375rem;

          line-height: 1.67625rem;
      }
        }

.home section.big-text .container p {
        font-style: italic;
        font-weight: bold;
}

.home section.opiniones {
    background-color: #F2F2F2;
  }

.home section.opiniones .container .swiper-slide{
        height: auto;
      }

.home section.opiniones .container .card {
        box-sizing: border-box;
        border: 1px solid #A0A0A0;
        border-radius: 16px;
        box-shadow: 6px 6px 12px -8px rgba(0, 0, 0, 0.5);
        padding: 1.75rem;
        height: 100%;
        justify-content: space-between;
      }

.home section.opiniones .container .card .card-header span {
            font-weight: 700;
            font-style: normal;
            font-size: 3.625rem;
            line-height: 3.375rem;
          }

@media (min-width: 913px){

.home section.opiniones .container .card .card-header span {
              font-size: 3.125rem;

              line-height: 2.938rem
          }
            }

.home section.opiniones .container .card .card-body p {
            font-size: 1rem;
            line-height: 1.5rem;
          }

@media (min-width: 913px) {

.home section.opiniones .container .card .card-body p {
              line-height: 1.063rem;

              font-size: 0.625rem;
          }
            }

.home section.opiniones .container .card .card-body p {
            padding-bottom: 1.3125rem;
}

.home section.opiniones .container .card .card-footer img {
            padding-right: 1rem;
            height: 2.4rem;
          }

.home section.opiniones .container .card .card-footer div p {
              font-size: 1.25rem;
              line-height: 2.125rem;
            }

@media (min-width: 913px) {

.home section.opiniones .container .card .card-footer div p {
                font-size: 0.5rem;

                line-height: 1.063rem
            }
              }

.home section.opiniones .container .card .card-footer div > p:first-child {
              font-weight: bold;
              font-size: 1.25rem;
              line-height: 2.125rem;
            }

@media (min-width: 913px) {

.home section.opiniones .container .card .card-footer div > p:first-child {
                font-size: 0.75rem;

                line-height: 1.063rem
            }
              }

@media (min-width: 913px){

.home .modal .modal-content input, .home .modal .modal-content select{
          font-size: 0.75rem
      }
        }

.home footer{
    background-color: #F2F2F2;
  }

footer {
  text-align: center;
  padding: 0 1.875em;
  font-size: 1.250rem;
}

@media (min-width: 1280px){

footer {
    padding: 0 3.75em
}
  }

footer >div:first-child {
    padding: 5.625rem 0;
    min-height: 273px;
    background-color: #A50634;
    width: 100%;
    border-radius: 10px;
  }

@media (min-width: 913px){

footer >div:first-child {
      padding: 2.125rem 0;

      box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);

      border-radius: 28px
  }
    }

footer img{
    margin: 2.25rem 2.25rem 0 0;
    width: 13.000rem;
    height: auto;
  }

@media (min-width: 913px){

footer img{
      width: 7.9375rem
  }
    }

footer h2{
    padding-bottom: 1.500rem;
  }

footer a {
    font-weight: 500;
  }

footer p{
    font-size: 1.250rem;
    line-height: 1.500rem;
    padding: 0 7.444rem;
    font-weight: 500;
  }

@media (min-width: 913px){

footer p{
      width: 100%;

      font-size: 0.875rem;

      line-height: 1.188rem;

      padding: 0
  }

      footer p .break-line::after{
        content: none;
      }
    }

footer .tramites-footer ul li a{
          font-style: normal;
          font-size: 1.250rem;
          line-height: 2.375rem;
        }

@media (min-width: 913px){

footer .tramites-footer ul li a{
            font-size: 0.8rem;

            line-height: 0.7488rem
        }
          }

footer .title{
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    line-height: 2.438rem;
    color: #fff;
    margin-bottom: 1rem;
  }

@media (min-width: 913px){

footer .title{
      font-size: 1.750rem;

      line-height: 2.125rem
  }
    }

footer .social img{
      width: 3rem;
      height: 3rem;
    }

@media (min-width: 913px){

footer .social img{
        width: 2.125rem;

        height: 2.125rem
    }
      }

footer .terms{
    margin: 3.3125rem 0 0 0 ;
  }

@media (min-width: 913px){

footer .terms{
      font-size: 0.875rem
  }
    }

footer .copyright{
    font-size: 0.8rem;
    width: 100%;
    line-height: 1.1875rem;
  }

@media (min-width: 913px){

footer .copyright{
      line-height: 2.375rem
  }
    }

/* @import './pages/seguro-vehiculo.scss'; */

.terminos-condiciones .body h2{
      color: #A50634;
    }

/* Apply list styles only to content within .legal-content */

.terminos-condiciones .body .legal-content p, .terminos-condiciones .body .legal-content ol, .terminos-condiciones .body .legal-content ul{
        margin-bottom: 1rem;
        line-height: 1.75rem;
      }

.terminos-condiciones .body .legal-content ol{
        list-style-type: lower-latin;
        padding-left: 3rem;
      }

.terminos-condiciones .body .legal-content ul{
        list-style-type: disc;
        padding-left: 3rem;
      }

.politica-privacidad-cookies .body h2{
      color: #A50634;
    }

/* Apply list styles only to content within .legal-content */

.politica-privacidad-cookies .body .legal-content p, .politica-privacidad-cookies .body .legal-content ol, .politica-privacidad-cookies .body .legal-content ul{
        margin-bottom: 1rem;
        line-height: 1.75rem;
      }

.politica-privacidad-cookies .body .legal-content ol{
        list-style-type: lower-latin;
        padding-left: 3rem;
      }

.politica-privacidad-cookies .body .legal-content ul{
        list-style-type: disc;
        padding-left: 3rem;
      }

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#error {
  position: relative;
  height: 100vh;
}

#error .error {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.error {
  max-width: 560px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.error .error-404-50x {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 140px;
  height: 140px;
  background-image: url('/img/sad-emoji.png');
  background-size: cover;
}

.error .error-404-50x:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(2.4);
  border-radius: 50%;
  background-color: #F2F2F2;
  z-index: -1;
}

.error h1 {
  font-size: 3.611rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}

.error h2 {
  font-size: 1.333rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #151723;
}

.error p {
  color: #A0A0A0;
  font-weight: 400;
}

.error a {
  display: inline-block;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  padding-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .error .error-404-50x {
    width: 110px;
    height: 110px;
  }

  .error {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}

.information {
  align-items: flex-start;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

.information__text {
    line-height: var(--line-height-lg);
    margin-bottom: 1rem;
  }

.calc-year {
  background: #A22;
  margin: 1rem 0 0;
  padding: 3rem;
}

.calc-year__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

.button {
  padding: 1.5rem 3rem;
  font-size: 0.875em;
  font-weight: 700;
  background: #A50634;
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

.button-reverse {
  background: #fff;
  color: #A50634;
}

.checkout section.checkout-form button{
      font-weight: 600;
      font-size: 1rem;
      padding: 1.5rem 2rem;
      height: auto;
    }

@media (min-width: 913px) {

.checkout section.checkout-form p {
        font-size: 0.8rem
    }
      }

.checkout section.checkout-form div.card {
      border-radius: 12px;
      background-color: #fff;
      border: 1px solid #A50634;
      box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
      padding: 1.625em;
    }

.checkout section.checkout-form div.card h2 {
        color: #000;
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.6rem;
      }

@media (min-width: 913px) {

.checkout section.checkout-form div.card h2 {
          font-size: 0.8rem
      }
        }

.checkout section.checkout-form div.card span {
        font-weight: 600;
        overflow: hidden;
      }

@media (min-width: 913px) {

.checkout section.checkout-form div.card input {
          font-size: 0.8rem
      }
        }

.checkout section.checkout-form div.card label.checkbox {
        color: #000;
      }

.checkout section.checkout-form div.card hr {
        display: inline-block;
        height: auto;
        margin: -0.2em 0;
      }

.checkout section.checkout-form div.checkout-form-left > *, .checkout section.checkout-form div.checkout-form-right > * {
        margin-top: 1.22rem;
      }

.checkout section.checkout-form div.checkout-form-left div.vehicle-info label {
          color: #A0A0A0;
        }

@media (min-width: 913px) {

.checkout section.checkout-form div.checkout-form-left div.vehicle-info label {
            font-size: 0.625em;

            display: inline-block
        }
          }

.checkout section.checkout-form div.checkout-form-right h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
      }

.checkout section.checkout-form div.checkout-form-right div.checkout-info label {
          color: #A0A0A0;
        }

@media (min-width: 913px) {

.checkout section.checkout-form div.checkout-form-right div.checkout-info label {
            font-size: 0.8em;

            display: inline-block
        }
          }

.checkout section.checkout-form div.checkout-form-right div.checkout-info span {
          font-size: 1rem;
        }

@media (min-width: 913px){

.checkout section.checkout-form div.checkout-form-right div.checkout-info span {
            font-size: 0.8rem
        }
          }

.checkout section.checkout-form div.checkout-form-right div.checkout-info label.total,
                .checkout section.checkout-form div.checkout-form-right div.checkout-info span.total{
          font-size: 1rem;
          font-weight: 700;
          color: #A50634;
        }

@media (min-width: 913px){

.checkout section.checkout-form div.checkout-form-right div.checkout-info label.total,
                .checkout section.checkout-form div.checkout-form-right div.checkout-info span.total{
            font-size: 0.8rem
        }
          }

.checkout section.checkout-form div.checkout-form-right div.payments-methods button.payment-method{
          padding: 1.5rem 2rem;
          height: auto;
        }

.checkout section.checkout-form div.checkout-form-right div.checkout-terms{
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

.checkout section.checkout-form div.checkout-form-right div.checkout-terms p{
          margin-bottom: 1rem;
        }

.checkout section.checkout-form div.checkout-form-right #submit-order{
        font-weight: 700;
        text-transform: uppercase;
        width: 15rem;
      }

@keyframes document-hover {
    from {
      opacity: initial;
    }

    to {
      opacity: 0.8;
    }
  }

.print-docs .document {
    display: block;
    border: 1px solid #A50634;
    border-radius: 8px;
    overflow: hidden;
    padding: 0.5rem;
    box-shadow: 6px 6px 12px -8px rgba(111, 111, 111, 0.5);
    height: 12rem;
  }

.print-docs .document:focus {
      border-color: #A0A0A0;
    }

.print-docs .document:hover img {
      animation-name: document-hover;
      animation-duration: 500ms;
      animation-fill-mode: forwards;
    }

.print-docs .document:hover h4 {
      font-weight: bold;
    }

.print-docs section li {
    list-style: inside;
  }

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#thankyou {
  position: relative;
  height: 100vh;
}

#thankyou .thankyou-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.thankyou-content {
  max-width: 560px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.thankyou-content .thankyou-deco {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 140px;
  height: 140px;
  background-image: url('/img/happy-emoji.png');
  background-size: cover;
}

.thankyou-content .thankyou-deco:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(2.4);
  border-radius: 50%;
  background-color: #F2F2F2;
  z-index: -1;
}

.thankyou-content h1 {
  font-size: 3.611rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}

.thankyou-content h2 {
  font-size: 1.333rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #151723;
}

.thankyou-content p {
  color: #A0A0A0;
  font-weight: 400;
  margin-bottom: 1rem;
}

.thankyou-content a {
  display: inline-block;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  padding-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .thankyou-content .thankyou-deco {
    width: 110px;
    height: 110px;
  }

  .thankyou-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}

.landing-cities .accordion-section.landing-cities-directory{
    background-color: #F2F2F2;
    font-size: 1.5rem;
    line-height: 2.5rem;
    padding-bottom: 5rem;
  }

@media (min-width: 913px){

.landing-cities .accordion-section.landing-cities-directory{
      line-height: 1.5rem;

      font-size: 0.8rem
  }
    }

.landing-cities .accordion-section.landing-cities-directory .container{
      padding: 0;
    }

.landing-cities .accordion-section.landing-cities-directory .container .accordion-item{
        margin: 0;
      }

@media (min-width: 913px){

.landing-cities .accordion-section.landing-cities-directory .container .accordion-item{
          width: 100%
      }
        }

.landing-cities .accordion-section.landing-cities-directory .container .accordion-item .accordion-item-content{
          text-align: center;
        }

.landing-cities .landing-cities-faqs{
    background-color: #F2F2F2;
  }

.landing-cities .landing-cities-faqs p {
      font-weight: 500;
      line-height: 1.5rem;
    }

.otp #resend .spinner .spinner-dot{
      background-color: #fff;
    }

@media (min-width: 640px) {

  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 913px) {

  .md\:inset-y-28 {
    top: 7rem;
    bottom: 7rem;
  }

  .md\:bottom-16 {
    bottom: 4rem;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-8 {
    margin-top: 2rem;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-1\/4 {
    width: 25%;
  }

  .md\:w-2\/4 {
    width: 50%;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-3\/12 {
    width: 25%;
  }

  .md\:w-7\/12 {
    width: 58.333333%;
  }

  .md\:w-max {
    width: -moz-max-content;
    width: max-content;
  }

  .md\:w-7\/16 {
    width: 43.75%;
  }

  .md\:w-9\/16 {
    width: 56.25%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:justify-evenly {
    justify-content: space-evenly;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:self-start {
    align-self: flex-start;
  }

  .md\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:pr-4 {
    padding-right: 1rem;
  }

  .md\:text-center {
    text-align: center;
  }
}

@media (min-width: 1024px) {

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:w-3\/12 {
    width: 25%;
  }

  .lg\:w-4\/12 {
    width: 33.333333%;
  }

  .lg\:w-max {
    width: -moz-max-content;
    width: max-content;
  }

  .lg\:text-left {
    text-align: left;
  }
}

@media (min-width: 1280px) {

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}