.text-primary {
  color:#ee4042;
}

#header.sticky {
  position: fixed;
  transform: scale(0.85);
  border-radius: 5px;
  box-shadow:0.2rem 0.2rem 0.8rem #919191;
}

#body.sticky {
  margin-top:10rem;
}

.alert {
  position:fixed;
  border-radius:5px;
  border-left:8px solid var(--accentColor);
}

.alert::before {
  content:'';
  width:100%;
  height:5px;
  position:absolute;
  bottom:0;
  left:0;
  background-color:var(--accentColor);
  animation:alertBar 4100ms linear;
}

@keyframes alertBar {
  100% {
    width:0;
  }
}

.success {
  background-color: rgb(64, 160, 29);
}
.failed {
  background-color: rgba(234, 9, 9);
}

.resize-none {
  resize: none;
}

.form-input {
  width:100%;
  padding:6px;
  border:none;
  border-bottom:1px solid rgba(220, 220, 220, 1);
}

.form-input:focus {
  outline:none;
}

.form-check {}

.form-input-container {
  padding:0.7rem;
  width:100%;
  position:relative;
  font-family: nanum, serif;
  font-size:1rem;
}

.form-input:not(:-moz-placeholder-shown) ~ .form-input-label {
  top:-3px;
  color:#9A9A9A;
  font-size:0.8rem;
  left:0;
}

.form-input:not(:placeholder-shown) ~ .form-input-label, .form-input:focus ~ .form-input-label {
  top:-3px;
  color:#9A9A9A;
  font-size:0.8rem;
  left:0;
}

.form-input-container .invalid-feedback {
  background-color: rgba(246, 75, 75, 0.5);
  font-weight:100;
  font-family:nanum, serif;
  font-size:1rem;
  margin:4px;
  color:#b92323;
  padding:6px;
}

.form-input-label {
  font-size:1rem;
  position:absolute;
  top:18px;
  left:18px;
  transition:all 0.3s linear;
}

.form-submit-button {
  cursor:pointer;
  display:inline-block;
  border-radius:9999px;
  border:1px solid #c6c6c6;
  background:white;
  padding:.75rem 2.5rem;
  text-align:center;
  color:#ee4042;
  transition:all 300ms linear;
  font-family: nanum, serif;
}

.form-submit-button:hover {
  border-color:#ee4042;
  background-color:#ee4042;
  color:#fff;
}

.form-check-container {
  margin:8px 4px;
  position:relative;
  font-family: nanum, serif;
}

.form-input-check {
  display:none;
}

.form-check-label span {
  position:relative;
  background:#c6c6c6;
  padding:7px 10px;
  color:#424242;
  text-shadow:0 1px 4px rgba(0, 0, 0, 0.5);
  border-radius:30px;
  font-size:0.9rem;
  transition:all 0.5s linear;
  -webkit-user-select:none;
     -moz-user-select:none;
          user-select:none;
  overflow:hidden;
}

.form-input-check:checked ~ label span {
  background:#ee4042;
  color:white;
}

.form-check-label {
  cursor:pointer;
}

.bgimage-marble {
  background-image:url("../img/marbleBackground.jpg");
  background-size:cover;
  background-repeat:no-repeat;
}

.dropdown-menu {
  top:calc(100% + 0.25rem);
  opacity:0;
  pointer-events:none;
  transform:translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}
.dropdown.active > .link + .dropdown-menu {
  opacity:1;
  pointer-events:auto;
  transform:translateY(0px);
}

#navigation {
  opacity:0;
  transform:translateX(-10px);
  pointer-events:none;
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}
#navigation.active {
  opacity:1;
  pointer-events: auto;
  transform:translateX(0px);
}
#overlay {
  width:0;
  transition: width 300ms ease-in-out;
}

#overlay.active {
  width:100vw;
}

#confirmOverlay {
  opacity:0;
  pointer-events: none;
}

#confirmOverlay.active {
  opacity:1;
  pointer-events: auto;
}

#modal {
  opacity:0;
  transition:opacity 300ms ease-in-out;
  pointer-events:none;
}

#modal.active {
  opacity:1;
  pointer-events:auto;
}

.dropdown {
  min-width:80px;
  position:relative;
  margin:2em;
}

.select {
  background: #bdbdbd;
  color:#FFF;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:2px solid #bdbdbd;
  border-radius:4px;
  padding:0.5rem;
  cursor:pointer;
  transition: background 0.3s;
}

.select:hover {
  background:#adadad;
}

.caret {
  width:0;
  height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid #FFF;
  transition:0.3s;
}

.caret-rotate {
  transform:rotate(180deg);
}

.menu {
  background:#dbdbdb;
  border:1px #dbdbdb solid;
  box-shadow:0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius:0.5em;
  color:#383939;
  position:absolute;
  top:3em;
  left:50%;
  width:100%;
  transform:translateX(-50%);
  opacity:0;
  display:none;
  transition: 0.2s;
  z-index:1;
  overflow:hidden;
}

.menu li {
  padding:0.7em 0.5em;
  cursor:pointer;
}

.menu li:hover {
  background:#2a2d35;
  color:#FFF;
}

.active {
  background:#23242a;
  color:#FFF;
}

.menu-open {
  display:block;
  opacity:1;
}

#filterMenu{
  opacity:0;
  padding:0;
  transition:all 300ms ease-in-out;
  overflow:hidden;
}

#filterMenu.active{
  opacity:1;
  max-height:400px;
  padding:1rem;
}


/*
! tailwindcss v3.3.5 | 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: #e5e7eb; /* 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: tangerine; /* 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.
*/


table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}


/*
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 */
}


/*
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;
}


/*
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;
}


*, ::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: ;
}
.pointer-events-none {
  pointer-events:none;
}
.fixed {
  position:fixed;
}
.absolute {
  position:absolute;
}
.relative {
  position:relative;
}
.bottom-0 {
  bottom:0px;
}
.left-0 {
  left:0px;
}
.left-1\/2 {
  left:50%;
}
.right-0 {
  right:0px;
}
.top-0 {
  top:0px;
}
.top-1\/2 {
  top:50%;
}
.isolate {
  isolation:isolate;
}
.z-10 {
  z-index:10;
}
.z-20 {
  z-index:20;
}
.z-30 {
  z-index:30;
}
.z-40 {
  z-index:40;
}
.z-50 {
  z-index:50;
}
.order-1 {
  order:1;
}
.order-2 {
  order:2;
}
.order-3 {
  order:3;
}
.col-span-2 {
  grid-column:span 2 / span 2;
}
.m-0 {
  margin:0px;
}
.m-4 {
  margin:1rem;
}
.m-8 {
  margin:2rem;
}
.mx-2 {
  margin-left:0.5rem;
  margin-right:0.5rem;
}
.mx-auto {
  margin-left:auto;
  margin-right:auto;
}
.my-10 {
  margin-top:2.5rem;
  margin-bottom:2.5rem;
}
.my-12 {
  margin-top:3rem;
  margin-bottom:3rem;
}
.my-2 {
  margin-top:0.5rem;
  margin-bottom:0.5rem;
}
.my-4 {
  margin-top:1rem;
  margin-bottom:1rem;
}
.my-6 {
  margin-top:1.5rem;
  margin-bottom:1.5rem;
}
.my-8 {
  margin-top:2rem;
  margin-bottom:2rem;
}
.mb-2 {
  margin-bottom:0.5rem;
}
.mb-4 {
  margin-bottom:1rem;
}
.me-4 {
  margin-inline-end:1rem;
}
.ms-12 {
  margin-inline-start:3rem;
}
.ms-2 {
  margin-inline-start:0.5rem;
}
.ms-4 {
  margin-inline-start:1rem;
}
.ms-6 {
  margin-inline-start:1.5rem;
}
.mt-10 {
  margin-top:2.5rem;
}
.mt-12 {
  margin-top:3rem;
}
.mt-14 {
  margin-top:3.5rem;
}
.mt-2 {
  margin-top:0.5rem;
}
.mt-4 {
  margin-top:1rem;
}
.mt-6 {
  margin-top:1.5rem;
}
.block {
  display:block;
}
.flex {
  display:flex;
}
.table {
  display:table;
}
.grid {
  display:grid;
}
.contents {
  display:contents;
}
.hidden {
  display:none;
}
.h-12 {
  height:3rem;
}
.h-2 {
  height:0.5rem;
}
.h-44 {
  height:11rem;
}
.h-\[210px\] {
  height:210px;
}
.h-\[240px\] {
  height:240px;
}
.h-\[280px\] {
  height:280px;
}
.h-\[300px\] {
  height:300px;
}
.h-\[364px\] {
  height:364px;
}
.h-\[400px\] {
  height:400px;
}
.h-\[500px\] {
  height:500px;
}
.h-full {
  height:100%;
}
.h-screen {
  height:100vh;
}
.max-h-0 {
  max-height:0px;
}
.max-h-\[500px\] {
  max-height:500px;
}
.min-h-\[60vh\] {
  min-height:60vh;
}
.min-h-screen {
  min-height:100vh;
}
.w-12 {
  width:3rem;
}
.w-2\/5 {
  width:40%;
}
.w-3\/4 {
  width:75%;
}
.w-3\/5 {
  width:60%;
}
.w-44 {
  width:11rem;
}
.w-56 {
  width:14rem;
}
.w-\[120px\] {
  width:120px;
}
.w-\[300px\] {
  width:300px;
}
.w-\[310px\] {
  width:310px;
}
.w-\[600px\] {
  width:600px;
}
.w-\[700px\] {
  width:700px;
}
.w-\[90\%\] {
  width:90%;
}
.w-full {
  width:100%;
}
.w-screen {
  width:100vw;
}
.max-w-\[1200px\] {
  max-width:1200px;
}
.max-w-\[1400px\] {
  max-width:1400px;
}
.max-w-\[140px\] {
  max-width:140px;
}
.max-w-\[1600px\] {
  max-width:1600px;
}
.max-w-\[330px\] {
  max-width:330px;
}
.max-w-\[420px\] {
  max-width:420px;
}
.max-w-\[500px\] {
  max-width:500px;
}
.max-w-\[550px\] {
  max-width:550px;
}
.max-w-\[600px\] {
  max-width:600px;
}
.max-w-\[800px\] {
  max-width:800px;
}
.max-w-\[300px\] {
  max-width:300px;
}
.-translate-x-1\/2 {
  --tw-translate-x:-50%;
  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));
}
.-translate-y-1\/2 {
  --tw-translate-y:-50%;
  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));
}
.cursor-pointer {
  cursor:pointer;
}
.appearance-none {
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
}
.grid-cols-1 {
  grid-template-columns:repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction:column;
}
.flex-col-reverse {
  flex-direction:column-reverse;
}
.flex-wrap {
  flex-wrap:wrap;
}
.items-start {
  align-items:flex-start;
}
.items-center {
  align-items:center;
}
.justify-start {
  justify-content:flex-start;
}
.justify-end {
  justify-content:flex-end;
}
.justify-center {
  justify-content:center;
}
.justify-between {
  justify-content:space-between;
}
.justify-evenly {
  justify-content:space-evenly;
}
.gap-2 {
  gap:0.5rem;
}
.gap-3 {
  gap:0.75rem;
}
.gap-4 {
  gap:1rem;
}
.gap-6 {
  gap:1.5rem;
}
.gap-8 {
  gap:2rem;
}
.overflow-hidden {
  overflow:hidden;
}
.whitespace-nowrap {
  white-space:nowrap;
}
.rounded {
  border-radius:0.25rem;
}
.rounded-2xl {
  border-radius:1rem;
}
.rounded-full {
  border-radius:9999px;
}
.rounded-md {
  border-radius:0.375rem;
}
.rounded-xl {
  border-radius:0.75rem;
}
.border {
  border-width:1px;
}
.border-2 {
  border-width:2px;
}
.border-b {
  border-bottom-width:1px;
}
.border-r {
  border-right-width:1px;
}
.border-gray-200 {
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / var(--tw-border-opacity));
}
.border-slate-100 {
  --tw-border-opacity:1;
  border-color:rgb(241 245 249 / var(--tw-border-opacity));
}
.border-slate-200 {
  --tw-border-opacity:1;
  border-color:rgb(226 232 240 / var(--tw-border-opacity));
}
.border-slate-400 {
  --tw-border-opacity:1;
  border-color:rgb(148 163 184 / var(--tw-border-opacity));
}
.border-slate-800 {
  --tw-border-opacity:1;
  border-color:rgb(30 41 59 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity:1;
  border-color:rgb(255 255 255 / var(--tw-border-opacity));
}
.bg-accent {
  --tw-bg-opacity:1;
  background-color:rgb(186 44 115 / var(--tw-bg-opacity));
}
.bg-blue-400 {
  --tw-bg-opacity:1;
  background-color:rgb(96 165 250 / var(--tw-bg-opacity));
}
.bg-emerald-400 {
  --tw-bg-opacity:1;
  background-color:rgb(52 211 153 / var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity:1;
  background-color:rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity:1;
  background-color:rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-green-400 {
  --tw-bg-opacity:1;
  background-color:rgb(74 222 128 / var(--tw-bg-opacity));
}
.bg-green-600 {
  --tw-bg-opacity:1;
  background-color:rgb(22 163 74 / var(--tw-bg-opacity));
}
.bg-indigo-600 {
  --tw-bg-opacity:1;
  background-color:rgb(79 70 229 / var(--tw-bg-opacity));
}
.bg-pale {
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-primary {
  --tw-bg-opacity:1;
  background-color:rgb(238 64 66 / var(--tw-bg-opacity));
}
.bg-red-400 {
  --tw-bg-opacity:1;
  background-color:rgb(248 113 113 / var(--tw-bg-opacity));
}
.bg-red-500 {
  --tw-bg-opacity:1;
  background-color:rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-red-600 {
  --tw-bg-opacity:1;
  background-color:rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-secondary {
  --tw-bg-opacity:1;
  background-color:rgb(163 155 92 / var(--tw-bg-opacity));
}
.bg-slate-100 {
  --tw-bg-opacity:1;
  background-color:rgb(241 245 249 / var(--tw-bg-opacity));
}
.bg-slate-200 {
  --tw-bg-opacity:1;
  background-color:rgb(226 232 240 / var(--tw-bg-opacity));
}
.bg-slate-300 {
  --tw-bg-opacity:1;
  background-color:rgb(203 213 225 / var(--tw-bg-opacity));
}
.bg-slate-400 {
  --tw-bg-opacity:1;
  background-color:rgb(148 163 184 / var(--tw-bg-opacity));
}
.bg-slate-600 {
  --tw-bg-opacity:1;
  background-color:rgb(71 85 105 / var(--tw-bg-opacity));
}
.bg-slate-900 {
  --tw-bg-opacity:1;
  background-color:rgb(15 23 42 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-yellow-400 {
  --tw-bg-opacity:1;
  background-color:rgb(250 204 21 / var(--tw-bg-opacity));
}
.bg-opacity-40 {
  --tw-bg-opacity:0.4;
}
.bg-opacity-50 {
  --tw-bg-opacity:0.5;
}
.bg-opacity-70 {
  --tw-bg-opacity:0.7;
}
.bg-opacity-75 {
  --tw-bg-opacity:0.75;
}
.bg-opacity-80 {
  --tw-bg-opacity:0.8;
}
.object-cover {
  -o-object-fit:cover;
     object-fit:cover;
}
.p-0 {
  padding:0px;
}
.p-1 {
  padding:0.25rem;
}
.p-12 {
  padding:3rem;
}
.p-2 {
  padding:0.5rem;
}
.p-3 {
  padding:0.75rem;
}
.p-4 {
  padding:1rem;
}
.p-6 {
  padding:1.5rem;
}
.p-8 {
  padding:2rem;
}
.px-10 {
  padding-left:2.5rem;
  padding-right:2.5rem;
}
.px-2 {
  padding-left:0.5rem;
  padding-right:0.5rem;
}
.px-3 {
  padding-left:0.75rem;
  padding-right:0.75rem;
}
.px-4 {
  padding-left:1rem;
  padding-right:1rem;
}
.px-6 {
  padding-left:1.5rem;
  padding-right:1.5rem;
}
.py-0 {
  padding-top:0px;
  padding-bottom:0px;
}
.py-1 {
  padding-top:0.25rem;
  padding-bottom:0.25rem;
}
.py-2 {
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.py-3 {
  padding-top:0.75rem;
  padding-bottom:0.75rem;
}
.py-4 {
  padding-top:1rem;
  padding-bottom:1rem;
}
.py-8 {
  padding-top:2rem;
  padding-bottom:2rem;
}
.pb-24 {
  padding-bottom:6rem;
}
.pe-2 {
  padding-inline-end:0.5rem;
}
.pe-4 {
  padding-inline-end:1rem;
}
.text-left {
  text-align:left;
}
.text-center {
  text-align:center;
}
.text-right {
  text-align:right;
}
.font-nanum {
  font-family:nanum;
}
.font-raleway {
  font-family:Raleway;
}
.font-tangerine {
  font-family:tangerine;
}
.text-2xl {
  font-size:1.5rem;
  line-height:2rem;
}
.text-3xl {
  font-size:1.875rem;
  line-height:2.25rem;
}
.text-4xl {
  font-size:2.25rem;
  line-height:2.5rem;
}
.text-5xl {
  font-size:3rem;
  line-height:1;
}
.text-6xl {
  font-size:3.75rem;
  line-height:1;
}
.text-9xl {
  font-size:8rem;
  line-height:1;
}
.text-\[0\.8rem\] {
  font-size:0.8rem;
}
.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-extrabold {
  font-weight:800;
}
.font-medium {
  font-weight:500;
}
.font-normal {
  font-weight:400;
}
.font-semibold {
  font-weight:600;
}
.font-thin {
  font-weight:100;
}
.uppercase {
  text-transform:uppercase;
}
.italic {
  font-style:italic;
}
.tracking-wide {
  letter-spacing:0.025em;
}
.tracking-wider {
  letter-spacing:0.05em;
}
.text-black {
  --tw-text-opacity:1;
  color:rgb(0 0 0 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity:1;
  color:rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity:1;
  color:rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity));
}
.text-red-800 {
  --tw-text-opacity:1;
  color:rgb(153 27 27 / var(--tw-text-opacity));
}
.text-secondary {
  --tw-text-opacity:1;
  color:rgb(163 155 92 / var(--tw-text-opacity));
}
.text-slate-100 {
  --tw-text-opacity:1;
  color:rgb(241 245 249 / var(--tw-text-opacity));
}
.text-slate-300 {
  --tw-text-opacity:1;
  color:rgb(203 213 225 / var(--tw-text-opacity));
}
.text-slate-400 {
  --tw-text-opacity:1;
  color:rgb(148 163 184 / var(--tw-text-opacity));
}
.text-slate-500 {
  --tw-text-opacity:1;
  color:rgb(100 116 139 / var(--tw-text-opacity));
}
.text-slate-600 {
  --tw-text-opacity:1;
  color:rgb(71 85 105 / var(--tw-text-opacity));
}
.text-slate-700 {
  --tw-text-opacity:1;
  color:rgb(51 65 85 / var(--tw-text-opacity));
}
.text-slate-800 {
  --tw-text-opacity:1;
  color:rgb(30 41 59 / var(--tw-text-opacity));
}
.text-slate-900 {
  --tw-text-opacity:1;
  color:rgb(15 23 42 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line:underline;
}
.opacity-0 {
  opacity:0;
}
.opacity-100 {
  opacity:1;
}
.shadow {
  --tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow:0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-gray-900 {
  --tw-shadow-color:#111827;
  --tw-shadow:var(--tw-shadow-colored);
}
.shadow-slate-200 {
  --tw-shadow-color:#e2e8f0;
  --tw-shadow:var(--tw-shadow-colored);
}
.shadow-slate-300 {
  --tw-shadow-color:#cbd5e1;
  --tw-shadow:var(--tw-shadow-colored);
}
.ring-1 {
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset {
  --tw-ring-inset:inset;
}
.ring-black {
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(0 0 0 / var(--tw-ring-opacity));
}
.ring-gray-400 {
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(156 163 175 / var(--tw-ring-opacity));
}
.ring-opacity-5 {
  --tw-ring-opacity:0.05;
}
.filter {
  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);
}
.backdrop-blur-2xl {
  --tw-backdrop-blur:blur(40px);
  -webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition-all {
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.duration-100 {
  transition-duration:100ms;
}
.duration-300 {
  transition-duration:300ms;
}
.ease-in-out {
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family:'nanum';
  src:url('../webfonts/NanumMyeongjo-Regular.ttf');
}
@font-face {
  font-family:'nanumBold';
  src:url('../webfonts/NanumMyeongjo-Bold.ttf');
}
@font-face {
  font-family:'nanumExtraBold';
  src:url('../webfonts/NanumMyeongjo-ExtraBold.ttf');
}
@font-face {
  font-family:'tangerineBold';
  src:url('../webfonts/Tangerine-Bold.ttf');
}

@font-face {
  font-family:'tangerine';
  src:url('../webfonts/Tangerine-Regular.ttf');
}

@font-face {
  src: url("../webfonts/Raleway-VariableFont_wght.ttf");
  font-family:"Raleway";
}
.hover\:scale-125:hover {
  --tw-scale-x:1.25;
  --tw-scale-y:1.25;
  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));
}
.hover\:border-slate-900:hover {
  --tw-border-opacity:1;
  border-color:rgb(15 23 42 / var(--tw-border-opacity));
}
.hover\:bg-accent:hover {
  --tw-bg-opacity:1;
  background-color:rgb(186 44 115 / var(--tw-bg-opacity));
}
.hover\:bg-emerald-700:hover {
  --tw-bg-opacity:1;
  background-color:rgb(4 120 87 / var(--tw-bg-opacity));
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity:1;
  background-color:rgb(185 28 28 / var(--tw-bg-opacity));
}
.hover\:bg-slate-200:hover {
  --tw-bg-opacity:1;
  background-color:rgb(226 232 240 / var(--tw-bg-opacity));
}
.hover\:bg-slate-700:hover {
  --tw-bg-opacity:1;
  background-color:rgb(51 65 85 / var(--tw-bg-opacity));
}
.hover\:bg-slate-800:hover {
  --tw-bg-opacity:1;
  background-color:rgb(30 41 59 / var(--tw-bg-opacity));
}
.hover\:bg-slate-900:hover {
  --tw-bg-opacity:1;
  background-color:rgb(15 23 42 / var(--tw-bg-opacity));
}
.hover\:bg-opacity-70:hover {
  --tw-bg-opacity:0.7;
}
.hover\:text-accent:hover {
  --tw-text-opacity:1;
  color:rgb(186 44 115 / var(--tw-text-opacity));
}
.hover\:text-primary:hover {
  --tw-text-opacity:1;
  color:rgb(238 64 66 / var(--tw-text-opacity));
}
.hover\:text-slate-300:hover {
  --tw-text-opacity:1;
  color:rgb(203 213 225 / var(--tw-text-opacity));
}
.hover\:text-slate-700:hover {
  --tw-text-opacity:1;
  color:rgb(51 65 85 / var(--tw-text-opacity));
}
.hover\:text-slate-800:hover {
  --tw-text-opacity:1;
  color:rgb(30 41 59 / var(--tw-text-opacity));
}
.hover\:text-slate-900:hover {
  --tw-text-opacity:1;
  color:rgb(15 23 42 / var(--tw-text-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:underline:hover {
  text-decoration-line:underline;
}
@media (prefers-color-scheme: dark) {

  .dark\:border-gray-700 {
    --tw-border-opacity:1;
    border-color:rgb(55 65 81 / var(--tw-border-opacity));
  }

  .dark\:bg-gray-700 {
    --tw-bg-opacity:1;
    background-color:rgb(55 65 81 / var(--tw-bg-opacity));
  }

  .dark\:bg-gray-800 {
    --tw-bg-opacity:1;
    background-color:rgb(31 41 55 / var(--tw-bg-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity:1;
    color:rgb(156 163 175 / var(--tw-text-opacity));
  }
}
@media (min-width: 768px) {

  .md\:order-1 {
    order:1;
  }

  .md\:col-span-1 {
    grid-column:span 1 / span 1;
  }

  .md\:mx-auto {
    margin-left:auto;
    margin-right:auto;
  }

  .md\:flex {
    display:flex;
  }

  .md\:max-w-\[242px\] {
    max-width:242px;
  }

  .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\:flex-row {
    flex-direction:row;
  }
}
@media (min-width: 1024px) {

  .lg\:order-2 {
    order:2;
  }

  .lg\:order-3 {
    order:3;
  }

  .lg\:h-16 {
    height:4rem;
  }

  .lg\:w-16 {
    width:4rem;
  }

  .lg\:w-3\/12 {
    width:25%;
  }

  .lg\:w-4\/12 {
    width:33.333333%;
  }

  .lg\:w-8\/12 {
    width:66.666667%;
  }

  .lg\:w-9\/12 {
    width:75%;
  }

  .lg\:max-w-\[180px\] {
    max-width:180px;
  }

  .lg\:max-w-\[800px\] {
    max-width:800px;
  }

  .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\:gap-8 {
    gap:2rem;
  }

  .lg\:px-10 {
    padding-left:2.5rem;
    padding-right:2.5rem;
  }

  .lg\:text-6xl {
    font-size:3.75rem;
    line-height:1;
  }

  .lg\:text-xl {
    font-size:1.25rem;
    line-height:1.75rem;
  }
}