.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

/*# sourceMappingURL=ReactToastify.css.map */
@media (min-width: 768px) {
.styles_overflow_overlay__r6GqP {
  overflow: auto;
  overflow: overlay;
}
}

.styles_tooltip_wrapper__ZTku7 {
  display: inline-block;
  position: relative;
}

.styles_tooltip_tip__XfSTj {
  position: absolute;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  color: white;
  background: rgb(71, 70, 80);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  z-index: 100;
  white-space: nowrap;
}

.styles_tooltip_tip__XfSTj.styles_top__4d0Lr {
  top: calc(30px * -1);
}

.styles_tooltip_tip__XfSTj.styles_right__cm3fa {
  left: calc(100% + 30px);
  top: 50%;
  transform: translateX(0) translateY(-50%);
}

.styles_tooltip_tip__XfSTj.styles_bottom__0adHM {
  bottom: calc(30px * -1);
}

.styles_tooltip_tip__XfSTj.styles_left__99zOj {
  left: auto;
  right: calc(100% + 30px);
  top: 50%;
  transform: translateX(0) translateY(-50%);
}

.styles_tool_tip__KgoLo {
  background: var(--background);
  position: absolute;
  cursor:pointer;
  border:1px solid white;
  border-radius:10px;
  bottom: 22px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: all 0.1s ease;
  pointer-events: none;
}

.styles_tool_tip__KgoLo:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: calc(100% - 9px);
  left: calc(50% - 10px);
  height: 20px;
  width: 20px;
  background: var(--background);
  transform: rotate(34deg) skewY(20deg);
  border-bottom:inherit;
  border-right:inherit;
  box-shadow:inherit;
}

.styles_inner_image__oaWdB {
  border-radius: 8px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.13));
}

.styles_line_clamp_2__ipfwP {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.styles_line_clamp_4__ZWxmx {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
}

.styles_course_title__EaEuy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.styles_course_card__GXV2r:hover .styles_course_title__EaEuy {
  -webkit-line-clamp: 5;
}

.styles_short_description__5n_tI {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.styles_course_title__BbB7R {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

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

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

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

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

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

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
	margin: 0;
}

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

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

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

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

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

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

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

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

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

b,
strong {
	font-weight: bolder;
}

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

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

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

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

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

/*
Forms
=====
*/

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

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

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

button,
select { /* 1 */
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

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

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

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

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

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

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

legend {
	padding: 0;
}

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

/*
Interactive
===========
*/

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

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

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

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

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

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

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

html {
  font-family: 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"; /* 1 */
  line-height: 1.5; /* 2 */
}


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

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

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

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

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

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

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

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

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

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

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

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

table {
  border-collapse: collapse;
}

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

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

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

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

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

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

img,
svg,
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;
}

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

[hidden] {
  display: none;
}

*, ::before, ::after {
	--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-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
	--tw-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);
	--tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
	--tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
	--tw-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);
}

		/*
		 *	Base styles for table
		 */

	html, body, #__next {
	height: 100%;
	min-height: 100vh;
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}

	table {
	min-width: 100%;
}

	table > :not([hidden]) ~ :not([hidden]) {
	--tw-divide-y-reverse: 0;
	border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
	border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
	--tw-divide-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
}

	table {
	overflow: hidden;
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

	thead {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

	th {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	text-align: left;
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}

	tbody tr:nth-child(odd) {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

	tbody tr:nth-child(even) {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

	tbody tr td {
	white-space: nowrap;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}

		/*
		 * Hide amCharts logo
		 */
	svg [aria-labelledby] {
	display: none;
}
.container {
	width: 100%;
}
@media (min-width: 320px) {

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

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

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

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

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

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

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

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

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

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

	.container {
		max-width: 1848px;
	}
}
.pointer-events-none {
	pointer-events: none;
}
.pointer-events-auto {
	pointer-events: auto;
}
.visible {
	visibility: visible;
}
.\!visible {
	visibility: visible !important;
}
.invisible {
	visibility: hidden;
}
.fixed {
	position: fixed;
}
.absolute {
	position: absolute;
}
.\!absolute {
	position: absolute !important;
}
.relative {
	position: relative;
}
.sticky {
	position: sticky;
}
.inset-0 {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.left-0 {
	left: 0px;
}
.right-\[72px\] {
	right: 72px;
}
.top-\[-10px\] {
	top: -10px;
}
.left-\[50\%\] {
	left: 50%;
}
.bottom-\[25px\] {
	bottom: 25px;
}
.bottom-0 {
	bottom: 0px;
}
.top-0 {
	top: 0px;
}
.right-0 {
	right: 0px;
}
.top-\[38\%\] {
	top: 38%;
}
.left-\[40\%\] {
	left: 40%;
}
.right-\[10px\] {
	right: 10px;
}
.bottom-\[-60\%\] {
	bottom: -60%;
}
.top-\[75px\] {
	top: 75px;
}
.bottom-1 {
	bottom: 0.25rem;
}
.right-\[190px\] {
	right: 190px;
}
.right-\[30px\] {
	right: 30px;
}
.top-\[80px\] {
	top: 80px;
}
.top-\[40px\] {
	top: 40px;
}
.right-12 {
	right: 3rem;
}
.top-\[50px\] {
	top: 50px;
}
.top-\[43px\] {
	top: 43px;
}
.left-\[39px\] {
	left: 39px;
}
.right-\[20px\] {
	right: 20px;
}
.top-\[60px\] {
	top: 60px;
}
.left-\[-57px\] {
	left: -57px;
}
.top-\[100\%\] {
	top: 100%;
}
.left-\[14px\] {
	left: 14px;
}
.left-\[20px\] {
	left: 20px;
}
.top-\[12px\] {
	top: 12px;
}
.top-\[10px\] {
	top: 10px;
}
.top-12 {
	top: 3rem;
}
.right-\[18px\] {
	right: 18px;
}
.left-\[5\%\] {
	left: 5%;
}
.left-\[35\%\] {
	left: 35%;
}
.bottom-\[120px\] {
	bottom: 120px;
}
.top-\[-15px\] {
	top: -15px;
}
.bottom-\[0px\] {
	bottom: 0px;
}
.left-\[-350px\] {
	left: -350px;
}
.right-\[40px\] {
	right: 40px;
}
.top-\[90px\] {
	top: 90px;
}
.top-\[100px\] {
	top: 100px;
}
.right-\[100px\] {
	right: 100px;
}
.top-\[35px\] {
	top: 35px;
}
.left-\[72px\] {
	left: 72px;
}
.right-\[2px\] {
	right: 2px;
}
.\!top-0 {
	top: 0px !important;
}
.bottom-\[45px\] {
	bottom: 45px;
}
.top-\[140px\] {
	top: 140px;
}
.left-\[55px\] {
	left: 55px;
}
.top-1\/2 {
	top: 50%;
}
.left-1\/2 {
	left: 50%;
}
.top-full {
	top: 100%;
}
.right-\[16px\] {
	right: 16px;
}
.bottom-\[20px\] {
	bottom: 20px;
}
.right-\[14px\] {
	right: 14px;
}
.top-\[45px\] {
	top: 45px;
}
.top-\[160px\] {
	top: 160px;
}
.left-\[110px\] {
	left: 110px;
}
.top-\[32px\] {
	top: 32px;
}
.top-\[16px\] {
	top: 16px;
}
.top-\[235px\] {
	top: 235px;
}
.top-\[0px\] {
	top: 0px;
}
.right-\[150px\] {
	right: 150px;
}
.-top-11 {
	top: -2.75rem;
}
.left-\[194px\] {
	left: 194px;
}
.top-\[19px\] {
	top: 19px;
}
.top-\[-70px\] {
	top: -70px;
}
.top-10 {
	top: 2.5rem;
}
.right-2 {
	right: 0.5rem;
}
.\!left-0 {
	left: 0px !important;
}
.\!top-\[-20px\] {
	top: -20px !important;
}
.right-3 {
	right: 0.75rem;
}
.top-\[15px\] {
	top: 15px;
}
.left-\[10px\] {
	left: 10px;
}
.bottom-10 {
	bottom: 2.5rem;
}
.top-\[30\%\] {
	top: 30%;
}
.left-\[45\%\] {
	left: 45%;
}
.top-\[39px\] {
	top: 39px;
}
.top-\[63px\] {
	top: 63px;
}
.top-\[20px\] {
	top: 20px;
}
.left-\[12px\] {
	left: 12px;
}
.z-20 {
	z-index: 20;
}
.z-50 {
	z-index: 50;
}
.z-0 {
	z-index: 0;
}
.z-30 {
	z-index: 30;
}
.z-\[10\] {
	z-index: 10;
}
.z-\[1000\] {
	z-index: 1000;
}
.z-10 {
	z-index: 10;
}
.z-\[50\] {
	z-index: 50;
}
.z-\[10000\] {
	z-index: 10000;
}
.z-\[5\] {
	z-index: 5;
}
.z-\[100\] {
	z-index: 100;
}
.z-\[-1\] {
	z-index: -1;
}
.z-\[100000\] {
	z-index: 100000;
}
.z-\[20\] {
	z-index: 20;
}
.z-\[25\] {
	z-index: 25;
}
.z-\[15\] {
	z-index: 15;
}
.z-\[12\] {
	z-index: 12;
}
.z-\[2\] {
	z-index: 2;
}
.z-\[2002\] {
	z-index: 2002;
}
.z-\[17\] {
	z-index: 17;
}
.m-auto {
	margin: auto;
}
.m-\[1px\] {
	margin: 1px;
}
.m-2 {
	margin: 0.5rem;
}
.m-\[35px\] {
	margin: 35px;
}
.m-4 {
	margin: 1rem;
}
.m-\[20px\] {
	margin: 20px;
}
.my-2 {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
.mx-\[20px\] {
	margin-left: 20px;
	margin-right: 20px;
}
.my-\[11px\] {
	margin-top: 11px;
	margin-bottom: 11px;
}
.mx-\[10px\] {
	margin-left: 10px;
	margin-right: 10px;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mx-6 {
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}
.mx-\[8px\] {
	margin-left: 8px;
	margin-right: 8px;
}
.my-1 {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}
.mx-2 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
.mx-\[6px\] {
	margin-left: 6px;
	margin-right: 6px;
}
.my-\[20px\] {
	margin-top: 20px;
	margin-bottom: 20px;
}
.mx-\[12px\] {
	margin-left: 12px;
	margin-right: 12px;
}
.my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.my-\[25px\] {
	margin-top: 25px;
	margin-bottom: 25px;
}
.mx-\[73px\] {
	margin-left: 73px;
	margin-right: 73px;
}
.mx-\[51px\] {
	margin-left: 51px;
	margin-right: 51px;
}
.mx-\[18px\] {
	margin-left: 18px;
	margin-right: 18px;
}
.my-10 {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}
.mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}
.my-\[24px\] {
	margin-top: 24px;
	margin-bottom: 24px;
}
.my-\[30px\] {
	margin-top: 30px;
	margin-bottom: 30px;
}
.my-6 {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.mx-\[4px\] {
	margin-left: 4px;
	margin-right: 4px;
}
.mx-\[24px\] {
	margin-left: 24px;
	margin-right: 24px;
}
.my-auto {
	margin-top: auto;
	margin-bottom: auto;
}
.mx-\[30px\] {
	margin-left: 30px;
	margin-right: 30px;
}
.my-5 {
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}
.my-8 {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.my-3 {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}
.my-\[10px\] {
	margin-top: 10px;
	margin-bottom: 10px;
}
.my-\[18px\] {
	margin-top: 18px;
	margin-bottom: 18px;
}
.mt-1 {
	margin-top: 0.25rem;
}
.mr-4 {
	margin-right: 1rem;
}
.mr-\[13px\] {
	margin-right: 13px;
}
.mr-\[9px\] {
	margin-right: 9px;
}
.ml-\[-2px\] {
	margin-left: -2px;
}
.mt-\[12px\] {
	margin-top: 12px;
}
.mb-\[24px\] {
	margin-bottom: 24px;
}
.mt-\[20px\] {
	margin-top: 20px;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mt-8 {
	margin-top: 2rem;
}
.mr-2 {
	margin-right: 0.5rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.mb-\[4px\] {
	margin-bottom: 4px;
}
.mt-\[15px\] {
	margin-top: 15px;
}
.mb-\[10px\] {
	margin-bottom: 10px;
}
.mt-\[5px\] {
	margin-top: 5px;
}
.ml-1 {
	margin-left: 0.25rem;
}
.ml-\[73px\] {
	margin-left: 73px;
}
.mt-\[30px\] {
	margin-top: 30px;
}
.ml-\[15px\] {
	margin-left: 15px;
}
.mb-\[6px\] {
	margin-bottom: 6px;
}
.mb-\[20px\] {
	margin-bottom: 20px;
}
.mt-5 {
	margin-top: 1.25rem;
}
.ml-\[10px\] {
	margin-left: 10px;
}
.mt-\[24px\] {
	margin-top: 24px;
}
.mr-\[20px\] {
	margin-right: 20px;
}
.mt-\[50px\] {
	margin-top: 50px;
}
.mb-\[8px\] {
	margin-bottom: 8px;
}
.mb-0\.5 {
	margin-bottom: 0.125rem;
}
.mb-0 {
	margin-bottom: 0px;
}
.mr-1 {
	margin-right: 0.25rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.mb-\[12px\] {
	margin-bottom: 12px;
}
.mt-\[10px\] {
	margin-top: 10px;
}
.mb-\[2px\] {
	margin-bottom: 2px;
}
.ml-\[14px\] {
	margin-left: 14px;
}
.mb-\[16px\] {
	margin-bottom: 16px;
}
.mt-\[18px\] {
	margin-top: 18px;
}
.mt-\[4px\] {
	margin-top: 4px;
}
.ml-\[12px\] {
	margin-left: 12px;
}
.mb-\[15px\] {
	margin-bottom: 15px;
}
.mb-\[1px\] {
	margin-bottom: 1px;
}
.mt-\[34px\] {
	margin-top: 34px;
}
.mt-4 {
	margin-top: 1rem;
}
.ml-6 {
	margin-left: 1.5rem;
}
.mt-6 {
	margin-top: 1.5rem;
}
.ml-\[4px\] {
	margin-left: 4px;
}
.mb-\[50px\] {
	margin-bottom: 50px;
}
.ml-\[20px\] {
	margin-left: 20px;
}
.mr-\[6px\] {
	margin-right: 6px;
}
.mt-\[2px\] {
	margin-top: 2px;
}
.ml-\[-10px\] {
	margin-left: -10px;
}
.ml-\[8px\] {
	margin-left: 8px;
}
.mt-\[-3px\] {
	margin-top: -3px;
}
.mt-\[28px\] {
	margin-top: 28px;
}
.mt-3 {
	margin-top: 0.75rem;
}
.mb-\[3px\] {
	margin-bottom: 3px;
}
.mr-\[8px\] {
	margin-right: 8px;
}
.mb-\[72px\] {
	margin-bottom: 72px;
}
.mr-\[36px\] {
	margin-right: 36px;
}
.ml-3 {
	margin-left: 0.75rem;
}
.ml-\[5px\] {
	margin-left: 5px;
}
.mt-\[16px\] {
	margin-top: 16px;
}
.mr-\[30px\] {
	margin-right: 30px;
}
.mb-\[14px\] {
	margin-bottom: 14px;
}
.ml-\[30px\] {
	margin-left: 30px;
}
.mb-\[5px\] {
	margin-bottom: 5px;
}
.mt-\[11px\] {
	margin-top: 11px;
}
.ml-\[28px\] {
	margin-left: 28px;
}
.mt-\[80px\] {
	margin-top: 80px;
}
.ml-\[calc\(17\%\)\] {
	margin-left: calc(17%);
}
.mb-4 {
	margin-bottom: 1rem;
}
.mr-\[5px\] {
	margin-right: 5px;
}
.mb-\[180px\] {
	margin-bottom: 180px;
}
.ml-\[18px\] {
	margin-left: 18px;
}
.mt-\[26px\] {
	margin-top: 26px;
}
.mt-\[32px\] {
	margin-top: 32px;
}
.mb-\[35px\] {
	margin-bottom: 35px;
}
.mr-\[16px\] {
	margin-right: 16px;
}
.ml-\[16px\] {
	margin-left: 16px;
}
.mr-\[15px\] {
	margin-right: 15px;
}
.mr-\[10px\] {
	margin-right: 10px;
}
.ml-0 {
	margin-left: 0px;
}
.mb-\[45px\] {
	margin-bottom: 45px;
}
.mr-\[0px\] {
	margin-right: 0px;
}
.mt-1\.5 {
	margin-top: 0.375rem;
}
.mt-\[3px\] {
	margin-top: 3px;
}
.mr-10 {
	margin-right: 2.5rem;
}
.mr-6 {
	margin-right: 1.5rem;
}
.mt-\[40px\] {
	margin-top: 40px;
}
.mt-20 {
	margin-top: 5rem;
}
.mr-12 {
	margin-right: 3rem;
}
.mt-7 {
	margin-top: 1.75rem;
}
.mb-\[80px\] {
	margin-bottom: 80px;
}
.mt-\[13px\] {
	margin-top: 13px;
}
.mb-\[30px\] {
	margin-bottom: 30px;
}
.mr-3 {
	margin-right: 0.75rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mb-\[60px\] {
	margin-bottom: 60px;
}
.mb-\[40px\] {
	margin-bottom: 40px;
}
.mb-5 {
	margin-bottom: 1.25rem;
}
.ml-\[180px\] {
	margin-left: 180px;
}
.mb-7 {
	margin-bottom: 1.75rem;
}
.mt-\[19px\] {
	margin-top: 19px;
}
.mt-\[150px\] {
	margin-top: 150px;
}
.mt-\[1px\] {
	margin-top: 1px;
}
.mt-\[-12px\] {
	margin-top: -12px;
}
.mt-\[36px\] {
	margin-top: 36px;
}
.mt-\[7px\] {
	margin-top: 7px;
}
.mr-\[24px\] {
	margin-right: 24px;
}
.mt-0\.5 {
	margin-top: 0.125rem;
}
.mt-0 {
	margin-top: 0px;
}
.mb-\[22px\] {
	margin-bottom: 22px;
}
.mb-\[32px\] {
	margin-bottom: 32px;
}
.ml-\[6px\] {
	margin-left: 6px;
}
.ml-\[24px\] {
	margin-left: 24px;
}
.mb-\[7px\] {
	margin-bottom: 7px;
}
.ml-9 {
	margin-left: 2.25rem;
}
.mb-\[36px\] {
	margin-bottom: 36px;
}
.mb-1 {
	margin-bottom: 0.25rem;
}
.\!ml-0 {
	margin-left: 0px !important;
}
.mt-\[44px\] {
	margin-top: 44px;
}
.ml-7 {
	margin-left: 1.75rem;
}
.ml-5 {
	margin-left: 1.25rem;
}
.ml-auto {
	margin-left: auto;
}
.-ml-1 {
	margin-left: -0.25rem;
}
.mt-\[8px\] {
	margin-top: 8px;
}
.\!mt-\[8px\] {
	margin-top: 8px !important;
}
.mt-\[6px\] {
	margin-top: 6px;
}
.mr-\[35px\] {
	margin-right: 35px;
}
.mr-\[60px\] {
	margin-right: 60px;
}
.mr-52 {
	margin-right: 13rem;
}
.mt-\[68px\] {
	margin-top: 68px;
}
.mr-\[4px\] {
	margin-right: 4px;
}
.mb-\[25px\] {
	margin-bottom: 25px;
}
.ml-\[2px\] {
	margin-left: 2px;
}
.mt-\[14px\] {
	margin-top: 14px;
}
.mt-\[0px\] {
	margin-top: 0px;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.grid {
	display: grid;
}
.contents {
	display: contents;
}
.hidden {
	display: none;
}
.h-\[60px\] {
	height: 60px;
}
.h-\[40px\] {
	height: 40px;
}
.h-\[20px\] {
	height: 20px;
}
.h-\[24px\] {
	height: 24px;
}
.h-\[105px\] {
	height: 105px;
}
.h-\[16px\] {
	height: 16px;
}
.h-\[171px\] {
	height: 171px;
}
.h-\[172px\] {
	height: 172px;
}
.h-\[95px\] {
	height: 95px;
}
.h-\[280px\] {
	height: 280px;
}
.h-\[250px\] {
	height: 250px;
}
.h-auto {
	height: auto;
}
.h-\[calc\(100vh-100px\)\] {
	height: calc(100vh - 100px);
}
.h-\[80px\] {
	height: 80px;
}
.h-\[14px\] {
	height: 14px;
}
.h-\[270px\] {
	height: 270px;
}
.h-\[calc\(100vh-300px\)\] {
	height: calc(100vh - 300px);
}
.h-\[12px\] {
	height: 12px;
}
.h-full {
	height: 100%;
}
.h-\[10px\] {
	height: 10px;
}
.h-\[15px\] {
	height: 15px;
}
.h-\[19px\] {
	height: 19px;
}
.h-\[317px\] {
	height: 317px;
}
.h-\[34px\] {
	height: 34px;
}
.h-\[100px\] {
	height: 100px;
}
.h-\[5px\] {
	height: 5px;
}
.h-\[58px\] {
	height: 58px;
}
.h-\[18px\] {
	height: 18px;
}
.h-\[90\%\] {
	height: 90%;
}
.h-\[fit-content\] {
	height: -moz-fit-content;
	height: fit-content;
}
.h-\[1px\] {
	height: 1px;
}
.h-\[180px\] {
	height: 180px;
}
.h-\[94px\] {
	height: 94px;
}
.h-11 {
	height: 2.75rem;
}
.h-12 {
	height: 3rem;
}
.h-\[150px\] {
	height: 150px;
}
.h-\[130px\] {
	height: 130px;
}
.h-\[44px\] {
	height: 44px;
}
.h-\[30px\] {
	height: 30px;
}
.h-\[48px\] {
	height: 48px;
}
.h-\[23px\] {
	height: 23px;
}
.h-\[calc\(100vh-80px\)\] {
	height: calc(100vh - 80px);
}
.h-screen {
	height: 100vh;
}
.h-\[13px\] {
	height: 13px;
}
.h-\[32px\] {
	height: 32px;
}
.h-\[21px\] {
	height: 21px;
}
.h-\[120px\] {
	height: 120px;
}
.h-\[35px\] {
	height: 35px;
}
.h-\[50px\] {
	height: 50px;
}
.h-\[255px\] {
	height: 255px;
}
.\!h-\[500px\] {
	height: 500px !important;
}
.h-\[51px\] {
	height: 51px;
}
.h-\[12x\] {
	height: 12x;
}
.h-\[4px\] {
	height: 4px;
}
.h-\[36px\] {
	height: 36px;
}
.h-\[200px\] {
	height: 200px;
}
.h-\[54px\] {
	height: 54px;
}
.h-\[calc\(100vh-200px\)\] {
	height: calc(100vh - 200px);
}
.h-\[116px\] {
	height: 116px;
}
.h-\[calc\(100vh-140px\)\] {
	height: calc(100vh - 140px);
}
.h-\[43px\] {
	height: 43px;
}
.h-10 {
	height: 2.5rem;
}
.h-\[300px\] {
	height: 300px;
}
.h-\[calc\(100vh-120px\)\] {
	height: calc(100vh - 120px);
}
.h-\[108px\] {
	height: 108px;
}
.h-\[calc\(100vh-160px\)\] {
	height: calc(100vh - 160px);
}
.h-\[500px\] {
	height: 500px;
}
.h-\[calc\(100\%-100px\)\] {
	height: calc(100% - 100px);
}
.h-\[86px\] {
	height: 86px;
}
.h-6 {
	height: 1.5rem;
}
.h-\[calc\(100vh-330px\)\] {
	height: calc(100vh - 330px);
}
.h-\[calc\(100\%-60px\)\] {
	height: calc(100% - 60px);
}
.h-\[calc\(100vh-110px\)\] {
	height: calc(100vh - 110px);
}
.h-\[350px\] {
	height: 350px;
}
.h-2 {
	height: 0.5rem;
}
.h-\[400px\] {
	height: 400px;
}
.h-\[125px\] {
	height: 125px;
}
.h-\[28px\] {
	height: 28px;
}
.h-\[265px\] {
	height: 265px;
}
.\!h-\[32px\] {
	height: 32px !important;
}
.h-\[72px\] {
	height: 72px;
}
.h-\[160px\] {
	height: 160px;
}
.h-\[calc\(100vh-310px\)\] {
	height: calc(100vh - 310px);
}
.h-\[calc\(100vh-420px\)\] {
	height: calc(100vh - 420px);
}
.h-\[45px\] {
	height: 45px;
}
.h-\[calc\(100vh-350px\)\] {
	height: calc(100vh - 350px);
}
.h-3 {
	height: 0.75rem;
}
.h-\[47px\] {
	height: 47px;
}
.h-\[38px\] {
	height: 38px;
}
.h-\[127px\] {
	height: 127px;
}
.h-\[calc\(100\%-110px\)\] {
	height: calc(100% - 110px);
}
.h-\[100vh\] {
	height: 100vh;
}
.h-\[calc\(100vh-340px\)\] {
	height: calc(100vh - 340px);
}
.h-\[868px\] {
	height: 868px;
}
.h-\[calc\(100vh-60px\)\] {
	height: calc(100vh - 60px);
}
.h-\[748px\] {
	height: 748px;
}
.h-\[687px\] {
	height: 687px;
}
.h-\[290px\] {
	height: 290px;
}
.h-\[calc\(100vh-550px\)\] {
	height: calc(100vh - 550px);
}
.h-\[calc\(100vh-450px\)\] {
	height: calc(100vh - 450px);
}
.\!h-\[400px\] {
	height: 400px !important;
}
.h-\[calc\(100vh-360px\)\] {
	height: calc(100vh - 360px);
}
.h-\[calc\(100\%-200px\)\] {
	height: calc(100% - 200px);
}
.h-\[calc\(60vh\)\] {
	height: calc(60vh);
}
.h-\[calc\(82vh\)\] {
	height: calc(82vh);
}
.h-\[168px\] {
	height: 168px;
}
.h-\[56px\] {
	height: 56px;
}
.h-\[620px\] {
	height: 620px;
}
.h-\[calc\(100vh-400px\)\] {
	height: calc(100vh - 400px);
}
.h-\[110px\] {
	height: 110px;
}
.h-\[22px\] {
	height: 22px;
}
.h-8 {
	height: 2rem;
}
.h-\[25px\] {
	height: 25px;
}
.h-\[330px\] {
	height: 330px;
}
.h-\[100\%\] {
	height: 100%;
}
.h-5 {
	height: 1.25rem;
}
.h-4 {
	height: 1rem;
}
.h-\[700px\] {
	height: 700px;
}
.h-\[calc\(100vh-320px\)\] {
	height: calc(100vh - 320px);
}
.h-\[27px\] {
	height: 27px;
}
.\!h-\[160px\] {
	height: 160px !important;
}
.h-\[85px\] {
	height: 85px;
}
.h-\[calc\(100vh-370px\)\] {
	height: calc(100vh - 370px);
}
.h-\[calc\(100vh-150px\)\] {
	height: calc(100vh - 150px);
}
.h-\[82\%\] {
	height: 82%;
}
.h-\[calc\(100vh-174px\)\] {
	height: calc(100vh - 174px);
}
.h-\[68\%\] {
	height: 68%;
}
.h-\[\$\{minHeight\}\] {
	height: ${minHeight};
}
.\!h-\[200px\] {
	height: 200px !important;
}
.h-\[8px\] {
	height: 8px;
}
.h-\[calc\(100\%-90px\)\] {
	height: calc(100% - 90px);
}
.h-\[565px\] {
	height: 565px;
}
.h-\[320px\] {
	height: 320px;
}
.h-\[92px\] {
	height: 92px;
}
.h-\[42px\] {
	height: 42px;
}
.h-\[calc\(100\%-30px\)\] {
	height: calc(100% - 30px);
}
.max-h-\[200px\] {
	max-height: 200px;
}
.max-h-\[220px\] {
	max-height: 220px;
}
.max-h-\[50px\] {
	max-height: 50px;
}
.max-h-\[320px\] {
	max-height: 320px;
}
.max-h-\[470px\] {
	max-height: 470px;
}
.max-h-\[126px\] {
	max-height: 126px;
}
.max-h-\[255px\] {
	max-height: 255px;
}
.max-h-\[120px\] {
	max-height: 120px;
}
.max-h-\[40px\] {
	max-height: 40px;
}
.max-h-40 {
	max-height: 10rem;
}
.max-h-\[90\%\] {
	max-height: 90%;
}
.max-h-full {
	max-height: 100%;
}
.max-h-\[250px\] {
	max-height: 250px;
}
.max-h-\[100px\] {
	max-height: 100px;
}
.max-h-\[150px\] {
	max-height: 150px;
}
.max-h-\[29px\] {
	max-height: 29px;
}
.max-h-\[70px\] {
	max-height: 70px;
}
.max-h-\[42px\] {
	max-height: 42px;
}
.max-h-\[90px\] {
	max-height: 90px;
}
.max-h-\[452px\] {
	max-height: 452px;
}
.max-h-\[240px\] {
	max-height: 240px;
}
.max-h-\[280px\] {
	max-height: 280px;
}
.max-h-\[calc\(100\%-120px\)\] {
	max-height: calc(100% - 120px);
}
.max-h-\[600px\] {
	max-height: 600px;
}
.max-h-\[46vh\] {
	max-height: 46vh;
}
.max-h-\[calc\(100vh-380px\)\] {
	max-height: calc(100vh - 380px);
}
.max-h-\[350px\] {
	max-height: 350px;
}
.max-h-10 {
	max-height: 2.5rem;
}
.max-h-\[160px\] {
	max-height: 160px;
}
.max-h-\[calc\(100vh-200px\)\] {
	max-height: calc(100vh - 200px);
}
.max-h-\[500px\] {
	max-height: 500px;
}
.max-h-\[calc\(100\%-87px\)\] {
	max-height: calc(100% - 87px);
}
.max-h-\[131px\] {
	max-height: 131px;
}
.max-h-\[290px\] {
	max-height: 290px;
}
.max-h-\[85vh\] {
	max-height: 85vh;
}
.max-h-\[calc\(100vh-355px\)\] {
	max-height: calc(100vh - 355px);
}
.max-h-\[578px\] {
	max-height: 578px;
}
.max-h-\[80\%\] {
	max-height: 80%;
}
.max-h-\[calc\(85px\*5\)\] {
	max-height: calc(85px * 5);
}
.max-h-\[272px\] {
	max-height: 272px;
}
.max-h-\[60vh\] {
	max-height: 60vh;
}
.max-h-\[180px\] {
	max-height: 180px;
}
.\!max-h-\[60vh\] {
	max-height: 60vh !important;
}
.\!max-h-\[95vh\] {
	max-height: 95vh !important;
}
.\!max-h-\[70vh\] {
	max-height: 70vh !important;
}
.max-h-\[300px\] {
	max-height: 300px;
}
.max-h-\[68\%\] {
	max-height: 68%;
}
.max-h-\[58px\] {
	max-height: 58px;
}
.max-h-\[400px\] {
	max-height: 400px;
}
.max-h-\[132px\] {
	max-height: 132px;
}
.max-h-\[550px\] {
	max-height: 550px;
}
.min-h-\[60px\] {
	min-height: 60px;
}
.min-h-\[150px\] {
	min-height: 150px;
}
.min-h-\[50px\] {
	min-height: 50px;
}
.min-h-\[20px\] {
	min-height: 20px;
}
.min-h-\[27px\] {
	min-height: 27px;
}
.min-h-\[10px\] {
	min-height: 10px;
}
.min-h-\[calc\(100vh-160px\)\] {
	min-height: calc(100vh - 160px);
}
.min-h-\[255px\] {
	min-height: 255px;
}
.min-h-\[126px\] {
	min-height: 126px;
}
.min-h-\[45px\] {
	min-height: 45px;
}
.min-h-\[24px\] {
	min-height: 24px;
}
.\!min-h-\[126px\] {
	min-height: 126px !important;
}
.min-h-\[120px\] {
	min-height: 120px;
}
.min-h-\[40px\] {
	min-height: 40px;
}
.min-h-\[264px\] {
	min-height: 264px;
}
.min-h-\[180px\] {
	min-height: 180px;
}
.min-h-\[14px\] {
	min-height: 14px;
}
.min-h-\[520px\] {
	min-height: 520px;
}
.min-h-\[75px\] {
	min-height: 75px;
}
.min-h-\[100px\] {
	min-height: 100px;
}
.min-h-\[35px\] {
	min-height: 35px;
}
.min-h-\[12px\] {
	min-height: 12px;
}
.min-h-\[452px\] {
	min-height: 452px;
}
.min-h-\[30px\] {
	min-height: 30px;
}
.min-h-\[370px\] {
	min-height: 370px;
}
.min-h-screen {
	min-height: 100vh;
}
.min-h-\[calc\(100vh-100px\)\] {
	min-height: calc(100vh - 100px);
}
.min-h-\[calc\(100vh-80px\)\] {
	min-height: calc(100vh - 80px);
}
.min-h-\[calc\(100vh-140px\)\] {
	min-height: calc(100vh - 140px);
}
.min-h-\[calc\(100vh-110px\)\] {
	min-height: calc(100vh - 110px);
}
.min-h-\[calc\(100vh-300px\)\] {
	min-height: calc(100vh - 300px);
}
.min-h-\[265px\] {
	min-height: 265px;
}
.min-h-\[calc\(100\%-100px\)\] {
	min-height: calc(100% - 100px);
}
.min-h-\[230px\] {
	min-height: 230px;
}
.min-h-\[160px\] {
	min-height: 160px;
}
.min-h-\[calc\(100vh-90px\)\] {
	min-height: calc(100vh - 90px);
}
.min-h-\[500px\] {
	min-height: 500px;
}
.min-h-\[600px\] {
	min-height: 600px;
}
.min-h-\[400px\] {
	min-height: 400px;
}
.min-h-\[700px\] {
	min-height: 700px;
}
.min-h-\[calc\(100\%-220px\)\] {
	min-height: calc(100% - 220px);
}
.min-h-\[calc\(90vh\)\] {
	min-height: calc(90vh);
}
.min-h-\[calc\(100vh-174px\)\] {
	min-height: calc(100vh - 174px);
}
.min-h-\[300px\] {
	min-height: 300px;
}
.min-h-\[calc\(100vh-10px\)\] {
	min-height: calc(100vh - 10px);
}
.min-h-\[calc\(70vh\)\] {
	min-height: calc(70vh);
}
.min-h-\[420px\] {
	min-height: 420px;
}
.min-h-\[calc\(100vh-338px\)\] {
	min-height: calc(100vh - 338px);
}
.min-h-\[calc\(100vh-380px\)\] {
	min-height: calc(100vh - 380px);
}
.min-h-\[210px\] {
	min-height: 210px;
}
.min-h-\[calc\(100vh-60px\)\] {
	min-height: calc(100vh - 60px);
}
.min-h-\[calc\(100vh-200px\)\] {
	min-height: calc(100vh - 200px);
}
.min-h-\[350px\] {
	min-height: 350px;
}
.min-h-\[85px\] {
	min-height: 85px;
}
.min-h-\[calc\(100vh-365px\)\] {
	min-height: calc(100vh - 365px);
}
.min-h-\[calc\(100vh-340px\)\] {
	min-height: calc(100vh - 340px);
}
.min-h-\[calc\(100vh-481px\)\] {
	min-height: calc(100vh - 481px);
}
.min-h-\[620px\] {
	min-height: 620px;
}
.min-h-\[550px\] {
	min-height: 550px;
}
.min-h-\[70vh\] {
	min-height: 70vh;
}
.min-h-\[200px\] {
	min-height: 200px;
}
.min-h-\[250px\] {
	min-height: 250px;
}
.min-h-\[132px\] {
	min-height: 132px;
}
.min-h-\[390px\] {
	min-height: 390px;
}
.min-h-\[285px\] {
	min-height: 285px;
}
.w-\[220px\] {
	width: 220px;
}
.w-\[40px\] {
	width: 40px;
}
.w-\[20px\] {
	width: 20px;
}
.w-\[24px\] {
	width: 24px;
}
.w-full {
	width: 100%;
}
.w-\[16px\] {
	width: 16px;
}
.w-5 {
	width: 1.25rem;
}
.w-4 {
	width: 1rem;
}
.w-\[311px\] {
	width: 311px;
}
.w-\[14px\] {
	width: 14px;
}
.w-\[943px\] {
	width: 943px;
}
.w-\[95px\] {
	width: 95px;
}
.w-\[calc\(100vw-70px\)\] {
	width: calc(100vw - 70px);
}
.w-\[200px\] {
	width: 200px;
}
.w-\[9px\] {
	width: 9px;
}
.w-\[calc\(100\%-50px\)\] {
	width: calc(100% - 50px);
}
.w-screen {
	width: 100vw;
}
.w-\[12px\] {
	width: 12px;
}
.w-\[15px\] {
	width: 15px;
}
.w-\[10px\] {
	width: 10px;
}
.w-\[80px\] {
	width: 80px;
}
.w-\[fit-content\] {
	width: -moz-fit-content;
	width: fit-content;
}
.w-auto {
	width: auto;
}
.w-\[7px\] {
	width: 7px;
}
.\!w-\[300px\] {
	width: 300px !important;
}
.w-\[25px\] {
	width: 25px;
}
.w-\[60px\] {
	width: 60px;
}
.w-\[1px\] {
	width: 1px;
}
.w-\[34px\] {
	width: 34px;
}
.w-\[50px\] {
	width: 50px;
}
.w-1\/2 {
	width: 50%;
}
.w-\[150px\] {
	width: 150px;
}
.w-\[18px\] {
	width: 18px;
}
.w-\[90\%\] {
	width: 90%;
}
.w-\[90px\] {
	width: 90px;
}
.w-\[180px\] {
	width: 180px;
}
.w-\[calc\(100\%-240px\)\] {
	width: calc(100% - 240px);
}
.w-\[40vh\] {
	width: 40vh;
}
.w-\[300px\] {
	width: 300px;
}
.w-\[55px\] {
	width: 55px;
}
.w-\[263px\] {
	width: 263px;
}
.w-\[192px\] {
	width: 192px;
}
.w-\[44px\] {
	width: 44px;
}
.w-\[8px\] {
	width: 8px;
}
.w-\[30px\] {
	width: 30px;
}
.w-\[256px\] {
	width: 256px;
}
.w-\[270px\] {
	width: 270px;
}
.w-\[100\%\] {
	width: 100%;
}
.w-\[290px\] {
	width: 290px;
}
.w-\[48px\] {
	width: 48px;
}
.w-\[13px\] {
	width: 13px;
}
.w-\[160px\] {
	width: 160px;
}
.w-\[calc\(70vw\)\] {
	width: calc(70vw);
}
.w-\[21px\] {
	width: 21px;
}
.w-\[258px\] {
	width: 258px;
}
.w-\[82px\] {
	width: 82px;
}
.w-10 {
	width: 2.5rem;
}
.w-\[230px\] {
	width: 230px;
}
.w-\[100px\] {
	width: 100px;
}
.w-max {
	width: -moz-max-content;
	width: max-content;
}
.w-\[60\%\] {
	width: 60%;
}
.w-\[120px\] {
	width: 120px;
}
.w-\[calc\(100\%-134px\)\] {
	width: calc(100% - 134px);
}
.w-\[30\%\] {
	width: 30%;
}
.w-\[70\%\] {
	width: 70%;
}
.w-\[387px\] {
	width: 387px;
}
.\!w-\[700px\] {
	width: 700px !important;
}
.w-\[51px\] {
	width: 51px;
}
.w-80 {
	width: 20rem;
}
.w-\[75px\] {
	width: 75px;
}
.w-\[calc\(100\%-75px\)\] {
	width: calc(100% - 75px);
}
.w-\[calc\(100\%-36px\)\] {
	width: calc(100% - 36px);
}
.w-\[138px\] {
	width: 138px;
}
.\!w-\[200px\] {
	width: 200px !important;
}
.w-\[95\%\] {
	width: 95%;
}
.w-\[170px\] {
	width: 170px;
}
.w-\[346px\] {
	width: 346px;
}
.w-\[182px\] {
	width: 182px;
}
.w-\[calc\(100vw-32px\)\] {
	width: calc(100vw - 32px);
}
.w-\[calc\(100\%-350px\)\] {
	width: calc(100% - 350px);
}
.w-\[116px\] {
	width: 116px;
}
.w-\[32px\] {
	width: 32px;
}
.w-64 {
	width: 16rem;
}
.w-\[85px\] {
	width: 85px;
}
.\!w-\[600px\] {
	width: 600px !important;
}
.w-\[225px\] {
	width: 225px;
}
.w-\[195px\] {
	width: 195px;
}
.w-6 {
	width: 1.5rem;
}
.w-1\/4 {
	width: 25%;
}
.w-3\/4 {
	width: 75%;
}
.w-1\/3 {
	width: 33.333333%;
}
.w-\[260px\] {
	width: 260px;
}
.w-2 {
	width: 0.5rem;
}
.w-\[600px\] {
	width: 600px;
}
.w-\[full\] {
	width: full;
}
.w-\[28px\] {
	width: 28px;
}
.w-\[10\.25rem\] {
	width: 10.25rem;
}
.w-\[calc\(100vw-40px\)\] {
	width: calc(100vw - 40px);
}
.w-\[443px\] {
	width: 443px;
}
.\!w-\[32px\] {
	width: 32px !important;
}
.w-\[72px\] {
	width: 72px;
}
.w-\[50\%\] {
	width: 50%;
}
.w-\[131px\] {
	width: 131px;
}
.w-\[calc\(100vw-50px\)\] {
	width: calc(100vw - 50px);
}
.w-3 {
	width: 0.75rem;
}
.w-\[49px\] {
	width: 49px;
}
.w-\[59px\] {
	width: 59px;
}
.w-\[43px\] {
	width: 43px;
}
.w-\[80\%\] {
	width: 80%;
}
.w-\[100vw\] {
	width: 100vw;
}
.w-\[94px\] {
	width: 94px;
}
.w-\[23px\] {
	width: 23px;
}
.w-2\/3 {
	width: 66.666667%;
}
.w-\[224px\] {
	width: 224px;
}
.w-\[32\%\] {
	width: 32%;
}
.w-\[calc\(50\%-12px\)\] {
	width: calc(50% - 12px);
}
.w-\[345px\] {
	width: 345px;
}
.w-\[900px\] {
	width: 900px;
}
.w-\[185px\] {
	width: 185px;
}
.w-\[165px\] {
	width: 165px;
}
.\!w-full {
	width: 100% !important;
}
.w-\[168px\] {
	width: 168px;
}
.w-\[937px\] {
	width: 937px;
}
.w-\[550px\] {
	width: 550px;
}
.w-\[101px\] {
	width: 101px;
}
.w-\[121px\] {
	width: 121px;
}
.w-\[271px\] {
	width: 271px;
}
.w-\[85vw\] {
	width: 85vw;
}
.w-\[500px\] {
	width: 500px;
}
.w-48 {
	width: 12rem;
}
.w-\[22px\] {
	width: 22px;
}
.\!w-\[852px\] {
	width: 852px !important;
}
.w-\[19px\] {
	width: 19px;
}
.w-\[176px\] {
	width: 176px;
}
.w-\[700px\] {
	width: 700px;
}
.w-\[559px\] {
	width: 559px;
}
.w-\[40\%\] {
	width: 40%;
}
.w-4\/5 {
	width: 80%;
}
.w-\[400px\] {
	width: 400px;
}
.w-\[20\%\] {
	width: 20%;
}
.w-\[143px\] {
	width: 143px;
}
.w-\[55\%\] {
	width: 55%;
}
.w-\[474px\] {
	width: 474px;
}
.w-\[782px\] {
	width: 782px;
}
.w-\[350px\] {
	width: 350px;
}
.w-\[259px\] {
	width: 259px;
}
.\!w-\[850px\] {
	width: 850px !important;
}
.w-\[96\%\] {
	width: 96%;
}
.w-\[390px\] {
	width: 390px;
}
.w-\[140px\] {
	width: 140px;
}
.w-\[10\%\] {
	width: 10%;
}
.w-\[92px\] {
	width: 92px;
}
.w-min {
	width: -moz-min-content;
	width: min-content;
}
.w-\[310px\] {
	width: 310px;
}
.min-w-\[230px\] {
	min-width: 230px;
}
.min-w-\[10px\] {
	min-width: 10px;
}
.\!min-w-\[100px\] {
	min-width: 100px !important;
}
.\!min-w-\[150px\] {
	min-width: 150px !important;
}
.min-w-\[24px\] {
	min-width: 24px;
}
.min-w-full {
	min-width: 100%;
}
.min-w-\[34px\] {
	min-width: 34px;
}
.min-w-\[150px\] {
	min-width: 150px;
}
.min-w-0 {
	min-width: 0px;
}
.min-w-\[180px\] {
	min-width: 180px;
}
.min-w-\[14px\] {
	min-width: 14px;
}
.min-w-\[2\%\] {
	min-width: 2%;
}
.min-w-\[340px\] {
	min-width: 340px;
}
.min-w-\[160px\] {
	min-width: 160px;
}
.min-w-\[110px\] {
	min-width: 110px;
}
.min-w-\[300px\] {
	min-width: 300px;
}
.min-w-\[175px\] {
	min-width: 175px;
}
.min-w-\[100px\] {
	min-width: 100px;
}
.min-w-\[120px\] {
	min-width: 120px;
}
.min-w-\[1px\] {
	min-width: 1px;
}
.min-w-\[250px\] {
	min-width: 250px;
}
.min-w-\[95px\] {
	min-width: 95px;
}
.min-w-\[12px\] {
	min-width: 12px;
}
.min-w-\[16px\] {
	min-width: 16px;
}
.\!min-w-\[700px\] {
	min-width: 700px !important;
}
.min-w-\[190px\] {
	min-width: 190px;
}
.min-w-\[350px\] {
	min-width: 350px;
}
.min-w-\[225px\] {
	min-width: 225px;
}
.min-w-\[60px\] {
	min-width: 60px;
}
.min-w-min {
	min-width: -moz-min-content;
	min-width: min-content;
}
.min-w-\[603px\] {
	min-width: 603px;
}
.min-w-\[200px\] {
	min-width: 200px;
}
.min-w-max {
	min-width: -moz-max-content;
	min-width: max-content;
}
.min-w-\[80px\] {
	min-width: 80px;
}
.min-w-\[40px\] {
	min-width: 40px;
}
.min-w-\[1\%\] {
	min-width: 1%;
}
.min-w-\[750px\] {
	min-width: 750px;
}
.min-w-\[360px\] {
	min-width: 360px;
}
.min-w-\[780px\] {
	min-width: 780px;
}
.min-w-\[650px\] {
	min-width: 650px;
}
.min-w-\[32px\] {
	min-width: 32px;
}
.\!min-w-\[600px\] {
	min-width: 600px !important;
}
.min-w-\[444px\] {
	min-width: 444px;
}
.min-w-\[420px\] {
	min-width: 420px;
}
.\!min-w-\[750px\] {
	min-width: 750px !important;
}
.\!min-w-full {
	min-width: 100% !important;
}
.min-w-\[320px\] {
	min-width: 320px;
}
.max-w-\[600px\] {
	max-width: 600px;
}
.max-w-\[135px\] {
	max-width: 135px;
}
.max-w-\[240px\] {
	max-width: 240px;
}
.max-w-\[200px\] {
	max-width: 200px;
}
.max-w-2xl {
	max-width: 42rem;
}
.max-w-\[90\%\] {
	max-width: 90%;
}
.max-w-\[800px\] {
	max-width: 800px;
}
.max-w-\[120px\] {
	max-width: 120px;
}
.max-w-\[400px\] {
	max-width: 400px;
}
.max-w-\[calc\(100\%-80px\)\] {
	max-width: calc(100% - 80px);
}
.max-w-\[160px\] {
	max-width: 160px;
}
.max-w-\[180px\] {
	max-width: 180px;
}
.max-w-\[300px\] {
	max-width: 300px;
}
.max-w-\[150px\] {
	max-width: 150px;
}
.max-w-\[calc\(100vw-550px\)\] {
	max-width: calc(100vw - 550px);
}
.\!max-w-\[700px\] {
	max-width: 700px !important;
}
.max-w-\[450px\] {
	max-width: 450px;
}
.max-w-\[225px\] {
	max-width: 225px;
}
.max-w-\[calc\(100\%-75px\)\] {
	max-width: calc(100% - 75px);
}
.\!max-w-\[100\%\] {
	max-width: 100% !important;
}
.max-w-\[100px\] {
	max-width: 100px;
}
.max-w-full {
	max-width: 100%;
}
.max-w-\[90vw\] {
	max-width: 90vw;
}
.max-w-\[730px\] {
	max-width: 730px;
}
.max-w-\[50\%\] {
	max-width: 50%;
}
.max-w-\[500px\] {
	max-width: 500px;
}
.max-w-min {
	max-width: -moz-min-content;
	max-width: min-content;
}
.max-w-max {
	max-width: -moz-max-content;
	max-width: max-content;
}
.max-w-5xl {
	max-width: 64rem;
}
.\!max-w-\[850px\] {
	max-width: 850px !important;
}
.\!max-w-\[600px\] {
	max-width: 600px !important;
}
.max-w-\[35\%\] {
	max-width: 35%;
}
.\!max-w-\[750px\] {
	max-width: 750px !important;
}
.flex-1 {
	flex: 1 1 0%;
}
.flex-shrink {
	flex-shrink: 1;
}
.flex-shrink-0 {
	flex-shrink: 0;
}
.flex-grow {
	flex-grow: 1;
}
.translate-x-0 {
	--tw-translate-x: 0px;
	transform: var(--tw-transform);
}
.translate-x-full {
	--tw-translate-x: 100%;
	transform: var(--tw-transform);
}
.rotate-180 {
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}
.transform {
	transform: var(--tw-transform);
}
.cursor-auto {
	cursor: auto;
}
.cursor-pointer {
	cursor: pointer;
}
.cursor-default {
	cursor: default;
}
.cursor-not-allowed {
	cursor: not-allowed;
}
.\!cursor-not-allowed {
	cursor: not-allowed !important;
}
.select-all {
	-webkit-user-select: all;
	   -moz-user-select: all;
	        user-select: all;
}
.resize {
	resize: both;
}
.list-inside {
	list-style-position: inside;
}
.list-none {
	list-style-type: none;
}
.list-disc {
	list-style-type: disc;
}
.flex-row {
	flex-direction: row;
}
.flex-col {
	flex-direction: column;
}
.flex-col-reverse {
	flex-direction: column-reverse;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-nowrap {
	flex-wrap: nowrap;
}
.content-center {
	align-content: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.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-around {
	justify-content: space-around;
}
.justify-evenly {
	justify-content: space-evenly;
}
.gap-\[15px\] {
	gap: 15px;
}
.gap-\[6px\] {
	gap: 6px;
}
.gap-\[5px\] {
	gap: 5px;
}
.gap-\[27px\] {
	gap: 27px;
}
.gap-\[40px\] {
	gap: 40px;
}
.gap-\[36px\] {
	gap: 36px;
}
.gap-\[18px\] {
	gap: 18px;
}
.gap-\[10px\] {
	gap: 10px;
}
.gap-\[20px\] {
	gap: 20px;
}
.gap-\[16px\] {
	gap: 16px;
}
.gap-\[14px\] {
	gap: 14px;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-\[2px\] {
	gap: 2px;
}
.gap-\[12px\] {
	gap: 12px;
}
.gap-\[4px\] {
	gap: 4px;
}
.gap-\[60px\] {
	gap: 60px;
}
.gap-\[8px\] {
	gap: 8px;
}
.gap-4 {
	gap: 1rem;
}
.gap-5 {
	gap: 1.25rem;
}
.gap-\[30px\] {
	gap: 30px;
}
.gap-\[9px\] {
	gap: 9px;
}
.gap-\[25px\] {
	gap: 25px;
}
.gap-1 {
	gap: 0.25rem;
}
.gap-\[22px\] {
	gap: 22px;
}
.gap-\[13px\] {
	gap: 13px;
}
.gap-\[32px\] {
	gap: 32px;
}
.gap-\[7px\] {
	gap: 7px;
}
.gap-\[24px\] {
	gap: 24px;
}
.gap-\[26px\] {
	gap: 26px;
}
.gap-\[100px\] {
	gap: 100px;
}
.gap-\[50px\] {
	gap: 50px;
}
.gap-\[3\.75rem\] {
	gap: 3.75rem;
}
.gap-3 {
	gap: 0.75rem;
}
.gap-\[28px\] {
	gap: 28px;
}
.gap-6 {
	gap: 1.5rem;
}
.gap-\[55px\] {
	gap: 55px;
}
.gap-\[3px\] {
	gap: 3px;
}
.gap-8 {
	gap: 2rem;
}
.gap-20 {
	gap: 5rem;
}
.gap-\[21px\] {
	gap: 21px;
}
.gap-10 {
	gap: 2.5rem;
}
.gap-\[47px\] {
	gap: 47px;
}
.gap-\[70px\] {
	gap: 70px;
}
.gap-x-\[20px\] {
	-moz-column-gap: 20px;
	     column-gap: 20px;
}
.gap-y-\[100px\] {
	row-gap: 100px;
}
.gap-x-\[15px\] {
	-moz-column-gap: 15px;
	     column-gap: 15px;
}
.gap-y-2 {
	row-gap: 0.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1.5rem * var(--tw-space-y-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-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-1 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(0.25rem * 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));
}
.self-start {
	align-self: flex-start;
}
.self-end {
	align-self: flex-end;
}
.self-center {
	align-self: center;
}
.overflow-auto {
	overflow: auto;
}
.\!overflow-auto {
	overflow: auto !important;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-visible {
	overflow: visible;
}
.overflow-x-auto {
	overflow-x: auto;
}
.overflow-y-auto {
	overflow-y: auto;
}
.overflow-x-hidden {
	overflow-x: hidden;
}
.overflow-y-hidden {
	overflow-y: hidden;
}
.overflow-x-visible {
	overflow-x: visible;
}
.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.overflow-ellipsis {
	text-overflow: ellipsis;
}
.whitespace-normal {
	white-space: normal;
}
.whitespace-nowrap {
	white-space: nowrap;
}
.whitespace-pre-wrap {
	white-space: pre-wrap;
}
.rounded-\[6px\] {
	border-radius: 6px;
}
.rounded-full {
	border-radius: 9999px;
}
.rounded-lg {
	border-radius: 0.5rem;
}
.rounded-\[10px\] {
	border-radius: 10px;
}
.rounded-\[14px\] {
	border-radius: 14px;
}
.rounded-\[8px\] {
	border-radius: 8px;
}
.rounded-\[67px\] {
	border-radius: 67px;
}
.rounded-xl {
	border-radius: 0.75rem;
}
.rounded-\[16px\] {
	border-radius: 16px;
}
.rounded-\[45px\] {
	border-radius: 45px;
}
.rounded-\[50px\] {
	border-radius: 50px;
}
.\!rounded-none {
	border-radius: 0px !important;
}
.rounded-\[7px\] {
	border-radius: 7px;
}
.rounded-\[30px\] {
	border-radius: 30px;
}
.rounded-\[4px\] {
	border-radius: 4px;
}
.rounded-md {
	border-radius: 0.375rem;
}
.rounded-\[12px\] {
	border-radius: 12px;
}
.rounded-\[3px\] {
	border-radius: 3px;
}
.rounded-\[41px\] {
	border-radius: 41px;
}
.rounded-\[37px\] {
	border-radius: 37px;
}
.rounded-\[46px\] {
	border-radius: 46px;
}
.rounded-sm {
	border-radius: 0.125rem;
}
.rounded-\[62px\] {
	border-radius: 62px;
}
.rounded-\[2px\] {
	border-radius: 2px;
}
.rounded-\[5px\] {
	border-radius: 5px;
}
.rounded-\[9px\] {
	border-radius: 9px;
}
.rounded-\[10\.5px\] {
	border-radius: 10.5px;
}
.rounded-\[32px\] {
	border-radius: 32px;
}
.\!rounded-full {
	border-radius: 9999px !important;
}
.rounded-none {
	border-radius: 0px;
}
.rounded-\[27px\] {
	border-radius: 27px;
}
.\!rounded-\[14px\] {
	border-radius: 14px !important;
}
.rounded-\[55px\] {
	border-radius: 55px;
}
.rounded-\[50\%\] {
	border-radius: 50%;
}
.rounded-\[px\] {
	border-radius: px;
}
.rounded-\[48px\] {
	border-radius: 48px;
}
.rounded-\[60px\] {
	border-radius: 60px;
}
.rounded-\[85px\] {
	border-radius: 85px;
}
.rounded {
	border-radius: 0.25rem;
}
.rounded-\[20px\] {
	border-radius: 20px;
}
.rounded-r-lg {
	border-top-right-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
}
.rounded-t-\[12px\] {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.rounded-b-none {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.rounded-l-full {
	border-top-left-radius: 9999px;
	border-bottom-left-radius: 9999px;
}
.rounded-r-full {
	border-top-right-radius: 9999px;
	border-bottom-right-radius: 9999px;
}
.rounded-t-\[4px\] {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}
.rounded-l-\[4px\] {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.rounded-r-\[4px\] {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.rounded-t-lg {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}
.rounded-t-\[16px\] {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.rounded-l-md {
	border-top-left-radius: 0.375rem;
	border-bottom-left-radius: 0.375rem;
}
.rounded-r-md {
	border-top-right-radius: 0.375rem;
	border-bottom-right-radius: 0.375rem;
}
.\!rounded-r-\[0px\] {
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}
.\!rounded-l-\[0px\] {
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}
.rounded-tr-\[6px\] {
	border-top-right-radius: 6px;
}
.rounded-bl-\[6px\] {
	border-bottom-left-radius: 6px;
}
.rounded-br-\[8px\] {
	border-bottom-right-radius: 8px;
}
.rounded-tl-\[8px\] {
	border-top-left-radius: 8px;
}
.rounded-tr-\[7px\] {
	border-top-right-radius: 7px;
}
.rounded-bl-\[7px\] {
	border-bottom-left-radius: 7px;
}
.rounded-tl-\[6px\] {
	border-top-left-radius: 6px;
}
.rounded-br-\[6px\] {
	border-bottom-right-radius: 6px;
}
.rounded-tl-lg {
	border-top-left-radius: 0.5rem;
}
.rounded-br-lg {
	border-bottom-right-radius: 0.5rem;
}
.rounded-br-\[16px\] {
	border-bottom-right-radius: 16px;
}
.rounded-br-\[12px\] {
	border-bottom-right-radius: 12px;
}
.rounded-tl-\[12px\] {
	border-top-left-radius: 12px;
}
.border-\[1px\] {
	border-width: 1px;
}
.border {
	border-width: 1px;
}
.border-2 {
	border-width: 2px;
}
.border-\[1\.5px\] {
	border-width: 1.5px;
}
.border-\[2px\] {
	border-width: 2px;
}
.border-\[3px\] {
	border-width: 3px;
}
.border-b-\[1px\] {
	border-bottom-width: 1px;
}
.border-l-\[4px\] {
	border-left-width: 4px;
}
.border-t-\[1px\] {
	border-top-width: 1px;
}
.border-r-\[1px\] {
	border-right-width: 1px;
}
.border-l-2 {
	border-left-width: 2px;
}
.border-b {
	border-bottom-width: 1px;
}
.border-b-\[3px\] {
	border-bottom-width: 3px;
}
.border-t {
	border-top-width: 1px;
}
.border-l-\[1px\] {
	border-left-width: 1px;
}
.border-b-2 {
	border-bottom-width: 2px;
}
.border-b-\[50px\] {
	border-bottom-width: 50px;
}
.border-solid {
	border-style: solid;
}
.border-dashed {
	border-style: dashed;
}
.border-\[\#E8E8E8\] {
	--tw-border-opacity: 1;
	border-color: rgba(232, 232, 232, var(--tw-border-opacity));
}
.border-\[\#3878f6\] {
	--tw-border-opacity: 1;
	border-color: rgba(56, 120, 246, var(--tw-border-opacity));
}
.border-\[\#EBEBEC\] {
	--tw-border-opacity: 1;
	border-color: rgba(235, 235, 236, var(--tw-border-opacity));
}
.border-\[\#E9E9E9\] {
	--tw-border-opacity: 1;
	border-color: rgba(233, 233, 233, var(--tw-border-opacity));
}
.border-\[\#EBEBECCC\] {
	border-color: #EBEBECCC;
}
.border-\[\#3878F6\] {
	--tw-border-opacity: 1;
	border-color: rgba(56, 120, 246, var(--tw-border-opacity));
}
.border-\[\#D7D7E9\] {
	--tw-border-opacity: 1;
	border-color: rgba(215, 215, 233, var(--tw-border-opacity));
}
.border-\[\#727782\] {
	--tw-border-opacity: 1;
	border-color: rgba(114, 119, 130, var(--tw-border-opacity));
}
.border-gray-100 {
	--tw-border-opacity: 1;
	border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}
.border-\[\#AAAAAA\] {
	--tw-border-opacity: 1;
	border-color: rgba(170, 170, 170, var(--tw-border-opacity));
}
.border-\[\#E5E6E7\] {
	--tw-border-opacity: 1;
	border-color: rgba(229, 230, 231, var(--tw-border-opacity));
}
.border-\[\#FFFFFF\] {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-\[rgba\(235\2c 235\2c 236\2c 0\.8\)\] {
	border-color: rgba(235,235,236,0.8);
}
.border-\[\#DFDEE3\] {
	--tw-border-opacity: 1;
	border-color: rgba(223, 222, 227, var(--tw-border-opacity));
}
.border-\[\#F0F0F0\] {
	--tw-border-opacity: 1;
	border-color: rgba(240, 240, 240, var(--tw-border-opacity));
}
.border-\[\#3F80F6\] {
	--tw-border-opacity: 1;
	border-color: rgba(63, 128, 246, var(--tw-border-opacity));
}
.border-\[rgba\(215\2c 215\2c 233\2c 1\)\] {
	border-color: rgba(215,215,233,1);
}
.border-\[rgba\(58\2c 57\2c 57\2c 0\.5\)\] {
	border-color: rgba(58,57,57,0.5);
}
.border-\[\#EB3338\] {
	--tw-border-opacity: 1;
	border-color: rgba(235, 51, 56, var(--tw-border-opacity));
}
.border-\[\#EDEEF1\] {
	--tw-border-opacity: 1;
	border-color: rgba(237, 238, 241, var(--tw-border-opacity));
}
.border-\[rgba\(196\2c 196\2c 196\2c 0\.9\)\] {
	border-color: rgba(196,196,196,0.9);
}
.border-\[\#EEEEEE\] {
	--tw-border-opacity: 1;
	border-color: rgba(238, 238, 238, var(--tw-border-opacity));
}
.border-\[\#82828240\] {
	border-color: #82828240;
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.4\)\] {
	border-color: rgba(255,255,255,0.4);
}
.border-\[\#EAF1FF\] {
	--tw-border-opacity: 1;
	border-color: rgba(234, 241, 255, var(--tw-border-opacity));
}
.border-\[rgba\(116\2c 120\2c 141\2c 0\.5\)\] {
	border-color: rgba(116,120,141,0.5);
}
.border-\[\#DADADA\] {
	--tw-border-opacity: 1;
	border-color: rgba(218, 218, 218, var(--tw-border-opacity));
}
.border-\[\#E7EAF1\] {
	--tw-border-opacity: 1;
	border-color: rgba(231, 234, 241, var(--tw-border-opacity));
}
.border-\[\#474D50\] {
	--tw-border-opacity: 1;
	border-color: rgba(71, 77, 80, var(--tw-border-opacity));
}
.border-\[\#EDEDED\] {
	--tw-border-opacity: 1;
	border-color: rgba(237, 237, 237, var(--tw-border-opacity));
}
.\!border-\[\#D7D7E9\] {
	--tw-border-opacity: 1 !important;
	border-color: rgba(215, 215, 233, var(--tw-border-opacity)) !important;
}
.\!border-\[\#C5C5C5\] {
	--tw-border-opacity: 1 !important;
	border-color: rgba(197, 197, 197, var(--tw-border-opacity)) !important;
}
.border-gray-300 {
	--tw-border-opacity: 1;
	border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}
.border-\[\#ECECEC\] {
	--tw-border-opacity: 1;
	border-color: rgba(236, 236, 236, var(--tw-border-opacity));
}
.border-\[\#EB9B42\] {
	--tw-border-opacity: 1;
	border-color: rgba(235, 155, 66, var(--tw-border-opacity));
}
.border-\[\#24C276\] {
	--tw-border-opacity: 1;
	border-color: rgba(36, 194, 118, var(--tw-border-opacity));
}
.border-\[\#007BFF\] {
	--tw-border-opacity: 1;
	border-color: rgba(0, 123, 255, var(--tw-border-opacity));
}
.border-gray-200 {
	--tw-border-opacity: 1;
	border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
.border-\[\#82828233\] {
	border-color: #82828233;
}
.border-\[\#d4d4d4\] {
	--tw-border-opacity: 1;
	border-color: rgba(212, 212, 212, var(--tw-border-opacity));
}
.border-\[\#e1e1e1\] {
	--tw-border-opacity: 1;
	border-color: rgba(225, 225, 225, var(--tw-border-opacity));
}
.border-\[\#E0E0E0\] {
	--tw-border-opacity: 1;
	border-color: rgba(224, 224, 224, var(--tw-border-opacity));
}
.border-\[\#D9D9D9\] {
	--tw-border-opacity: 1;
	border-color: rgba(217, 217, 217, var(--tw-border-opacity));
}
.border-\[rgba\(255\2c 255\2c 255\2c 0\.8\)\] {
	border-color: rgba(255,255,255,0.8);
}
.border-b-\[\#E8E8E8\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(232, 232, 232, var(--tw-border-opacity));
}
.border-t-\[\#E0E0E0\] {
	--tw-border-opacity: 1;
	border-top-color: rgba(224, 224, 224, var(--tw-border-opacity));
}
.border-b-\[\#F0F0F0\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(240, 240, 240, var(--tw-border-opacity));
}
.border-r-\[\#E9E9E9\] {
	--tw-border-opacity: 1;
	border-right-color: rgba(233, 233, 233, var(--tw-border-opacity));
}
.border-b-\[\#D7D7E9\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(215, 215, 233, var(--tw-border-opacity));
}
.border-b-\[\#EDEDED\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(237, 237, 237, var(--tw-border-opacity));
}
.border-t-\[\#D9D9D9\] {
	--tw-border-opacity: 1;
	border-top-color: rgba(217, 217, 217, var(--tw-border-opacity));
}
.border-b-\[\#D9D9D9\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(217, 217, 217, var(--tw-border-opacity));
}
.border-t-\[\#EBECEC\] {
	--tw-border-opacity: 1;
	border-top-color: rgba(235, 236, 236, var(--tw-border-opacity));
}
.border-b-\[\#EAF1FF\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(234, 241, 255, var(--tw-border-opacity));
}
.border-b-\[\#3878F6\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(56, 120, 246, var(--tw-border-opacity));
}
.border-r-\[\#F0F0F0\] {
	--tw-border-opacity: 1;
	border-right-color: rgba(240, 240, 240, var(--tw-border-opacity));
}
.border-b-\[rgba\(181\2c 181\2c 181\2c 0\.4\)\] {
	border-bottom-color: rgba(181,181,181,0.4);
}
.border-b-\[\#EBECEC\] {
	--tw-border-opacity: 1;
	border-bottom-color: rgba(235, 236, 236, var(--tw-border-opacity));
}
.border-b-\[rgb\(0\2c 0\2c 0\2c 0\.5\)\] {
	border-bottom-color: rgb(0,0,0,0.5);
}
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-\[\#007AFF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 122, 255, var(--tw-bg-opacity));
}
.bg-\[\#EB9B42\] {
	--tw-bg-opacity: 1;
	background-color: rgba(235, 155, 66, var(--tw-bg-opacity));
}
.bg-\[\#3878F6\] {
	--tw-bg-opacity: 1;
	background-color: rgba(56, 120, 246, var(--tw-bg-opacity));
}
.bg-\[white\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-\[\#f5f8ff\] {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 248, 255, var(--tw-bg-opacity));
}
.bg-\[\#FFFFFF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-\[\#8E8E8E\] {
	--tw-bg-opacity: 1;
	background-color: rgba(142, 142, 142, var(--tw-bg-opacity));
}
.bg-\[\#F5F8FF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 248, 255, var(--tw-bg-opacity));
}
.bg-\[\#81858A\] {
	--tw-bg-opacity: 1;
	background-color: rgba(129, 133, 138, var(--tw-bg-opacity));
}
.bg-\[\#D7E4FD\] {
	--tw-bg-opacity: 1;
	background-color: rgba(215, 228, 253, var(--tw-bg-opacity));
}
.bg-\[\#33393C\] {
	--tw-bg-opacity: 1;
	background-color: rgba(51, 57, 60, var(--tw-bg-opacity));
}
.bg-\[\#D9D9D9\] {
	--tw-bg-opacity: 1;
	background-color: rgba(217, 217, 217, var(--tw-bg-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.16\)\] {
	background-color: rgba(0,0,0,0.16);
}
.bg-\[\#E3ECFF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(227, 236, 255, var(--tw-bg-opacity));
}
.bg-\[rgb\(71\2c 70\2c 80\)\] {
	--tw-bg-opacity: 1;
	background-color: rgba(71, 70, 80, var(--tw-bg-opacity));
}
.bg-\[\#EAF4FD\] {
	--tw-bg-opacity: 1;
	background-color: rgba(234, 244, 253, var(--tw-bg-opacity));
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.1\)\] {
	background-color: rgba(56,120,246,0.1);
}
.bg-\[\#65D6EF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(101, 214, 239, var(--tw-bg-opacity));
}
.bg-\[\#85A2EE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(133, 162, 238, var(--tw-bg-opacity));
}
.bg-\[\#FFAC7E\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 172, 126, var(--tw-bg-opacity));
}
.bg-\[\#94E298\] {
	--tw-bg-opacity: 1;
	background-color: rgba(148, 226, 152, var(--tw-bg-opacity));
}
.bg-\[\#FFA7A7\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 167, 167, var(--tw-bg-opacity));
}
.bg-gray-50 {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.bg-\[\#3F80F6\] {
	--tw-bg-opacity: 1;
	background-color: rgba(63, 128, 246, var(--tw-bg-opacity));
}
.bg-\[rgba\(52\2c 195\2c 143\2c 0\.2\)\] {
	background-color: rgba(52,195,143,0.2);
}
.bg-\[rgba\(235\2c 134\2c 103\2c 0\.2\)\] {
	background-color: rgba(235,134,103,0.2);
}
.bg-\[\#DE9C39BF\] {
	background-color: #DE9C39BF;
}
.bg-\[\#24C276\] {
	--tw-bg-opacity: 1;
	background-color: rgba(36, 194, 118, var(--tw-bg-opacity));
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.15\)\] {
	background-color: rgba(56,120,246,0.15);
}
.bg-\[\#F5F7F8\] {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 247, 248, var(--tw-bg-opacity));
}
.bg-\[\#E2615B\] {
	--tw-bg-opacity: 1;
	background-color: rgba(226, 97, 91, var(--tw-bg-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.4\)\] {
	background-color: rgba(0,0,0,0.4);
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.04\)\] {
	background-color: rgba(56,120,246,0.04);
}
.bg-\[\#fff\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-\[\#4AA24C\] {
	--tw-bg-opacity: 1;
	background-color: rgba(74, 162, 76, var(--tw-bg-opacity));
}
.bg-\[\#E26B6E\] {
	--tw-bg-opacity: 1;
	background-color: rgba(226, 107, 110, var(--tw-bg-opacity));
}
.bg-\[\#E1EBFE99\] {
	background-color: #E1EBFE99;
}
.bg-\[\#3878F6CC\] {
	background-color: #3878F6CC;
}
.bg-\[\#FFFDEF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 253, 239, var(--tw-bg-opacity));
}
.bg-\[\#E3EBFD\] {
	--tw-bg-opacity: 1;
	background-color: rgba(227, 235, 253, var(--tw-bg-opacity));
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.05\)\] {
	background-color: rgba(56,120,246,0.05);
}
.bg-\[\#ECF3FF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(236, 243, 255, var(--tw-bg-opacity));
}
.bg-blue-600 {
	--tw-bg-opacity: 1;
	background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}
.bg-\[\#F9F9F9\] {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 249, 249, var(--tw-bg-opacity));
}
.bg-\[rgba\(225\2c 235\2c 254\2c 1\)\] {
	background-color: rgba(225,235,254,1);
}
.bg-\[rgba\(245\2c 248\2c 255\2c 0\.7\)\] {
	background-color: rgba(245,248,255,0.7);
}
.bg-green-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}
.bg-blue-500 {
	--tw-bg-opacity: 1;
	background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}
.bg-\[\#FBEAE9\] {
	--tw-bg-opacity: 1;
	background-color: rgba(251, 234, 233, var(--tw-bg-opacity));
}
.bg-\[\#FFF4E5\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 244, 229, var(--tw-bg-opacity));
}
.bg-\[\#E8F0FE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(232, 240, 254, var(--tw-bg-opacity));
}
.bg-\[\#E6F4EA\] {
	--tw-bg-opacity: 1;
	background-color: rgba(230, 244, 234, var(--tw-bg-opacity));
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.2\)\] {
	background-color: rgba(255,255,255,0.2);
}
.bg-\[rgba\(10\2c 10\2c 10\2c 0\.5\)\] {
	background-color: rgba(10,10,10,0.5);
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.7\)\] {
	background-color: rgba(255,255,255,0.7);
}
.bg-\[\#EB3338\] {
	--tw-bg-opacity: 1;
	background-color: rgba(235, 51, 56, var(--tw-bg-opacity));
}
.bg-\[\#E3E4E5\] {
	--tw-bg-opacity: 1;
	background-color: rgba(227, 228, 229, var(--tw-bg-opacity));
}
.bg-\[\#FFCD1D\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 205, 29, var(--tw-bg-opacity));
}
.bg-\[\#FDF6E8\] {
	--tw-bg-opacity: 1;
	background-color: rgba(253, 246, 232, var(--tw-bg-opacity));
}
.bg-\[\#FDE8E8\] {
	--tw-bg-opacity: 1;
	background-color: rgba(253, 232, 232, var(--tw-bg-opacity));
}
.bg-\[\#68B266\] {
	--tw-bg-opacity: 1;
	background-color: rgba(104, 178, 102, var(--tw-bg-opacity));
}
.bg-\[rgba\(36\2c 194\2c 118\2c 0\.05\)\] {
	background-color: rgba(36,194,118,0.05);
}
.bg-\[rgba\(235\2c 155\2c 66\2c 0\.05\)\] {
	background-color: rgba(235,155,66,0.05);
}
.bg-\[rgba\(235\2c 51\2c 56\2c 0\.05\)\] {
	background-color: rgba(235,51,56,0.05);
}
.bg-\[\#E8EEFC\] {
	--tw-bg-opacity: 1;
	background-color: rgba(232, 238, 252, var(--tw-bg-opacity));
}
.bg-\[rgba\(225\2c 235\2c 254\2c 0\.7\)\] {
	background-color: rgba(225,235,254,0.7);
}
.bg-\[\#474D50\] {
	--tw-bg-opacity: 1;
	background-color: rgba(71, 77, 80, var(--tw-bg-opacity));
}
.bg-\[\#FFF5DA\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 245, 218, var(--tw-bg-opacity));
}
.bg-\[\#F0FFDE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(240, 255, 222, var(--tw-bg-opacity));
}
.bg-\[\#D7D7E9\] {
	--tw-bg-opacity: 1;
	background-color: rgba(215, 215, 233, var(--tw-bg-opacity));
}
.bg-\[\#E0F2FF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(224, 242, 255, var(--tw-bg-opacity));
}
.bg-\[\#FFECE5\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 236, 229, var(--tw-bg-opacity));
}
.bg-\[\#FFF8EE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 248, 238, var(--tw-bg-opacity));
}
.bg-\[\#F5FFF1\] {
	--tw-bg-opacity: 1;
	background-color: rgba(245, 255, 241, var(--tw-bg-opacity));
}
.bg-\[\#E7F3FF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(231, 243, 255, var(--tw-bg-opacity));
}
.bg-\[\#EFF3FC\] {
	--tw-bg-opacity: 1;
	background-color: rgba(239, 243, 252, var(--tw-bg-opacity));
}
.bg-\[\#F4F7FE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(244, 247, 254, var(--tw-bg-opacity));
}
.bg-\[\#dcdcdc30\] {
	background-color: #dcdcdc30;
}
.bg-\[\#DDE8FE\] {
	--tw-bg-opacity: 1;
	background-color: rgba(221, 232, 254, var(--tw-bg-opacity));
}
.bg-\[\#E8E8E8\] {
	--tw-bg-opacity: 1;
	background-color: rgba(232, 232, 232, var(--tw-bg-opacity));
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.10\)\] {
	background-color: rgba(56,120,246,0.10);
}
.bg-\[\#E9EFFF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(233, 239, 255, var(--tw-bg-opacity));
}
.\!bg-\[rgba\(245\2c 248\2c 255\2c 1\)\] {
	background-color: rgba(245,248,255,1) !important;
}
.bg-yellow-50 {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}
.bg-\[\#5E8EEC\] {
	--tw-bg-opacity: 1;
	background-color: rgba(94, 142, 236, var(--tw-bg-opacity));
}
.bg-\[\#A6BFF2\] {
	--tw-bg-opacity: 1;
	background-color: rgba(166, 191, 242, var(--tw-bg-opacity));
}
.bg-\[rgba\(56\2c 120\2c 246\2c 0\.6\)\] {
	background-color: rgba(56,120,246,0.6);
}
.bg-\[\#EAF0FF\] {
	--tw-bg-opacity: 1;
	background-color: rgba(234, 240, 255, var(--tw-bg-opacity));
}
.bg-\[rgba\(197\2c 197\2c 197\2c 0\.3\)\] {
	background-color: rgba(197,197,197,0.3);
}
.bg-\[\#34C38F\] {
	--tw-bg-opacity: 1;
	background-color: rgba(52, 195, 143, var(--tw-bg-opacity));
}
.\!bg-white {
	--tw-bg-opacity: 1 !important;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}
.bg-\[rgba\(255\2c 255\2c 255\2c 0\.5\)\] {
	background-color: rgba(255,255,255,0.5);
}
.bg-opacity-10 {
	--tw-bg-opacity: 0.1;
}
.bg-gradient-to-r {
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-\[\#FAFFF8\] {
	--tw-gradient-from: #FAFFF8;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 255, 248, 0));
}
.from-\[\#FFF8EE\] {
	--tw-gradient-from: #FFF8EE;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 248, 238, 0));
}
.from-\[\#FFF3F4\] {
	--tw-gradient-from: #FFF3F4;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 243, 244, 0));
}
.from-\[\#FFE8E9\] {
	--tw-gradient-from: #FFE8E9;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 232, 233, 0));
}
.to-\[\#E1FFD6\] {
	--tw-gradient-to: #E1FFD6;
}
.to-\[\#FFFCF7\] {
	--tw-gradient-to: #FFFCF7;
}
.to-\[\#FFFAFA\] {
	--tw-gradient-to: #FFFAFA;
}
.to-\[\#FFF8F8\] {
	--tw-gradient-to: #FFF8F8;
}
.bg-cover {
	background-size: cover;
}
.bg-center {
	background-position: center;
}
.bg-no-repeat {
	background-repeat: no-repeat;
}
.object-contain {
	-o-object-fit: contain;
	   object-fit: contain;
}
.object-cover {
	-o-object-fit: cover;
	   object-fit: cover;
}
.p-\[16px\] {
	padding: 16px;
}
.p-\[5px\] {
	padding: 5px;
}
.p-4 {
	padding: 1rem;
}
.p-\[89px\] {
	padding: 89px;
}
.\!p-4 {
	padding: 1rem !important;
}
.p-\[10px\] {
	padding: 10px;
}
.p-\[20px\] {
	padding: 20px;
}
.p-\[24px\] {
	padding: 24px;
}
.p-\[14px\] {
	padding: 14px;
}
.p-\[8px\] {
	padding: 8px;
}
.p-\[17px\] {
	padding: 17px;
}
.p-\[13px\] {
	padding: 13px;
}
.p-0 {
	padding: 0px;
}
.p-\[12px\] {
	padding: 12px;
}
.p-\[7px\] {
	padding: 7px;
}
.p-2 {
	padding: 0.5rem;
}
.p-10 {
	padding: 2.5rem;
}
.p-8 {
	padding: 2rem;
}
.p-6 {
	padding: 1.5rem;
}
.p-5 {
	padding: 1.25rem;
}
.p-1 {
	padding: 0.25rem;
}
.p-\[30px\] {
	padding: 30px;
}
.\!p-0 {
	padding: 0px !important;
}
.p-\[36px\] {
	padding: 36px;
}
.p-\[9px\] {
	padding: 9px;
}
.p-3 {
	padding: 0.75rem;
}
.px-\[16px\] {
	padding-left: 16px;
	padding-right: 16px;
}
.py-\[8px\] {
	padding-top: 8px;
	padding-bottom: 8px;
}
.px-\[10px\] {
	padding-left: 10px;
	padding-right: 10px;
}
.py-\[3px\] {
	padding-top: 3px;
	padding-bottom: 3px;
}
.px-\[9px\] {
	padding-left: 9px;
	padding-right: 9px;
}
.py-\[6px\] {
	padding-top: 6px;
	padding-bottom: 6px;
}
.py-\[7px\] {
	padding-top: 7px;
	padding-bottom: 7px;
}
.py-\[18px\] {
	padding-top: 18px;
	padding-bottom: 18px;
}
.\!px-\[20px\] {
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.px-\[20px\] {
	padding-left: 20px;
	padding-right: 20px;
}
.px-\[30px\] {
	padding-left: 30px;
	padding-right: 30px;
}
.py-\[20px\] {
	padding-top: 20px;
	padding-bottom: 20px;
}
.px-\[14px\] {
	padding-left: 14px;
	padding-right: 14px;
}
.px-\[4px\] {
	padding-left: 4px;
	padding-right: 4px;
}
.px-\[12px\] {
	padding-left: 12px;
	padding-right: 12px;
}
.py-\[5px\] {
	padding-top: 5px;
	padding-bottom: 5px;
}
.px-\[8px\] {
	padding-left: 8px;
	padding-right: 8px;
}
.py-\[4px\] {
	padding-top: 4px;
	padding-bottom: 4px;
}
.px-\[7px\] {
	padding-left: 7px;
	padding-right: 7px;
}
.py-\[10px\] {
	padding-top: 10px;
	padding-bottom: 10px;
}
.px-\[15px\] {
	padding-left: 15px;
	padding-right: 15px;
}
.py-\[9px\] {
	padding-top: 9px;
	padding-bottom: 9px;
}
.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.py-\[12px\] {
	padding-top: 12px;
	padding-bottom: 12px;
}
.px-\[22px\] {
	padding-left: 22px;
	padding-right: 22px;
}
.py-\[24px\] {
	padding-top: 24px;
	padding-bottom: 24px;
}
.py-0 {
	padding-top: 0px;
	padding-bottom: 0px;
}
.px-0 {
	padding-left: 0px;
	padding-right: 0px;
}
.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}
.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.py-\[13px\] {
	padding-top: 13px;
	padding-bottom: 13px;
}
.px-\[72px\] {
	padding-left: 72px;
	padding-right: 72px;
}
.px-\[24px\] {
	padding-left: 24px;
	padding-right: 24px;
}
.py-\[16px\] {
	padding-top: 16px;
	padding-bottom: 16px;
}
.py-\[1px\] {
	padding-top: 1px;
	padding-bottom: 1px;
}
.px-\[5px\] {
	padding-left: 5px;
	padding-right: 5px;
}
.py-\[14px\] {
	padding-top: 14px;
	padding-bottom: 14px;
}
.px-\[36px\] {
	padding-left: 36px;
	padding-right: 36px;
}
.px-\[25px\] {
	padding-left: 25px;
	padding-right: 25px;
}
.px-\[13px\] {
	padding-left: 13px;
	padding-right: 13px;
}
.px-\[40px\] {
	padding-left: 40px;
	padding-right: 40px;
}
.py-\[15px\] {
	padding-top: 15px;
	padding-bottom: 15px;
}
.py-\[11px\] {
	padding-top: 11px;
	padding-bottom: 11px;
}
.py-\[80px\] {
	padding-top: 80px;
	padding-bottom: 80px;
}
.px-\[6px\] {
	padding-left: 6px;
	padding-right: 6px;
}
.\!px-0 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}
.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.py-\[2px\] {
	padding-top: 2px;
	padding-bottom: 2px;
}
.px-\[60px\] {
	padding-left: 60px;
	padding-right: 60px;
}
.px-16 {
	padding-left: 4rem;
	padding-right: 4rem;
}
.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}
.px-\[18px\] {
	padding-left: 18px;
	padding-right: 18px;
}
.px-\[32px\] {
	padding-left: 32px;
	padding-right: 32px;
}
.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.px-\[73px\] {
	padding-left: 73px;
	padding-right: 73px;
}
.px-\[50px\] {
	padding-left: 50px;
	padding-right: 50px;
}
.px-1 {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.py-\[22px\] {
	padding-top: 22px;
	padding-bottom: 22px;
}
.\!px-\[16px\] {
	padding-left: 16px !important;
	padding-right: 16px !important;
}
.py-\[40px\] {
	padding-top: 40px;
	padding-bottom: 40px;
}
.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.px-\[71px\] {
	padding-left: 71px;
	padding-right: 71px;
}
.px-\[0px\] {
	padding-left: 0px;
	padding-right: 0px;
}
.px-\[110px\] {
	padding-left: 110px;
	padding-right: 110px;
}
.px-\[42px\] {
	padding-left: 42px;
	padding-right: 42px;
}
.py-\[25px\] {
	padding-top: 25px;
	padding-bottom: 25px;
}
.py-\[26px\] {
	padding-top: 26px;
	padding-bottom: 26px;
}
.py-\[32px\] {
	padding-top: 32px;
	padding-bottom: 32px;
}
.py-\[30px\] {
	padding-top: 30px;
	padding-bottom: 30px;
}
.px-7 {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}
.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.\!py-\[0px\] {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}
.py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.py-\[17px\] {
	padding-top: 17px;
	padding-bottom: 17px;
}
.pb-\[10px\] {
	padding-bottom: 10px;
}
.pt-\[10px\] {
	padding-top: 10px;
}
.pl-\[25px\] {
	padding-left: 25px;
}
.pr-\[13px\] {
	padding-right: 13px;
}
.pl-\[72px\] {
	padding-left: 72px;
}
.pt-0 {
	padding-top: 0px;
}
.pr-\[0px\] {
	padding-right: 0px;
}
.pb-0 {
	padding-bottom: 0px;
}
.pt-\[20px\] {
	padding-top: 20px;
}
.pt-\[8px\] {
	padding-top: 8px;
}
.pt-\[0px\] {
	padding-top: 0px;
}
.pr-5 {
	padding-right: 1.25rem;
}
.pl-5 {
	padding-left: 1.25rem;
}
.pb-\[60px\] {
	padding-bottom: 60px;
}
.pt-\[24px\] {
	padding-top: 24px;
}
.pb-\[80px\] {
	padding-bottom: 80px;
}
.pb-\[14px\] {
	padding-bottom: 14px;
}
.pb-\[24px\] {
	padding-bottom: 24px;
}
.pt-\[16px\] {
	padding-top: 16px;
}
.pt-\[12px\] {
	padding-top: 12px;
}
.pb-\[4px\] {
	padding-bottom: 4px;
}
.pb-4 {
	padding-bottom: 1rem;
}
.pl-1 {
	padding-left: 0.25rem;
}
.pb-\[20px\] {
	padding-bottom: 20px;
}
.pl-\[9px\] {
	padding-left: 9px;
}
.pl-\[30px\] {
	padding-left: 30px;
}
.pl-\[16px\] {
	padding-left: 16px;
}
.pb-\[2px\] {
	padding-bottom: 2px;
}
.pb-\[100px\] {
	padding-bottom: 100px;
}
.pr-\[20px\] {
	padding-right: 20px;
}
.pb-2 {
	padding-bottom: 0.5rem;
}
.pb-\[35px\] {
	padding-bottom: 35px;
}
.pl-\[15px\] {
	padding-left: 15px;
}
.pr-\[39px\] {
	padding-right: 39px;
}
.pb-\[16px\] {
	padding-bottom: 16px;
}
.pb-\[12px\] {
	padding-bottom: 12px;
}
.pr-\[18px\] {
	padding-right: 18px;
}
.pl-\[18px\] {
	padding-left: 18px;
}
.pt-6 {
	padding-top: 1.5rem;
}
.pl-6 {
	padding-left: 1.5rem;
}
.pb-\[18px\] {
	padding-bottom: 18px;
}
.pl-\[40px\] {
	padding-left: 40px;
}
.pb-\[32px\] {
	padding-bottom: 32px;
}
.pr-0 {
	padding-right: 0px;
}
.pt-8 {
	padding-top: 2rem;
}
.pr-1 {
	padding-right: 0.25rem;
}
.pt-\[25px\] {
	padding-top: 25px;
}
.pt-\[22px\] {
	padding-top: 22px;
}
.pb-\[22px\] {
	padding-bottom: 22px;
}
.pl-\[70px\] {
	padding-left: 70px;
}
.pt-\[50px\] {
	padding-top: 50px;
}
.pt-2 {
	padding-top: 0.5rem;
}
.pl-\[20px\] {
	padding-left: 20px;
}
.pt-\[36px\] {
	padding-top: 36px;
}
.pb-\[45px\] {
	padding-bottom: 45px;
}
.pt-\[32px\] {
	padding-top: 32px;
}
.pb-\[30px\] {
	padding-bottom: 30px;
}
.pl-\[12px\] {
	padding-left: 12px;
}
.pr-\[16px\] {
	padding-right: 16px;
}
.pt-4 {
	padding-top: 1rem;
}
.pb-6 {
	padding-bottom: 1.5rem;
}
.pt-\[21px\] {
	padding-top: 21px;
}
.pr-\[72px\] {
	padding-right: 72px;
}
.pt-\[40px\] {
	padding-top: 40px;
}
.pr-\[75px\] {
	padding-right: 75px;
}
.pl-2 {
	padding-left: 0.5rem;
}
.pb-\[50px\] {
	padding-bottom: 50px;
}
.pt-12 {
	padding-top: 3rem;
}
.pr-\[71px\] {
	padding-right: 71px;
}
.pl-\[11px\] {
	padding-left: 11px;
}
.pt-\[18px\] {
	padding-top: 18px;
}
.pl-\[71px\] {
	padding-left: 71px;
}
.pr-\[30px\] {
	padding-right: 30px;
}
.pb-\[40px\] {
	padding-bottom: 40px;
}
.pb-8 {
	padding-bottom: 2rem;
}
.pl-8 {
	padding-left: 2rem;
}
.pr-4 {
	padding-right: 1rem;
}
.pb-\[48px\] {
	padding-bottom: 48px;
}
.pb-5 {
	padding-bottom: 1.25rem;
}
.pl-\[10px\] {
	padding-left: 10px;
}
.pb-\[15px\] {
	padding-bottom: 15px;
}
.pt-\[15px\] {
	padding-top: 15px;
}
.pr-\[60px\] {
	padding-right: 60px;
}
.pb-1 {
	padding-bottom: 0.25rem;
}
.pl-0 {
	padding-left: 0px;
}
.\!pl-6 {
	padding-left: 1.5rem !important;
}
.pt-9 {
	padding-top: 2.25rem;
}
.pl-\[22px\] {
	padding-left: 22px;
}
.pr-\[32px\] {
	padding-right: 32px;
}
.pt-3 {
	padding-top: 0.75rem;
}
.pt-\[14px\] {
	padding-top: 14px;
}
.pt-\[31px\] {
	padding-top: 31px;
}
.pb-\[25px\] {
	padding-bottom: 25px;
}
.pb-\[36px\] {
	padding-bottom: 36px;
}
.pb-\[34px\] {
	padding-bottom: 34px;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.font-sans {
	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";
}
.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}
.text-\[14px\] {
	font-size: 14px;
}
.text-\[15px\] {
	font-size: 15px;
}
.text-\[16px\] {
	font-size: 16px;
}
.text-\[12px\] {
	font-size: 12px;
}
.text-\[18px\] {
	font-size: 18px;
}
.text-\[13px\] {
	font-size: 13px;
}
.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}
.text-\[20px\] {
	font-size: 20px;
}
.text-\[10px\] {
	font-size: 10px;
}
.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}
.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}
.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-\[8px\] {
	font-size: 8px;
}
.text-\[22px\] {
	font-size: 22px;
}
.text-\[28px\] {
	font-size: 28px;
}
.text-\[26px\] {
	font-size: 26px;
}
.\!text-\[16px\] {
	font-size: 16px !important;
}
.\!text-sm {
	font-size: 0.875rem !important;
	line-height: 1.25rem !important;
}
.text-\[30px\] {
	font-size: 30px;
}
.text-\[24px\] {
	font-size: 24px;
}
.text-\[17px\] {
	font-size: 17px;
}
.text-\[58px\] {
	font-size: 58px;
}
.font-normal {
	font-weight: 400;
}
.font-medium {
	font-weight: 500;
}
.font-semibold {
	font-weight: 600;
}
.font-bold {
	font-weight: 700;
}
.font-light {
	font-weight: 300;
}
.\!font-medium {
	font-weight: 500 !important;
}
.\!font-bold {
	font-weight: 700 !important;
}
.capitalize {
	text-transform: capitalize;
}
.normal-case {
	text-transform: none;
}
.italic {
	font-style: italic;
}
.leading-5 {
	line-height: 1.25rem;
}
.leading-\[25px\] {
	line-height: 25px;
}
.leading-\[19px\] {
	line-height: 19px;
}
.leading-\[20px\] {
	line-height: 20px;
}
.leading-\[19\.07px\] {
	line-height: 19.07px;
}
.leading-\[16px\] {
	line-height: 16px;
}
.leading-\[22px\] {
	line-height: 22px;
}
.leading-\[18px\] {
	line-height: 18px;
}
.leading-\[27px\] {
	line-height: 27px;
}
.leading-\[15px\] {
	line-height: 15px;
}
.leading-\[21px\] {
	line-height: 21px;
}
.leading-\[30px\] {
	line-height: 30px;
}
.leading-7 {
	line-height: 1.75rem;
}
.leading-10 {
	line-height: 2.5rem;
}
.leading-\[24px\] {
	line-height: 24px;
}
.leading-\[28px\] {
	line-height: 28px;
}
.leading-8 {
	line-height: 2rem;
}
.leading-snug {
	line-height: 1.375;
}
.tracking-\[0\.07rem\] {
	letter-spacing: 0.07rem;
}
.tracking-\[0\.07em\] {
	letter-spacing: 0.07em;
}
.text-\[\#33393C\] {
	--tw-text-opacity: 1;
	color: rgba(51, 57, 60, var(--tw-text-opacity));
}
.text-\[\#ED2B1F\] {
	--tw-text-opacity: 1;
	color: rgba(237, 43, 31, var(--tw-text-opacity));
}
.text-\[rgb\(51\2c 57\2c 60\2c 0\.7\)\] {
	color: rgb(51,57,60,0.7);
}
.text-\[\#717577\] {
	--tw-text-opacity: 1;
	color: rgba(113, 117, 119, var(--tw-text-opacity));
}
.text-\[\#FFFFFF\] {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-\[\#85888A\] {
	--tw-text-opacity: 1;
	color: rgba(133, 136, 138, var(--tw-text-opacity));
}
.text-\[\#24C276\] {
	--tw-text-opacity: 1;
	color: rgba(36, 194, 118, var(--tw-text-opacity));
}
.text-\[\#EB9B42\] {
	--tw-text-opacity: 1;
	color: rgba(235, 155, 66, var(--tw-text-opacity));
}
.text-\[\#EB3338\] {
	--tw-text-opacity: 1;
	color: rgba(235, 51, 56, var(--tw-text-opacity));
}
.text-\[\#8F1014\] {
	--tw-text-opacity: 1;
	color: rgba(143, 16, 20, var(--tw-text-opacity));
}
.text-\[\#2D2A2B\] {
	--tw-text-opacity: 1;
	color: rgba(45, 42, 43, var(--tw-text-opacity));
}
.text-\[\#545657\] {
	--tw-text-opacity: 1;
	color: rgba(84, 86, 87, var(--tw-text-opacity));
}
.text-\[black\] {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-black {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-\[\#666A73\] {
	--tw-text-opacity: 1;
	color: rgba(102, 106, 115, var(--tw-text-opacity));
}
.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-\[\#3878F6\] {
	--tw-text-opacity: 1;
	color: rgba(56, 120, 246, var(--tw-text-opacity));
}
.text-\[\#727782\] {
	--tw-text-opacity: 1;
	color: rgba(114, 119, 130, var(--tw-text-opacity));
}
.text-\[\#666666\] {
	--tw-text-opacity: 1;
	color: rgba(102, 102, 102, var(--tw-text-opacity));
}
.text-\[\#0A0D14\] {
	--tw-text-opacity: 1;
	color: rgba(10, 13, 20, var(--tw-text-opacity));
}
.text-\[\#81858A\] {
	--tw-text-opacity: 1;
	color: rgba(129, 133, 138, var(--tw-text-opacity));
}
.text-\[\#50575A\] {
	--tw-text-opacity: 1;
	color: rgba(80, 87, 90, var(--tw-text-opacity));
}
.text-\[\#464E5F\] {
	--tw-text-opacity: 1;
	color: rgba(70, 78, 95, var(--tw-text-opacity));
}
.text-\[\#797979\] {
	--tw-text-opacity: 1;
	color: rgba(121, 121, 121, var(--tw-text-opacity));
}
.text-\[\#d32f2f\] {
	--tw-text-opacity: 1;
	color: rgba(211, 47, 47, var(--tw-text-opacity));
}
.text-\[\#555353\] {
	--tw-text-opacity: 1;
	color: rgba(85, 83, 83, var(--tw-text-opacity));
}
.text-\[\#E8E8E8\] {
	--tw-text-opacity: 1;
	color: rgba(232, 232, 232, var(--tw-text-opacity));
}
.text-\[\#777575\] {
	--tw-text-opacity: 1;
	color: rgba(119, 117, 117, var(--tw-text-opacity));
}
.text-\[\#E5E6E7\] {
	--tw-text-opacity: 1;
	color: rgba(229, 230, 231, var(--tw-text-opacity));
}
.text-\[\#EBECEC\] {
	--tw-text-opacity: 1;
	color: rgba(235, 236, 236, var(--tw-text-opacity));
}
.text-\[\#111623\] {
	--tw-text-opacity: 1;
	color: rgba(17, 22, 35, var(--tw-text-opacity));
}
.text-\[\#64686E\] {
	--tw-text-opacity: 1;
	color: rgba(100, 104, 110, var(--tw-text-opacity));
}
.text-\[\#3F80F6\] {
	--tw-text-opacity: 1;
	color: rgba(63, 128, 246, var(--tw-text-opacity));
}
.text-\[\#4B4B4B\] {
	--tw-text-opacity: 1;
	color: rgba(75, 75, 75, var(--tw-text-opacity));
}
.text-\[\#565353\] {
	--tw-text-opacity: 1;
	color: rgba(86, 83, 83, var(--tw-text-opacity));
}
.text-\[\#8D8D8D\] {
	--tw-text-opacity: 1;
	color: rgba(141, 141, 141, var(--tw-text-opacity));
}
.text-\[white\] {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-\[\#495057\] {
	--tw-text-opacity: 1;
	color: rgba(73, 80, 87, var(--tw-text-opacity));
}
.text-\[\#74788D\] {
	--tw-text-opacity: 1;
	color: rgba(116, 120, 141, var(--tw-text-opacity));
}
.text-\[\#34C38F\] {
	--tw-text-opacity: 1;
	color: rgba(52, 195, 143, var(--tw-text-opacity));
}
.text-\[\#EB8667\] {
	--tw-text-opacity: 1;
	color: rgba(235, 134, 103, var(--tw-text-opacity));
}
.text-\[\#707070\] {
	--tw-text-opacity: 1;
	color: rgba(112, 112, 112, var(--tw-text-opacity));
}
.text-\[\#808080\] {
	--tw-text-opacity: 1;
	color: rgba(128, 128, 128, var(--tw-text-opacity));
}
.text-gray-400 {
	--tw-text-opacity: 1;
	color: rgba(156, 163, 175, var(--tw-text-opacity));
}
.text-\[\#6D6D6D\] {
	--tw-text-opacity: 1;
	color: rgba(109, 109, 109, var(--tw-text-opacity));
}
.text-\[\#FF725E\] {
	--tw-text-opacity: 1;
	color: rgba(255, 114, 94, var(--tw-text-opacity));
}
.text-\[\#51595C\] {
	--tw-text-opacity: 1;
	color: rgba(81, 89, 92, var(--tw-text-opacity));
}
.text-\[\#F0F0F1\] {
	--tw-text-opacity: 1;
	color: rgba(240, 240, 241, var(--tw-text-opacity));
}
.text-\[\#7A7979\] {
	--tw-text-opacity: 1;
	color: rgba(122, 121, 121, var(--tw-text-opacity));
}
.text-\[\#3878F6CC\] {
	color: #3878F6CC;
}
.text-\[rgba\(0\2c 0\2c 0\2c 0\.6\)\] {
	color: rgba(0,0,0,0.6);
}
.text-\[\#F0F0F0\] {
	--tw-text-opacity: 1;
	color: rgba(240, 240, 240, var(--tw-text-opacity));
}
.text-\[rgba\(51\2c 57\2c 60\2c 0\.6\)\] {
	color: rgba(51,57,60,0.6);
}
.text-gray-500 {
	--tw-text-opacity: 1;
	color: rgba(107, 114, 128, var(--tw-text-opacity));
}
.text-green-600 {
	--tw-text-opacity: 1;
	color: rgba(5, 150, 105, var(--tw-text-opacity));
}
.text-\[\#676D73\] {
	--tw-text-opacity: 1;
	color: rgba(103, 109, 115, var(--tw-text-opacity));
}
.text-\[\#333333\] {
	--tw-text-opacity: 1;
	color: rgba(51, 51, 51, var(--tw-text-opacity));
}
.text-\[\#1D1D1D\] {
	--tw-text-opacity: 1;
	color: rgba(29, 29, 29, var(--tw-text-opacity));
}
.text-\[\#1B56CB\] {
	--tw-text-opacity: 1;
	color: rgba(27, 86, 203, var(--tw-text-opacity));
}
.text-\[\#484848\] {
	--tw-text-opacity: 1;
	color: rgba(72, 72, 72, var(--tw-text-opacity));
}
.text-\[\#2E2E2E\] {
	--tw-text-opacity: 1;
	color: rgba(46, 46, 46, var(--tw-text-opacity));
}
.text-\[\#464646\] {
	--tw-text-opacity: 1;
	color: rgba(70, 70, 70, var(--tw-text-opacity));
}
.text-\[\#D9D9D9\] {
	--tw-text-opacity: 1;
	color: rgba(217, 217, 217, var(--tw-text-opacity));
}
.\!text-\[\#3878F6\] {
	--tw-text-opacity: 1 !important;
	color: rgba(56, 120, 246, var(--tw-text-opacity)) !important;
}
.text-\[rgba\(56\2c 120\2c 246\2c 0\.80\)\] {
	color: rgba(56,120,246,0.80);
}
.text-\[\#E43138\] {
	--tw-text-opacity: 1;
	color: rgba(228, 49, 56, var(--tw-text-opacity));
}
.text-\[\#FF9F1A\] {
	--tw-text-opacity: 1;
	color: rgba(255, 159, 26, var(--tw-text-opacity));
}
.text-\[\#007BFF\] {
	--tw-text-opacity: 1;
	color: rgba(0, 123, 255, var(--tw-text-opacity));
}
.text-\[\#28A745\] {
	--tw-text-opacity: 1;
	color: rgba(40, 167, 69, var(--tw-text-opacity));
}
.text-\[\#33393C80\] {
	color: #33393C80;
}
.text-\[\#7E7E7E\] {
	--tw-text-opacity: 1;
	color: rgba(126, 126, 126, var(--tw-text-opacity));
}
.text-\[\#085CDA\] {
	--tw-text-opacity: 1;
	color: rgba(8, 92, 218, var(--tw-text-opacity));
}
.text-\[\#3D5A86\] {
	--tw-text-opacity: 1;
	color: rgba(61, 90, 134, var(--tw-text-opacity));
}
.text-\[\#DD0006\] {
	--tw-text-opacity: 1;
	color: rgba(221, 0, 6, var(--tw-text-opacity));
}
.text-\[rgba\(255\2c 255\2c 255\2c 0\.85\)\] {
	color: rgba(255,255,255,0.85);
}
.text-\[\#707477\] {
	--tw-text-opacity: 1;
	color: rgba(112, 116, 119, var(--tw-text-opacity));
}
.text-\[\#C8A159\] {
	--tw-text-opacity: 1;
	color: rgba(200, 161, 89, var(--tw-text-opacity));
}
.text-\[\#68B266\] {
	--tw-text-opacity: 1;
	color: rgba(104, 178, 102, var(--tw-text-opacity));
}
.text-\[\#E9E9E9\] {
	--tw-text-opacity: 1;
	color: rgba(233, 233, 233, var(--tw-text-opacity));
}
.text-\[\#000000\] {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-\[\#060606\] {
	--tw-text-opacity: 1;
	color: rgba(6, 6, 6, var(--tw-text-opacity));
}
.text-\[\#505050\] {
	--tw-text-opacity: 1;
	color: rgba(80, 80, 80, var(--tw-text-opacity));
}
.text-\[\#8B8B8B\] {
	--tw-text-opacity: 1;
	color: rgba(139, 139, 139, var(--tw-text-opacity));
}
.text-\[\#4887CB\] {
	--tw-text-opacity: 1;
	color: rgba(72, 135, 203, var(--tw-text-opacity));
}
.text-\[\#C69109\] {
	--tw-text-opacity: 1;
	color: rgba(198, 145, 9, var(--tw-text-opacity));
}
.text-\[\#447209\] {
	--tw-text-opacity: 1;
	color: rgba(68, 114, 9, var(--tw-text-opacity));
}
.text-\[\#04326B\] {
	--tw-text-opacity: 1;
	color: rgba(4, 50, 107, var(--tw-text-opacity));
}
.text-\[\#0C4A6E\] {
	--tw-text-opacity: 1;
	color: rgba(12, 74, 110, var(--tw-text-opacity));
}
.text-\[\#AD3307\] {
	--tw-text-opacity: 1;
	color: rgba(173, 51, 7, var(--tw-text-opacity));
}
.\!text-\[\#33393C\] {
	--tw-text-opacity: 1 !important;
	color: rgba(51, 57, 60, var(--tw-text-opacity)) !important;
}
.text-gray-700 {
	--tw-text-opacity: 1;
	color: rgba(55, 65, 81, var(--tw-text-opacity));
}
.text-gray-800 {
	--tw-text-opacity: 1;
	color: rgba(31, 41, 55, var(--tw-text-opacity));
}
.text-gray-600 {
	--tw-text-opacity: 1;
	color: rgba(75, 85, 99, var(--tw-text-opacity));
}
.text-\[\#2D2D2D\] {
	--tw-text-opacity: 1;
	color: rgba(45, 45, 45, var(--tw-text-opacity));
}
.text-\[\#1D3557\] {
	--tw-text-opacity: 1;
	color: rgba(29, 53, 87, var(--tw-text-opacity));
}
.text-\[\#6C757D\] {
	--tw-text-opacity: 1;
	color: rgba(108, 117, 125, var(--tw-text-opacity));
}
.text-\[\#3878f6\] {
	--tw-text-opacity: 1;
	color: rgba(56, 120, 246, var(--tw-text-opacity));
}
.text-\[rgba\(128\2c 128\2c 128\2c 1\)\] {
	color: rgba(128,128,128,1);
}
.\!text-\[\#545657\] {
	--tw-text-opacity: 1 !important;
	color: rgba(84, 86, 87, var(--tw-text-opacity)) !important;
}
.text-\[\#474D50\] {
	--tw-text-opacity: 1;
	color: rgba(71, 77, 80, var(--tw-text-opacity));
}
.text-\[\#d93232\] {
	--tw-text-opacity: 1;
	color: rgba(217, 50, 50, var(--tw-text-opacity));
}
.text-\[rgba\(85\2c 83\2c 83\2c 0\.8\)\] {
	color: rgba(85,83,83,0.8);
}
.text-\[\#EA4E52\] {
	--tw-text-opacity: 1;
	color: rgba(234, 78, 82, var(--tw-text-opacity));
}
.text-\[\#EF9B3E\] {
	--tw-text-opacity: 1;
	color: rgba(239, 155, 62, var(--tw-text-opacity));
}
.text-\[\#EA5357\] {
	--tw-text-opacity: 1;
	color: rgba(234, 83, 87, var(--tw-text-opacity));
}
.text-\[\#888888\] {
	--tw-text-opacity: 1;
	color: rgba(136, 136, 136, var(--tw-text-opacity));
}
.text-\[\#258223\] {
	--tw-text-opacity: 1;
	color: rgba(37, 130, 35, var(--tw-text-opacity));
}
.text-\[\#575757\] {
	--tw-text-opacity: 1;
	color: rgba(87, 87, 87, var(--tw-text-opacity));
}
.underline {
	text-decoration: underline;
}
.opacity-75 {
	opacity: 0.75;
}
.opacity-60 {
	opacity: 0.6;
}
.opacity-80 {
	opacity: 0.8;
}
.opacity-\[0\.5\] {
	opacity: 0.5;
}
.opacity-70 {
	opacity: 0.7;
}
.opacity-0 {
	opacity: 0;
}
.opacity-\[0\.7\] {
	opacity: 0.7;
}
.opacity-\[0\.9\] {
	opacity: 0.9;
}
.opacity-40 {
	opacity: 0.4;
}
.opacity-\[0\.6\] {
	opacity: 0.6;
}
.opacity-\[0\.8\] {
	opacity: 0.8;
}
.opacity-\[1\] {
	opacity: 1;
}
.opacity-90 {
	opacity: 0.9;
}
.opacity-30 {
	opacity: 0.3;
}
.opacity-50 {
	opacity: 0.5;
}
.bg-blend-color-dodge {
	background-blend-mode: color-dodge;
}
.shadow-md {
	--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-3xl {
	--tw-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
	--tw-shadow: 0px 4px 22px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
	--tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-4xl {
	--tw-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
	--tw-shadow: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow {
	--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.blur {
	--tw-blur: blur(8px);
	filter: var(--tw-filter);
}
.drop-shadow-sm {
	--tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
	filter: var(--tw-filter);
}
.drop-shadow-xl {
	--tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
	filter: var(--tw-filter);
}
.filter {
	filter: var(--tw-filter);
}
.\!filter {
	filter: var(--tw-filter) !important;
}
.backdrop-blur-\[2px\] {
	--tw-backdrop-blur: blur(2px);
	-webkit-backdrop-filter: var(--tw-backdrop-filter);
	        backdrop-filter: var(--tw-backdrop-filter);
}
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-colors {
	transition-property: background-color, border-color, color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.transition {
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: background-color, border-color, 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-width {
	transition-property: width;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.duration-\[550ms\] {
	transition-duration: 550ms;
}
.duration-300 {
	transition-duration: 300ms;
}
.ease-out {
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.ease-in-out {
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

* {
	box-sizing: border-box;
}

.hide-scrollbar {
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* Internet Explorer and Edge */
}

.hide-scrollbar::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */ }

.circle-chart.small {
	border: 28px solid #f84342;
	border-radius: 50%;
	width: 220px;
	height: 220px;
	z-index: 86;
}

.circle-chart.filled {
	background-color: #666666;
}

.first\:sticky:first-child {
	position: sticky;
}

.first\:left-0:first-child {
	left: 0px;
}

.first\:z-\[9\]:first-child {
	z-index: 9;
}

.first\:ml-\[20px\]:first-child {
	margin-left: 20px;
}

.last\:sticky:last-child {
	position: sticky;
}

.last\:right-0:last-child {
	right: 0px;
}

.hover\:z-30:hover {
	z-index: 30;
}

.hover\:z-\[50\]:hover {
	z-index: 50;
}

.hover\:scale-\[1\.04\]:hover {
	--tw-scale-x: 1.04;
	--tw-scale-y: 1.04;
	transform: var(--tw-transform);
}

.hover\:scale-\[1\.05\]:hover {
	--tw-scale-x: 1.05;
	--tw-scale-y: 1.05;
	transform: var(--tw-transform);
}

.hover\:scale-\[1\.005\]:hover {
	--tw-scale-x: 1.005;
	--tw-scale-y: 1.005;
	transform: var(--tw-transform);
}

.hover\:border:hover {
	border-width: 1px;
}

.hover\:border-\[\#3F80F6\]:hover {
	--tw-border-opacity: 1;
	border-color: rgba(63, 128, 246, var(--tw-border-opacity));
}

.hover\:border-\[\#3878F6\]:hover {
	--tw-border-opacity: 1;
	border-color: rgba(56, 120, 246, var(--tw-border-opacity));
}

.hover\:border-\[rgba\(56\2c 120\2c 246\2c 0\.2\)\]:hover {
	border-color: rgba(56,120,246,0.2);
}

.hover\:bg-black:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-white:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.hover\:bg-\[\#F7FBFE\]:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(247, 251, 254, var(--tw-bg-opacity));
}

.hover\:bg-\[\#d4d4d4\]:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(212, 212, 212, var(--tw-bg-opacity));
}

.hover\:bg-\[rgba\(234\2c 244\2c 253\2c 0\.4\)\]:hover {
	background-color: rgba(234,244,253,0.4);
}

.hover\:bg-\[\#FBFBFB\]:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(251, 251, 251, var(--tw-bg-opacity));
}

.hover\:text-\[\#3878f6\]:hover {
	--tw-text-opacity: 1;
	color: rgba(56, 120, 246, var(--tw-text-opacity));
}

.hover\:text-blue-500:hover {
	--tw-text-opacity: 1;
	color: rgba(59, 130, 246, var(--tw-text-opacity));
}

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

.hover\:opacity-30:hover {
	opacity: 0.3;
}

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

.hover\:shadow-inner-blue:hover {
	--tw-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 2px 16px rgba(56, 120, 246, 0.3);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.active\:bg-\[\#666666\]:active {
	--tw-bg-opacity: 1;
	background-color: rgba(102, 102, 102, var(--tw-bg-opacity));
}

.disabled\:\!text-\[\#50575A\]:disabled {
	--tw-text-opacity: 1 !important;
	color: rgba(80, 87, 90, var(--tw-text-opacity)) !important;
}

.group:hover .group-hover\:visible {
	visibility: visible;
}

.group:hover .group-hover\:block {
	display: block;
}

.group:hover .group-hover\:flex {
	display: flex;
}

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

.group:hover .group-hover\:border-\[\#3878F6\] {
	--tw-border-opacity: 1;
	border-color: rgba(56, 120, 246, var(--tw-border-opacity));
}

.group:hover .group-hover\:underline {
	text-decoration: underline;
}

.group:hover .group-hover\:opacity-\[1\] {
	opacity: 1;
}

@media (min-width: 320px) {

	.xxs\:mx-\[40px\] {
		margin-left: 40px;
		margin-right: 40px;
	}

	.xxs\:mx-\[30px\] {
		margin-left: 30px;
		margin-right: 30px;
	}

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

	.xxs\:mt-\[50px\] {
		margin-top: 50px;
	}

	.xxs\:block {
		display: block;
	}

	.xxs\:flex {
		display: flex;
	}

	.xxs\:hidden {
		display: none;
	}

	.xxs\:h-\[70vh\] {
		height: 70vh;
	}

	.xxs\:h-\[90vh\] {
		height: 90vh;
	}

	.xxs\:h-\[0px\] {
		height: 0px;
	}

	.xxs\:h-\[calc\(100vh\)\] {
		height: calc(100vh);
	}

	.xxs\:h-\[calc\(100vh-50px\)\] {
		height: calc(100vh - 50px);
	}

	.xxs\:w-\[300px\] {
		width: 300px;
	}

	.xxs\:w-\[293px\] {
		width: 293px;
	}

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

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

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

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

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

	.xxs\:rounded-xl {
		border-radius: 0.75rem;
	}

	.xxs\:border-none {
		border-style: none;
	}

	.xxs\:bg-white {
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}

	.xxs\:px-\[10px\] {
		padding-left: 10px;
		padding-right: 10px;
	}

	.xxs\:text-\[18px\] {
		font-size: 18px;
	}

	.xxs\:text-\[14px\] {
		font-size: 14px;
	}

	.xxs\:text-\[60px\] {
		font-size: 60px;
	}
}

@media (min-width: 460px) {

	.xs\:w-\[230px\] {
		width: 230px;
	}
}

@media (min-width: 640px) {

	.sm\:m-6 {
		margin: 1.5rem;
	}

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

	.sm\:flex {
		display: flex;
	}

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

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

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

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

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

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

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

	.sm\:gap-6 {
		gap: 1.5rem;
	}

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

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

	.sm\:py-\[24px\] {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.sm\:text-\[22px\] {
		font-size: 22px;
	}

	.sm\:text-\[16px\] {
		font-size: 16px;
	}

	.sm\:text-\[20px\] {
		font-size: 20px;
	}

	.sm\:text-\[18px\] {
		font-size: 18px;
	}

	.sm\:\!text-\[18px\] {
		font-size: 18px !important;
	}

	.sm\:text-xl {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

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

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

@media (min-width: 768px) {

	.xm\:static {
		position: static;
	}

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

	.xm\:flex {
		display: flex;
	}

	.xm\:h-\[400px\] {
		height: 400px;
	}

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

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

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

	.xm\:\!w-\[500px\] {
		width: 500px !important;
	}

	.xm\:min-w-\[420px\] {
		min-width: 420px;
	}

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

	.xm\:rounded-\[8px\] {
		border-radius: 8px;
	}

	.xm\:rounded-b-\[12px\] {
		border-bottom-right-radius: 12px;
		border-bottom-left-radius: 12px;
	}

	.xm\:rounded-b-lg {
		border-bottom-right-radius: 0.5rem;
		border-bottom-left-radius: 0.5rem;
	}

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

	.xm\:pb-\[24px\] {
		padding-bottom: 24px;
	}

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

	.xm\:pb-\[20px\] {
		padding-bottom: 20px;
	}
}

@media (min-width: 976px) {

	.lg\:m-4 {
		margin: 1rem;
	}

	.lg\:mx-4 {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.lg\:ml-\[100px\] {
		margin-left: 100px;
	}

	.lg\:mr-\[100px\] {
		margin-right: 100px;
	}

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

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

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

	.lg\:gap-\[24px\] {
		gap: 24px;
	}

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

	.lg\:gap-4 {
		gap: 1rem;
	}

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

@media (min-width: 1024px) {

	.md\:pointer-events-none {
		pointer-events: none;
	}

	.md\:static {
		position: static;
	}

	.md\:absolute {
		position: absolute;
	}

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

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

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

	.md\:float-right {
		float: right;
	}

	.md\:m-\[24px\] {
		margin: 24px;
	}

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

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

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

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

	.md\:mx-16 {
		margin-left: 4rem;
		margin-right: 4rem;
	}

	.md\:mx-\[20px\] {
		margin-left: 20px;
		margin-right: 20px;
	}

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

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

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

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

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

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

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

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

	.md\:mr-\[30px\] {
		margin-right: 30px;
	}

	.md\:ml-\[0px\] {
		margin-left: 0px;
	}

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

	.md\:mr-\[72px\] {
		margin-right: 72px;
	}

	.md\:ml-\[72px\] {
		margin-left: 72px;
	}

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

	.md\:mr-\[60px\] {
		margin-right: 60px;
	}

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

	.md\:ml-\[20px\] {
		margin-left: 20px;
	}

	.md\:ml-\[18px\] {
		margin-left: 18px;
	}

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

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

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

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

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

	.md\:block {
		display: block;
	}

	.md\:flex {
		display: flex;
	}

	.md\:hidden {
		display: none;
	}

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

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

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

	.md\:h-full {
		height: 100%;
	}

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

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

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

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

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

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

	.md\:h-\[calc\(100vh-80px\)\] {
		height: calc(100vh - 80px);
	}

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

	.md\:h-screen {
		height: 100vh;
	}

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

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

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

	.md\:h-\[calc\(100vh-94px\)\] {
		height: calc(100vh - 94px);
	}

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

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

	.md\:h-\[calc\(100\%-120px\)\] {
		height: calc(100% - 120px);
	}

	.md\:h-\[calc\(100vh-100px\)\] {
		height: calc(100vh - 100px);
	}

	.md\:h-\[calc\(100vh\)\] {
		height: calc(100vh);
	}

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

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

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

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

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

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

	.md\:\!max-h-full {
		max-height: 100% !important;
	}

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

	.md\:max-h-\[42vh\] {
		max-height: 42vh;
	}

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

	.md\:\!max-h-\[250px\] {
		max-height: 250px !important;
	}

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

	.md\:min-h-\[calc\(100vh-90px\)\] {
		min-height: calc(100vh - 90px);
	}

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

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

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

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

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

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

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

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

	.md\:min-h-\[calc\(100vh-100px\)\] {
		min-height: calc(100vh - 100px);
	}

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

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

	.md\:min-h-\[calc\(100vh-400px\)\] {
		min-height: calc(100vh - 400px);
	}

	.md\:\!min-h-\[250px\] {
		min-height: 250px !important;
	}

	.md\:\!min-h-\[400px\] {
		min-height: 400px !important;
	}

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

	.md\:w-\[calc\(100vw-144px\)\] {
		width: calc(100vw - 144px);
	}

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

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

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

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

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

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

	.md\:w-\[50vw\] {
		width: 50vw;
	}

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

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

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

	.md\:w-\[fit-content\] {
		width: -moz-fit-content;
		width: fit-content;
	}

	.md\:w-\[75vh\] {
		width: 75vh;
	}

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

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

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

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

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

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

	.md\:w-\[calc\(65\%\+18px\)\] {
		width: calc(65% + 18px);
	}

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

	.md\:\!w-\[800px\] {
		width: 800px !important;
	}

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

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

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

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

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

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

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

	.md\:w-\[calc\(80\%\+18px\)\] {
		width: calc(80% + 18px);
	}

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

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

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

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

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

	.md\:w-\[calc\(50\%-30px\)\] {
		width: calc(50% - 30px);
	}

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

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

	.md\:\!min-w-\[650px\] {
		min-width: 650px !important;
	}

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

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

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

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

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

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

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

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

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

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

	.md\:max-w-\[calc\(85vw-72px\)\] {
		max-width: calc(85vw - 72px);
	}

	.md\:max-w-\[calc\(100vw-50px\)\] {
		max-width: calc(100vw - 50px);
	}

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

	.md\:flex-none {
		flex: none;
	}

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

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

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

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

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

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

	.md\:justify-end {
		justify-content: flex-end;
	}

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

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

	.md\:gap-\[0px\] {
		gap: 0px;
	}

	.md\:gap-\[10px\] {
		gap: 10px;
	}

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

	.md\:gap-\[15px\] {
		gap: 15px;
	}

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

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

	.md\:gap-\[148px\] {
		gap: 148px;
	}

	.md\:gap-\[16px\] {
		gap: 16px;
	}

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

	.md\:overflow-visible {
		overflow: visible;
	}

	.md\:overflow-y-auto {
		overflow-y: auto;
	}

	.md\:overflow-ellipsis {
		text-overflow: ellipsis;
	}

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

	.md\:rounded-\[4px\] {
		border-radius: 4px;
	}

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

	.md\:rounded-\[40px\] {
		border-radius: 40px;
	}

	.md\:rounded-\[8px\] {
		border-radius: 8px;
	}

	.md\:rounded-none {
		border-radius: 0px;
	}

	.md\:rounded-\[10px\] {
		border-radius: 10px;
	}

	.md\:rounded-\[5px\] {
		border-radius: 5px;
	}

	.md\:rounded-\[6px\] {
		border-radius: 6px;
	}

	.md\:rounded-b-\[12px\] {
		border-bottom-right-radius: 12px;
		border-bottom-left-radius: 12px;
	}

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

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

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

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

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

	.md\:border-b-0 {
		border-bottom-width: 0px;
	}

	.md\:border-\[\#EBEBECCC\] {
		border-color: #EBEBECCC;
	}

	.md\:border-b-\[\#EDEDED\] {
		--tw-border-opacity: 1;
		border-bottom-color: rgba(237, 237, 237, var(--tw-border-opacity));
	}

	.md\:border-r-\[\#F0F0F0\] {
		--tw-border-opacity: 1;
		border-right-color: rgba(240, 240, 240, var(--tw-border-opacity));
	}

	.md\:bg-\[\#F5F8FF\] {
		--tw-bg-opacity: 1;
		background-color: rgba(245, 248, 255, var(--tw-bg-opacity));
	}

	.md\:bg-\[\#F4F7FE\] {
		--tw-bg-opacity: 1;
		background-color: rgba(244, 247, 254, var(--tw-bg-opacity));
	}

	.md\:bg-white {
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}

	.md\:bg-\[\#f5f8ff\] {
		--tw-bg-opacity: 1;
		background-color: rgba(245, 248, 255, var(--tw-bg-opacity));
	}

	.md\:bg-\[rgba\(0\2c 0\2c 0\2c 0\.04\)\] {
		background-color: rgba(0,0,0,0.04);
	}

	.md\:bg-\[rgba\(56\2c 120\2c 246\2c 0\.05\)\] {
		background-color: rgba(56,120,246,0.05);
	}

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

	.md\:bg-none {
		background-image: none;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.md\:py-4 {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

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

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

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

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

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

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

	.md\:pr-\[32px\] {
		padding-right: 32px;
	}

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

	.md\:pl-\[22px\] {
		padding-left: 22px;
	}

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

	.md\:pl-\[32px\] {
		padding-left: 32px;
	}

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

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

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

	.md\:pl-\[70px\] {
		padding-left: 70px;
	}

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

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

	.md\:pr-\[72px\] {
		padding-right: 72px;
	}

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

	.md\:pr-\[70px\] {
		padding-right: 70px;
	}

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

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

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

	.md\:pl-\[71px\] {
		padding-left: 71px;
	}

	.md\:pl-\[75px\] {
		padding-left: 75px;
	}

	.md\:pl-\[72px\] {
		padding-left: 72px;
	}

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

	.md\:pl-\[57px\] {
		padding-left: 57px;
	}

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

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

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

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

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

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

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

	.md\:text-\[18px\] {
		font-size: 18px;
	}

	.md\:text-\[15px\] {
		font-size: 15px;
	}

	.md\:text-\[16px\] {
		font-size: 16px;
	}

	.md\:text-\[14px\] {
		font-size: 14px;
	}

	.md\:text-\[22px\] {
		font-size: 22px;
	}

	.md\:text-\[20px\] {
		font-size: 20px;
	}

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

	.md\:text-\[171px\] {
		font-size: 171px;
	}

	.md\:text-\[24px\] {
		font-size: 24px;
	}

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

	.md\:font-normal {
		font-weight: 400;
	}

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

	.md\:italic {
		font-style: italic;
	}

	.md\:leading-\[25px\] {
		line-height: 25px;
	}

	.md\:text-\[\#545657\] {
		--tw-text-opacity: 1;
		color: rgba(84, 86, 87, var(--tw-text-opacity));
	}

	.md\:text-\[\#565353\] {
		--tw-text-opacity: 1;
		color: rgba(86, 83, 83, var(--tw-text-opacity));
	}

	.md\:text-\[\#33393C\] {
		--tw-text-opacity: 1;
		color: rgba(51, 57, 60, var(--tw-text-opacity));
	}

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

	.md\:text-\[\#1D1D1D\] {
		--tw-text-opacity: 1;
		color: rgba(29, 29, 29, var(--tw-text-opacity));
	}

	.md\:text-\[\#555353\] {
		--tw-text-opacity: 1;
		color: rgba(85, 83, 83, var(--tw-text-opacity));
	}

	.md\:shadow-sm {
		--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	}

	.md\:shadow-3xl {
		--tw-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.05);
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
	}

	.md\:hover\:z-\[30\]:hover {
		z-index: 30;
	}

	.md\:hover\:scale-\[1\.1\]:hover {
		--tw-scale-x: 1.1;
		--tw-scale-y: 1.1;
		transform: var(--tw-transform);
	}

	.md\:hover\:scale-\[1\.05\]:hover {
		--tw-scale-x: 1.05;
		--tw-scale-y: 1.05;
		transform: var(--tw-transform);
	}

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

	.md\:hover\:border-\[\#3878f6\]:hover {
		--tw-border-opacity: 1;
		border-color: rgba(56, 120, 246, var(--tw-border-opacity));
	}

	.md\:hover\:bg-black:hover {
		--tw-bg-opacity: 1;
		background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
	}

	.md\:hover\:bg-white:hover {
		--tw-bg-opacity: 1;
		background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
	}

	.md\:hover\:text-\[\#3878f6\]:hover {
		--tw-text-opacity: 1;
		color: rgba(56, 120, 246, var(--tw-text-opacity));
	}

	.md\:hover\:opacity-30:hover {
		opacity: 0.3;
	}

	.md\:hover\:opacity-50:hover {
		opacity: 0.5;
	}

	@media (min-width: 1024px) {

		.group:hover .md\:group-hover\:md\:block {
			display: block;
		}
	}

	.group:hover .md\:group-hover\:block {
		display: block;
	}

	.group:hover .md\:group-hover\:max-h-\[50px\] {
		max-height: 50px;
	}
}

@media (min-width: 1220px) {

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

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

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

@media (min-width: 1320px) {

	.\32xl\:left-0 {
		left: 0px;
	}

	.\32xl\:\!ml-\[40px\] {
		margin-left: 40px !important;
	}

	.\32xl\:ml-\[425px\] {
		margin-left: 425px;
	}

	.\32xl\:ml-\[350px\] {
		margin-left: 350px;
	}

	.\32xl\:block {
		display: block;
	}

	.\32xl\:hidden {
		display: none;
	}

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

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

	.\32xl\:max-h-full {
		max-height: 100%;
	}

	.\32xl\:max-h-\[calc\(100vh-180px\)\] {
		max-height: calc(100vh - 180px);
	}

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

	.\32xl\:min-h-\[630px\] {
		min-height: 630px;
	}

	.\32xl\:min-h-\[400px\] {
		min-height: 400px;
	}

	.\32xl\:min-h-\[350px\] {
		min-height: 350px;
	}

	.\32xl\:min-h-\[550px\] {
		min-height: 550px;
	}

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

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

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

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

	.\32xl\:w-\[100\%\] {
		width: 100%;
	}

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

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

	.\32xl\:overflow-visible {
		overflow: visible;
	}

	.\32xl\:bg-\[\#f5f8ff\] {
		--tw-bg-opacity: 1;
		background-color: rgba(245, 248, 255, var(--tw-bg-opacity));
	}

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

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

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

	.\32xl\:pb-\[16px\] {
		padding-bottom: 16px;
	}

	.\32xl\:pl-\[72px\] {
		padding-left: 72px;
	}

	.\32xl\:pb-\[40px\] {
		padding-bottom: 40px;
	}

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

	.\32xl\:text-\[16px\] {
		font-size: 16px;
	}

	.\32xl\:text-\[18px\] {
		font-size: 18px;
	}

	.\32xl\:text-\[24px\] {
		font-size: 24px;
	}

	.\32xl\:text-\[15px\] {
		font-size: 15px;
	}
}

@media (min-width: 1536px) {

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

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

	.\33xl\:mb-\[50px\] {
		margin-bottom: 50px;
	}

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

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

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

	.\33xl\:\!w-\[269px\] {
		width: 269px !important;
	}

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

	.\33xl\:w-\[100\%\] {
		width: 100%;
	}

	.\33xl\:w-\[65\%\] {
		width: 65%;
	}

	.\33xl\:w-\[calc\(65\%\+18px\)\] {
		width: calc(65% + 18px);
	}

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

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

	.\33xl\:pb-\[20px\] {
		padding-bottom: 20px;
	}

	.\33xl\:pb-\[51px\] {
		padding-bottom: 51px;
	}
}

@media (min-width: 1680px) {

	.\34xl\:mb-\[37px\] {
		margin-bottom: 37px;
	}

	.\34xl\:mb-\[30px\] {
		margin-bottom: 30px;
	}

	.\34xl\:mb-\[px\] {
		margin-bottom: px;
	}
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  /* 1 */
  padding: 10px;
  margin-right: 6px;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type='search'] {
  -webkit-appearance: none;
  /* 1 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
} */

@font-face {
  font-family: 'webflow-icons';
  src: url('data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==')
    format('truetype');
  font-weight: normal;
  font-style: normal;
}

[class^='w-icon-'],
[class*=' w-icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webflow-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.w-icon-slider-right:before {
  content: '\e600';
}

.w-icon-slider-left:before {
  content: '\e601';
}

.w-icon-nav-menu:before {
  content: '\e602';
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: '\e603';
}

.w-icon-file-upload-remove:before {
  content: '\e900';
}

.w-icon-file-upload-icon:before {
  content: '\e903';
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}

.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}

.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #aaadb0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 8px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before,
.w-embed:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}

.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
html input[type='button'],
input[type='reset'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}

.w-radio {
  display: flex;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-radio:before,
.w-radio:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
  margin-top: 3px;
}

.w-file-upload {
  display: block;
  margin-bottom: 10px;
}

.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}

.w-file-upload-error {
  display: block;
  margin-top: 10px;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}

.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}

.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-container:before,
.w-container:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333333%;
}

.w-col-2 {
  width: 16.66666667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.33333333%;
}

.w-col-5 {
  width: 41.66666667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.33333333%;
}

.w-col-8 {
  width: 66.66666667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.33333333%;
}

.w-col-11 {
  width: 91.66666667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333333%;
  }

  .w-col-medium-2 {
    width: 16.66666667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.33333333%;
  }

  .w-col-medium-5 {
    width: 41.66666667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.33333333%;
  }

  .w-col-medium-8 {
    width: 66.66666667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.33333333%;
  }

  .w-col-medium-11 {
    width: 91.66666667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333333%;
  }

  .w-col-small-2 {
    width: 16.66666667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.33333333%;
  }

  .w-col-small-5 {
    width: 41.66666667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.33333333%;
  }

  .w-col-small-8 {
    width: 66.66666667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.33333333%;
  }

  .w-col-small-11 {
    width: 91.66666667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333333%;
  }

  .w-col-tiny-2 {
    width: 16.66666667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.33333333%;
  }

  .w-col-tiny-5 {
    width: 41.66666667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.33333333%;
  }

  .w-col-tiny-8 {
    width: 66.66666667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.33333333%;
  }

  .w-col-tiny-11 {
    width: 91.66666667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}

.w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -100;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}

.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}

.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.w-slider-arrow-left [class^='w-icon-'],
.w-slider-arrow-right [class^='w-icon-'],
.w-slider-arrow-left [class*=' w-icon-'],
.w-slider-arrow-right [class*=' w-icon-'] {
  position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}

.w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  /* z-index: 900; */
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}

.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Ubuntu, 'Segoe UI', Verdana,
    sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}

/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}

.w-lightbox-view:before {
  content: '';
  height: 100vh;
}

/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}

/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}

/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s;
}

.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==');
}

.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+');
}

/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=');
  background-size: 18px;
}

/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}

.w-lightbox-active {
  opacity: 0.3;
}

.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
}

/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

.w-lightbox-spinner:after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}

/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }

  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }

  .w-lightbox-close {
    opacity: 0.8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable='true']:before,
.w-richtext[contenteditable='true']:after {
  white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type='video'] div:after {
  outline: 2px solid #2895f7;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type='image'] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type='video'] > div:after {
  content: '';
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.w-richtext figure {
  position: relative;
  max-width: 60%;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}

.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type='image'] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type='image'] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type='image'] > figcaption {
  display: table-caption;
  caption-side: bottom;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type='video'] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type='video'] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type='video'] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type='image'] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}

.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}

.w-nav:before,
.w-nav:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}

.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  position: relative;
  float: right;
  margin-left: 20px;
}

[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #c8c8c8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation='over-left'] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation='over-left'] .w-nav-overlay,
.w-nav[data-animation='over-left'] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}

.w-nav[data-animation='over-right'] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation='over-right'] .w-nav-overlay,
.w-nav[data-animation='over-right'] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}

.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  background-color: #c8c8c8;
  color: white;
}

.w-nav[data-collapse='all'] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse='all'] .w-nav-button {
  display: block;
}

.w--nav-dropdown-open {
  display: block;
}

.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse='medium'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='medium'] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse='small'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='small'] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse='tiny'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='tiny'] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before,
.w-tabs:after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.w-tab-pane {
  position: relative;
  display: none;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: '';
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}

.w-dyn-hide {
  display: none !important;
}

.w-dyn-bind-empty {
  display: none !important;
}

.w-condition-invisible {
  display: none !important;
}

.css-1u4zpwo-MuiSvgIcon-root-MuiStepIcon-root.Mui-completed {
  color: #79d569;
}

.onborading-modal {
  padding-bottom: 0px !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.onboarding-chip-container {
  width: 926px;
}

.onboarding-chip-header {
  color: #8ea0c6;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.MuiChip-clickable:hover {
  background-color: yellow;
}

.MuiChip-clickableColorPrimary:hover {
  background-color: black;
}

.onboarding-domain-select-container {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 10.5263px;
  height: 108px;
}
.onboarding-domain-select-container:hover {
  border: 1.5px solid #3878f6;
}

.onboarding-domain-select-image-container {
  width: 85px;
  position: absolute;
  top: -50px;
}

.onboarding-domain-selected {
  background-color: #f5f8ff;
  border: 1.5px solid #3878f6;
  border-radius: 10.5263px;
}
.onboarding-domain-selected:hover {
  background-color: #f5f8ff;
  border: 1.5px solid #3878f6;
  border-radius: 10.5263px;
}

.onboarding-domain-search-container {
  border-radius: 10px;
  color: black;
}

.alert {
  color: black;
  font-size: 15px;
  height: 40px;
  padding: 8px 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.css-1vt0st0-MuiSvgIcon-root-MuiStepIcon-root.Mui-completed {
  color: #79d569;
}

/* TODO: remove */
.revamp-font-family {
  font-family: 'Noto Sans', sans-serif;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}

::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 100px;
  background-color: #dfe6f4;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  border: 2px solid transparent;
  border-radius: 100px;
  background-color: rgb(136, 135, 135, 0.4);
  background-clip: content-box;
}

.profile-bg {
  background-image: url('/images/dashboard-bg.png');
}

.home-page-container {
  font-family: 'Noto Sans', sans-serif;
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}

@media screen and (min-width: 1024px) {
  .home-bg {
    background-image: url('/images/dashboard-bg.png');
  }
}

.user-settings-container {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.ReactModal__Body--open {
  overflow-y: hidden;
}

.css-1v1maw0-MuiButtonBase-root-MuiTab-root {
  margin-bottom: 13px;
}

.css-1v1maw0-MuiButtonBase-root-MuiTab-root.Mui-selected {
  background-color: white;
}

.home-page-container {
  font-family: 'Noto Sans', sans-serif;
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}

.css-14qre3u-MuiButtonBase-root-MuiPaginationItem-root.Mui-selected {
  background-color: white;
}

.user-settings-container {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.vertical-line {
  border-left: 1px solid rgba(51, 57, 60, 0.9);
}

.grey-vertical-line {
  border-left: 1px solid #ebecec;
}

input[type='checkbox']:checked {
  background: white !important;
}

@media screen and (min-width: 1024px) {
  .search-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: space-between;
    padding-bottom: 80px;
  }
}

.list-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-between;
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .list-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: space-between;
    padding-bottom: 80px;
  }
}

.search-grid-container.w-full {
  width: 100%;
  padding-bottom: 80px;
}

.search-page-layout {
  min-height: calc(100vh - 80px);
}

.item-card-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 7.16%, #000000 137.28%);
}

.employee_selected {
  position: relative;
}

.employee_selected .color {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  background: red;
  top: 0;
  height: 100%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.3s ease;
  z-index: -1;
}

.employee_selected .color.active {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .title_clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media screen and (min-width: 768px) {
  .description_clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

.inputID::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
}

.inputID::placeholder {
  font-weight: 400;
  font-size: 15px;
}

.searchInput::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
}

.searchInput::placeholder {
  font-weight: 400;
  font-size: 16px;
}

.progress-done {
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: 1s ease 0.3s;
}

.table-height {
  height: inherit;
}

.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 0px;
}

.w-checkbox::before {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}

.w-checkbox::after {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  grid-row-start: 1;
  clear: both;
}

.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-right-width: 4px;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
}

.w-layout-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  font-family: 'Noto Sans', 'Montserrat', sans-serif !important;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
}

.home-banner {
  display: flex;
  height: 99vh;
  padding: 60px 0px 60px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('/images/skill-bg.jpeg');
  background-position: 50% 50%;
  background-size: cover;
}

.logo-image {
  width: 100%;
  max-width: 200px;
}

.brand_logo {
  margin-bottom: 20px;
}

.text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
}

.label {
  color: #fff;
  font-weight: 500;
}

.field {
  margin-bottom: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 6px;
  background-color: transparent;
}

.form-block {
  width: 100%;
  margin-bottom: 0px;
}

.form {
  display: flex;
  flex-direction: column;
}

.link {
  margin-bottom: 20px;
  color: #09f;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  text-decoration: none;
}

.signin {
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  background-color: #ff1115;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.signin.account {
  width: 100%;
  background-color: #fff;
  color: #000;
}

.line {
  width: 100%;
  height: 2px;
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: #fff;
}

.nav-section {
  box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  background: #fff;
  position: relative;
  z-index: 10;
}

.nav-bar {
  display: flex;
  width: 100%;
}

.wrapper {
  /* width: 90%; */
  margin-right: auto;
  margin-left: auto;
}

.wrapper.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wrapper.top_bottom_p3 {
  margin-bottom: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.black-logo {
  max-width: 120px;
  max-height: 50px;
}

.browse:hover {
  color: #33393c;
}

.browse.w--current {
  color: #3878f6;
  display: inline-block;
  align-items: center;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  color: #3878f6;
}

.browse::after {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: -29px;
  left: 0;
  background: #3878f6;
  border-radius: 4px 4px 0 0;
  transition: height 0.1s ease-in-out;
}

.browse.w--current::after {
  height: 4px;
}

.tab-border::after {
  content: '';
  width: 70%;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: #3878f6;
  border-radius: 4px 4px 0 0;
  transition: height 0.1s ease-in-out;
  padding-right: 10px;
}

.browse {
  color: #33393C;
  display: inline-block;
  margin-right: 25px;
  align-items: center;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .browse {
    margin-right: 30px;
  }
}

.nav-link {
  display: inline-block;
  margin-right: 40px;
  align-items: center;
  color: #33393C;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.nav-link.w--current {
  color: #3878f6;
}

.nav-link::after {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  bottom: -29px;
  left: 0;
  background: #3878f6;
  border-radius: 4px 4px 0 0;
  transition: height 0.1s ease-in-out;
}

.nav-link.w--current::after {
  height: 4px;
}

.nav-link.footer-margin {
  margin-bottom: 5px;
  padding-right: 0px;
  padding-left: 0px;
  color: #131313;
  font-weight: 500;
}

.footer-section {
  padding-top: 60px;
  padding-bottom: 40px;
  align-items: flex-start;
  box-shadow: 0 1px 8px 0 #888;
  text-align: center;
}

.footer-flex-container {
  display: grid;
  margin-bottom: 40px;
  justify-content: space-between;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 0.5fr 0.5fr 0.5fr 1fr 0.5fr;
  grid-template-rows: auto;
  text-align: left;
}

.footer-heading {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 33px;
}

.footer-div {
  max-width: 100%;
}

.footer-flex {
  display: flex;
  flex-direction: column;
}

.social-links {
  display: flex;
}

.black-image {
  width: 32px;
  margin-right: 15px;
}

.small-slide {
  margin-right: 17%;
  padding-right: 0px;
  padding-bottom: 0px;
  background-color: #fff;
}

.small-slider-content {
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  /* box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34); */
  box-shadow: 0 0 20px 0 hsl(0deg 0% 36% / 44%);
}

.image-div {
  height: auto;
  /* background-color: #000; */
}

.info-div {
  padding: 10px 10px 10px;
}

.info-div.less-padding {
  padding-bottom: 0px;
}

.info-div.s1 {
  padding-bottom: 10px;
}

.slide-nav {
  display: none;
}

.small-slider-image {
  display: block;
  /* width: 100%; */
  -o-object-fit: scale-down;
     object-fit: scale-down;
  /* background-color: #000; */
  height: 100%;
}

.mask {
  overflow: visible;
  width: 30%;
}

.small-slide-head {
  margin-top: 0px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600 !important;
  margin-bottom: 0px;
  width: 98%;
  word-break: keep-all;
  /* height: 40px; */
}

.small-slide-head.margin-left {
  margin-left: 10px;
}

.small-slide-head.no_m {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 18px;
}

.detail-div {
  display: -ms-flexbox;
  /*display: flex;*/
  margin-top: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
}

.detail-div.no_m {
  margin-top: 0px;
  justify-content: flex-start;
}

.level-status {
  width: 100%;
  height: 100%;
}

.tutor {
  height: 100%;
}

.tutor.super {
  width: 60%;
}

.small-slider {
  overflow: hidden;
  height: 100%;
  margin-bottom: 20px;
  padding: 20px 40px 25px;
  background-color: transparent;
}

.courses-heading {
  margin-top: 40px;
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}

.courses-heading.no-pad {
  margin-top: 0px;
}

.courses-heading.no-pad.size {
  font-size: 22px;
}

.duration {
  width: 100%;
  /* padding-top: 5px; */
  padding-bottom: 5px;
}

.duration.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-div {
  padding-top: 0px;
  padding-bottom: 0px;
}

.big-slider {
  height: 100%;
  margin-top: 20px;
  background-color: transparent;
}

.big-slide {
  height: 60vh;
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32),
      rgba(0, 0, 0, 0.32)
    ),
    url('/images/pexels-olia-danilevich-4974915.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.big-slide-content {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px 80px 40px;
  flex-direction: column;
  justify-content: flex-end;
}

.big-slide-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
}

.big-subheading {
  margin-top: 20px;
  color: #fff;
}

.left_arrow {
  width: 40px;
  height: 40px;
  font-size: 25px;
}

.text-block {
  font-size: 12px;
  line-height: 19px;
}

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

.text-block-small {
  color: #838383;
  font-size: 10px;
  line-height: 18px;
}

.text-block-small.bottom-margin {
  margin-bottom: 10px;
}

.form-block1 {
  margin-bottom: 0px;
}

.search {
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 40px;
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: #000 #000 #858585;
}

.search.super {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
}

.search.super::-moz-placeholder {
  color: #ee2529;
}

.search.super::placeholder {
  color: #ee2529;
}

.form2 {
  position: relative;
}

.form2.width {
  width: 32.8%;
  margin-bottom: 30px;
}

.image {
  position: absolute;
  left: auto;
  top: auto;
  left: 0px;
  bottom: 25%;
  width: 20px;
}

.icons-div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 10px;
}

.image-2 {
  width: 22px;
}

.link-block {
  margin-right: 0px;
  margin-bottom: 0px;
}

.goals-div {
  display: flex;
  height: auto;
  justify-content: space-between;
  /* box-shadow: 0 4px 9px 0 hsla(0, 0%, 43.8%, 0.14); */
  border: solid 2px #a1a1a1;
  border-radius: 8px;
}

.goals-div.super {
  height: 65vh;
  margin-top: 20px;
}

.white-div {
  width: 45%;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
}

.white-div.super {
  width: 40%;
  padding-left: 20px;
}

.navbar {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  background-color: hsla(0, 0%, 86.7%, 0);
}

.nav {
  display: flex;
  align-items: center;
  max-height: 90px;
}

.pink-div {
  display: flex;
  width: 50%;
  padding: 50px 20px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  /* background-color: rgba(230, 96, 216, 0.26); */
  /* background-color: rgba(136, 136, 136, 0.26); */
  /* background-image: url("/images/02.jpg"); */
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border-left: solid 2px #a1a1a1;
}

.pink-div.super {
  width: 55%;
  padding-right: 10px;
  padding-left: 10px;
}

.dropdown {
  padding-right: 140px;
  padding-left: 40px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.59);
}

.dropdown.super {
  padding-right: 100px;
  padding-left: 30px;
}

.dropdown-btn {
  margin-top: 30px;
}

.dropdown-list {
  background-color: #d8d5d5;
}

.dropdown-list.w--open {
  background-color: #f0f0f0;
}

.dropdown-link {
  padding-top: 15px;
  padding-bottom: 15px;
}

.wrap {
  display: flex;
  width: 100%;
  max-width: 450px;
  flex-direction: column;
  align-items: center;
}

.right_arrow {
  width: 40px;
  height: 50px;
  font-size: 25px;
}

.form-block-3 {
  margin-top: 40px;
}

.form-field.slider {
  margin-top: 20px;
  border: 1px none #000;
}

.form-field.no_border {
  margin-top: 20px;
  border: 1px none #000;
}

.btn {
  display: flex;
  width: 100%;
  max-width: 180px;
  margin-left: 20px;
  padding: 15px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  color: #000;
}

.btn_wrap {
  display: flex;
  width: 100%;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}

.plus {
  display: flex;
  width: 45px;
  height: 45px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  border: 4px solid #000;
  border-radius: 100%;
  background-image: url('/images/icons8-plus-48.png');
  background-position: 50% 50%;
  background-size: 40px;
  background-repeat: no-repeat;
}

.btn2 {
  margin-top: 40px;
  padding: 18px 40px 18px 60px;
  border-radius: 50px;
  background-color: red;
  background-image: url('/images/icons8-plus-48_1.png');
  background-position: 14% 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
}

.btn2:disabled {
  background-color: #484848;
}

.banner {
  margin-top: 5px;
  margin-bottom: 5px;
}

.container {
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 5%;
  justify-content: space-between;
  align-items: flex-start;
}

.image_wrap {
  display: flex;
  width: 100%;
  height: 70vh;
  flex-direction: column;
  justify-content: flex-end;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.col_25 {
  position: sticky;
  top: 0px;
  width: 25%;
  margin-bottom: 20px;
  padding: 20px 2%;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
}

.col_72 {
  width: 72%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button_wrap {
  padding: 15px 40px;
  background-color: rgba(0, 0, 0, 0.51);
  position: relative;
  z-index: 1;
}

.button {
  margin-right: 20px;
  padding: 15px 30px 15px 58px;
  border-radius: 5px;
  background-color: #ee2529;
  background-image: url('/images/play.png');
  background-position: 14% 50%;
  background-size: 24px;
  background-repeat: no-repeat;
}

.button.bookmark {
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 54px;
  background-color: transparent;
  background-image: none;
  background-size: auto;
}

.button.add_to_playlist {
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 34px;
  background-color: transparent;
  background-image: none;
  background-size: 22px;
}

.content_wrap {
  margin-bottom: 30px;
  padding-right: 40px;
  padding-left: 40px;
  position: relative;
  /* z-index: 10; */
}

.h2 {
  font-size: 16px;
  line-height: 22px;
}

.h2.top_p {
  margin-top: 10px;
}

.h2.top_p.b_m {
  margin-bottom: 30px;
}

.h2.color_red {
  margin-bottom: 0px;
  color: #ee2529;
}

.h2.no_m {
  margin-bottom: 0px;
}

.h2.bottom_m {
  margin-bottom: 20px;
}

.h2.top_b_m {
  margin-top: 20px;
  margin-bottom: 20px;
}

.h2.s1 {
  margin-bottom: 0px;
  font-size: 12px;
  line-height: 16px;
}

.h2.size {
  font-size: 14px;
  white-space: nowrap;
  /* padding-top: 10px; */
}

.h2-title {
  padding-top: 5px;
  text-align: left;
  margin-bottom: 0;
  font-size: 14px;
}

.discussion-description {
  text-align: left;
  /* padding-left: 10%; */
}

.heading {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
}

.text_block {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.paragraph {
  margin-top: 10px;
  color: #fff;
  letter-spacing: 0.1px;
}

.paragraph.black_color {
  color: #000;
}

.info_col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.c2 {
  width: 45%;
  margin-right: 5px;
}

.c2.flex {
  display: flex;
}

.c2.flex_right {
  display: flex;
  width: 30%;
  justify-content: flex-end;
}

.star {
  width: 15px;
  margin-right: 2px;
  color: #f0b700;
  line-height: 0px;
}

.star.gray {
  color: #c6c6c6;
}

.star.size_10px {
  width: 10px;
  color: #15a9ff;
}

.star.size_18px {
  width: 18px;
  color: #15a9ff;
}

.social_icon {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.new-head {
  margin-top: 20px;
  margin-bottom: 20px;
}

.flex-div {
  display: flex;
  padding-top: 10px;
  justify-content: space-between;
  align-items: center;
}

.views {
  display: flex;
  padding: 5px 18px;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  background-color: #ee2529;
}

.eye-image {
  width: 25px;
  margin-right: 10px;
}

.number-view {
  color: #fff;
  font-weight: 700;
}

.grid-block {
  display: flex;
  margin-top: 10px;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.grid-div {
  display: flex;
  margin-right: 65px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.grid-icon {
  width: 22px;
}

.grid-icon.tick {
  width: 26px;
}

.grid-icon.super {
  width: 11px;
}

.grid-text {
  margin-top: 5px;
  text-align: center;
}

.grid-text.left_align {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.option-block {
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
}

.option-block.w--current {
  background-color: #ee2529;
  color: #fff;
}

.outline {
  margin-top: 30px;
}

.outline.padding {
  padding-top: 20px;
  padding-bottom: 40px;
}

.outline-list {
  display: flex;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  border-bottom: 2px solid #b6b6b6;
}

.outline-name {
  display: flex;
  width: 50%;
  align-items: center;
}

.text_block1 {
  font-weight: 600;
}

.option-flex {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
}

.follow {
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 5px;
  background-color: #ee2529;
}

.follow.start {
  /* margin-top: 20px; */
  padding-right: 40px;
  padding-left: 40px;
  /* bottom: 111px; */
  /* position: absolute; */
}

.tabs-menu {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.tabs-menu.super {
  grid-template-columns: 0.75fr 0.75fr 1fr 1fr 1fr;
}

.tabs {
  margin-top: 40px;
}

.info-section {
  padding-top: 20px;
}

.level-div {
  margin-top: 40px;
  margin-bottom: 40px;
}

.level-div.no_m {
  margin-top: 0px;
}

.level-info {
  display: flex;
  align-items: center;
}

.text-block-3 {
  margin-left: 20px;
}

.text-block-3.no-margin {
  margin-left: 0px;
}

.card-div {
  cursor: pointer;
  display: flex;
  /* margin-top: 20px;
	margin-bottom: 20px; */
  border-radius: 5px;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
}

.card-div.more-margin {
  margin-top: 60px;
  margin-bottom: 60px;
}

.card {
  width: 30%;
}

.card-para {
  width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.middle-div {
  display: flex;
}

.assess-banner-section {
  padding-top: 20px;
  background: #fff;
}

.skill-div {
  margin-top: 60px;
  margin-bottom: 60px;
}

.dropdown-toggle {
  width: 100%;
  margin-top: 10px;
  padding-left: 40px;
  background-color: #fff;
  box-shadow: 1px 1px 10px 0 #e6e6e6;
}

.drop-text {
  padding-right: 60px;
}

.plan-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.col_23 {
  position: sticky;
  top: 0px;
  display: flex;
  width: 24%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: none;
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
  clip-path: inset(0px -15px 0px 0px);
}

.col_76 {
  width: 76%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
}

.col_60 {
  width: 60%;
  justify-content: flex-start;
  align-items: center;
}

.dropdown2 {
  width: 45%;
  margin-right: 0px;
  margin-left: 0px;
}

.col_row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.col_40 {
  display: flex;
  width: 40%;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dropdown_wrap {
  display: flex;
  margin-top: 20px;
  padding-bottom: 10px;
  justify-content: space-between;
  align-items: center;
}

.dropdown_wrap.top_p {
  margin-top: 25px;
  align-items: stretch;
}

.col_45 {
  overflow: hidden;
  width: 45%;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
}

.assign_btn {
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #ee2529;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.t2 {
  margin-top: 10px;
  color: #ee2529;
  font-size: 22px;
  line-height: 30px;
}

.coureses_container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tab-link {
  display: flex;
  width: 12%;
  padding: 20px 0px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-weight: 600;
}

.tab-link.w--current {
  border-bottom: 3px solid #ee2529;
  background-color: transparent;
  color: #ee2529;
  font-weight: 700;
}

.tabs-menu2 {
  display: flex;
  justify-content: flex-start;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.row-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.d1 {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 42.5%, 0.63);
}

.width_48 {
  width: 48%;
}

.width_48.flex {
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr 0.25fr;
  grid-template-rows: auto;
}

.width_48.flex_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.c3 {
  padding: 0px;
}

.t1 {
  font-weight: 600;
}

.t1.top_m {
  margin-top: 20px;
}

.col_26 {
  position: sticky;
  top: 0px;
  display: flex;
  width: 26%;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: none;
  box-shadow: 0 0 10px rgb(0 0 0 / 12%);
  clip-path: inset(0px -15px 0px 0px);
  height: 100vh;
}

.col_74 {
  width: 73%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
}

.profile_photo {
  position: relative;
  width: 100%;
  height: 110px;
  max-width: 110px;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

.profile_photo img {
  -o-object-fit: cover;
     object-fit: cover;
}

.upload-button {
  position: absolute;
  left: auto;
  top: -4%;
  right: -5%;
  bottom: auto;
  display: flex;
  overflow: hidden;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #ee2529;
  background-image: url('/images/icons8-plus-48_1.png');
  background-position: 50% 50%;
  background-size: 28px;
}

.c_wrap {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 60px;
}

.link2 {
  display: flex;
  margin-top: 25px;
  padding-left: 0px;
  color: #000;
  text-decoration: none;
  width: 100%;
  background: transparent;
}

.link2.w--current {
  border-right: 6px solid #ee2529;
  color: #ee2529;
}

.c_wrap2 {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a5a5a5;
}

.c_wrap2.top_m {
  margin-top: 60px;
}

.form_col {
  width: 48%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.form_col.flex {
  display: flex;
}

.form_col_wrap {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}

.form_col_wrap.top_m {
  margin-top: 20px;
}

.form_block {
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text_field {
  margin-top: 10px;
  padding: 22px 10px;
  border: 1px none #000;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 89.3%, 0.8);
}

.select-field {
  height: 18px;
  margin-top: 10px;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
  border: 1px none #000;
  background-color: transparent;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-top: 0px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-color: #ee2529;
}

.radio-button.w--redirected-focus {
  box-shadow: 0 0 3px 1px #ee2529;
}

.radio-button-field {
  margin-right: 20px;
}

.textarea {
  min-height: 100px;
  margin-top: 10px;
  padding: 20px;
  border: 1px none #000;
  box-shadow: 0 0 20px 0 #e5e5e5;
  width: 75%;
}

.submit {
  margin-top: 30px;
  padding: 12px 30px;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 2px 2px 2px 0 #ccc;
  color: #ee2529;
  font-weight: 600;
}

.submit.bg_color {
  background-color: #ee2529;
  color: #fff;
}

.analyse_container {
  background-color: rgba(56, 120, 246, 0.05);
}

/* .grid {
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
	margin: 0px 0px 80px 0px;

} */

.dropdown_toggle {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 20px 0 #e5e5e5;
}

.dropdown_2 {
  width: 100%;
}

.grid2 {
  margin-top: 40px;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
}

.grid_wrap {
  padding: 0px 10px 40px 10px;
}

.c_wrap1 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.link-block {
  display: flex;
  width: 100%;
  max-width: 30px;
  margin-left: 25px;
  justify-content: center;
  align-items: center;
}

.grid-2 {
  width: 50%;
  grid-template-columns: 0.5fr 0.75fr;
  grid-template-rows: auto;
}

.grid-2.top_m {
  margin-top: 20px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.d2.flex {
  justify-content: space-between;
  align-items: flex-start;
}

.btn3 {
  display: flex;
  width: 90%;
  margin-bottom: 10px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 #e4e4e4;
  color: #000;
}

.btn3._54 {
  width: 61%;
}

.btn3._40 {
  width: 32%;
}

.div-block {
  display: flex;
  justify-content: space-between;
}

.lightbox {
  width: 100%;
  max-width: 40px;
  margin-right: 10px;
}

.skills-wrap {
  width: 100%;
  padding: 40px;
  background-color: rgba(230, 96, 216, 0.26);
  background-image: url('/images/02.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.btn_grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
}

.skills_btn {
  display: flex;
  padding: 15px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 #aeaeae;
  color: #000;
}

.skills_btn:active {
  background-color: #ee2529;
  box-shadow: 0 2px 5px 0 #ee2529;
  color: #fff;
}

.discussions-wrap {
  padding: 20px 40px;
}

.icon-wrap {
  width: 100%;
  height: 30px;
  max-width: 30px;
  margin-right: 10px;
  display: flex;
}

.d3 {
  display: flex;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: flex-start;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.submit-button {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #9c9c9c;
  transition: all 360ms ease-in-out;
}

.submit-button:hover {
  background-color: #ee2529;
}

.text-field {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px 22px;
  border: 1px solid rgba(102, 106, 115, 0.1);
}

.textarea2 {
  min-height: 150px;
  margin-top: 10px;
  padding: 22px;
  border: 1px none #000;
  box-shadow: 0 0 10px 0 #dbdbdb;
}

.checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0px;
  margin-right: 10px;
  border-width: 2px;
}

.checkbox.w--redirected-checked {
  border-color: #ee2529;
  background-color: #ee2529;
}

.checkbox.w--redirected-focus {
  box-shadow: 0 0 3px 1px #ee2529;
}

.checkbox-field {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  /* background: #fafafa; */
  padding: 18px;
  border-radius: 5px;
}

.form-2 {
  margin-top: 20px;
}

.h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.question_wrap {
  padding-top: 1px;
  padding-bottom: 1px;
}

.t3 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}

.exercise_content {
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  border-bottom: 1px solid #c8c8c8;
}

.quesition_wrap {
  width: 100%;
  max-width: 800px;
  padding: 0px 0px 0px 0px;
}

.quesition_wrap.deactive {
  display: none !important;
}

.close_wrap {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: flex-end;
  align-items: center;
}

.close {
  padding: 10px;
}

.popup-div {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 999;
  display: none;
  overflow: auto;
  padding: 30px 40px;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}

.popup_body {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.text-block-4 {
  font-size: 14px;
}

.text-block-8 {
  margin-bottom: 15px;
}

.check-content-div {
  position: relative;
  width: 80%;
  padding: 100px 60px;
  background-color: #fff;
}

.result-div {
  margin-bottom: 20px;
}

.check_btn {
  display: block;
  width: 22%;
  margin-top: 20px;
  margin-left: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: #ee2529;
  transition: background-color 200ms ease;
  text-align: center;
  text-decoration: none;
}

.check-popup {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1000;
  display: none;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.57);
}

.form-block-2 {
  height: auto;
  position: relative;
}

.next {
  left: auto;
  top: auto;
  right: 30px !important;
  bottom: 12px !important;
  display: flex;
  width: 100%;
  max-width: 100px;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  background-color: #ee2529;
  color: #f8faff;
  border-radius: 5px;
}

.left {
  left: 30px;
  top: auto;
  right: auto;
  bottom: 12px;
  width: 100%;
  max-width: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ee2529;
  text-align: center;
  border-radius: 5px;
}

.slider {
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
  background-color: transparent;
}

.form-2 {
  height: auto;
}

.success-message-2 {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #ee2529;
  color: #fff;
}

.slide-10 {
  height: auto;
}

.submit_btn {
  width: 100%;
  padding-top: 17px;
  padding-bottom: 15px;
  border-radius: 3px;
  background-color: #ee2529;
  transition: background-color 200ms ease;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cancel {
  position: absolute;
  left: auto;
  top: 2%;
  right: 1%;
  bottom: auto;
  width: 40px;
  padding: 10px;
  cursor: pointer;
}

.file_btn {
  width: 100%;
  padding: 18px 20px;
  background-color: #fff;
  background-image: url('/images/icons8-plus-48.png');
  background-position: 95% 50%;
  background-size: 20px;
  background-repeat: no-repeat;
  box-shadow: 0 0 11px 0 hsla(0, 0%, 89.4%, 0.8);
  color: #787878;
  line-height: 14px;
}

.login_dropdown_toggle {
  padding: 0px;
}

.icon_link {
  display: flex;
  width: 100%;
  max-width: 30px;
  margin-right: 10px;
  margin-left: 10px;
  justify-content: center;
  align-items: center;
}

.login_dropdown {
  width: 100%;
  max-width: 40px;
  margin-left: 5px;
}

.login-link {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  transition: all 360ms ease-in-out;
  font-weight: 600;
}

.login-link:hover {
  background-color: #ee2529;
  color: #fff;
}

.login_dropdown_list {
  background-color: #ee2529;
}

.login_dropdown_list.w--open {
  left: -1vw;
  background-color: #fff;
  box-shadow: 0 0 20px 0 hsla(0, 0%, 93.4%, 0.89);
}

@media screen and (min-width: 1280px) {
  .home-banner {
    height: 100vh !important;
  }

  .option-block {
    margin-right: 20px;
  }

  .outline-name {
    width: 75%;
  }

  .card {
    width: 28%;
  }

  .tab-link {
    margin-right: 20px;
  }
}

.small-slide {
  margin-right: 12%;
}

.mask {
  width: 23%;
}

.check-content-div {
  width: 60%;
}

@media screen and (min-width: 1920px) {
  .brand_logo {
    margin-bottom: 40px;
  }

  .text {
    margin-bottom: 40px;
  }

  .field {
    margin-bottom: 40px;
  }

  .line {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .black-logo {
    width: 150px;
  }

  .nav-link {
    font-size: 20px;
    line-height: 32px;
  }

  .small-slide {
    margin-right: 15%;
  }

  .mask {
    width: 22.6%;
  }

  .small-slide-head {
    font-size: 17px;
    line-height: 23px;
  }

  .text-block {
    font-size: 16px;
    line-height: 24px;
  }

  .text-block-small {
    font-size: 14px;
    line-height: 24px;
  }

  .form2.width {
    width: 30.8%;
  }

  .wrap {
    max-width: 500px;
  }

  .option-block {
    width: 85%;
  }

  .card {
    width: 22%;
  }

  .card-para {
    width: 65%;
    padding-left: 60px;
  }

  .lightbox {
    max-width: 35px;
  }

  .check-content-div {
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .col_23 {
    box-shadow: 0 0 10px rgb(255 255 255 / 12%);
    clip-path: inset(0px -15px 0px 0px);
  }

  .grid2 {
    margin-top: 40px;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .form_col_wrap {
    width: 100%;
  }

  .textarea {
    width: 100%;
  }

  .home-banner {
    padding-right: 20%;
    padding-left: 20%;
  }

  .logo-image {
    max-width: 150px;
  }

  .wrapper {
    width: 90%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .wrapper.flex.verticle {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    text-align: left;
  }

  .nav-link.footer-margin {
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer-section {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-flex-container {
    grid-template-columns: 1.75fr 1fr 1fr;
  }

  .mask {
    width: 40%;
  }

  .mask.super {
    width: 47%;
  }

  .small-slide-head {
    font-size: 14px;
  }

  .courses-heading {
    font-size: 22px;
  }

  .big-slide-heading {
    font-size: 35px;
    line-height: 40px;
  }

  .goals-div.super {
    height: auto;
    flex-direction: column;
  }

  .white-div {
    padding-left: 20px;
  }

  .white-div.super {
    width: 100%;
  }

  .nav-menu {
    background-color: #fff;
  }

  .menu-button {
    background-color: #fff;
    font-size: 35px;
    line-height: 0px;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .pink-div {
    width: 50%;
  }

  .pink-div.super {
    width: 100%;
  }

  .dropdown {
    padding-right: 120px;
  }

  .brand {
    padding-left: 0px;
  }

  .btn {
    margin-bottom: 10px;
    padding: 15px 10px;
  }

  .btn_wrap {
    flex-direction: column;
  }

  .btn2 {
    background-size: 28px;
    font-size: 16px;
  }

  .grid-icon.tick {
    width: 22px;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .col_60 {
    width: 100%;
  }

  .col_row {
    flex-direction: column;
  }

  .col_40 {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tab-link {
    width: 20%;
  }

  .tabs-menu2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .row-wrap {
    min-width: 1200px;
  }

  .c_wrap {
    padding-left: 0px;
  }

  .link2 {
    padding-left: 0px;
  }

  /* .grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  } */

  .grid2.s1 {
    grid-template-columns: 1fr 1fr;
  }

  .c_wrap1 {
    padding-left: 0px;
  }

  .col_23 {
    position: static;
    width: 100%;
  }

  .col_76 {
    width: 100%;
    padding-left: 0px;
  }

  .grid-2 {
    width: 100%;
  }

  .table_wrap {
    overflow: auto;
  }

  .skills_btn {
    margin-bottom: 10px;
    padding: 15px 10px;
  }

  .quesition_wrap {
    width: 90%;
  }

  .close_wrap {
    width: 90%;
  }

  .check_btn {
    width: 40%;
  }

  .login_dropdown_list.w--open {
    left: -4vw;
  }
}

@media screen and (max-width: 767px) {
  .next {
    right: 20px !important;
    bottom: 10px !important;
  }

  .form-block-2 {
    width: 70% !important;
  }

  .icon {
    width: 30% !important;
  }

  .home-banner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .brand_logo {
    margin-bottom: 30px;
  }

  .text {
    margin-bottom: 30px;
  }

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

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

  .black-logo {
    max-width: 150px;
  }

  .black-logo.margin {
    margin-bottom: 25px;
  }

  .nav-link.footer-margin {
    font-size: 16px;
    line-height: 20px;
  }

  .footer-flex-container {
    flex-direction: column;
    grid-template-columns: 0.5fr 0.75fr;
  }

  .footer-heading {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 28px;
  }

  .legal-div {
    width: auto;
  }

  .mask {
    width: 50%;
  }

  .small-slider {
    padding-right: 0px;
    padding-left: 0px;
  }

  .courses-heading {
    font-size: 20px;
  }

  .big-slide-heading {
    font-size: 30px;
  }

  .left_arrow {
    width: 10%;
  }

  .form2.width {
    width: 57.8%;
  }

  .goals-div {
    height: auto;
    flex-direction: column;
  }

  .white-div {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .pink-div {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .right_arrow {
    width: 10%;
  }

  .btn {
    margin-left: 0px;
  }

  .container {
    padding-right: 4%;
    padding-left: 4%;
    flex-direction: column;
  }

  .image_wrap {
    height: 80vh;
  }

  .col_25 {
    width: 100%;
    padding-bottom: 20px;
  }

  .col_72 {
    width: 100%;
  }

  .button_wrap {
    display: flex;
    padding-right: 20px;
    padding-left: 20px;
    justify-content: space-between;
    align-items: center;
  }

  .button {
    margin-right: 10px;
    padding-right: 20px;
    padding-left: 50px;
    background-position: 8% 50%;
    font-size: 13px;
  }

  .button.bookmark {
    padding-left: 40px;
  }

  .button.add_to_playlist {
    padding-left: 40px;
  }

  .content_wrap {
    padding-right: 20px;
    padding-left: 20px;
  }

  .heading {
    font-size: 25px;
    line-height: 30px;
  }

  .new-head {
    font-size: 26px;
  }

  .outline.padding {
    padding-top: 10px;
  }

  .outline-list {
    margin-top: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .outline-name {
    width: 100%;
  }

  .option-flex {
    width: 100%;
    margin-top: 15px;
  }

  .tabs-menu.super {
    grid-template-columns: 1.25fr 0.75fr 0.25fr 1fr;
  }

  .card-div {
    flex-direction: column;
  }

  .card {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .card-para {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .skill-div {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tab-link {
    width: 30%;
  }

  .row-wrap {
    min-width: 1150px;
  }

  .d1 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .width_48.flex {
    margin-top: 20px;
  }

  .col_26 {
    position: static;
    width: 100%;
    align-items: center;
  }

  .col_74 {
    width: 100%;
    padding-left: 0px;
  }

  /* .grid {
		-ms-grid-columns: 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
	} */

  .grid2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid2.s1 {
    grid-template-columns: 1fr;
  }

  .col_23 {
    position: static;
    width: 100%;
    align-items: center;
  }

  .col_76 {
    width: 100%;
    padding-left: 0px;
  }

  .skills-wrap {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .skills_btn {
    margin-left: 0px;
  }

  .h4 {
    font-size: 15px;
  }

  .exercise_content {
    width: 100%;
  }

  .login-icon {
    max-width: 70px;
  }

  .icon_link {
    max-width: 40px;
  }

  .login_dropdown {
    max-width: 50px;
  }

  .login-link {
    padding-right: 20px;
  }

  .login_dropdown_list.w--open {
    left: -8.2vw;
  }
}

@media screen and (max-width: 479px) {
  /* .grid {
		-ms-grid-columns: 1fr !important;
		grid-template-columns: 1fr !important;
	} */

  .home-banner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .logo-image {
    max-width: 140px;
  }

  .text {
    font-size: 14px;
    line-height: 24px;
  }

  .link {
    font-size: 14px;
    line-height: 20px;
  }

  .signin {
    font-size: 16px;
    line-height: 20px;
  }

  .nav-bar {
    flex-direction: column;
  }

  .black-logo.margin {
    max-width: 120px;
    margin-bottom: 0px;
  }

  .nav-link.footer-margin {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
  }

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

  .footer-flex-container {
    flex-direction: column;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1.75fr;
  }

  .footer-heading {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .small-slide {
    margin-right: 20px;
    margin-left: 0px;
  }

  .mask {
    width: 100%;
  }

  .mask.super {
    width: 100%;
  }

  .small-slider {
    padding-right: 0px;
    padding-left: 0px;
  }

  .courses-heading {
    line-height: 28px;
  }

  .big-slide-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .big-slide-heading {
    font-size: 25px;
    line-height: 30px;
  }

  .left_arrow {
    font-size: 25px;
  }

  .form2.width {
    width: 100%;
  }

  .navbar {
    width: 100%;
  }

  .menu-button {
    padding: 10px;
  }

  .right_arrow {
    font-size: 25px;
  }

  .image_wrap {
    height: 90vh;
    padding-top: 60px;
  }

  .col_25 {
    padding-right: 5%;
    padding-left: 5%;
  }

  .button_wrap {
    flex-direction: column;
    align-items: center;
  }

  .button {
    display: flex;
    width: 100%;
    max-width: 190px;
    justify-content: center;
    align-items: center;
  }

  .heading {
    font-size: 20px;
    line-height: 28px;
  }

  .paragraph {
    font-size: 13px;
  }

  .grid-block.super {
    justify-content: space-between;
    align-items: stretch;
  }

  .grid-div.no-p {
    margin-right: 0px;
  }

  .grid-icon {
    width: 18px;
  }

  .grid-icon.tick {
    width: 18px;
  }

  .grid-icon.size {
    width: 13px;
  }

  .option-block {
    margin-right: 0px;
  }

  .option-block.super {
    width: 100%;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr;
  }

  .tabs-menu.super {
    grid-template-columns: 1.25fr 0.25fr;
  }

  .level-info {
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .text-block-3 {
    margin-left: 0px;
  }

  .card-para {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dropdown2 {
    width: 100%;
  }

  .dropdown_wrap {
    flex-direction: column;
  }

  .dropdown_wrap.top_p {
    flex-direction: column;
  }

  .col_45 {
    width: 100%;
    margin-bottom: 30px;
  }

  .t2 {
    font-size: 18px;
  }

  .tab-link {
    width: 90%;
    margin-right: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .tabs-menu2 {
    grid-template-columns: 1fr 1fr;
  }

  .col_26 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .col_74 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .upload-button {
    top: -3%;
    right: -4%;
    width: 30px;
    height: 30px;
  }

  .form_col {
    width: 100%;
  }

  .form_col_wrap {
    flex-direction: column;
  }

  .textarea::-moz-placeholder {
    font-size: 13px;
  }

  .textarea::placeholder {
    font-size: 13px;
  }

  /* .grid {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	} */

  .grid2 {
    grid-template-columns: 1fr;
  }

  .grid-2.top_m {
    grid-template-columns: 1.25fr;
  }

  .btn3 {
    width: 100%;
  }

  .discussions-wrap {
    padding-right: 0px;
    padding-left: 0px;
  }

  .text-block-4 {
    font-size: 14px;
  }

  .check_btn {
    width: 50%;
  }

  .next {
    width: 130px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .left {
    width: 130px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .login_dropdown {
    max-width: 50px;
  }

  .login_dropdown_list.w--open {
    left: -12.3vw;
  }
}

#w-node-_4600482a-e706-5827-c793-4045effe4f8d-652b2f5b {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_67f63b7e-49b2-0a87-c154-df137949c92a-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-f1e71149-0c9d-075c-6201-bd72b0a70690-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-f77af1c6-b528-9d89-2d4d-e1906b9c86ec-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-dac70335-75a1-874d-cdb4-d143dca00379-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_0344a638-98e4-1dca-3262-e4b1ca779bc8-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_6e826842-0645-4c60-ebaa-673e8b268bdc-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-c93a0405-3136-21fc-60e4-fd0ad67be643-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085bc-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085c8-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085d4-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085e0-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085ec-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-6571013085f8-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-a60d03fc-5ceb-7a3b-dc04-657101308604-6d65a85e {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-b853ba0b-3cbc-bbbd-9eba-67d7b9e0f55e-3aaa59db {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-cc8583b5-b5a1-25d1-e5fd-721be5ecdf13-3aaa59db {
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

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

.main-loader {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.hovertext-shadow {
  box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
  /* width: 15px; */
  /* height: 8px; */
  /* display: block; */
  /* background-color: #aaa; */
}

html {
  scroll-behavior: smooth;
}

.color {
  color: #fff;
}
.small-slider-content,
.swiper {
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  box-shadow: none;
}

body > .skiptranslate {
  display: none;
}

#goog-gt-tt {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-te-combo {
  height: 25px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: white;
  outline: none;
}

.goog-te-menu-value span:first-child {
  content: 'Translate';
}
.css-b62m3t-container {
  position: relative;
  box-sizing: border-box;
  width: 250px;
  background-color: #f7f7f7;
  margin-top: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 25px !important;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-feature-settings: normal;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
  color: #000;
}

.w-slider {
  position: relative;
  height: 300px;
  text-align: left;
  background: transparent;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

.small-slider-content {
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 312px;
  border-radius: 5px;
  box-shadow: none;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 68% / 44%);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  padding: 0px 15px 0px 15px !important;
}

.input-range__track--active {
  background: #ff0000 !important;
}

.input-range__slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ff0000 !important;
  border: 1px solid #ff0000 !important;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  height: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.65rem;
  outline: none;
  position: absolute;
  top: 50%;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  width: 1rem;
}

.f-link {
  padding: 10px 0 10px 0px;
  font-size: 16px;
}

.no_margin {
  margin-top: -10px !important;
}

.s1 {
  display: flex;
  width: 100%;
  max-width: 200px;
  margin: 0px 10px 0px 10px;
  padding: 8px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  color: #000;
  float: left;
}

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

.skills_btn_grid {
  width: 90%;
  padding: 30px 0px 30px 0px;
}

.footer {
  padding: 60px 0px 60px 0px;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  background: #fff;
  position: relative;
}

:fullscreen, ::backdrop {
  background-color: rgba(56,120,246,0.05);
}

.width {
  width: 70%;
}

.w-form {
  margin: 0 0 0px;
}

.form-block-3 {
  margin-top: 50px;
}

.ReactModal__Overlay {
  z-index: 999;
}

.lightbox {
  background: transparent;
}

.course_banner {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  background-position: 0px 0px, 50% 50%;
  background-size: cover !important;
  background-repeat: repeat, no-repeat;
}

.c-img {
  width: 100%;
  height: 100%;
}

.left-m {
  margin-left: 10px;
}

.no-border {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background-color: #ffffff00;
  box-shadow: 0 2px 5px -1px rgb(0 0 0 / 0%);
  margin-top: 10px;
  padding: 0px;
}

.margin-top {
  margin-top: 60px !important;
}

.top {
  margin-top: 42px !important;
}

.no-height {
  height: auto !important;
}

.margin {
  margin: 30px 0px 30px 0px;
}

.padding {
  padding: 20px;
}

.no {
  margin-bottom: 0px !important;
}

.no-bgcolor {
  width: 10px;
  height: 10px;
  background: transparent;
  /* margin-right: 15px; */
  background-image: url('/images/close.png');
  background-position: 50% 50%;
  background-size: 10px;
  background-repeat: no-repeat;
}

.close-lightbox-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 22px;
  background: transparent;
  margin-right: 5px;
  background-image: url('/images/close.png');
  background-position: 50% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
}

.m-bottom {
  margin-bottom: 30px;
}

.no-bg {
  background: transparent !important;
}

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

user agent stylesheet div {
  display: block;
}

.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  /* z-index: 900; */
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.save {
  padding: 10px 30px 10px 30px;
  background: red;
  color: #fff;
  border-radius: 50px;
}

.margin-top {
  margin-top: -45px !important;
}

textarea {
  resize: none;
}

.bottom-m {
  margin-top: 50px !important;
}

.profile-div {
  position: absolute;
  top: 35px;
  z-index: 100;
  padding: 5px 10px 15px 15px;
  background: #fff;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.pad {
  padding: 10px 30px 0px 20px;
  max-width: 0px !important;
}

.w-size {
  max-width: 30px !important;
}

.user-left {
  margin-left: 10px;
}

.left-p {
  padding-left: 30px;
  box-shadow: 0 0 10px 0 #dbdbdb00;
  border-bottom: 2px solid #9c9c9c;
  font-weight: 600 !important;
}

.left-p:focus {
  border-bottom: 2px solid #dbdbdb;
}

.user-btn {
  width: 35px !important;
  margin-left: 7px !important;
}

.w-checkbox input:checked ~ .checkmark {
  background-color: red;
}

.ReactModal__Overlay--after-open {
  position: fixed;
  inset: 0px;
  background-color: rgb(0 0 0 / 40%) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ReactModal__Content {
  position: static !important;
  inset: 0px !important;
  border: 0px !important;
  background: transparent !important;
  overflow: auto !important;
  border-radius: 10px;
  outline: none;
  padding: 30px 0px 50px 0px !important;
  width: 100% !important;
  margin: auto !important;
  display: flex;
  justify-content: center;
}

.add-to-play {
  position: relative;
  display: flex;
  max-width: 220px;
  justify-content: center;
  align-items: center;
}

.add-playlist-icon {
  position: absolute;
  width: 20px !important;
  color: #fff;
  left: 25px;
  line-height: 0px;
}

.add-playlist-icon.yellow {
  color: #f0b700;
}

.d-height {
  max-height: 47px !important;
}

.swiper-slide.me {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.m-padding {
  background: #ebebeb;
  padding: 0px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px !important;
}

.signin.super {
  padding: 8px 20px 9px 20px !important;
}

.bg-color {
  background: #8b8b8b;
  margin-left: 10px;
}

.quesition_wrap.d-flex {
  width: 100% !important;
  background: #fff;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

.h4.font-size {
  font-size: 16px !important;
}

.t3.sub-text {
  font-size: 18px !important;
  margin-top: 10px;
  text-transform: capitalize;
  font-weight: 600;
}

.w-form.max-width {
  width: 100% !important;
}

.a-super {
  width: 100% !important;
  background: #fff;
  padding: 30px;
  border: 1px solid #ebebeb;
}

.nop {
  padding: 40px 20px 40px 20px !important;
}

.style-checkbox {
  margin-top: 20px;
  margin-bottom: 20px !important;
  width: 100% !important;
  padding: 12px 0px 12px 20px !important;
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.w-form-label {
  font-size: 16px !important;
  margin-left: 8px;
}

.btn-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: #fff;
  padding: 15px 50px 15px 50px !important;
  margin-top: 20px !important;
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px 0px 5px 5px;
  border-top: solid 1px #ebebeb;
}

.line-height {
  font-size: 18px !important;
  line-height: 16px !important;
  margin-bottom: 0px !important;
  font-weight: 600;
}

.width-m {
  width: 100% !important;
  max-width: 850px !important;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 0% / 60%);
  margin: auto !important;
  background: #fff !important;
  padding-bottom: 60px;
  border-radius: 5px !important;
  height: 88vh;
}

.b-border {
  padding-bottom: 5px;
}

.q-container {
  width: 100%;
  height: 78vh !important;
  overflow: auto;
  padding: 40px;
}

.width-author {
  width: 100% !important;
  max-width: 450px !important;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 0% / 60%);
  border-radius: 5px;
}

.box-shadow {
  box-shadow: 0 0 20px 0 hsl(0deg 0% 0% / 60%);
  width: 100% !important;
  max-width: 700px !important;
  margin: auto;
  background: #fff;
}

.css-b62m3t-container {
  position: relative;
  box-sizing: border-box;
  height: 10px;
}

.css-1s2u09g-control {
  border-color: hsl(0deg 0% 50%);
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff !important;
  border: solid 1px #fff !important;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 89% / 80%);
  /*box-shadow: 4px 4px 4px 0px #C5C5C5;*/
}

.css-1s2u09g-control:hover {
  border: 1px solid #fff !important;
}

.css-14el2xx-placeholder {
  color: hsl(0, 0%, 0%);
  grid-area: 1/1/2/3;
  margin-left: 10px;
  margin-right: 8px;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 8px;
}

.css-tlfecz-indicatorContainer {
  color: hsl(0deg 0% 26%) !important;
}

.css-6j8wv5-Input {
  margin: 2px;
  padding-bottom: 2px;
  padding-top: 2px;
  visibility: visible;
  color: hsl(0, 0%, 20%);
  flex: 1 1 auto;
  display: inline-grid;
  grid-area: 1/1/2/3;
  grid-template-columns: 0 min-content;
  box-sizing: border-box;
  height: 33px !important;
}

.btn-container.right-p {
  padding-right: 40px !important;
}

.max-width2 {
  width: 100% !important;
  max-width: 250px !important;
}

.checkbox-list-wrap {
  padding: 0px 30px 0px 30px !important;
  overflow: auto !important;
}

.add-btn {
  padding: 10px 30px 10px 30px !important;
  background: #ee2529 !important;
  color: #fff;
  border-radius: 50px;
}

.over-hide {
  overflow: hidden;
  position: relative;
}

.add-btn-wrap {
  border-top: solid 1px #dfdfdf;
  padding: 10px 30px 10px 30px !important;
  background: #fff;
  width: 100%;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0px;
  left: 0px;
}

.accordion__panel {
  padding: 0px !important;
  animation: fadein 0.35s ease-in;
}

.next-wrap {
  position: absolute;
  background: #fff;
  top: auto;
  left: auto;
  right: auto;
  bottom: 0px;
  width: 100%;
  height: 65px;
  border-top: solid 1px #dfdfdf;
}

.profile-img {
  border-radius: 50% !important;
  width: 110px;
  height: 110px;
}

.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #00000075 !important;
}

.small-size {
  width: 18px !important;
}

.icon-size {
  width: 38px !important;
}

.edit-icon {
  width: 15px;
  height: 15px;
  background: transparent;
  background-image: url(/images/edit.svg);
  background-position: 50% 50%;
  background-size: 15px;
  background-repeat: no-repeat;
  margin-left: 5px;
}

.d-wrap1 {
  width: 100% !important;
}

.f0 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.date-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.detail-div {
  display: -ms-flexbox;
  display: block !important;
  margin-top: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
}

.height-auto {
  height: auto !important;
}

.as1 {
  height: auto !important;
}

.leftm {
  margin-left: 20px;
}

.bg-position {
  background-position: 0px 0px, 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.detail-div.flex {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between !important;
  align-items: center !important;
}

.level-w {
  width: 60% !important;
}

.ex1 {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
  padding-right: 10px;
  justify-content: flex-start;
  align-items: center;
  color: #000;
  font-weight: 400;
  background: transparent;
}

.b1 {
  width: 100%;
  text-align: left !important;
  margin-left: -5px;
}

.right-p {
  padding-right: 30px;
}

.w-20 {
  width: 25% !important;
}

.w-40 {
  width: 40% !important;
}

.w-35 {
  width: 38% !important;
}

.size-f {
  font-size: 12px !important;
  margin-bottom: 0px !important;
}

.s-icon {
  color: #000;
  width: 18px;
}

.no-border {
  border: none !important;
}

.position-r {
  position: relative !important;
}

.modal-btn-flex {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between !important;
  align-items: center !important;
  border-radius: 0px 0px 5px 5px !important;
}

.super1 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.width2 {
  width: 100% !important;
}

.left1 {
  padding-left: 20px;
}

.top-m1 {
  margin-top: 5px;
}

.scrollbar {
  overflow-y: auto;
  height: 500px;
  width: 95%;
}

.question-wrap {
  width: 100%;
  height: 192px;
  overflow-y: auto;
  padding: 0px 30px 5px 30px;
  border: 1px solid #dfdfdf;
}

.ques-wrap {
  padding: 15px 20px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 7%);
  margin: 20px 0px;
}

.light-border {
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
}

.question-wrap::-webkit-scrollbar {
  display: none;
}

.red-color {
  color: red;
}

.green-color {
  color: green;
}

.q-size {
  font-size: 15px;
  margin-top: 6px !important;
}

.a-size {
  font-size: 12px;
}

.top1 {
  margin-top: 10px;
}

.f-size {
  font-size: 15px !important;
}

.flex-v {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bookmark-text {
  font-size: 9px;
}

.t-height {
  min-height: 50vh;
  overflow-y: auto !important;
}

.t-height::-webkit-scrollbar {
  display: none;
}

.view-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.complete-div {
  padding: 8px 0px;
  border-radius: 10px;
  margin-right: 15px;
  font-weight: 600;
  font-size: 16px;
}

.heigh1 {
  /* height: 200px; */
  height: 150px;
}

.width-btn {
  width: 170px;
}

.w6 {
  width: 22%;
}

.display-flex {
  display: flex !important;
}

.width-80 {
  width: 55%;
}

.width-20 {
  width: 28%;
}

/* .flex-col {
	background: #f5f6fa;
} */

@media screen and (max-width: 991px) {
  .star-icon {
    left: 70px !important;
  }

  .s-icon {
    color: #000;
    width: 16px;
  }

  .width {
    width: 50%;
  }

  .right-p {
    padding-right: 0px;
  }

  .t3.sub-text {
    font-size: 18px !important;
  }

  .q-container {
    padding: 30px;
  }

  .skills_btn_grid {
    width: 100%;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .profile-div {
    position: absolute;
    top: 30px;
    left: -10px;
    z-index: 100;
    padding: 5px 10px 15px 15px;
    background: #fff;
    box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  }
}

@media screen and (max-width: 767px) {
  .width-m {
    width: 95% !important;
    margin: auto !important;
  }

  .m-padding {
    padding: 0px !important;
    width: 100% !important;
  }

  .ReactModal__Content {
    overflow: auto !important;
  }

  .skills_btn_grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-div {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 100;
    padding: 5px 10px 15px 15px;
    background: #fff;
    box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  }

  .question-wrap {
    padding: 0px 10px 5px 10px;
  }
}

@media screen and (min-width: 500px) {
  .s1 {
    margin-bottom: 15px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 479px) {
  .skills_btn_grid {
    grid-template-columns: 1fr;
  }

  .mobile-p {
    margin-top: 50px !important;
  }

  .width {
    width: 30%;
  }

  .icons-div {
    display: flex;
    padding-left: 10px;
    justify-content: space-between;
  }

  .profile-div {
    position: absolute;
    top: 30px;
    left: -50px;
    z-index: 100;
    padding: 5px 10px 15px 15px;
    background: #fff;
    box-shadow: 0 0 20px 0 hsl(0deg 0% 53% / 34%);
  }

  .w-size {
    max-width: 20px !important;
  }
}

@media screen and (min-width: 1920px) {
  .heigh1 {
    height: 180px;
  }
}

.button_wrap.flex {
  display: flex;
  align-items: center;
}

.bookmarked-wrapper {
  position: relative;
  display: flex;
  max-width: 140px;
  justify-content: center;
  align-items: center;
}

/* start checkbox css */
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

/* The container */
.check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 14px;
  color: #444444;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  font-weight: 600;
  color: #4b4b4b;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background-color: #fff;
  border: solid 2px #ee2529;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
  background-color: #ee2529;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.view-certificate {
  display: flex;
  padding: 5px 18px;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  border: solid 2px #484848;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-right: 10px;
}

#slidemenu {
  width: 100vw;
  height: 100vh;
  /* background-color: #fff; */
  position: fixed;
  top: 0px;
  left: 0;
  transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
  overflow: hidden;
  z-index: 100000;
}

@media screen and (min-width: 1024px) {
  #slidemenu {
    width: 75%;
    top: 80px;
  }
}

.menu-header {
  box-shadow: 0px 4px 10px -4px rgba(0, 0, 0, 0.08) inset;
}

.menulist::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.menulist {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.menu-items-container {
  overflow: scroll;
}

.menu-items-container::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.menu-items-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#slidemenu.hide {
  transform: translate3d(-100vw, 0, 0);
}

#slidemenu.show {
  transform: translate3d(0vw, 0, 0);
  overflow: hidden;
}

#slidemenu h2 a {
  color: #333;
  margin-left: 15px;
  text-decoration: none;
}

#slidemenu h2 a:hover {
  text-decoration: underline;
}

.menuItems {
  margin-left: 24px;
  background-color: transparent !important;
  padding-bottom: 20px;
}

.menuItems::-webkit-scrollbar {
  display: none;
}

.slidemenu-hover-content {
  background-color: #fff;
  min-width: 400px;
  min-height: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 50;
  transition: transform 0.3s cubic-bezier(0, 0.52, 0, 1);
}

.menuItem:hover .slidemenu-hover-content {
  display: block;
}

.menuItem:hover .dropbtn {
  background-color: #3e8e41;
}

.skill-selector-modal {
  max-width: 850px !important;
  box-shadow: 0 0 20px 0 hsl(0deg 0% 0% / 60%);
  margin: auto !important;
  background: #fff !important;
  padding-bottom: 60px;
  border-radius: 5px !important;
}

ul[role='listbox'] {
  z-index: 1000 !important;
}

.assessment-description {
  width: 98%;
  overflow: hidden;
  height: 100px;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
}

.tags {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.tags li {
  float: left;
}

.tag {
  background: #fff;
  border-radius: 3px;
  color: rgb(73, 73, 73);
  display: inline-block;
  /* flex-flow: row wrap; */
  height: 26px;
  line-height: 26px;
  padding: 0 10px 0 10px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  border: solid 1px #a1a1a1;
  cursor: pointer;
}

.tag .close-button {
  margin-left: 5px;
}

/* .tag::before {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
	content: '';
	height: 6px;
	left: 10px;
	position: absolute;
	width: 6px;
	top: 10px;
}

.tag::after {
	background: #fff;
	border-bottom: 13px solid transparent;
	border-left: 10px solid #eee;
	border-top: 13px solid transparent;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
} */

.tag:hover {
  background-color: #ee2529;
  color: white;
}

.tag:hover::after {
  border-left-color: #ee2529;
}

.edit-image {
  clip-path: circle(50%);
}

@media screen and (min-width: 1024px) {
  .edit-image {
    border-radius: 4px;
    clip-path: circle(100%);
  }
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

.multiline-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget img {
  display: none;
}

.goog-te-gadget {
  color: transparent !important;
  margin: 0px !important
}

#google_translate_element{
  height: 29px;
}

#google_translate_element select {
  color: #000000;
  border: none;
  border-radius: 3px;
  width: 120px;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc{
  display: none;
}

.goog-te-banner-frame {
  display: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none;
}

.goog-te-combo {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  margin: 0px !important
}

.h2 {
	font-size: 18px;
	line-height: 28px;
}

.h2.top_p {
	margin-top: 10px;
}

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

.pl-15 {
	padding-left: 15%;
}

.courses-heading {
	margin-top: 40px;
	font-size: 26px;
	line-height: 38px;
	font-weight: 600;
}

.banner {
	margin-top: 0px;
	margin-bottom: 0px;
}

.course-container {
	display: flex;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	/* padding-left: 5%; */
	-webkit-box-pack: justify;
	/* -webkit-justify-content: space-between; */
	-ms-flex-pack: justify;
	/* justify-content: space-between; */
	align-items: flex-start;
	background: #F5F6FA;
	padding-bottom: 25px;
}

.col_72 {
	width: 72%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.image_wrap {
	position: relative;
	display: flex;
	width: 100%;
	height: 70vh;
	flex-direction: column;
	justify-content: flex-end;

}

.content_wrap {
	margin-bottom: 80px;
	padding-right: 40px;
	padding-left: 40px;
}

.heading {
	color: #fff;
	font-size: 30px;
	line-height: 35px;
}

.text_block {
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.2px;
}

.paragraph {
	margin-top: 6px;
	color: #fff;
	letter-spacing: 0.1px;
}

.button_wrap {
	padding: 15px 40px;
	background-color: rgba(0, 0, 0, 0.51);
}

.button {
	margin-right: 20px;
	padding: 15px 30px 15px 58px;
	border-radius: 5px;
	background-color: #ee2529;
	background-image: url("/images/play.png");
	background-position: 14% 50%;
	background-size: 24px;
	background-repeat: no-repeat;
}

.button.bookmark {
	margin-right: 10px;
	padding-right: 20px;
	padding-left: 54px;
	background-color: transparent;
	background-image: none;
	background-size: auto;
}

.star-icon {
	position: absolute;
	left: 20px;
	width: 15px;
	margin-right: 2px;
	color: #fff;
}

.star-icon.yellow {
	color: #f0b700;
}

.button.add_to_playlist {
	margin-right: 10px;
	padding-right: 20px;
	padding-left: 34px;
	background-color: transparent;
	background-image: none;
	background-size: auto;
	width: 164px;
}

.new-head {
	margin-top: 20px;
	margin-bottom: 20px;
}

.paragraph.black_color {
	color: #000;
}

.flex-div {
	display: flex;
	padding-top: 10px;
	justify-content: space-between;
	align-items: center;
}

.views {
	display: flex;
	padding: 5px 18px;
	justify-content: space-around;
	align-items: center;
	border-radius: 10px;
	border: solid 2px #ee2529;
	background-color: #ee2529;
}

.eye-image {
	width: 25px;
	margin-right: 10px;
}

.number-view {
	color: #fff;
	font-weight: 700;
}

.grid-block {
	display: flex;
	margin-top: 10px;
	grid-auto-columns: 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
}

.grid-div {
	display: flex;
	margin-right: 65px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.grid-icon {
	width: 22px;
}

.grid-text {
	margin-top: 5px;
	text-align: center;
}

.tabs {
	margin-top: 40px;
}

.tabs-menu {
	display: grid;
	grid-auto-columns: 1fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
}

.option-block {
	display: flex;
	width: 100%;
	padding: 20px;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
}

.option-block.w--current {
	background-color: #ee2529;
	color: #fff;
}

.course-outline {
	margin-top: 30px;
	border: none !important;
}

.outline-list {
	display: flex;
	margin-top: 0px;
	padding: 10px 20px;
	align-items: center;
	border-bottom: 1px solid #dfdfdf;
}

.accordion__button {
	background-color: #F5F6FA !important;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
}

.outline-name {
	display: flex;
	width: 50%;
	align-items: center;
}

.grid-icon.play {
	margin-right: 15px;
}

.text_block1 {
	font-weight: 600;
}

.option-flex {
	display: flex;
	width: 38%;
	justify-content: space-between;
	align-items: center;
}

.col_25 {
	position: sticky;
	top: 0px;
	width: 25%;
	margin-bottom: 20px;
	padding: 30px 2% 60px 2%;
	border-bottom-left-radius: 5px;
	background-color: #F9FAFC;
	box-shadow: 0 0 20px 0 hsla(0, 0%, 53.3%, 0.34);
	height: 100vh;
}

.img-border-radius {
	border-radius: 50%;
	width: 70px;
	height: 70px;
	box-shadow: 0 1px 5px rgb(0 0 0 / 7%);
	margin-right: 20px;
}

.info_col {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.c2 {
	width: 50%;
	margin-right: 5px;
}

.c2.flex {
	display: flex;
}

.star {
	width: 100px;
	margin-right: 2px;
	color: #f0b700;
	line-height: 0px;
}

.star.gray {
	color: #c6c6c6;
}

.star.size_10px {
	width: 10px;
	color: #15a9ff;
}

.star.size_18px {
	width: 18px;
	color: #69b5ef;
}

.margin-b {
	margin-bottom: 8vw !important;
}

.top-header {
	position: relative !important;
	padding: 15px 10px 15px 40px !important;
	border-bottom: solid 1px #dfdfdf;
}

.white-color {
	color: #000 !important;
	margin-bottom: 0px !important;
	font-weight: 600;
	font-size: 22px;
}

.d5 {
	width: 92%;
	margin: auto;
	display: flex !important;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 10px;
	padding: 0px 20px 20px 20px !important;
}

.rating-h {
	position: relative;
	height: 40vh;
}

.add-rating {
	position: absolute;
	bottom: 0;
	top: auto;
	right: 0;
	left: 0;
	padding: 10px 40px;
	border-top: 1px solid #dfdfdf;
	width: 100%;
}

.rp {
	padding: 20px !important;
}

.i-flex {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin: 10px 0px 10px 0px !important;
	border-bottom: solid 1px #c3c3c3;
	width: 100%;
}

.c1.margin-left {
	margin-left: 20px;
}

.img-width {
	width: 80px !important;
	height: 80px !important;
	border-radius: 5px !important;
	margin-bottom: 10px;
}

.top-m {
	margin-top: 25px !important;
}

.about_banner.wf-section {
	background: #fff;
}

.active {
	border-right: 5px solid #ff0000;
}

.search-input-no-bg {
	background: transparent;
	font-weight: 600 !important;
}

.image.right-align {
	position: absolute;
	left: auto;
	top: auto;
	right: 0px !important;
	bottom: 25%;
	width: 20px;
}

.w2 {
	width: 25% !important;
}

.box3 {
	box-shadow: 0 0 20px 0 hsl(0deg 0% 68% / 23%);
	border-radius: 5px;
}

.radius-5px {
	border-radius: 5px 5px 0 0;
}

.accordion__button {
	background-color: #f4f4f4;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	border-bottom: 1px solid #EBEBEB !important;
}

.accordion__button:before {
	display: inline-block;
	content: '';
	height: 8px !important;
	width: 8px !important;
	margin-right: 20px !important;
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(-45deg);
}

.r2 {
	background: #EBEBEB;
	border: none !important;
	border-radius: 5px 5px 0 0 !important;
}

.result-container {
	width: 100%;
	max-width: 600px;
	margin: auto;
	height: 90vh;
	border-radius: 5px !important;
	background: #EBEBEB;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}

.result-wrap {
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*background: #f8f8f8;*/
	height: 95% !important;
	border-radius: 5px;
}

.aw1 {
	width: 100% !important;
	padding: 5px 0px 5px 0px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.award-icon {
	width: 12%;
	margin-top: 15px;
}

.p5 {
	font-size: 16px;
	font-weight: 500;
	color: #000;
}

.mar-top {
	margin-top: 25px;
}

.a-tag {
	color: red;
	font-size: 16px;
	background: transparent;
}

.font-weight {
	font-weight: 700 !important;
	font-size: 25px !important;
}

@media screen and (min-width: 1920px) {
	.option-block {
		width: 85%;
	}

	.grid-icon.play {
		margin-right: 40px;
	}
}

@media screen and (min-width: 1280px) {
	.option-block {
		margin-right: 20px;
	}

	.outline-name {
		width: 75%;
	}
}

@media screen and (max-width: 991px) {
	.w2 {
		width: 30% !important;
	}

	.result-container {
		width: 90%;
	}

	.col_25 {
		padding-right: 5%;
		padding-left: 5%;
		height: auto;
	}

	.font-weight {
		font-size: 20px !important;
		line-height: 25px;
		text-align: center;
	}

	.c1,
	.margin-left {
		margin-left: 10px !important;
	}

	.d5 {
		width: 90%;
		display: flex !important;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 5px !important;
	}

	.i-flex {
		width: 100% !important;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}

	.img-width {
		width: 80px !important;
		height: 80px !important;
	}

	.button_wrap.flex {
		display: grid;
		grid-auto-columns: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 16px;
		grid-template-columns: 0.5fr 0.5fr;
		grid-template-rows: auto;
	}

	.button {
		margin-right: 0px;
		padding-left: 66px;
		background-position: 21% 50%;
		text-align: center;
	}

	.bookmarked-wrapper {
		width: 100%;
		max-width: 220px;
	}

	.star-icon.yellow {
		left: 55px;
	}

	.add-to-play {
		width: 100%;
		max-width: 220px;
	}

	.add-playlist-icon {
		left: 43px;
	}

	.tabs-menu {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.courses-heading {
		font-size: 22px;
	}
}

@media screen and (max-width: 767px) {
	.w2 {
		width: 50% !important;
	}

	.font-weight {
		font-size: 18px !important;
		text-align: center;
		line-height: 24px;
	}

	.ReactModal__Content {
		margin-top: 0px !important;
	}

	.top-header {
		padding: 5px 10px 6px 20px !important;
	}

	.white-color {
		font-size: 20px;
	}

	.d5 {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.container {
		padding-right: 4%;
		padding-left: 4%;
		flex-direction: column;
	}

	.col_72 {
		width: 100%;
	}

	.image_wrap {
		height: 80vh;
	}

	.content_wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	.heading {
		font-size: 25px;
		line-height: 30px;
	}

	.button_wrap {
		display: flex;
		padding-right: 20px;
		padding-left: 20px;
		justify-content: space-between;
		align-items: center;
	}

	.button {
		padding-right: 20px;
		padding-left: 50px;
		background-position: 20% 50%;
		font-size: 13px;
		text-align: center;
	}

	.bookmarked-wrapper {
		width: 100%;
		max-width: 240px;
	}

	.star-icon.yellow {
		left: 62px;
	}

	.add_to_play {
		width: 100%;
		max-width: 230px;
		margin-right: auto;
		margin-left: auto;
	}

	.new-head {
		font-size: 26px;
	}

	.outline-list {
		margin-top: 10px;
		flex-direction: column;
		align-items: stretch;
	}

	.outline-name {
		width: 100%;
	}

	.grid-icon.play {
		margin-right: 10px;
	}

	.grid-icon.tick {
		width: 26px;
	}

	.option-flex {
		width: 100%;
		margin-top: 15px;
		padding: 0px 0px 0px 10px;
	}

	.col_25 {
		width: 100%;
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 479px) {
	.w2 {
		width: 100% !important;
	}

	.add-playlist-icon {
		left: 36px;
	}

	.button_wrap.flex {
		justify-items: center;
		grid-column-gap: 16px;
		grid-row-gap: 0px;
		grid-template-columns: 1fr;
	}

	.image_wrap {
		height: 80vh;
		padding-top: 60px;
	}

	.heading {
		font-size: 20px;
		line-height: 28px;
	}

	.paragraph {
		font-size: 13px;
	}

	.paragraph-header {
		height: 21vh;
		overflow: hidden;
		font-size: 13px;
		text-overflow: ellipsis;
	}

	.button_wrap {
		flex-direction: column;
		align-items: center;
	}

	.button {
		display: flex;
		width: 100%;
		max-width: 190px;
		justify-content: center;
		align-items: center;
		background-position: 18% 50%;
	}

	.tabs-menu {
		grid-template-columns: 1fr 1fr;
	}

	.option-block {
		width: 90%;
		margin-right: 0px;
	}

	.col_25 {
		padding-right: 5%;
		padding-left: 5%;
	}

	.grid-block.super {
		justify-content: space-between;
		align-items: stretch;
	}

	.grid-div.no-p {
		margin-right: 0px;
	}

	.grid-icon {
		width: 18px;
	}

	.grid-icon.tick {
		width: 18px;
	}

	.grid-icon.size {
		width: 13px;
	}
}

.d-none {
	display: none;
}

.accordian_toggle {
    display: flex;
    justify-content: flex-end;
  }
  .accordian_heading {
    width: 20%;
  }
  .accordian_tile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: darkcyan;
    margin: 5px;
  }
  .accordian_is-active {
      border: 1px solid darkcyan;
    }
  .accordian_left {
    margin: 5px 0px;
    padding: 5px;
    cursor: pointer;
    display: flex;
  }
  .accordian_right {
    display: flex;
  }
  
.progress-10 {
  color: green; 
}

.progress-10::-webkit-progress-value {
  background-color:green;
}

.progress-10::-moz-progress-bar {
  background-color:green;
}

.progress-20 {
  color: red; 
}

.progress-20::-webkit-progress-value {
  background-color:red;
}

.progress-20::-moz-progress-bar {
  background-color:red;
}

/*# sourceMappingURL=6310d08518467c53.css.map*/