html,body{
  scroll-behavior: smooth;
}
/* loader */
 #loaderSection {
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  align-items: center;
  /* background-color: rgba(10,32,26,0.6); */
  z-index: 99999;
}

#loaderSection .loading {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
}
#loaderSection .loader {
  position: relative;
  width: 100%;
  height: 100%;
}
#loaderSection .loader svg {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#loaderSection .loader svg path, .loader svg rect{
  fill: #fff;
}

/* component */
input,select{
  margin-top: 0.25rem !important;
  background-color: #fff;
  border-width: 1px;
  border-radius: 0.375rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
  display: block;
  width: 100%;
}
input:focus,select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity));
  --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);

}

.btn-primary {
  padding: 5 10 5 10;
  background-color: rgb(59 130 246);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
  border-radius: 6px;
  width: 100%;
}

.btn-danger{
  padding: 4 10 4 10;
  background-color: #d50b2f;
  color: #fff;
  border-radius: 6px;
  width: 100%;
}

.btn-rounded{
  border-radius: 10rem;
}

.border-color-warning{
  border-color:rgb(244 63 94);
}

.blink-warning {
  animation: anim-warning 600ms infinite;
  -webkit-animation: anim-warning 600ms infinite;
}
@keyframes anim-warning {
  from {opacity: 1.0;}
  50% {opacity: 0.4;}
  to {opacity: 1.0;}
}

.required-star:before {
  content:"*";
  color: red;
  position: absolute;
  top: 0px;
  right: -9px;
}

.required-star {
  position: relative;
}

/* text */
.display-1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
}
.heading-1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}
.heading-2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
}
.heading-3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.heading-4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.heading-5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.text-1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
.text-2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.text-3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.text-4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.text-5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.small-1 {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
.small-2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.small-3 {
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width:1024px) {
  .heading-1 {
    font-size: 32px;
  }
  .heading-2 {
    font-size: 28px;
  }
  .heading-3 {
    font-size: 20px;
  }
}

.text-red {
  color: #EA0029;
}
.text-gray6 {
  color: #404040;
}
.text-gray5 {
  color: #848484;
}
.text-gray4 {
  color: #A5A5A5;
}
.text-gray3 {
  color: #C1C1C1;
}
.text-gray2 {
  color: #D7D7D7;
}
.text-gray1 {
  color: #E8E8E9;
}
.text-gray0 {
  color: #FAFAFA;
}
.text-white {
  color: white;
}


/* banner */
.banner {
  height: 420px;
  padding: 0 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  color: white;
  margin-top: 30px;
}
@media (max-width:768px) {
  .banner {
    height: 360px;
  }
  .bannerTitle {
    margin-top: 60px;
  }
}
.bannerTitle h2 {
  position: relative;
  padding-bottom: 20px;
}
.bannerTitle p {
  padding-top: 20px;
}
.bannerTitle h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  height: 1px;
  width: 20px;
  margin: 0 auto;
}

/* btn */
.btnBox {
  margin-top: 40px;
  position: relative;
  width: 140px;
  display: flex;
  padding: 8px 38px 8px 38px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
}
.btnBox:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-10deg);
  background-color: #EA0029;
  transition: all 0.3s;
}
.btnBox:hover:after {
  background-color: #404040;
}
.btnBox:disabled:after {
  background-color: #D7D7D7;
}
.btn {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

/* title */
.titleBox {
  position: relative;
  text-align: center;
  padding-bottom: 10px;
}
.titleCenter:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #EA0029;
  width: 60px;
  height: 4px;
}
.titleLeft:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  background-color: #EA0029;
  width: 60px;
  height: 4px;
}
.titleWhite:before{
  background-color: white;
}
@media (min-width:768px) {
  .titleBox {
    padding-bottom: 20px;
  }
}

/* form */
textarea, input, select {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.formColumn {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.columnTitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding-bottom: 4px;
  position: relative;
}
.columnTitleL {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}
.requireStyle:after {
  content: '*';
  color: #EA0029;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: -2px;
  left: 4px;
  z-index: 1;
}
.columnInput {
  padding: 10px 20px;
  background: #FAFAFA;
  border: 1px solid #E8E8E9;
  border-radius: 5px;
}
.columnInput:focus, .columnSelect:focus, .list-select:focus {
  border-color: #E8E8E9 !important;
  box-shadow: none;
}
.columnSelect, .list-select {
  padding: 10px 20px;
  background: #FAFAFA;
  border: 1px solid #E8E8E9;
  border-radius: 5px;
  box-shadow: none;
}
.textArea {
  border: 1px solid #E8E8E9;
  border-radius: 5px;
  overflow: hidden;
}
.formInfoArea {
  padding: 20px 20px;
  background: #FAFAFA;
  border: none;
  width: 100%;
  height: 240px;
}
.textAreaAlert {
  position: absolute;
  opacity: 1;
  bottom: 0;
  height: 110px;
  padding-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(64,64,64,1) 0%, rgba(64,64,64,0.9) 50%, rgba(64,64,64,0) 100%);
  transition: all 0.3s ease;
}
.textAreaAlert.hide {
  opacity: 0;
}
.formBottm input {
  margin: 4px 8px 6px 4px;
  border: 1px solid #E8E8E9;
  background: #FAFAFA;
  position: relative;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  color: transparent;
  transition: all 0.3s;
}
.formBottm input:checked {
  border: 1px solid #EA0029;
}
.formBottm input:focus {
  outline: none;
}
.formBottm input:before {
  content: '';
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  transition: all 0.3s;
}
.formBottm input:checked:before {
  width: 10px;
  height: 10px;
  background: #EA0029;
}
.columnFile {
  background: #FAFAFA;
  border: 1px solid #E8E8E9;
  border-radius: 5px;
  box-shadow: none;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 270px;
}
.columnFile input {
  display: none;
}
.uploadBtn {
  display: flex;
  flex-direction: row;
  align-items: start;
  padding: 10px 24px;
  border: 1px solid #404040;
  border-radius: 25px;
  width: 136px;
  height: 44px;
  opacity: 1;
  transition: all 0.3s ease;
}
.uploadBtn:hover {
  opacity: 0.8;
}
.lineGreenBtn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  padding: 8px 16px;
  background: #2CCF54;
  border-radius: 25px;
  width: 160px;
  height: 40px;
}

/* carousel */
.slick-dots {
  display: flex !important;
  justify-content: center;
  margin: 0;
  padding-top: 10px;
  list-style-type: none;

  li {
    margin: 0 8px;
  }
  button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #EA0029;
    opacity: 0.3;
    text-indent: -9999px;
  }

  li.slick-active button {
      background-color: #EA0029;
      opacity: 1;
  }
}



/* list style */
.listText li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #EA0029;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 8px;
}


/* carousel */
.top-arrows {
  position: absolute;
  display: flex;
  flex-direction: row;
}
.top-arrow {
  width: 40px;
  height: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
  z-index: 1;
  transform: skewX(-10deg);
  background: #E5E5E5 !important;
  border-radius: 0%;
  opacity: 1;
  transition: all 0.3s ease;
}
.top-arrow:hover {
  background: #2D2A26 !important;
}
.top-arrow:disabled {
  opacity: 1;
}
.top-arrow:hover > svg path {
  fill: #FFFFFF;
}
.top-arrow svg {
  transform: skewX(10deg);
}

.share-link svg path {
  transition: all 0.3s ease;
}
.share-link:hover > svg path {
  fill:#EA0029;
}

.table-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #EA0029;
}

.article-content th, .article-content td {
  padding: 15px 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.article-content th:first-child, .article-content td:first-child {
  border-left: 0;
}
.article-content th:last-child, .article-content td:last-child {
  border-right: 0;
}

.article-content th {
  border: 1px solid white;
}
.article-content td {
  border: 1px solid #E8E8E9;
}
.table-l thead th {
  background-color: #EA0029;
  color: white;
  border-top: 0;
}
.table-l tbody th {
  background-color: rgba(234, 0, 41, 0.1);
}
.table-m tbody th {
  background-color: #EA0029;
  color: white;
}
.table-m tr:first-child th, .table-m tr:first-child td {
  border-top: 0;
}
.article-content tbody tr:last-child th, .article-content tbody tr:last-child td {
  border-bottom: 0;
}

.more-btn {
  padding-right: 10px;
  color: #EA0029;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.more-btn:hover {
  padding-right: 6px;
}
.more-btn:after {
  position: absolute;
  top: 0px;
  bottom: 3px;
  margin: auto;
  right: 0;
  content: '';
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #EA0029;
  border-right: 1px solid #EA0029;
  transform: rotate(-45deg);
}
.article-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 20px;
  background-color: #FAFAFA;
  border: 1px solid #D7D7D7;
}
@media (max-width:768px) {
  .article-link {
    padding: 20px;
  }
}
.article-note {
  border: 1px solid #E8E8E9;
  border-radius: 10px;
  color: #848484;
}
.article-ul li {
  list-style: disc;
}
.article-ul li::marker {
  color: #EA0029;
}
.article-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.article-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-ol li {
  list-style-type: decimal;
}

.tabBox {
  margin-top: 40px;
  position: relative;
  width: 140px;
  display: flex;
  padding: 8px 38px 8px 38px;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.tabBox:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-10deg);
  background-color: #E8E8E9;
  transition: all 0.3s;
  z-index: -1;
  transition: all 0.3s ease;
}

.tabBox:hover {
  color: #fff;
}
.tabBox:hover:after {
  background-color: #404040;
}
.tabBox.active {
  color: #fff;
}
.tabBox.active:after {
  background-color: #404040;
}

/* HTML: <div class="scroll-bottom-loader"></div> */
.scroll-bottom-loader {
  width: 28px;
  padding: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #858585;
  --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {to{transform: rotate(1turn)}}

.tabGorup .tab {
  padding: 10px;
  display: block;
  width: 100%;
  text-align: center;
  color: #848484;
  cursor: pointer;
}
.tabGorup .tab-active {
  border-bottom: 3px solid #EA0029;
  color: #EA0029;
}
.loginBtn {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
}
.send-SMS {
  background-color: #404040 !important;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.send-SMS:disabled {
  background-color: #848484 !important;
}

.member-tab .tab {
  padding: 14px 20px;
  border-bottom: 1px solid #E8E8E9;
  color: #707070;
}
.memberTab-active {
  background: #f4f4f4;
  color: #404040;
}

.memberBtn {
  padding: 12px 10px;
  border-radius: 5px;
  flex: 1;
}
.member-tab-m .active {
  color: #EA0029;
}
.member-tabCurrent:before {
  content: "\f107";
  color: #404040;
  font-size: 15px;
  font-family: FontAwesome;
  line-height: 1;
  margin-top: -6px;
  position: absolute;
  right: 15px;
  top: 50%;
  z-index: 1;
}.member-tabCurrent {
  cursor: pointer;
}
.member-tabList .active {
  display: block;
}

.t-shake {
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

@keyframes shake {
  0% {transform: translate(3px, 0);}
  50% {transform: translate(-3px, 0);}
  100% {transform: translate(0, 0);}
}

/*
! 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: 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.
*/

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:  ;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-\[-100px\] {
  bottom: -100px;
}
.bottom-\[-122px\] {
  bottom: -122px;
}
.bottom-\[-81px\] {
  bottom: -81px;
}
.bottom-\[240px\] {
  bottom: 240px;
}
.left-0 {
  left: 0px;
}
.left-3 {
  left: 0.75rem;
}
.left-3\.5 {
  left: 0.875rem;
}
.left-5 {
  left: 1.25rem;
}
.left-\[-5\] {
  left: -5;
}
.left-\[60px\] {
  left: 60px;
}
.left-\[74\%\] {
  left: 74%;
}
.left-\[85\%\] {
  left: 85%;
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.right-5 {
  right: 1.25rem;
}
.right-\[-20px\] {
  right: -20px;
}
.right-\[-5\] {
  right: -5;
}
.right-\[100px\] {
  right: 100px;
}
.right-\[10px\] {
  right: 10px;
}
.right-\[15px\] {
  right: 15px;
}
.right-\[40\%\] {
  right: 40%;
}
.right-\[60px\] {
  right: 60px;
}
.right-\[69\%\] {
  right: 69%;
}
.right-\[80\%\] {
  right: 80%;
}
.right-auto {
  right: auto;
}
.top-0 {
  top: 0px;
}
.top-3 {
  top: 0.75rem;
}
.top-3\.5 {
  top: 0.875rem;
}
.top-6 {
  top: 1.5rem;
}
.top-\[-110px\] {
  top: -110px;
}
.top-\[-20px\] {
  top: -20px;
}
.top-\[-40px\] {
  top: -40px;
}
.top-\[100px\] {
  top: 100px;
}
.top-\[10px\] {
  top: 10px;
}
.top-\[120px\] {
  top: 120px;
}
.top-\[12px\] {
  top: 12px;
}
.top-\[190px\] {
  top: 190px;
}
.top-\[1px\] {
  top: 1px;
}
.top-\[216px\] {
  top: 216px;
}
.top-\[23px\] {
  top: 23px;
}
.top-\[30px\] {
  top: 30px;
}
.top-\[431px\] {
  top: 431px;
}
.top-\[5px\] {
  top: 5px;
}
.top-auto {
  top: auto;
}
.-z-50 {
  z-index: -50;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-\[-1\] {
  z-index: -1;
}
.z-\[0\] {
  z-index: 0;
}
.z-\[1\] {
  z-index: 1;
}
.z-\[25\] {
  z-index: 25;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.float-right {
  float: right;
}
.m-5 {
  margin: 1.25rem;
}
.m-8 {
  margin: 2rem;
}
.m-auto {
  margin: auto;
}
.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-\[10px\] {
  margin-left: 10px;
  margin-right: 10px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.-mt-px {
  margin-top: -1px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-\[100px\] {
  margin-bottom: 100px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[120px\] {
  margin-bottom: 120px;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[60px\] {
  margin-bottom: 60px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-\[30px\] {
  margin-left: 30px;
}
.ml-\[60px\] {
  margin-left: 60px;
}
.ml-auto {
  margin-left: auto;
}
.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-\[-1\.5rem\] {
  margin-right: -1.5rem;
}
.mr-\[-4px\] {
  margin-right: -4px;
}
.mr-\[10px\] {
  margin-right: 10px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[-15px\] {
  margin-top: -15px;
}
.mt-\[-200px\] {
  margin-top: -200px;
}
.mt-\[-80px\] {
  margin-top: -80px;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[160px\] {
  margin-top: 160px;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.\!grid {
  display: grid !important;
}
.grid {
  display: grid;
}
.\!hidden {
  display: none !important;
}
.hidden {
  display: none;
}
.h-1\/5 {
  height: 20%;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-72 {
  height: 18rem;
}
.h-8 {
  height: 2rem;
}
.h-\[100vh\] {
  height: 100vh;
}
.h-\[13rem\] {
  height: 13rem;
}
.h-\[150px\] {
  height: 150px;
}
.h-\[195px\] {
  height: 195px;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[240px\] {
  height: 240px;
}
.h-\[24px\] {
  height: 24px;
}
.h-\[260px\] {
  height: 260px;
}
.h-\[280px\] {
  height: 280px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[360px\] {
  height: 360px;
}
.h-\[3px\] {
  height: 3px;
}
.h-\[540px\] {
  height: 540px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[97\%\] {
  height: 97%;
}
.h-\[calc\(100\%_-_4rem\)\] {
  height: calc(100% - 4rem);
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-14 {
  max-height: 3.5rem;
}
.min-h-\[300px\] {
  min-height: 300px;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-20 {
  width: 5rem;
}
.w-3\/5 {
  width: 60%;
}
.w-32 {
  width: 8rem;
}
.w-4\/5 {
  width: 80%;
}
.w-5 {
  width: 1.25rem;
}
.w-52 {
  width: 13rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-\[12\%\] {
  width: 12%;
}
.w-\[14\%\] {
  width: 14%;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[150px\] {
  width: 150px;
}
.w-\[17\%\] {
  width: 17%;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[18\%\] {
  width: 18%;
}
.w-\[200px\] {
  width: 200px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[288px\] {
  width: 288px;
}
.w-\[360px\] {
  width: 360px;
}
.w-\[384px\] {
  width: 384px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[65px\] {
  width: 65px;
}
.w-\[80\%\] {
  width: 80%;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-\[1000px\] {
  max-width: 1000px;
}
.max-w-\[1200px\] {
  max-width: 1200px;
}
.max-w-\[1280px\] {
  max-width: 1280px;
}
.max-w-\[1440px\] {
  max-width: 1440px;
}
.max-w-\[1800px\] {
  max-width: 1800px;
}
.max-w-\[180px\] {
  max-width: 180px;
}
.max-w-\[210px\] {
  max-width: 210px;
}
.max-w-\[230px\] {
  max-width: 230px;
}
.max-w-\[260px\] {
  max-width: 260px;
}
.max-w-\[300px\] {
  max-width: 300px;
}
.max-w-\[305px\] {
  max-width: 305px;
}
.max-w-\[330px\] {
  max-width: 330px;
}
.max-w-\[360px\] {
  max-width: 360px;
}
.max-w-\[375px\] {
  max-width: 375px;
}
.max-w-\[380px\] {
  max-width: 380px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-\[540px\] {
  max-width: 540px;
}
.max-w-\[660px\] {
  max-width: 660px;
}
.max-w-\[800px\] {
  max-width: 800px;
}
.max-w-\[960px\] {
  max-width: 960px;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.table-fixed {
  table-layout: fixed;
}
.origin-top {
  transform-origin: top;
}
.-translate-x-full {
  --tw-translate-x: -100%;
  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));
}
.scale-0 {
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  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));
}
.transform {
  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;
}
.list-decimal {
  list-style-type: decimal;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-x-\[10px\] {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.gap-x-\[24px\] {
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.gap-y-10 {
  row-gap: 2.5rem;
}
.gap-y-3 {
  row-gap: 0.75rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.space-x-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-\[10px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(10px * var(--tw-space-x-reverse));
  margin-left: calc(10px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-\[10px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(10px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(10px * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-\[15px\] {
  border-radius: 15px;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-\[15px\] {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-\[1px\] {
  border-width: 1px;
}
.border-\[3px\] {
  border-width: 3px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-8 {
  border-bottom-width: 8px;
}
.border-b-\[1px\] {
  border-bottom-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-none {
  border-style: none;
}
.border-\[\#D3D3D3\] {
  --tw-border-opacity: 1;
  border-color: rgb(211 211 211 / var(--tw-border-opacity));
}
.border-\[\#DEDEDE\] {
  --tw-border-opacity: 1;
  border-color: rgb(222 222 222 / var(--tw-border-opacity));
}
.border-\[\#E8E8E9\] {
  --tw-border-opacity: 1;
  border-color: rgb(232 232 233 / var(--tw-border-opacity));
}
.border-\[\#EA0029\] {
  --tw-border-opacity: 1;
  border-color: rgb(234 0 41 / var(--tw-border-opacity));
}
.border-\[\#f4f4f4\] {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 244 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-zinc-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity));
}
.border-b-\[\#E8E8E9\] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(232 232 233 / var(--tw-border-opacity));
}
.bg-\[\#07B53B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(7 181 59 / var(--tw-bg-opacity));
}
.bg-\[\#323232\]\/\[\.7\] {
  background-color: rgb(50 50 50 / .7);
}
.bg-\[\#404040\] {
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity));
}
.bg-\[\#5396D3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(83 150 211 / var(--tw-bg-opacity));
}
.bg-\[\#5A737B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(90 115 123 / var(--tw-bg-opacity));
}
.bg-\[\#A02222\] {
  --tw-bg-opacity: 1;
  background-color: rgb(160 34 34 / var(--tw-bg-opacity));
}
.bg-\[\#E8E8E9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 232 233 / var(--tw-bg-opacity));
}
.bg-\[\#EA0029\] {
  --tw-bg-opacity: 1;
  background-color: rgb(234 0 41 / var(--tw-bg-opacity));
}
.bg-\[\#F3F3F3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(243 243 243 / var(--tw-bg-opacity));
}
.bg-\[\#FAFAFA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#d4d6dd\] {
  --tw-bg-opacity: 1;
  background-color: rgb(212 214 221 / var(--tw-bg-opacity));
}
.bg-\[\#e5e5e5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}
.bg-\[\#f4f4f4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}
.bg-\[\#fafafa\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 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-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-40 {
  --tw-bg-opacity: 0.4;
}
.bg-contain {
  background-size: contain;
}
.bg-cover {
  background-size: cover;
}
.bg-bottom {
  background-position: bottom;
}
.bg-center {
  background-position: center;
}
.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;
}
.object-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-\[10px\] {
  padding: 10px;
}
.p-\[6px\] {
  padding: 6px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[120px\] {
  padding-left: 120px;
  padding-right: 120px;
}
.px-\[38px\] {
  padding-left: 38px;
  padding-right: 38px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[12px\] {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-\[14px\] {
  padding-top: 14px;
  padding-bottom: 14px;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[30px\] {
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-\[4px\] {
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-\[60px\] {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-48 {
  padding-bottom: 12rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pb-\[120px\] {
  padding-bottom: 120px;
}
.pb-\[280px\] {
  padding-bottom: 280px;
}
.pb-\[2px\] {
  padding-bottom: 2px;
}
.pb-\[60px\] {
  padding-bottom: 60px;
}
.pe-3 {
  padding-inline-end: 0.75rem;
}
.pl-0 {
  padding-left: 0px;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-11 {
  padding-left: 2.75rem;
}
.pl-16 {
  padding-left: 4rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 1.25rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pl-7 {
  padding-left: 1.75rem;
}
.pr-0 {
  padding-right: 0px;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-3 {
  padding-right: 0.75rem;
}
.pr-\[6px\] {
  padding-right: 6px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-40 {
  padding-top: 10rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-\[10px\] {
  padding-top: 10px;
}
.pt-\[15px\] {
  padding-top: 15px;
}
.pt-\[280px\] {
  padding-top: 280px;
}
.pt-\[40px\] {
  padding-top: 40px;
}
.pt-\[60px\] {
  padding-top: 60px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-end {
  text-align: end;
}
.align-middle {
  vertical-align: middle;
}
.\!text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-\[180px\] {
  font-size: 180px;
}
.text-\[64px\] {
  font-size: 64px;
}
.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;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-8 {
  line-height: 2rem;
}
.leading-\[190px\] {
  line-height: 190px;
}
.leading-tight {
  line-height: 1.25;
}
.text-\[\#1F2937\] {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-\[\#404040\] {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity));
}
.text-\[\#797979\] {
  --tw-text-opacity: 1;
  color: rgb(121 121 121 / var(--tw-text-opacity));
}
.text-\[\#848484\] {
  --tw-text-opacity: 1;
  color: rgb(132 132 132 / var(--tw-text-opacity));
}
.text-\[\#9E9B97\] {
  --tw-text-opacity: 1;
  color: rgb(158 155 151 / var(--tw-text-opacity));
}
.text-\[\#A5A5A5\] {
  --tw-text-opacity: 1;
  color: rgb(165 165 165 / var(--tw-text-opacity));
}
.text-\[\#B2B2B2\] {
  --tw-text-opacity: 1;
  color: rgb(178 178 178 / var(--tw-text-opacity));
}
.text-\[\#EA0029\] {
  --tw-text-opacity: 1;
  color: rgb(234 0 41 / var(--tw-text-opacity));
}
.text-\[\#e5002a\] {
  --tw-text-opacity: 1;
  color: rgb(229 0 42 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-950 {
  --tw-text-opacity: 1;
  color: rgb(23 37 84 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / 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-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-2 {
  text-decoration-thickness: 2px;
}
.underline-offset-2 {
  text-underline-offset: 2px;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-\[30\%\] {
  opacity: 30%;
}
.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-\[0_-6px_20px_6px_rgba\(0\2c 0\2c 0\2c 0\.05\)\] {
  --tw-shadow: 0 -6px 20px 6px rgba(0,0,0,0.05);
  --tw-shadow-colored: 0 -6px 20px 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-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-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur {
  --tw-blur: blur(8px);
  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);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
.drop-shadow-\[0_4px_4px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-drop-shadow: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
  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);
}
.drop-shadow-\[0_5px_15px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] {
  --tw-drop-shadow: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
  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);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.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);
}
.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;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:h-\[60px\]::before {
  content: var(--tw-content);
  height: 60px;
}

.before\:w-full::before {
  content: var(--tw-content);
  width: 100%;
}

.before\:bg-white::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.before\:content-\[\'\'\]::before {
  --tw-content: '';
  content: var(--tw-content);
}

.last\:border-none:last-child {
  border-style: none;
}

.hover\:bg-\[\#107b10\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(16 123 16 / var(--tw-bg-opacity));
}

.hover\:bg-\[\#396297\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(57 98 151 / var(--tw-bg-opacity));
}

.hover\:bg-\[\#760b0b\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(118 11 11 / var(--tw-bg-opacity));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.hover\:bg-green-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity));
}

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

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

.hover\:bg-slate-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}

.hover\:bg-slate-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}

.hover\:to-purple-700:hover {
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-0:focus {
  --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(0px + 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);
}

.focus\:ring-2:focus {
  --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(2px + 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);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}

.focus\:ring-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
}

.disabled\:opacity-25:disabled {
  opacity: 0.25;
}

.group:hover .group-hover\:scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 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 (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-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

  .dark\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}

@media (min-width: 640px) {

  .sm\:ml-64 {
    margin-left: 16rem;
  }

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

  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-\[320px\] {
    height: 320px;
  }

  .sm\:max-w-\[800px\] {
    max-width: 800px;
  }

  .sm\:translate-x-0 {
    --tw-translate-x: 0px;
    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));
  }

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

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

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

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

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

  .sm\:gap-5 {
    gap: 1.25rem;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:bg-cover {
    background-size: cover;
  }

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

  .sm\:px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
  }

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

@media (min-width: 768px) {

  .md\:relative {
    position: relative;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:bottom-20 {
    bottom: 5rem;
  }

  .md\:bottom-auto {
    bottom: auto;
  }

  .md\:left-auto {
    left: auto;
  }

  .md\:right-0 {
    right: 0px;
  }

  .md\:right-10 {
    right: 2.5rem;
  }

  .md\:right-\[-40px\] {
    right: -40px;
  }

  .md\:right-\[80px\] {
    right: 80px;
  }

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

  .md\:top-1\/2 {
    top: 50%;
  }

  .md\:top-\[-100px\] {
    top: -100px;
  }

  .md\:top-\[-20px\] {
    top: -20px;
  }

  .md\:top-\[-30px\] {
    top: -30px;
  }

  .md\:top-\[30px\] {
    top: 30px;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .md\:my-\[120px\] {
    margin-top: 120px;
    margin-bottom: 120px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-\[60px\] {
    margin-bottom: 60px;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mr-3 {
    margin-right: 0.75rem;
  }

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

  .md\:mt-\[120px\] {
    margin-top: 120px;
  }

  .md\:mt-\[60px\] {
    margin-top: 60px;
  }

  .md\:block {
    display: block;
  }

  .md\:\!flex {
    display: flex !important;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid {
    display: grid;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-\[360px\] {
    height: 360px;
  }

  .md\:h-\[480px\] {
    height: 480px;
  }

  .md\:h-\[600px\] {
    height: 600px;
  }

  .md\:h-\[800px\] {
    height: 800px;
  }

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

  .md\:w-1\/3 {
    width: 33.333333%;
  }

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

  .md\:w-28 {
    width: 7rem;
  }

  .md\:w-\[160px\] {
    width: 160px;
  }

  .md\:w-\[180px\] {
    width: 180px;
  }

  .md\:w-\[40\%\] {
    width: 40%;
  }

  .md\:w-\[580px\] {
    width: 580px;
  }

  .md\:w-\[60\%\] {
    width: 60%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:max-w-\[1200px\] {
    max-width: 1200px;
  }

  .md\:max-w-\[380px\] {
    max-width: 380px;
  }

  .md\:max-w-\[420px\] {
    max-width: 420px;
  }

  .md\:max-w-\[470px\] {
    max-width: 470px;
  }

  .md\:max-w-\[540px\] {
    max-width: 540px;
  }

  .md\:max-w-\[550px\] {
    max-width: 550px;
  }

  .md\:max-w-\[595px\] {
    max-width: 595px;
  }

  .md\:max-w-\[600px\] {
    max-width: 600px;
  }

  .md\:max-w-\[650px\] {
    max-width: 650px;
  }

  .md\:max-w-\[690px\] {
    max-width: 690px;
  }

  .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-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:gap-y-\[60px\] {
    row-gap: 60px;
  }

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

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:border-\[1px\] {
    border-width: 1px;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }

  .md\:border-\[\#E8E8E9\] {
    --tw-border-opacity: 1;
    border-color: rgb(232 232 233 / var(--tw-border-opacity));
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-\[60px\] {
    padding: 60px;
  }

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

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .md\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .md\:py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

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

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:pb-96 {
    padding-bottom: 24rem;
  }

  .md\:pb-\[160px\] {
    padding-bottom: 160px;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

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

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

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pt-\[120px\] {
    padding-top: 120px;
  }

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

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

  .md\:opacity-100 {
    opacity: 1;
  }

  .min-\[768px\]\:h-\[360px\] {
    height: 360px;
  }

  .min-\[768px\]\:w-\[45\%\] {
    width: 45%;
  }

  .min-\[768px\]\:w-\[55\%\] {
    width: 55%;
  }

  .min-\[768px\]\:flex-row {
    flex-direction: row;
  }

  .min-\[768px\]\:items-start {
    align-items: flex-start;
  }

  .min-\[768px\]\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .min-\[768px\]\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .min-\[768px\]\:pb-0 {
    padding-bottom: 0px;
  }

  .min-\[768px\]\:text-left {
    text-align: left;
  }
}

@media (min-width: 1024px) {

  .lg\:top-\[30px\] {
    top: 30px;
  }

  .lg\:top-\[47px\] {
    top: 47px;
  }

  .lg\:top-\[50px\] {
    top: 50px;
  }

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

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-20 {
    margin-bottom: 5rem;
  }

  .lg\:mb-\[10px\] {
    margin-bottom: 10px;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem;
  }

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

  .lg\:mr-5 {
    margin-right: 1.25rem;
  }

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

  .lg\:mt-20 {
    margin-top: 5rem;
  }

  .lg\:mt-\[100px\] {
    margin-top: 100px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[480px\] {
    height: 480px;
  }

  .lg\:h-\[600px\] {
    height: 600px;
  }

  .lg\:w-1\/2 {
    width: 50%;
  }

  .lg\:w-\[240px\] {
    width: 240px;
  }

  .lg\:w-\[360px\] {
    width: 360px;
  }

  .lg\:w-\[40\%\] {
    width: 40%;
  }

  .lg\:w-\[60\%\] {
    width: 60%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:min-w-\[590px\] {
    min-width: 590px;
  }

  .lg\:max-w-\[800px\] {
    max-width: 800px;
  }

  .lg\:max-w-\[980px\] {
    max-width: 980px;
  }

  .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\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

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

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

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-x-5 {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:bg-\[\#FAFAFA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity));
  }

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

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

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

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

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

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

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

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

  .lg\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lg\:py-\[160px\] {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .lg\:pb-\[120px\] {
    padding-bottom: 120px;
  }

  .lg\:pb-\[60px\] {
    padding-bottom: 60px;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:pl-\[60px\] {
    padding-left: 60px;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

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

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:pt-\[120px\] {
    padding-top: 120px;
  }

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

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

  .min-\[1024px\]\:mt-0 {
    margin-top: 0px;
  }

  .min-\[1024px\]\:h-\[420px\] {
    height: 420px;
  }

  .min-\[1024px\]\:w-\[40\%\] {
    width: 40%;
  }

  .min-\[1024px\]\:w-\[60\%\] {
    width: 60%;
  }

  .min-\[1024px\]\:py-\[80px\] {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .min-\[1024px\]\:pt-20 {
    padding-top: 5rem;
  }
}

@media (min-width: 1280px) {

  .xl\:left-\[71\%\] {
    left: 71%;
  }

  .xl\:left-\[80\%\] {
    left: 80%;
  }

  .xl\:left-auto {
    left: auto;
  }

  .xl\:right-\[53\%\] {
    right: 53%;
  }

  .xl\:top-\[147px\] {
    top: 147px;
  }

  .xl\:top-\[260px\] {
    top: 260px;
  }

  .xl\:top-\[30px\] {
    top: 30px;
  }

  .xl\:top-\[400px\] {
    top: 400px;
  }

  .xl\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .xl\:ml-20 {
    margin-left: 5rem;
  }

  .xl\:mr-5 {
    margin-right: 1.25rem;
  }

  .xl\:mt-\[160px\] {
    margin-top: 160px;
  }

  .xl\:block {
    display: block;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:h-\[320px\] {
    height: 320px;
  }

  .xl\:h-\[540px\] {
    height: 540px;
  }

  .xl\:h-\[580px\] {
    height: 580px;
  }

  .xl\:h-\[600px\] {
    height: 600px;
  }

  .xl\:w-\[203px\] {
    width: 203px;
  }

  .xl\:w-\[209px\] {
    width: 209px;
  }

  .xl\:w-\[240px\] {
    width: 240px;
  }

  .xl\:w-\[290px\] {
    width: 290px;
  }

  .xl\:w-\[297px\] {
    width: 297px;
  }

  .xl\:w-\[440px\] {
    width: 440px;
  }

  .xl\:w-\[540px\] {
    width: 540px;
  }

  .xl\:min-w-\[360px\] {
    min-width: 360px;
  }

  .xl\:min-w-\[660px\] {
    min-width: 660px;
  }

  .xl\:max-w-\[360px\] {
    max-width: 360px;
  }

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

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

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

  .xl\:bg-contain {
    background-size: contain;
  }

  .xl\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .xl\:px-\[120px\] {
    padding-left: 120px;
    padding-right: 120px;
  }

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

  .xl\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .xl\:py-\[160px\] {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .xl\:pl-10 {
    padding-left: 2.5rem;
  }

  .xl\:pl-20 {
    padding-left: 5rem;
  }

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

  .xl\:pr-20 {
    padding-right: 5rem;
  }

  .xl\:pt-20 {
    padding-top: 5rem;
  }

  .xl\:pt-\[120px\] {
    padding-top: 120px;
  }

  .xl\:pt-\[240px\] {
    padding-top: 240px;
  }
}

@media (min-width: 1440px) {

  .min-\[1440px\]\:absolute {
    position: absolute;
  }

  .min-\[1440px\]\:bottom-\[119px\] {
    bottom: 119px;
  }

  .min-\[1440px\]\:top-\[-120px\] {
    top: -120px;
  }

  .min-\[1440px\]\:top-\[187px\] {
    top: 187px;
  }

  .min-\[1440px\]\:ml-auto {
    margin-left: auto;
  }

  .min-\[1440px\]\:mt-\[260px\] {
    margin-top: 260px;
  }

  .min-\[1440px\]\:h-\[580px\] {
    height: 580px;
  }

  .min-\[1440px\]\:h-\[600px\] {
    height: 600px;
  }

  .min-\[1440px\]\:w-\[1400px\] {
    width: 1400px;
  }

  .min-\[1440px\]\:w-\[45\%\] {
    width: 45%;
  }

  .min-\[1440px\]\:w-\[55\%\] {
    width: 55%;
  }

  .min-\[1440px\]\:w-\[600px\] {
    width: 600px;
  }

  .min-\[1440px\]\:w-\[680px\] {
    width: 680px;
  }

  .min-\[1440px\]\:w-\[68vw\] {
    width: 68vw;
  }

  .min-\[1440px\]\:min-w-\[440px\] {
    min-width: 440px;
  }

  .min-\[1440px\]\:flex-row {
    flex-direction: row;
  }

  .min-\[1440px\]\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .min-\[1440px\]\:py-\[60px\] {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
