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

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

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

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

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

html {
	-moz-tab-size: 4;
	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] {
	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: Plus Jakarta Sans, Arial, sans-serif; /* 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::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-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgba(59, 130, 246, 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--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);
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
	appearance: none;
	background-color: #fff;
	border-color: #6b7280;
	border-width: 1px;
	border-radius: 0px;
	padding-top: 0.5rem;
	padding-right: 0.75rem;
	padding-bottom: 0.5rem;
	padding-left: 0.75rem;
	font-size: 1rem;
	line-height: 1.5rem;
	--tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
	border-color: #2563eb;
}

input::placeholder,textarea::placeholder {
	color: #6b7280;
	opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
	padding: 0;
}

::-webkit-date-and-time-value {
	min-height: 1.5em;
}

select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
	color-adjust: exact;
}

[multiple] {
	background-image: initial;
	background-position: initial;
	background-repeat: unset;
	background-size: initial;
	padding-right: 0.75rem;
	color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
	appearance: none;
	padding: 0;
	color-adjust: exact;
	display: inline-block;
	vertical-align: middle;
	background-origin: border-box;
	user-select: none;
	flex-shrink: 0;
	height: 1rem;
	width: 1rem;
	color: #2563eb;
	background-color: #fff;
	border-color: #6b7280;
	border-width: 1px;
	--tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
	border-radius: 0px;
}

[type='radio'] {
	border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
	--tw-ring-offset-width: 2px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: #2563eb;
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
	border-color: transparent;
	background-color: currentColor;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

[type='checkbox']:checked {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked {
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
	border-color: transparent;
	background-color: currentColor;
}

[type='checkbox']:indeterminate {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
	border-color: transparent;
	background-color: currentColor;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
	border-color: transparent;
	background-color: currentColor;
}

[type='file'] {
	background: unset;
	border-color: inherit;
	border-width: 0;
	border-radius: 0;
	padding: 0;
	font-size: unset;
	line-height: inherit;
}

[type='file']:focus {
	outline: 1px auto -webkit-focus-ring-color;
}
.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}
@media (min-width: 100%) {

	.container {
		max-width: 100%;
		padding-right: 1rem;
		padding-left: 1rem;
	}
}
@media (min-width: 1240px) {

	.container {
		max-width: 1240px;
		padding-right: 1rem;
		padding-left: 1rem;
	}
}
.pointer-events-none {
	pointer-events: none;
}
.pointer-events-auto {
	pointer-events: auto;
}
.fixed {
	position: fixed;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.sticky {
	position: sticky;
}
.inset-0 {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}
.left-\[-1831px\] {
	left: -1831px;
}
.top-\[323px\] {
	top: 323px;
}
.left-\[70px\] {
	left: 70px;
}
.top-\[232px\] {
	top: 232px;
}
.right-\[68px\] {
	right: 68px;
}
.top-\[352px\] {
	top: 352px;
}
.left-1\/2 {
	left: 50%;
}
.top-0 {
	top: 0px;
}
.right-0 {
	right: 0px;
}
.top-1\/2 {
	top: 50%;
}
.left-\[15px\] {
	left: 15px;
}
.top-\[21px\] {
	top: 21px;
}
.top-\[36px\] {
	top: 36px;
}
.left-\[47px\] {
	left: 47px;
}
.bottom-6 {
	bottom: 1.5rem;
}
.right-6 {
	right: 1.5rem;
}
.left-\[196px\] {
	left: 196px;
}
.top-\[100px\] {
	top: 100px;
}
.bottom-0 {
	bottom: 0px;
}
.left-0 {
	left: 0px;
}
.top-\[143px\] {
	top: 143px;
}
.top-\[50px\] {
	top: 50px;
}
.left-\[824px\] {
	left: 824px;
}
.top-\[243px\] {
	top: 243px;
}
.bottom-\[20px\] {
	bottom: 20px;
}
.right-\[25px\] {
	right: 25px;
}
.-left-8 {
	left: -2rem;
}
.top-\[30px\] {
	top: 30px;
}
.left-\[126px\] {
	left: 126px;
}
.top-\[124px\] {
	top: 124px;
}
.top-\[205px\] {
	top: 205px;
}
.left-\[56px\] {
	left: 56px;
}
.left-\[123px\] {
	left: 123px;
}
.left-\[1111px\] {
	left: 1111px;
}
.top-\[316px\] {
	top: 316px;
}
.top-\[744px\] {
	top: 744px;
}
.left-\[1103px\] {
	left: 1103px;
}
.top-\[317px\] {
	top: 317px;
}
.top-\[1364px\] {
	top: 1364px;
}
.left-\[1116px\] {
	left: 1116px;
}
.top-\[321px\] {
	top: 321px;
}
.top-full {
	top: 100%;
}
.bottom-\[-10\%\] {
	bottom: -10%;
}
.left-\[4\%\] {
	left: 4%;
}
.top-10 {
	top: 2.5rem;
}
.top-20 {
	top: 5rem;
}
.z-10 {
	z-index: 10;
}
.z-30 {
	z-index: 30;
}
.z-50 {
	z-index: 50;
}
.z-20 {
	z-index: 20;
}
.z-0 {
	z-index: 0;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mb-8 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.mb-6 {
	margin-bottom: 1.5rem;
}
.mt-8 {
	margin-top: 2rem;
}
.mt-1 {
	margin-top: 0.25rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mb-\[30px\] {
	margin-bottom: 30px;
}
.mb-\[15px\] {
	margin-bottom: 15px;
}
.mb-\[10px\] {
	margin-bottom: 10px;
}
.mb-\[20px\] {
	margin-bottom: 20px;
}
.mb-12 {
	margin-bottom: 3rem;
}
.mt-12 {
	margin-top: 3rem;
}
.mb-\[50px\] {
	margin-bottom: 50px;
}
.mt-\[50px\] {
	margin-top: 50px;
}
.mb-\[37px\] {
	margin-bottom: 37px;
}
.mt-auto {
	margin-top: auto;
}
.mt-3 {
	margin-top: 0.75rem;
}
.mb-\[53px\] {
	margin-bottom: 53px;
}
.block {
	display: block;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.grid {
	display: grid;
}
.hidden {
	display: none;
}
.h-\[1px\] {
	height: 1px;
}
.h-full {
	height: 100%;
}
.h-\[821px\] {
	height: 821px;
}
.h-\[1787px\] {
	height: 1787px;
}
.h-\[234px\] {
	height: 234px;
}
.h-\[206px\] {
	height: 206px;
}
.h-\[60px\] {
	height: 60px;
}
.h-\[516px\] {
	height: 516px;
}
.h-\[123px\] {
	height: 123px;
}
.h-auto {
	height: auto;
}
.h-\[62px\] {
	height: 62px;
}
.h-\[66px\] {
	height: 66px;
}
.h-\[845px\] {
	height: 845px;
}
.h-\[580px\] {
	height: 580px;
}
.h-\[2164px\] {
	height: 2164px;
}
.h-\[620px\] {
	height: 620px;
}
.h-\[415px\] {
	height: 415px;
}
.h-\[1544px\] {
	height: 1544px;
}
.h-\[700px\] {
	height: 700px;
}
.h-\[924px\] {
	height: 924px;
}
.h-\[800px\] {
	height: 800px;
}
.h-\[300px\] {
	height: 300px;
}
.h-\[70px\] {
	height: 70px;
}
.h-\[24px\] {
	height: 24px;
}
.h-\[167px\] {
	height: 167px;
}
.h-8 {
	height: 2rem;
}
.h-6 {
	height: 1.5rem;
}
.min-h-\[500px\] {
	min-height: 500px;
}
.min-h-\[2083px\] {
	min-height: 2083px;
}
.min-h-\[2164px\] {
	min-height: 2164px;
}
.min-h-\[421px\] {
	min-height: 421px;
}
.w-full {
	width: 100%;
}
.w-\[180px\] {
	width: 180px;
}
.w-\[7385px\] {
	width: 7385px;
}
.w-\[4820px\] {
	width: 4820px;
}
.w-\[394px\] {
	width: 394px;
}
.w-\[396px\] {
	width: 396px;
}
.w-\[375px\] {
	width: 375px;
}
.w-\[60px\] {
	width: 60px;
}
.w-\[516px\] {
	width: 516px;
}
.w-\[123px\] {
	width: 123px;
}
.w-\[159px\] {
	width: 159px;
}
.w-\[66px\] {
	width: 66px;
}
.w-\[580px\] {
	width: 580px;
}
.w-\[1208px\] {
	width: 1208px;
}
.w-\[75px\] {
	width: 75px;
}
.w-\[958px\] {
	width: 958px;
}
.w-\[403px\] {
	width: 403px;
}
.w-\[140px\] {
	width: 140px;
}
.w-\[265px\] {
	width: 265px;
}
.w-\[273px\] {
	width: 273px;
}
.w-\[167px\] {
	width: 167px;
}
.w-\[23\%\] {
	width: 23%;
}
.w-8 {
	width: 2rem;
}
.w-6 {
	width: 1.5rem;
}
.min-w-max {
	min-width: max-content;
}
.min-w-\[140px\] {
	min-width: 140px;
}
.max-w-\[1600px\] {
	max-width: 1600px;
}
.max-w-\[552px\] {
	max-width: 552px;
}
.max-w-\[400px\] {
	max-width: 400px;
}
.max-w-\[958px\] {
	max-width: 958px;
}
.max-w-\[603px\] {
	max-width: 603px;
}
.max-w-\[1206px\] {
	max-width: 1206px;
}
.max-w-\[600px\] {
	max-width: 600px;
}
.max-w-\[502px\] {
	max-width: 502px;
}
.max-w-\[1198px\] {
	max-width: 1198px;
}
.max-w-\[1208px\] {
	max-width: 1208px;
}
.max-w-\[499px\] {
	max-width: 499px;
}
.max-w-\[350px\] {
	max-width: 350px;
}
.max-w-\[768px\] {
	max-width: 768px;
}
.flex-1 {
	flex: 1 1 0%;
}
.flex-shrink-0 {
	flex-shrink: 0;
}
.-translate-x-1\/2 {
	--tw-translate-x: -50%;
	transform: var(--tw-transform);
}
.-translate-y-1\/2 {
	--tw-translate-y: -50%;
	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-pointer {
	cursor: pointer;
}
.list-disc {
	list-style-type: disc;
}
.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
	flex-direction: column;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-start {
	align-items: flex-start;
}
.items-center {
	align-items: center;
}
.justify-end {
	justify-content: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.gap-\[10px\] {
	gap: 10px;
}
.gap-6 {
	gap: 1.5rem;
}
.gap-\[17px\] {
	gap: 17px;
}
.gap-\[20px\] {
	gap: 20px;
}
.gap-\[80px\] {
	gap: 80px;
}
.gap-\[30px\] {
	gap: 30px;
}
.gap-8 {
	gap: 2rem;
}
.gap-\[27px\] {
	gap: 27px;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-5 {
	gap: 1.25rem;
}
.gap-1\.5 {
	gap: 0.375rem;
}
.gap-1 {
	gap: 0.25rem;
}
.gap-4 {
	gap: 1rem;
}
.gap-3 {
	gap: 0.75rem;
}
.gap-x-4 {
	column-gap: 1rem;
}
.gap-y-3 {
	row-gap: 0.75rem;
}
.space-y-\[10px\] > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(10px * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(10px * var(--tw-space-y-reverse));
}
.space-y-\[20px\] > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(20px * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(20px * var(--tw-space-y-reverse));
}
.space-y-\[30px\] > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(30px * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(30px * var(--tw-space-y-reverse));
}
.space-y-\[50px\] > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(50px * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(50px * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-y-0 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-y-reverse: 0;
	margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(0px * var(--tw-space-y-reverse));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(1rem * var(--tw-space-x-reverse));
	margin-left: calc(1rem * calc(1 - var(--tw-space-x-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;
}
.overflow-hidden {
	overflow: hidden;
}
.overflow-x-auto {
	overflow-x: auto;
}
.whitespace-nowrap {
	white-space: nowrap;
}
.rounded-\[5px\] {
	border-radius: 5px;
}
.rounded-\[15px\] {
	border-radius: 15px;
}
.rounded-\[10px\] {
	border-radius: 10px;
}
.rounded-\[20px\] {
	border-radius: 20px;
}
.rounded-\[30px\] {
	border-radius: 30px;
}
.rounded-\[9px\] {
	border-radius: 9px;
}
.rounded-lg {
	border-radius: 0.5rem;
}
.rounded-\[7px\] {
	border-radius: 7px;
}
.rounded {
	border-radius: 0.25rem;
}
.rounded-tl-\[5px\] {
	border-top-left-radius: 5px;
}
.rounded-bl-\[5px\] {
	border-bottom-left-radius: 5px;
}
.rounded-bl-\[30px\] {
	border-bottom-left-radius: 30px;
}
.rounded-br-\[30px\] {
	border-bottom-right-radius: 30px;
}
.rounded-tl-\[40px\] {
	border-top-left-radius: 40px;
}
.rounded-tr-\[40px\] {
	border-top-right-radius: 40px;
}
.rounded-tl-\[15px\] {
	border-top-left-radius: 15px;
}
.rounded-tr-\[15px\] {
	border-top-right-radius: 15px;
}
.rounded-bl-\[15px\] {
	border-bottom-left-radius: 15px;
}
.rounded-br-\[15px\] {
	border-bottom-right-radius: 15px;
}
.border {
	border-width: 1px;
}
.border-0 {
	border-width: 0px;
}
.border-2 {
	border-width: 2px;
}
.border-b {
	border-bottom-width: 1px;
}
.border-t {
	border-top-width: 1px;
}
.border-\[\#185699\] {
	--tw-border-opacity: 1;
	border-color: rgba(24, 86, 153, var(--tw-border-opacity));
}
.border-main-blue-50 {
	--tw-border-opacity: 1;
	border-color: rgba(227, 242, 254, var(--tw-border-opacity));
}
.border-white {
	--tw-border-opacity: 1;
	border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-\[\#ebeff3\] {
	--tw-border-opacity: 1;
	border-color: rgba(235, 239, 243, var(--tw-border-opacity));
}
.border-\[\#2854af\] {
	--tw-border-opacity: 1;
	border-color: rgba(40, 84, 175, var(--tw-border-opacity));
}
.border-gray-100 {
	--tw-border-opacity: 1;
	border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}
.border-main-blue-900 {
	--tw-border-opacity: 1;
	border-color: rgba(25, 71, 166, var(--tw-border-opacity));
}
.bg-main-blue-50 {
	--tw-bg-opacity: 1;
	background-color: rgba(227, 242, 254, var(--tw-bg-opacity));
}
.bg-main-orange {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 128, 0, var(--tw-bg-opacity));
}
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-main-blue-900 {
	--tw-bg-opacity: 1;
	background-color: rgba(25, 71, 166, var(--tw-bg-opacity));
}
.bg-\[\#1947a6\] {
	--tw-bg-opacity: 1;
	background-color: rgba(25, 71, 166, var(--tw-bg-opacity));
}
.bg-\[\#2177d8\] {
	--tw-bg-opacity: 1;
	background-color: rgba(33, 119, 216, var(--tw-bg-opacity));
}
.bg-\[\#44a6fb\] {
	--tw-bg-opacity: 1;
	background-color: rgba(68, 166, 251, var(--tw-bg-opacity));
}
.bg-\[\#f6f6f6\] {
	--tw-bg-opacity: 1;
	background-color: rgba(246, 246, 246, var(--tw-bg-opacity));
}
.bg-black {
	--tw-bg-opacity: 1;
	background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.bg-opacity-25 {
	--tw-bg-opacity: 0.25;
}
.from-\[\#a8d5ff\] {
	--tw-gradient-from: #a8d5ff;
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 213, 255, 0));
}
.via-\[\#d4e9ff\] {
	--tw-gradient-stops: var(--tw-gradient-from), #d4e9ff, var(--tw-gradient-to, rgba(212, 233, 255, 0));
}
.to-transparent {
	--tw-gradient-to: transparent;
}
.object-contain {
	object-fit: contain;
}
.object-cover {
	object-fit: cover;
}
.p-6 {
	padding: 1.5rem;
}
.p-\[76px\] {
	padding: 76px;
}
.p-8 {
	padding: 2rem;
}
.p-\[10px\] {
	padding: 10px;
}
.p-2 {
	padding: 0.5rem;
}
.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}
.px-\[15px\] {
	padding-left: 15px;
	padding-right: 15px;
}
.py-\[12px\] {
	padding-top: 12px;
	padding-bottom: 12px;
}
.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.px-\[14px\] {
	padding-left: 14px;
	padding-right: 14px;
}
.py-\[15px\] {
	padding-top: 15px;
	padding-bottom: 15px;
}
.py-\[20px\] {
	padding-top: 20px;
	padding-bottom: 20px;
}
.py-\[21px\] {
	padding-top: 21px;
	padding-bottom: 21px;
}
.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.px-\[30px\] {
	padding-left: 30px;
	padding-right: 30px;
}
.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}
.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.py-\[13px\] {
	padding-top: 13px;
	padding-bottom: 13px;
}
.py-\[7px\] {
	padding-top: 7px;
	padding-bottom: 7px;
}
.py-\[60px\] {
	padding-top: 60px;
	padding-bottom: 60px;
}
.py-\[58px\] {
	padding-top: 58px;
	padding-bottom: 58px;
}
.px-\[58px\] {
	padding-left: 58px;
	padding-right: 58px;
}
.px-\[13px\] {
	padding-left: 13px;
	padding-right: 13px;
}
.py-\[5px\] {
	padding-top: 5px;
	padding-bottom: 5px;
}
.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.pt-\[70px\] {
	padding-top: 70px;
}
.pt-4 {
	padding-top: 1rem;
}
.pl-6 {
	padding-left: 1.5rem;
}
.pb-\[100px\] {
	padding-bottom: 100px;
}
.pt-0 {
	padding-top: 0px;
}
.pt-3 {
	padding-top: 0.75rem;
}
.pl-4 {
	padding-left: 1rem;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.font-afacad {
	font-family: Afacad, sans-serif;
}
.text-\[16px\] {
	font-size: 16px;
}
.text-\[32px\] {
	font-size: 32px;
}
.text-\[18px\] {
	font-size: 18px;
}
.text-\[14px\] {
	font-size: 14px;
}
.text-\[36px\] {
	font-size: 36px;
}
.text-\[19px\] {
	font-size: 19px;
}
.text-\[20px\] {
	font-size: 20px;
}
.text-\[28px\] {
	font-size: 28px;
}
.text-\[24px\] {
	font-size: 24px;
}
.text-\[40px\] {
	font-size: 40px;
}
.text-\[15px\] {
	font-size: 15px;
}
.text-\[48px\] {
	font-size: 48px;
}
.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}
.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.font-bold {
	font-weight: 700;
}
.font-semibold {
	font-weight: 600;
}
.font-medium {
	font-weight: 500;
}
.font-normal {
	font-weight: 400;
}
.leading-\[1\.2\] {
	line-height: 1.2;
}
.leading-\[1\.5\] {
	line-height: 1.5;
}
.leading-tight {
	line-height: 1.25;
}
.leading-\[1\.3\] {
	line-height: 1.3;
}
.leading-none {
	line-height: 1;
}
.leading-\[1\.1\] {
	line-height: 1.1;
}
.tracking-\[-0\.1px\] {
	letter-spacing: -0.1px;
}
.text-main-blue-700 {
	--tw-text-opacity: 1;
	color: rgba(33, 119, 216, var(--tw-text-opacity));
}
.text-main-black {
	--tw-text-opacity: 1;
	color: rgba(37, 50, 58, var(--tw-text-opacity));
}
.text-\[\#181a1c\] {
	--tw-text-opacity: 1;
	color: rgba(24, 26, 28, var(--tw-text-opacity));
}
.text-white {
	--tw-text-opacity: 1;
	color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-\[\#185699\] {
	--tw-text-opacity: 1;
	color: rgba(24, 86, 153, var(--tw-text-opacity));
}
.text-\[\#151515\] {
	--tw-text-opacity: 1;
	color: rgba(21, 21, 21, var(--tw-text-opacity));
}
.text-main-orange {
	--tw-text-opacity: 1;
	color: rgba(255, 128, 0, var(--tw-text-opacity));
}
.text-\[\#081e3b\] {
	--tw-text-opacity: 1;
	color: rgba(8, 30, 59, var(--tw-text-opacity));
}
.text-\[\#201f21\] {
	--tw-text-opacity: 1;
	color: rgba(32, 31, 33, var(--tw-text-opacity));
}
.text-\[\#e3f2fe\] {
	--tw-text-opacity: 1;
	color: rgba(227, 242, 254, var(--tw-text-opacity));
}
.text-main-blue-900 {
	--tw-text-opacity: 1;
	color: rgba(25, 71, 166, var(--tw-text-opacity));
}
.text-black {
	--tw-text-opacity: 1;
	color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-\[\#1a1c1f\] {
	--tw-text-opacity: 1;
	color: rgba(26, 28, 31, var(--tw-text-opacity));
}
.opacity-30 {
	opacity: 0.3;
}
.opacity-40 {
	opacity: 0.4;
}
.opacity-50 {
	opacity: 0.5;
}
.opacity-60 {
	opacity: 0.6;
}
.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-lg {
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px 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-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-xl {
	--tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur-3xl {
	--tw-blur: blur(64px);
	filter: var(--tw-filter);
}
.transition-colors {
	transition-property: background-color, border-color, color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 250ms;
}
.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 250ms;
}
.transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 250ms;
}
.duration-200 {
	transition-duration: 200ms;
}
.duration-300 {
	transition-duration: 300ms;
}
.btn-orange-hover {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 250ms;
	transition-duration: 200ms;
}
.btn-orange-hover:hover {
    filter: brightness(0.9);
  }
/* Plugins */
div .swiper-wrapper {
  height: auto;
}
:root {
  --swiper-pagination-color: #25323A;
}
.custom-swiper-navigation {
  opacity: 1;
  transition: 0.25s opacity;
  cursor: pointer;
}
.swiper-button-disabled {
  opacity: 0.4;
}
/* Custom utilities */
.hover\:bg-\[\#e67300\]:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(230, 115, 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-50:hover {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
.hover\:text-main-blue-700:hover {
	--tw-text-opacity: 1;
	color: rgba(33, 119, 216, var(--tw-text-opacity));
}
.hover\:text-main-blue-900:hover {
	--tw-text-opacity: 1;
	color: rgba(25, 71, 166, var(--tw-text-opacity));
}
.hover\:text-main-orange:hover {
	--tw-text-opacity: 1;
	color: rgba(255, 128, 0, var(--tw-text-opacity));
}
.hover\:opacity-80:hover {
	opacity: 0.8;
}
.focus\:outline-none:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.focus\:ring-2:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-main-orange:focus {
	--tw-ring-opacity: 1;
	--tw-ring-color: rgba(255, 128, 0, var(--tw-ring-opacity));
}
.group:hover .group-hover\:block {
	display: block;
}
.group:hover .group-hover\:rotate-180 {
	--tw-rotate: 180deg;
	transform: var(--tw-transform);
}
.group:hover .group-hover\:text-main-orange {
	--tw-text-opacity: 1;
	color: rgba(255, 128, 0, var(--tw-text-opacity));
}
@media (min-width: 640px) {

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

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

	.sm\:px-6 {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 768px) {

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

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

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

	.md\:text-\[19px\] {
		font-size: 19px;
	}
}
@media (min-width: 1024px) {

	.lg\:absolute {
		position: absolute;
	}

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

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

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

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

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

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

	.lg\:mb-6 {
		margin-bottom: 1.5rem;
	}

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

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

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

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

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

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

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

	.lg\:mb-16 {
		margin-bottom: 4rem;
	}

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

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

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

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

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

	.lg\:block {
		display: block;
	}

	.lg\:flex {
		display: flex;
	}

	.lg\:hidden {
		display: none;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.lg\:flex-shrink-0 {
		flex-shrink: 0;
	}

	.lg\:-translate-x-1\/2 {
		--tw-translate-x: -50%;
		transform: var(--tw-transform);
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.lg\:gap-x-\[20px\] {
		column-gap: 20px;
	}

	.lg\:rounded-\[60px\] {
		border-radius: 60px;
	}

	.lg\:rounded-bl-\[60px\] {
		border-bottom-left-radius: 60px;
	}

	.lg\:rounded-br-\[60px\] {
		border-bottom-right-radius: 60px;
	}

	.lg\:rounded-tl-\[60px\] {
		border-top-left-radius: 60px;
	}

	.lg\:rounded-tr-\[60px\] {
		border-top-right-radius: 60px;
	}

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

	.lg\:p-\[70px\] {
		padding: 70px;
	}

	.lg\:p-\[40px\] {
		padding: 40px;
	}

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

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

	.lg\:px-\[70px\] {
		padding-left: 70px;
		padding-right: 70px;
	}

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

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

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

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

	.lg\:px-\[58px\] {
		padding-left: 58px;
		padding-right: 58px;
	}

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

	.lg\:px-\[196px\] {
		padding-left: 196px;
		padding-right: 196px;
	}

	.lg\:px-\[126px\] {
		padding-left: 126px;
		padding-right: 126px;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.lg\:text-\[56px\] {
		font-size: 56px;
	}

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

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

	.lg\:text-\[64px\] {
		font-size: 64px;
	}

	.lg\:text-\[40px\] {
		font-size: 40px;
	}

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

	.lg\:text-\[48px\] {
		font-size: 48px;
	}

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

	.lg\:text-\[38px\] {
		font-size: 38px;
	}

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