/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (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 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
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)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

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

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

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

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

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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;
}

/*
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)
3. Remove gaps between table borders by default.
*/

.responsive-table {
  overflow-x: auto;
}

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

table,
th,
td {
  border-collapse   : collapse;
  vertical-align    : middle;
}

th,
td {
  padding           : 0.5rem 0.875rem;
  font-size         : 1rem;
  text-align        : left;
}

th {
  font-weight       : 600;
}

td {
  font-weight       : 400;
}

.table {
  --border-opacity  : 0.12;
  --border-color    : var(--color-dark-red);
  width             : 100%;
  border            : 1px solid rgb(var(--border-color) / var(--border-opacity));
}

.table tr {
  --shadow-color    : var(--color-dark-red);
  --shadow-opacity  : 0.12;
  box-shadow        : 0 1px 0 0 rgb(var(--shadow-color) / var(--shadow-opacity));
  transition        : background 300ms;
}

.table tbody tr:nth-last-of-type(odd) {
  --bg-color        : var(--color-dark-red);
  --bg-opacity      : 0.036;
  background-color  : rgb(var(--bg-color) / var(--bg-opacity));
}

.table tbody tr:hover {
  --bg-color        : var(--color-dark-red);
  --bg-opacity      : 0.12;
  background-color  : rgb(var(--bg-color) / var(--bg-opacity));
}

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

.action-btn-group {
  display			: flex;
  align-items		: center;
  justify-content	: center;
  gap				: 0.5rem;
}

.form-group {
  display			: flex;
  flex-direction	: column;
  margin-bottom		: 1rem;
}

.form-group:last-of-type {
  margin-bottom		: 0;
}

.form-input {
  --border-opacity	: 0.12;
  --bg-opacity		: 1;
  --text-opacity	: 1;
  --border-radius	: 0.375rem;
  --bg-color		: var(--white);
  --border-color	: var(--black);
  --text-color		: var(--black);

  appearance		: none;
  outline			: none;
  border			: 1px solid rgb(var(--border-color) / var(--border-opacity));
  padding			: 0.75rem 1rem;
  border-radius		: var(--border-radius);
  color				: rgb(var(--text-color) / var(--text-opacity));
  background-color	: rgb(var(--bg-color) / var(--bg-opacity));
  font-weight		: 500;
  font-family		: inherit;
  font-size			: 1rem;
  transition		: all 300ms;
  width				: 100%;
  display			: block;
}

.form-input::placeholder {
  --text-opacity	: 0.36;
  color				: rgb(var(--text-color) / var(--text-opacity));
}

.form-input:focus {
  --border-opacity	: 1;
  --shadow-opacity	: 0.12;
  box-shadow		: 0 0.125rem 0.5rem 0 rgb(var(--black) / var(--shadow-opacity));
}

.g-recaptcha{
   margin: 15px auto !important;
   width: auto !important;
   height: auto !important;
   text-align: -webkit-center;
   text-align: -moz-center;
   text-align: -o-center;
   text-align: -ms-center;
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}


/*
Breadcrumbs
*/
ul.breadcrumb {
  padding-right		: 30px;
  padding-bottom	: 50px;
  list-style		: none;
}

/* Display list items side by side */
ul.breadcrumb li {
  display			: inline;
  font-size			: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding			: 8px;
  color				: black;
  content			: "\00BB"

}

/* Add a color to all links inside the list */
ul.breadcrumb li {
  color				: #b61b21;
  text-decoration	: none;
}

ul.breadcrumb li a {
  color				: #000000;
  text-decoration	: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color				: #b61b21;
  text-decoration	: underline;
}

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

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

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

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

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

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

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

/*
Set the default cursor for buttons.
*/

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

.btn {
  --text-opacity: 1;
  --border-opacity: 0;
  --bg-opacity: 0;
  --text-color: var(--black);
  --bg-color: var(--black);
  --border-color: var(--white);
  --border-radius: 0.375rem;

  display: inline-block;
  text-decoration: none;
  color: rgb(var(--text-color) / var(--text-opacity));
  background-color: rgb(var(--bg-color) / var(--bg-opacity));
  border: 1px solid rgb(var(--border-color) / var(--border-opacity));
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 300ms, background 300ms;
  border-radius: var(--border-radius);
}

.btn:hover {
  --border-opacity: 1;
  --bg-opacity: 1;
  --text-color: var(--white);
  --border-color: var(--black);
}

.btn-dark {
  --border-opacity: 1;
  --bg-opacity: 1;
  --border-color: var(--black);
  --text-color: var(--white);
  width: 100%
}

.btn-dark:hover {
  --bg-opacity: 0.66;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  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,
video {
  max-width: 100%;
  height: auto;
}



/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
  :root {
    --color-light-gray				: 242 242 242;
    --color-lightest-gray			: 250 250 250;
    --color-dark-gray				: 40 40 40;
    --color-black					: 0 0 0;
    --color-white					: 255 255 255;
    --color-vivide-orange			: 235 98 9;
    --color-desaturated-orange		: 193 152 99;
    --color-desaturated-dark-magenta: 144 89 156;
    --color-strong-blue				: 0 132 202;
    --color-dark-red				: 165 0 15;
    --color-dark-green				: 121 170 22;
	--tabcol						: 160 255 90;
    --black							: 0 0 0;
    --licus							: 47 181 255;  
    --sicus							: 39 150 210;
    --dacus							: 10 37 52;
    --white							: 255 255 255;
    --light							: 201 201 201;
    --red							: 255 0 0;
  }

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --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;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

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

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

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

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

  .container {
    max-width: 1536px;
  }
}

@media (max-width: 768px) {
  .table tr :nth-of-type(2) {
    display: none;
  }
} 
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.right-0 {
  right: 0px;
}
.top-0 {
  top: 0px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-0 {
  z-index: 0;
}
.z-50 {
  z-index: 50;
}
.z-30 {
  z-index: 30;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-44 {
  margin-bottom: 11rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-auto {
  margin-top: auto;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-52 {
  margin-top: 13rem;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-\[4\/2\.75\] {
  aspect-ratio: 4/2.75;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-52 {
  height: 13rem;
}
.h-\[10px\] {
  height: 10px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-36 {
  width: 9rem;
}
.w-40 {
  width: 10rem;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-full {
  max-width: 100%;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.basis-2\/5 {
  flex-basis: 40%;
}
@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-bounce {
  animation: bounce 1s infinite;
}
.scroll-p-12 {
  scroll-padding: 3rem;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-black\/5 {
  border-color: rgb(var(--color-black) / 0.05);
}
.border-dark-green {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-dark-green) / var(--tw-border-opacity));
}
.border-dark-red {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-dark-red) / var(--tw-border-opacity));
}
.border-desaturated-dark-magenta {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-desaturated-dark-magenta) / var(--tw-border-opacity));
}
.border-desaturated-orange {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-desaturated-orange) / var(--tw-border-opacity));
}
.border-strong-blue {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-strong-blue) / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(var(--color-white) / var(--tw-border-opacity));
}
.border-y-black\/5 {
  border-top-color: rgb(var(--color-black) / 0.05);
  border-bottom-color: rgb(var(--color-black) / 0.05);
}

.bg-dark-red {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-dark-red) / var(--tw-bg-opacity));
}

.bg-dark-green {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-dark-green) / var(--tw-bg-opacity));
}

.bg-desaturated-dark-magenta {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-desaturated-dark-magenta) / var(--tw-bg-opacity));
}
.bg-desaturated-orange {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-desaturated-orange) / var(--tw-bg-opacity));
}
.bg-light-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-light-gray) / var(--tw-bg-opacity));
}
.bg-lightest-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-lightest-gray) / var(--tw-bg-opacity));
}
.bg-strong-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-strong-blue) / var(--tw-bg-opacity));
}

.bg-holder,

.bg-holder > img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}


.bg-\[url\(\'\.\.\/assets\/images\/PrGrFor\.jpg\'\)\] {
  background-image: url('../assets/images/PrGrFor.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/PrGrMod\.jpg\'\)\] {
  background-image: url('../assets/images/PrGrMod.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/PrGrMul\.jpg\'\)\] {
  background-image: url('../assets/images/PrGrMul.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/assort\.jpg\'\)\] {
  background-image: url('../assets/images/assort.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/contact\.png\'\)\] {
  background-image: url('../assets/images/contact.png');
}
.bg-\[url\(\'\.\.\/assets\/images\/header-wave-bottom\.svg\'\)\] {
  background-image: url('../assets/images/header-wave-bottom.svg');
}
.bg-\[url\(\'\.\.\/assets\/images\/header-wave-top\.svg\'\)\] {
  background-image: url('../assets/images/header-wave-top.svg');
}
.bg-\[url\(\'\.\.\/assets\/images\/milieu\.jpg\'\)\] {
  background-image: url('../assets/images/milieu.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/ondergronds\.jpg\'\)\] {
  background-image: url('../assets/images/ondergronds.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/overons\.jpg\'\)\] {
  background-image: url('../assets/images/overons.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/videos\.jpg\'\)\] {
  background-image: url('../assets/images/videos.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/waarom\.jpg\'\)\] {
  background-image: url('../assets/images/waarom.jpg');
}
.bg-\[url\(\'\.\.\/assets\/images\/FamilieFoto\.jpg\'\)\] {
  background-image: url('../assets/images/FamilieFoto.jpg');
}
.bg-cover {
  background-size: cover;
}
.bg-bottom {
  background-position: bottom;
}
.bg-center {
  background-position: center;
}
.bg-left {
  background-position: left;
}
.bg-top {
  background-position: top;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}




.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-14 {
  padding: 3.5rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-20 {
  padding: 5rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(var(--color-black) / var(--tw-text-opacity));
}
.text-black\/75 {
  color: rgb(var(--color-black) / 0.75);
}
.text-dark-green {
  --tw-text-opacity: 1;
  color: rgb(var(--color-dark-green) / var(--tw-text-opacity));
}
.text-dark-red {
  --tw-text-opacity: 1;
  color: rgb(var(--color-dark-red) / var(--tw-text-opacity));
}
.text-desaturated-dark-magenta {
  --tw-text-opacity: 1;
  color: rgb(var(--color-desaturated-dark-magenta) / var(--tw-text-opacity));
}
.text-desaturated-orange {
  --tw-text-opacity: 1;
  color: rgb(var(--color-desaturated-orange) / var(--tw-text-opacity));
}
.text-strong-blue {
  --tw-text-opacity: 1;
  color: rgb(var(--color-strong-blue) / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(var(--color-white) / var(--tw-text-opacity));
}
.opacity-0 {
  opacity: 0;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}

body {
  font-family: 'Ubuntu', sans-serif;
  color: rgba(rgb(var(--color-black) / 1), 0.75);
  background-color: rgb(var(--color-lightest-gray) / 1);
}

header.sticky {
  background-color: rgb(var(--color-lightest-gray) / 1);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.navbar-toggle.active span {
  background-color: rgb(var(--color-vivide-orange) / 1);
}

.navbar-collapse.show {
  opacity: 1;
  visibility: visible;
}

.hero-section {
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .hero-home {
    min-height: calc(100vh + 240px);
  }
}

/* light box */
.lg-prev,
.lg-next {
  background-color: rgba(var(--color-black) / 0.5);
}
/* END: light box */
.hover\:bg-lightest-gray:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-lightest-gray) / var(--tw-bg-opacity));
}

.hover\:bg-dark-red:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-dark-red) / var(--tw-bg-opacity));
}

.hover\:bg-strong-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(var(--color-strong-blue) / var(--tw-bg-opacity));
}
.hover\:text-dark-green:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-dark-green) / var(--tw-text-opacity));
}
.hover\:text-dark-gray:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-dark-gray) / var(--tw-text-opacity));
}
.hover\:text-dark-red:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-dark-red) / var(--tw-text-opacity));
}
.hover\:text-desaturated-dark-magenta:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-desaturated-dark-magenta) / var(--tw-text-opacity));
}
.hover\:text-desaturated-orange:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-desaturated-orange) / var(--tw-text-opacity));
}
.hover\:text-strong-blue:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-strong-blue) / var(--tw-text-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(var(--color-white) / var(--tw-text-opacity));
}
.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), 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));
}
@media (min-width: 640px) {

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

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

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

  .sm\:justify-start {
    justify-content: flex-start;
  }

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

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

  .sm\:pr-0 {
    padding-right: 0px;
  }

  .sm\:text-end {
    text-align: end;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) {

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

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

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {

  .lg\:visible {
    visibility: visible;
  }

  .lg\:static {
    position: static;
  }

  .lg\:inset-auto {
    inset: auto;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

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

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

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-60 {
    height: 15rem;
  }

  .lg\:h-auto {
    height: auto;
  }

  .lg\:w-48 {
    width: 12rem;
  }

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

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

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

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

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

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

  .lg\:overflow-hidden {
    overflow: hidden;
  }

  .lg\:border-0 {
    border-width: 0px;
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-top {
    background-position: top;
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

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

  .lg\:pb-32 {
    padding-bottom: 8rem;
  }

  .lg\:pb-64 {
    padding-bottom: 16rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:opacity-100 {
    opacity: 1;
  }
}
@media (min-width: 1280px) {

  .xl\:h-64 {
    height: 16rem;
  }

  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1536px) {

  .\32xl\:h-72 {
    height: 18rem;
  }
}
