/**
 *  index.css
 *
 *
 */

/* Variables */

:root {
	/* Main nav */
	--gv-main-nav-height-mobile: 48px;
	--gv-main-nav-height-desktop: 75px;

	/* Logo */
	--gv-logo-height-mobile: 48px;

	/* Utility tab */
	--gv-utility-tab-mobile: 40px;

	/* Utility nav */
	--gv-utility-nav-height-mobile: 36px;
	--gv-utility-nav-height-desktop: 40px;

	/* Site header */
	--gv-site-header-height-mobile: var(--gv-main-nav-height-mobile) + var(--gv-utility-nav-height-mobile);
	--gv-site-header-height-desktop: var(--gv-main-nav-height-desktop) + var(--gv-utility-nav-height-desktop);

	/* Anchor */
	--gv-anchor-offset-mobile: var(--gv-site-header-height-mobile);
	--gv-anchor-offset-desktop: var(--gv-site-header-height-desktop);

	/* WP Toolbar */
	--wp-toolbar-height-mobile: 46px;
	--wp-toolbar-height-desktop: 32px;

	/* Mobile nav */
	--mobile-nav-top-margin: var(--gv-logo-height-mobile) + var(--gv-utility-nav-height-mobile) + var(--gv-utility-tab-mobile);

	/* iOS 14 Pro Max Safari address bar height */
	--ios-address-bar-height: 133px;
}

/* Core modules */

@media screen and (max-width: 782px) {
	.gv-anchor {
		position: relative;
		top: calc(-1 * (var(--gv-anchor-offset-mobile)));
	}

	/* .logged-in .gv-anchor {
		top: calc(-1 * (var(--gv-anchor-offset-mobile)));
	} */
}

@media screen and (min-width: 783px) {
	.gv-anchor {
		position: relative;
		top: calc(-1 * (var(--gv-anchor-offset-desktop)));
	}
	.logged-in .gv-anchor {
		/* Reminder: This remains the same because 
		 * the WP toolbar doesn't need to be added
		 * to the offset */
		/* top: calc(-1 * (var(--gv-anchor-offset-desktop))); */
	}
}

input[type="radio"]:checked + label span {
	background-color: #05173d /* dark blue */
}

.gv-list-image-arrow li {
	background-image: url(../../dist/img/ab79a5ec23b27b19ed66.svg);
	background-position: 0 2px;
	background-repeat: no-repeat;
}

.bg-teal .gv-list-image-arrow li{
	background-image: url(../../dist/img/4c7381ccf34b29c7772d.svg);
}

.gv-main-nav-list a[aria-expanded=true] .gv-main-nav-caret,
.gv-mobile-utility-nav-list a[aria-expanded=true] .gv-main-nav-caret {
	transform: rotate(180deg);
	transform-origin: center center;
}

.gv-main-nav a[aria-current="page"] { 
	color: #007f8d;
}

.gv-main-nav a[aria-current="page"] + .sub-menu-wrap ul li a {
	color: #05173d;
}

.gv-main-nav li.gv-main-nav-current-parent > a {
	color: #007f8d !important;
}

.gv-main-nav li.gv-main-nav-current-parent > a svg path { 
	stroke: #007f8d;
}

.gv-main-nav li.gv-main-nav-current-parent a:not([aria-current="page"]) {
	color: #05173d;
}

.gv-main-nav a[aria-current="page"] svg path { 
	stroke: #007f8d;
}

.gv-mobile-nav-scrollable-wrap {
	max-height: calc(100vh - (var(--mobile-nav-top-margin) + var(--ios-address-bar-height)));
}

.logged-in .gv-mobile-nav-scrollable-wrap {
	max-height: calc(100vh - (var(--mobile-nav-top-margin) + var(--wp-toolbar-height-mobile) + var(--ios-address-bar-height)));
}

@media screen and (min-width: 768px) {
	.gv-mobile-nav-scrollable-wrap {
		max-height: none;
	}
	.logged-in .gv-mobile-nav-scrollable-wrap {
		max-height: calc(100vh - (var(--mobile-nav-top-margin) + var(--wp-toolbar-height-desktop)));
	}
}

.gv-page h1 sup {
	font-weight: 100;
	font-size: .5em;
	line-height: .5em;
	top: -0.8em;
	position: relative;
}

.gv-page .gv-big-header h1 sup {
	font-weight: 100;
	font-size: .5em;
	line-height: .5em;
	top: -0.8em;
	position: relative;
}

.gv-page {
	padding-top: calc(var(--gv-site-header-height-mobile));
}

.logged-in .gv-page {
	padding-top: calc(var(--gv-site-header-height-mobile) + var(--wp-toolbar-height-mobile));
}

@media screen and (min-width: 783px) {
	.logged-in .gv-page {
		padding-top: calc(var(--gv-site-header-height-mobile) + var(--wp-toolbar-height-desktop));
	}
}

@media screen and (min-width: 1280px) {
	.gv-page {
		padding-top: calc(var(--gv-site-header-height-desktop));
	}
	.logged-in .gv-page {
		padding-top: calc(var(--gv-site-header-height-desktop) + var(--wp-toolbar-height-desktop));
	}
}

.gv-prose .alignleft {
	float: left;
	margin-right: 40px;
}

.gv-prose .alignright {
	float: right;
	margin-left: 40px;
}

@media screen and (max-width: 700px) {
	.gv-prose .alignleft {
		float: none;
		margin-right: 0;
	}
	.gv-prose .alignright {
		float: none;
		margin-left: 0;
	}
}

.gv-select-wrap {
	position: relative;
}

.gv-select-wrap::after {
	content: ' ';
	display: block;
	position: absolute;
	z-index: 2;
	top: 23px;
	right: 20px;
	left: auto;
	background-image: url(../../dist/img/ad1edecaee0a4d54fd46.svg);
	background-position: right top;
	background-repeat: no-repeat;
	width: 12px;
	height: 56px;
	pointer-events: none;
}

.logged-in .gv-site-header {
	top: var(--wp-toolbar-height-mobile);
}

@media screen and (min-width: 783px) {
	.logged-in .gv-site-header {
		top: var(--wp-toolbar-height-desktop);
	}
}

.logged-in .gv-story-lightbox {
	top: var(--wp-toolbar-height-mobile);
}

@media screen and (min-width: 783px) {
	.logged-in .gv-story-lightbox {
		top: var(--wp-toolbar-height-desktop);
	}
}

.gform_wrapper.gravity-theme .gform_fields{
  grid-column-gap: 24px !important;
}

.gfield_required.gfield_required_asterisk{
  color: #fff !important;
  background-color: transparent !important;
}

.gform_required_legend{
  margin-bottom: 10px !important;
  font-size: 14px !important;
}

/* .no-labels .hbspt-form label{
  display: none !important;
} */

/* .hbspt-form .form-columns-1{
  margin-bottom: 10px !important;
} */

.hbspt-form .inputs-list{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 0px !important;
}

.hbspt-form .inputs-list.multi-container{
  margin-top: 20px !important;
}

.hbspt-form .hs-form-radio-display{
  display: flex;
  gap: 20px;
}

.ginput_container input[type=text],
.ginput_container input[type=email],
.ginput_container input[type=password],
.ginput_container input[type=number],
.ginput_container input[type=tel],
.ginput_container textarea,
.hbspt-form input[type=text],
.hbspt-form input[type=email],
.hbspt-form input[type=password],
.hbspt-form input[type=number],
.hbspt-form input[type=tel],
.hbspt-form textarea,
.hbspt-form select {
	margin-bottom: 10px !important;
	width: 100% !important;
	border-radius: 0.75rem !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
	font-weight: 600 !important;
	--tw-text-opacity: 1 !important;
	color: rgb(31 31 31 / var(--tw-text-opacity)) !important;
}

.ginput_container input[type=text]::-moz-placeholder, .ginput_container input[type=email]::-moz-placeholder, .ginput_container input[type=password]::-moz-placeholder, .ginput_container input[type=number]::-moz-placeholder, .ginput_container input[type=tel]::-moz-placeholder, .ginput_container textarea::-moz-placeholder, .hbspt-form input[type=text]::-moz-placeholder, .hbspt-form input[type=email]::-moz-placeholder, .hbspt-form input[type=password]::-moz-placeholder, .hbspt-form input[type=number]::-moz-placeholder, .hbspt-form input[type=tel]::-moz-placeholder, .hbspt-form textarea::-moz-placeholder, .hbspt-form select::-moz-placeholder {
	--tw-placeholder-opacity: 1 !important;
	color: rgb(0 0 0 / var(--tw-placeholder-opacity)) !important;
}

.ginput_container input[type=text]::placeholder,
.ginput_container input[type=email]::placeholder,
.ginput_container input[type=password]::placeholder,
.ginput_container input[type=number]::placeholder,
.ginput_container input[type=tel]::placeholder,
.ginput_container textarea::placeholder,
.hbspt-form input[type=text]::placeholder,
.hbspt-form input[type=email]::placeholder,
.hbspt-form input[type=password]::placeholder,
.hbspt-form input[type=number]::placeholder,
.hbspt-form input[type=tel]::placeholder,
.hbspt-form textarea::placeholder,
.hbspt-form select::placeholder {
	--tw-placeholder-opacity: 1 !important;
	color: rgb(0 0 0 / var(--tw-placeholder-opacity)) !important;
}

.ginput_container select {
	margin-bottom: 10px !important;
	width: 100% !important;
	border-radius: 0.75rem !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
	font-weight: 600 !important;
	--tw-text-opacity: 1 !important;
	color: rgb(31 31 31 / var(--tw-text-opacity)) !important;
}

.ginput_container select::-moz-placeholder {
	--tw-placeholder-opacity: 1 !important;
	color: rgb(0 0 0 / var(--tw-placeholder-opacity)) !important;
}

.ginput_container select::placeholder {
	--tw-placeholder-opacity: 1 !important;
	color: rgb(0 0 0 / var(--tw-placeholder-opacity)) !important;
}

.ginput_container select{
  padding: 13px 10px !important
}

.ginput_container input[type=number]::-webkit-outer-spin-button,
.ginput_container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#gform_1 .gform_footer,
#gform_2 .gform_footer,
#gform_3 .gform_footer,
#gform_4 .gform_footer,
#gform_5 .gform_footer{
  flex-direction: column;
  display: block !important;
}

#gform_1 .gform_footer .gform_ajax_spinner,
#gform_2 .gform_footer .gform_ajax_spinner,
#gform_3 .gform_footer .gform_ajax_spinner,
#gform_4 .gform_footer .gform_ajax_spinner,
#gform_5 .gform_footer .gform_ajax_spinner{
  width: 20px;
  height: 20px;
  margin: auto;
}

.gform_footer input[type=submit] {
	box-sizing: border-box;
	display: inline-block;
	white-space: nowrap;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgb(5 23 61 / var(--tw-bg-opacity));
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-family: inter, sans-serif;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.gform_footer input[type=submit] input[type=submit]{
  background-color: #007481;
}

.gform_footer input[type=submit]{
  max-width: 500px;
  margin: auto;
}

.hbspt-form input[type=submit] {
	box-sizing: border-box;
	display: inline-block;
	white-space: nowrap;
	border-radius: 9999px;
	--tw-bg-opacity: 1;
	background-color: rgb(5 23 61 / var(--tw-bg-opacity));
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	font-family: inter, sans-serif;
	font-weight: 700;
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hbspt-form input[type=submit] input[type=submit]{
  background-color: #007481;
}

.hbspt-form input[type=submit]{
  margin: auto;
  width: 100%;
}

.bg-dark-blue input[type=submit]{
  background-color: #007481 !important;
}

.gform_footer input[type=submit].gform-button--width-full{
  max-width: none;
}

.gform_wrapper.gravity-theme .gform_validation_errors{
  padding: 10px !important;
}

.gform_wrapper.gravity-theme .gfield_description{
  display: none !important;
}

.gfield_required { /* Not visible but throws a11y errors */
	color: #05173d !important;
	background-color: white !important;
}

.gfield_label { /* Not visible but throws a11y errors */
	color: #05173d !important;
	background-color: white !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors>h2 .gform-icon{
  display: none !important;
}

.hbspt-form form{
  padding: 20px 0;
}

.hbspt-form fieldset{
  /* display: flex;
  flex-direction: row;
  gap: 10px; */
  max-width: none !important;
}

.hbspt-form fieldset .field{
  width: 100%;
  position: relative;
}

.hbspt-form .input{
  margin: 0;
  margin-bottom: 10px;
}

.hbspt-form .hs-form-field label{
  color: var(--e-global-color-text);
  font-weight: 700;
  font-size: 18px;
}

.hbspt-form fieldset ul:not(.inputs-list){
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  background-color: #ffe1e1;
  border: solid 1px red;
  border-radius: 10px;
  right: 0;
  margin-top: -10px;
}

.hbspt-form fieldset ul li{
  font-size: 12px;
  padding: 4px 5px;
  line-height: 12px;
}

.hbspt-form fieldset ul:not(.inputs-list) li label{
  color: red !important;
}

.hbspt-form input[type=submit]{
  width: 100%;
  font-weight: 700;
  margin-top: 15px;
}

.hbspt-form .hs_error_rollup{
  display: none !important;
}

.hbspt-form .hs-error-msgs{
  background: #fff9f9;
  border-radius: 5px;
  border: 1.5px solid #c02b0a;
  margin-block-end: 8px;
  margin-block-start: 8px;
  padding: 10px;
  position: relative;
  width: 100%;
  color: #c02b0a;
  font-size: 13.2px;
}

.tabs{
  background-color: #EEF2FC;
  border-radius: 8px;
  border: solid 1px #E3E8F6;
  padding: 5px;
  width: 400px;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .tabs{
    width: auto;
    margin: 0 10px;
  }
}

.tabs li{
  flex: 1;
}

.tabs li:last-child{
  padding-right: 0 !important;
}

.tabs li a{
  color: #3f4a63;
  background-color: transparent;
  border: solid 1px transparent;
  white-space: nowrap;
}

.tabs li a.active{
  color: #007F8D;
  background-color: #fff;
  border: solid 1px #E3E8F6;
}

.bg-background-blue .tabs li a.active{
  color: #007F8D;
  background-color: #fff;
  border: solid 1px #E3E8F6;
}

.tabs-item{
  transition: all 0.3s ease-in-out;
}

/* Resource Tabs */

#tab-clicks ul{
}

#tab-clicks ul li{
  border: solid 1px #E3E8F6;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  background-color: #E3E8F6;
}

#tab-clicks ul li.active{
  background-color: #fff;
}

#tab-clicks ul li button{
  padding: 20px 80px;
}

#tab-content{
  border: solid 1px #E3E8F6;
  border-radius: 0 0 18px 18px;
  padding: 40px;
}

#tab-content .link-buckets{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

#tab-content .link-buckets .box{
  width: calc(50% - 10px);
}

.gv-quote-left{
}

.gv-quote-right{
}

.gv-quote-left,
.gv-quote-right{
  color: #DEE4F7;
}

.bg-teal .gv-quote-left,
.bg-teal .gv-quote-right{
  color: #006672;
}

@media screen and (min-width: 783px) {
  .min-height-110px{
      min-height: 110px;
  }

  .min-height-250px{
    min-height: 250px;
  }
}

@media screen and (max-width: 782px) {
  .min-height-110px{
    min-height: 110px;
}

  .min-height-250px{
    min-height: 200px;
  }
}

.gv-mini-card figure img{
  width: 40px;
  height: 40px;
}

ul.list-logo {
  list-style-type: none;
  padding-left: 20px;
}

ul.list-logo li {
  position: relative;
  padding-left: 60px;
}

ul.list-logo li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url(../../dist/img/0025efce925e690d114f.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.page-template-hcp-severe-hypoglycemia-program .eyebrow-image{
  max-width: 100%;
  min-width: 270px;
}

.blank-table{
  border: none;
  margin-top: 10px !important;
}

.blank-table tr{
  border: none;
}

.blank-table td{
  border: none;
  padding: 0;
}

.blank-table th{
  border: none;
}

.blank-table td:nth-child(1){
  width: 20px;
}

.blank-table td:nth-child(2){
}

.blank-table td:nth-child(3){
  width: 70px;
  text-align: right;
}

.bg-background-gradient-gray:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90.08deg, rgba(46, 46, 46, 0.8) 23.33%, rgba(46, 46, 46, 0.513183) 56.55%, rgba(46, 46, 46, 0) 99.92%);
}

.bg-background-gradient-gray{
  background-position: left 25%;
}

/* Library overrides */

/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

/* FONT_START */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */

:root {
  --swiper-theme-color: #007f8d;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  --swiper-pagination-bottom: 25px;
	/*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */

.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.gv-quote-slide{
  padding: 10px 45px;
}

.gv-quote-slide-quote-left,
.gv-quote-slide-quote-right{
  width: 40px;
  height: 40px;
}

.gv-quote-slide-quote-left{
  display: inline-block;
  /* margin-left: -54px;
  margin-top: -47px; */
}

.gv-quote-slide-quote-left svg,
.gv-quote-slide-quote-right svg{
  width: inherit;
  height: inherit;
}

.gv-quote-slide-quote-right{
  display: inline-block;
  /* margin-right: -47px;
  margin-bottom: -20px; */
}

.gv-quote-slide-quote-left,
.gv-quote-slide-quote-right{
  color: #DEE4F7;
}

.gv-quote-slider.bg-teal .gv-quote-slide-quote-left,
.gv-quote-slider.bg-teal .gv-quote-slide-quote-right{
  color: #006672;
}

.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-prev,
.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-next{
  color: white;
  position: relative;
  background-color: rgba(255,255,255,0.2);
  width: 32px;
  height: 24px;
  border-radius: 2px;
  right: 0;
  left: 0;
}

.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-prev{

}

.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-next{
}

.gv-quote-slider.bg-teal .gv-quote-slider-slides{
  position: relative;
}

.gv-quote-slider.bg-teal .swiper-pagination-bullet-active{
  background-color: #fff;
}

.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-prev:after,
.gv-quote-slider.bg-teal .swiper-button-wrapper .swiper-button-next:after{
  display: none;
}

.gv-quote-slider.bg-teal .swiper-button-wrapper{
  position: absolute;
  text-align: center;
  width: 100%;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .gv-quote-slider.bg-teal .swiper-button-wrapper{
    display: none;
  }  
}

/*! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

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

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

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

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

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

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

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

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

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

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

summary {
  display: list-item;
}

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

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

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

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

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

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

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

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

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

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

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x:  ;
	--tw-pan-y:  ;
	--tw-pinch-zoom:  ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position:  ;
	--tw-gradient-via-position:  ;
	--tw-gradient-to-position:  ;
	--tw-ordinal:  ;
	--tw-slashed-zero:  ;
	--tw-numeric-figure:  ;
	--tw-numeric-spacing:  ;
	--tw-numeric-fraction:  ;
	--tw-ring-inset:  ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur:  ;
	--tw-brightness:  ;
	--tw-contrast:  ;
	--tw-grayscale:  ;
	--tw-hue-rotate:  ;
	--tw-invert:  ;
	--tw-saturate:  ;
	--tw-sepia:  ;
	--tw-drop-shadow:  ;
	--tw-backdrop-blur:  ;
	--tw-backdrop-brightness:  ;
	--tw-backdrop-contrast:  ;
	--tw-backdrop-grayscale:  ;
	--tw-backdrop-hue-rotate:  ;
	--tw-backdrop-invert:  ;
	--tw-backdrop-opacity:  ;
	--tw-backdrop-saturate:  ;
	--tw-backdrop-sepia:  ;
	--tw-contain-size:  ;
	--tw-contain-layout:  ;
	--tw-contain-paint:  ;
	--tw-contain-style:  ;
}

.container {
	width: 100%;
}

@media (min-width: 479px) {

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

@media (min-width: 768px) {

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

@media (min-width: 992px) {

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

@media (min-width: 1280px) {

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

.prose {
	color: #05173d;
	max-width: none;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 1.25em;
	margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-lead);
	font-size: 1.25em;
	line-height: 1.6;
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-links);
	text-decoration: underline;
	font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-bold);
	font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: decimal;
	margin-top: 1.25em;
	margin-bottom: 1.25em;
	padding-inline-start: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	list-style-type: disc;
	margin-top: 1.25em;
	margin-bottom: 1.25em;
	padding-inline-start: 1.625em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
	font-weight: 400;
	color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
	color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 600;
	margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	border-color: var(--tw-prose-hr);
	border-top-width: 1px;
	margin-top: 3em;
	margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 500;
	font-style: italic;
	color: var(--tw-prose-quotes);
	border-inline-start-width: 0.25rem;
	border-inline-start-color: var(--tw-prose-quote-borders);
	quotes: "\201C""\201D""\2018""\2019";
	margin-top: 1.6em;
	margin-bottom: 1.6em;
	padding-inline-start: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
	content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
	content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 800;
	font-size: 2.25em;
	margin-top: 0;
	margin-bottom: 0.8888889em;
	line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 900;
	color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 700;
	font-size: 1.5em;
	margin-top: 2em;
	margin-bottom: 1em;
	line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 800;
	color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 600;
	font-size: 1.25em;
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 700;
	color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 600;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 700;
	color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 2em;
	margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	display: block;
	margin-top: 2em;
	margin-bottom: 2em;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 2em;
	margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	font-weight: 500;
	font-family: inherit;
	color: var(--tw-prose-kbd);
	box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
	font-size: 0.875em;
	border-radius: 0.3125rem;
	padding-top: 0.1875em;
	padding-inline-end: 0.375em;
	padding-bottom: 0.1875em;
	padding-inline-start: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-code);
	font-weight: 600;
	font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
	content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
	content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
	font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
	font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-pre-code);
	background-color: var(--tw-prose-pre-bg);
	overflow-x: auto;
	font-weight: 400;
	font-size: 0.875em;
	line-height: 1.7142857;
	margin-top: 1.7142857em;
	margin-bottom: 1.7142857em;
	border-radius: 0.375rem;
	padding-top: 0.8571429em;
	padding-inline-end: 1.1428571em;
	padding-bottom: 0.8571429em;
	padding-inline-start: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	background-color: transparent;
	border-width: 0;
	border-radius: 0;
	padding: 0;
	font-weight: inherit;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
	content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
	content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	width: 100%;
	table-layout: auto;
	margin-top: 2em;
	margin-bottom: 2em;
	font-size: 0.875em;
	line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	border-bottom-width: 1px;
	border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-headings);
	font-weight: 600;
	vertical-align: bottom;
	padding-inline-end: 0.5714286em;
	padding-bottom: 0.5714286em;
	padding-inline-start: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	border-bottom-width: 1px;
	border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	border-top-width: 1px;
	border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	vertical-align: top;
}

.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	text-align: start;
}

.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
	margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	color: var(--tw-prose-captions);
	font-size: 0.875em;
	line-height: 1.4285714;
	margin-top: 0.8571429em;
}

.prose {
	--tw-prose-body: #374151;
	--tw-prose-headings: #111827;
	--tw-prose-lead: #4b5563;
	--tw-prose-links: #111827;
	--tw-prose-bold: #111827;
	--tw-prose-counters: #6b7280;
	--tw-prose-bullets: #d1d5db;
	--tw-prose-hr: #e5e7eb;
	--tw-prose-quotes: #111827;
	--tw-prose-quote-borders: #e5e7eb;
	--tw-prose-captions: #6b7280;
	--tw-prose-kbd: #111827;
	--tw-prose-kbd-shadows: 17 24 39;
	--tw-prose-code: #111827;
	--tw-prose-pre-code: #e5e7eb;
	--tw-prose-pre-bg: #1f2937;
	--tw-prose-th-borders: #d1d5db;
	--tw-prose-td-borders: #e5e7eb;
	--tw-prose-invert-body: #d1d5db;
	--tw-prose-invert-headings: #fff;
	--tw-prose-invert-lead: #9ca3af;
	--tw-prose-invert-links: #fff;
	--tw-prose-invert-bold: #fff;
	--tw-prose-invert-counters: #9ca3af;
	--tw-prose-invert-bullets: #4b5563;
	--tw-prose-invert-hr: #374151;
	--tw-prose-invert-quotes: #f3f4f6;
	--tw-prose-invert-quote-borders: #374151;
	--tw-prose-invert-captions: #9ca3af;
	--tw-prose-invert-kbd: #fff;
	--tw-prose-invert-kbd-shadows: 255 255 255;
	--tw-prose-invert-code: #fff;
	--tw-prose-invert-pre-code: #d1d5db;
	--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
	--tw-prose-invert-th-borders: #4b5563;
	--tw-prose-invert-td-borders: #374151;
	font-size: 1rem;
	line-height: 1.75;
}

.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
	margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-start: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-start: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 1.25em;
}

.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 1.25em;
}

.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 1.25em;
	margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0.5em;
	padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-top: 0.5714286em;
	padding-inline-end: 0.5714286em;
	padding-bottom: 0.5714286em;
	padding-inline-start: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 2em;
	margin-bottom: 2em;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
	margin-bottom: 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.static {
	position: static;
}

.fixed {
	position: fixed;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.sticky {
	position: sticky;
}

.-bottom-1 {
	bottom: -0.25rem;
}

.-left-14 {
	left: -3.5rem;
}

.-right-14 {
	right: -3.5rem;
}

.-top-2 {
	top: -0.5rem;
}

.-top-\[36px\] {
	top: -36px;
}

.bottom-0 {
	bottom: 0px;
}

.bottom-2 {
	bottom: 0.5rem;
}

.bottom-4 {
	bottom: 1rem;
}

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

.bottom-\[56px\] {
	bottom: 56px;
}

.bottom-\[70px\] {
	bottom: 70px;
}

.bottom-\[8px\] {
	bottom: 8px;
}

.left-0 {
	left: 0px;
}

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

.left-4 {
	left: 1rem;
}

.left-\[192px\] {
	left: 192px;
}

.left-\[4px\] {
	left: 4px;
}

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

.left-auto {
	left: auto;
}

.right-0 {
	right: 0px;
}

.right-4 {
	right: 1rem;
}

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

.right-\[4px\] {
	right: 4px;
}

.top-0 {
	top: 0px;
}

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

.top-4 {
	top: 1rem;
}

.top-\[104px\] {
	top: 104px;
}

.top-\[16px\] {
	top: 16px;
}

.top-\[17px\] {
	top: 17px;
}

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

.top-\[50\%\] {
	top: 50%;
}

.top-\[5px\] {
	top: 5px;
}

.top-\[8px\] {
	top: 8px;
}

.top-\[92px\] {
	top: 92px;
}

.top-auto {
	top: auto;
}

.z-0 {
	z-index: 0;
}

.z-10 {
	z-index: 10;
}

.z-20 {
	z-index: 20;
}

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

.z-40 {
	z-index: 40;
}

.z-50 {
	z-index: 50;
}

.order-first {
	order: -9999;
}

.order-last {
	order: 9999;
}

.-m-2 {
	margin: -0.5rem;
}

.-mx-2 {
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

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

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

.-mb-px {
	margin-bottom: -1px;
}

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

.-mt-4 {
	margin-top: -1rem;
}

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

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

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

.mb-1 {
	margin-bottom: 0.25rem;
}

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

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

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

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

.mb-5 {
	margin-bottom: 1.25rem;
}

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

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

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

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

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

.me-2 {
	margin-inline-end: 0.5rem;
}

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

.ml-1 {
	margin-left: 0.25rem;
}

.ml-3 {
	margin-left: 0.75rem;
}

.mr-0 {
	margin-right: 0px;
}

.mr-1 {
	margin-right: 0.25rem;
}

.mr-14 {
	margin-right: 3.5rem;
}

.mr-2 {
	margin-right: 0.5rem;
}

.mr-4 {
	margin-right: 1rem;
}

.mr-auto {
	margin-right: auto;
}

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

.mt-1 {
	margin-top: 0.25rem;
}

.mt-10 {
	margin-top: 2.5rem;
}

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

.mt-3 {
	margin-top: 0.75rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-8 {
	margin-top: 2rem;
}

.box-border {
	box-sizing: border-box;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.flex {
	display: flex;
}

.table {
	display: table;
}

.contents {
	display: contents;
}

.hidden {
	display: none;
}

.aspect-\[1\.78\] {
	aspect-ratio: 1.78;
}

.aspect-\[3\/2\] {
	aspect-ratio: 3/2;
}

.aspect-square {
	aspect-ratio: 1 / 1;
}

.h-0 {
	height: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-auto {
	height: auto;
}

.h-full {
	height: 100%;
}

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

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

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

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

.w-1\/5 {
	width: 20%;
}

.w-14 {
	width: 3.5rem;
}

.w-2\/3 {
	width: 66.666667%;
}

.w-3\/4 {
	width: 75%;
}

.w-3\/5 {
	width: 60%;
}

.w-4\/5 {
	width: 80%;
}

.w-64 {
	width: 16rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.w-auto {
	width: auto;
}

.w-full {
	width: 100%;
}

.max-w-4xl {
	max-width: 56rem;
}

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

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

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

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

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

.max-w-none {
	max-width: none;
}

.max-w-screen-lg {
	max-width: 992px;
}

.max-w-screen-md {
	max-width: 768px;
}

.flex-1 {
	flex: 1 1 0%;
}

.flex-auto {
	flex: 1 1 auto;
}

.flex-initial {
	flex: 0 1 auto;
}

.flex-none {
	flex: none;
}

.flex-grow {
	flex-grow: 1;
}

.origin-center {
	transform-origin: center;
}

.rotate-90 {
	--tw-rotate: 90deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
	cursor: pointer;
}

.columns-1 {
	-moz-columns: 1;
	     columns: 1;
}

.columns-2 {
	-moz-columns: 2;
	     columns: 2;
}

.columns-3 {
	-moz-columns: 3;
	     columns: 3;
}

.columns-4 {
	-moz-columns: 4;
	     columns: 4;
}

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

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

.flex-col-reverse {
	flex-direction: column-reverse;
}

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

.content-center {
	align-content: center;
}

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

.items-stretch {
	align-items: stretch;
}

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

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

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

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

.self-center {
	align-self: center;
}

.self-stretch {
	align-self: stretch;
}

.justify-self-start {
	justify-self: start;
}

.justify-self-end {
	justify-self: end;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-scroll {
	overflow: scroll;
}

.scroll-smooth {
	scroll-behavior: smooth;
}

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

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

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

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

.rounded-b-full {
	border-bottom-right-radius: 9999px;
	border-bottom-left-radius: 9999px;
}

.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 {
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}

.rounded-t-xl {
	border-top-left-radius: 0.75rem;
	border-top-right-radius: 0.75rem;
}

.rounded-br-full {
	border-bottom-right-radius: 9999px;
}

.rounded-tr-full {
	border-top-right-radius: 9999px;
}

.border {
	border-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-t {
	border-top-width: 1px;
}

.border-t-4 {
	border-top-width: 4px;
}

.border-accent-blue {
	--tw-border-opacity: 1;
	border-color: rgb(222 228 246 / var(--tw-border-opacity));
}

.border-gray-light {
	--tw-border-opacity: 1;
	border-color: rgb(213 214 220 / var(--tw-border-opacity));
}

.border-teal {
	--tw-border-opacity: 1;
	border-color: rgb(0 127 141 / var(--tw-border-opacity));
}

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

.bg-accent-blue {
	--tw-bg-opacity: 1;
	background-color: rgb(222 228 246 / var(--tw-bg-opacity));
}

.bg-background-blue {
	--tw-bg-opacity: 1;
	background-color: rgb(247 249 255 / var(--tw-bg-opacity));
}

.bg-background-blue-2 {
	--tw-bg-opacity: 1;
	background-color: rgb(238 242 252 / var(--tw-bg-opacity));
}

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

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

.bg-dark-blue {
	--tw-bg-opacity: 1;
	background-color: rgb(5 23 61 / var(--tw-bg-opacity));
}

.bg-dark-blue-2 {
	--tw-bg-opacity: 1;
	background-color: rgb(5 19 50 / var(--tw-bg-opacity));
}

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

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

.bg-push-yellow-bg {
	--tw-bg-opacity: 1;
	background-color: rgb(255 240 217 / var(--tw-bg-opacity));
}

.bg-teal {
	--tw-bg-opacity: 1;
	background-color: rgb(0 127 141 / var(--tw-bg-opacity));
}

.bg-teal-2 {
	--tw-bg-opacity: 1;
	background-color: rgb(218 235 238 / var(--tw-bg-opacity));
}

.bg-teal-darker {
	--tw-bg-opacity: 1;
	background-color: rgb(0 102 114 / var(--tw-bg-opacity));
}

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

.bg-opacity-10 {
	--tw-bg-opacity: 0.1;
}

.\!bg-none {
	background-image: none !important;
}

.bg-gradient-to-r {
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

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

.from-dark-blue\/80 {
	--tw-gradient-from: rgb(5 23 61 / 0.8) var(--tw-gradient-from-position);
	--tw-gradient-to: rgb(5 23 61 / 0) var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-dark-blue\/50 {
	--tw-gradient-to: rgb(5 23 61 / 0)  var(--tw-gradient-to-position);
	--tw-gradient-stops: var(--tw-gradient-from), rgb(5 23 61 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-dark-blue\/0 {
	--tw-gradient-to: rgb(5 23 61 / 0) var(--tw-gradient-to-position);
}

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

.bg-bottom {
	background-position: bottom;
}

.bg-center {
	background-position: center;
}

.bg-left {
	background-position: left;
}

.bg-left-bottom {
	background-position: left bottom;
}

.bg-left-top {
	background-position: left top;
}

.bg-right {
	background-position: right;
}

.bg-right-bottom {
	background-position: right bottom;
}

.bg-right-top {
	background-position: right top;
}

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

.bg-no-repeat {
	background-repeat: no-repeat;
}

.stroke-dark-blue {
	stroke: #05173d;
}

.stroke-teal {
	stroke: #007f8d;
}

.stroke-white {
	stroke: #ffffff;
}

.object-cover {
	-o-object-fit: cover;
	   object-fit: cover;
}

.p-1 {
	padding: 0.25rem;
}

.p-10 {
	padding: 2.5rem;
}

.p-2 {
	padding: 0.5rem;
}

.p-3 {
	padding: 0.75rem;
}

.p-4 {
	padding: 1rem;
}

.p-8 {
	padding: 2rem;
}

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

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

.px-16 {
	padding-left: 4rem;
	padding-right: 4rem;
}

.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.px-28 {
	padding-left: 7rem;
	padding-right: 7rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

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

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

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

.py-10 {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.py-11 {
	padding-top: 2.75rem;
	padding-bottom: 2.75rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

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

.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

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

.py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.py-7 {
	padding-top: 1.75rem;
	padding-bottom: 1.75rem;
}

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

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

.pb-10 {
	padding-bottom: 2.5rem;
}

.pb-12 {
	padding-bottom: 3rem;
}

.pb-16 {
	padding-bottom: 4rem;
}

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

.pb-28 {
	padding-bottom: 7rem;
}

.pb-3 {
	padding-bottom: 0.75rem;
}

.pb-4 {
	padding-bottom: 1rem;
}

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

.pb-8 {
	padding-bottom: 2rem;
}

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

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

.pl-4 {
	padding-left: 1rem;
}

.pl-8 {
	padding-left: 2rem;
}

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

.pr-4 {
	padding-right: 1rem;
}

.pr-5 {
	padding-right: 1.25rem;
}

.pr-8 {
	padding-right: 2rem;
}

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

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

.pt-14 {
	padding-top: 3.5rem;
}

.pt-2 {
	padding-top: 0.5rem;
}

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

.pt-4 {
	padding-top: 1rem;
}

.pt-6 {
	padding-top: 1.5rem;
}

.pt-8 {
	padding-top: 2rem;
}

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

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

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

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

.font-body {
	font-family: roboto, sans-serif;
}

.font-display {
	font-family: inter, sans-serif;
}

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

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

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

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

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

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

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

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.font-bold {
	font-weight: 700;
}

.font-extrabold {
	font-weight: 800;
}

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

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

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

.font-thin {
	font-weight: 100;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.italic {
	font-style: italic;
}

.\!leading-tight {
	line-height: 1.25 !important;
}

.leading-5 {
	line-height: 1.25rem;
}

.leading-8 {
	line-height: 2rem;
}

.tracking-tight {
	letter-spacing: -0.025em;
}

.tracking-widest {
	letter-spacing: 0.1em;
}

.text-black {
	--tw-text-opacity: 1;
	color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-body-dark {
	--tw-text-opacity: 1;
	color: rgb(31 31 31 / var(--tw-text-opacity));
}

.text-body-light {
	--tw-text-opacity: 1;
	color: rgb(86 86 86 / var(--tw-text-opacity));
}

.text-dark-blue {
	--tw-text-opacity: 1;
	color: rgb(5 23 61 / var(--tw-text-opacity));
}

.text-dark-gray {
	--tw-text-opacity: 1;
	color: rgb(46 46 46 / var(--tw-text-opacity));
}

.text-pull-red {
	--tw-text-opacity: 1;
	color: rgb(190 2 2 / var(--tw-text-opacity));
}

.text-push-yellow {
	--tw-text-opacity: 1;
	color: rgb(198 117 0 / var(--tw-text-opacity));
}

.text-red {
	--tw-text-opacity: 1;
	color: rgb(174 30 65 / var(--tw-text-opacity));
}

.text-teal {
	--tw-text-opacity: 1;
	color: rgb(0 127 141 / var(--tw-text-opacity));
}

.text-teal-darker {
	--tw-text-opacity: 1;
	color: rgb(0 102 114 / var(--tw-text-opacity));
}

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

.underline {
	text-decoration-line: underline;
}

.no-underline {
	text-decoration-line: none;
}

.underline-offset-4 {
	text-underline-offset: 4px;
}

.antialiased {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased {
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.opacity-90 {
	opacity: 0.9;
}

.shadow {
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-200 {
	transition-duration: 200ms;
}

.\[project\:\%s\] {
	project: %s;
}

@media (min-width: 768px) {

	.md\:container {
		width: 100%;
	}

	@media (min-width: 479px) {

		.md\:container {
			max-width: 479px;
		}
	}

	@media (min-width: 768px) {

		.md\:container {
			max-width: 768px;
		}
	}

	@media (min-width: 992px) {

		.md\:container {
			max-width: 992px;
		}
	}

	@media (min-width: 1280px) {

		.md\:container {
			max-width: 1280px;
		}
	}
}

@media (min-width: 992px) {

	.lg\:container {
		width: 100%;
	}

	@media (min-width: 479px) {

		.lg\:container {
			max-width: 479px;
		}
	}

	@media (min-width: 768px) {

		.lg\:container {
			max-width: 768px;
		}
	}

	@media (min-width: 992px) {

		.lg\:container {
			max-width: 992px;
		}
	}

	@media (min-width: 1280px) {

		.lg\:container {
			max-width: 1280px;
		}
	}
}

@media (min-width: 1280px) {

	.xl\:container {
		width: 100%;
	}

	@media (min-width: 479px) {

		.xl\:container {
			max-width: 479px;
		}
	}

	@media (min-width: 768px) {

		.xl\:container {
			max-width: 768px;
		}
	}

	@media (min-width: 992px) {

		.xl\:container {
			max-width: 992px;
		}
	}

	@media (min-width: 1280px) {

		.xl\:container {
			max-width: 1280px;
		}
	}
}

.marker\:text-dark-blue *::marker {
	color: rgb(5 23 61 );
}

.marker\:text-white *::marker {
	color: rgb(255 255 255 );
}

.marker\:text-dark-blue::marker {
	color: rgb(5 23 61 );
}

.marker\:text-white::marker {
	color: rgb(255 255 255 );
}

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

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

.group.is-opened .group-\[\.is-opened\]\:bottom-\[14px\] {
	bottom: 14px;
}

.group.is-opened .group-\[\.is-opened\]\:left-\[5px\] {
	left: 5px;
}

.group.is-opened .group-\[\.is-opened\]\:top-\[14px\] {
	top: 14px;
}

.group.is-opened .group-\[\.is-opened\]\:h-0 {
	height: 0px;
}

.group.is-opened .group-\[\.is-opened\]\:-rotate-45 {
	--tw-rotate: -45deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group.is-opened .group-\[\.is-opened\]\:rotate-180 {
	--tw-rotate: 180deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group.is-opened .group-\[\.is-opened\]\:rotate-45 {
	--tw-rotate: 45deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.prose-h2\:my-2 :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.prose-h3\:my-2 :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.prose-p\:m-0 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	margin: 0px;
}

.prose-p\:inline :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	display: inline;
}

.prose-p\:text-3xl :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.prose-p\:font-semibold :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	font-weight: 600;
}

.prose-a\:text-teal :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	--tw-text-opacity: 1;
	color: rgb(0 127 141 / var(--tw-text-opacity));
}

.prose-a\:text-white :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.prose-a\:underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	text-decoration-line: underline;
}

.prose-a\:no-underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	text-decoration-line: none;
}

.prose-strong\:text-white :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.prose-ul\:mt-0 :is(:where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	margin-top: 0px;
}

.prose-li\:mt-0 :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	margin-top: 0px;
}

.prose-li\:break-words :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
	overflow-wrap: break-word;
}

.child-link\:underline a {
	text-decoration-line: underline;
}

@media (min-width: 479px) {

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

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

	.sm\:py-10 {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.sm\:pl-8 {
		padding-left: 2rem;
	}
}

@media (min-width: 768px) {

	.md\:static {
		position: static;
	}

	.md\:absolute {
		position: absolute;
	}

	.md\:relative {
		position: relative;
	}

	.md\:\!bottom-14 {
		bottom: 3.5rem !important;
	}

	.md\:-bottom-1 {
		bottom: -0.25rem;
	}

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

	.md\:-right-2 {
		right: -0.5rem;
	}

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

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

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

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

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

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

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

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

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

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

	.md\:order-first {
		order: -9999;
	}

	.md\:order-last {
		order: 9999;
	}

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

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

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

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

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

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

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

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

	.md\:mb-9 {
		margin-bottom: 2.25rem;
	}

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

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

	.md\:ml-4 {
		margin-left: 1rem;
	}

	.md\:ml-8 {
		margin-left: 2rem;
	}

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

	.md\:mr-14 {
		margin-right: 3.5rem;
	}

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

	.md\:mt-12 {
		margin-top: 3rem;
	}

	.md\:mt-28 {
		margin-top: 7rem;
	}

	.md\:block {
		display: block;
	}

	.md\:inline {
		display: inline;
	}

	.md\:flex {
		display: flex;
	}

	.md\:hidden {
		display: none;
	}

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

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

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

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

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

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

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

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

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

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

	.md\:w-2\/3 {
		width: 66.666667%;
	}

	.md\:w-2\/5 {
		width: 40%;
	}

	.md\:w-3\/5 {
		width: 60%;
	}

	.md\:w-4\/5 {
		width: 80%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.md\:max-w-7xl {
		max-width: 80rem;
	}

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

	.md\:flex-auto {
		flex: 1 1 auto;
	}

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

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

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

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

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

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

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

	.md\:rounded-bl-full {
		border-bottom-left-radius: 9999px;
	}

	.md\:rounded-br-full {
		border-bottom-right-radius: 9999px;
	}

	.md\:rounded-tr-full {
		border-top-right-radius: 9999px;
	}

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

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

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

	.md\:p-8 {
		padding: 2rem;
	}

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

	.md\:px-14 {
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}

	.md\:px-16 {
		padding-left: 4rem;
		padding-right: 4rem;
	}

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

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

	.md\:px-4 {
		padding-left: 1rem;
		padding-right: 1rem;
	}

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

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

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

	.md\:py-12 {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

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

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

	.md\:py-24 {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.md\:py-28 {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}

	.md\:py-3 {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.md\:py-6 {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

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

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

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

	.md\:pb-12 {
		padding-bottom: 3rem;
	}

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

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

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

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

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

	.md\:pl-12 {
		padding-left: 3rem;
	}

	.md\:pl-14 {
		padding-left: 3.5rem;
	}

	.md\:pl-6 {
		padding-left: 1.5rem;
	}

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

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

	.md\:pl-\[calc\(\(\(100vw_-_1280px\)\/2\)\)\] {
		padding-left: calc(((100vw - 1280px) / 2));
	}

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

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

	.md\:pr-16 {
		padding-right: 4rem;
	}

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

	.md\:pr-32 {
		padding-right: 8rem;
	}

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

	.md\:pr-6 {
		padding-right: 1.5rem;
	}

	.md\:pr-7 {
		padding-right: 1.75rem;
	}

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

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

	.md\:pt-12 {
		padding-top: 3rem;
	}

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

	.md\:pt-24 {
		padding-top: 6rem;
	}

	.md\:pt-6 {
		padding-top: 1.5rem;
	}

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

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

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

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

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

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

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

	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}

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

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

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

	.md\:text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}

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

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

@media (min-width: 992px) {

	.lg\:absolute {
		position: absolute;
	}

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

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

	.lg\:left-\[calc\(\(100vw_\*_1\/4\)_-_58px\)\] {
		left: calc((100vw * 1 / 4) - 58px);
	}

	.lg\:left-\[calc\(\(100vw_\*_3\/4\)_-_58px\)\] {
		left: calc((100vw * 3 / 4) - 58px);
	}

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

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

	.lg\:top-\[100\%\] {
		top: 100%;
	}

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

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

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

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

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

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

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

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

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

	.lg\:mb-9 {
		margin-bottom: 2.25rem;
	}

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

	.lg\:ml-8 {
		margin-left: 2rem;
	}

	.lg\:mr-0 {
		margin-right: 0px;
	}

	.lg\:mt-12 {
		margin-top: 3rem;
	}

	.lg\:flex {
		display: flex;
	}

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

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

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

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

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

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

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

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

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

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

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

	.lg\:w-2\/3 {
		width: 66.666667%;
	}

	.lg\:w-2\/5 {
		width: 40%;
	}

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

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

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

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

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

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

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

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

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

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

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

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

	.lg\:rounded-bl-full {
		border-bottom-left-radius: 9999px;
	}

	.lg\:rounded-br-full {
		border-bottom-right-radius: 9999px;
	}

	.lg\:rounded-tr-none {
		border-top-right-radius: 0px;
	}

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

	.lg\:px-4 {
		padding-left: 1rem;
		padding-right: 1rem;
	}

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

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

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

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

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

	.lg\:pl-14 {
		padding-left: 3.5rem;
	}

	.lg\:pl-16 {
		padding-left: 4rem;
	}

	.lg\:pl-32 {
		padding-left: 8rem;
	}

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

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

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

	.lg\:pr-14 {
		padding-right: 3.5rem;
	}

	.lg\:pr-16 {
		padding-right: 4rem;
	}

	.lg\:pr-4 {
		padding-right: 1rem;
	}

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

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

	.lg\:pt-16 {
		padding-top: 4rem;
	}

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

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

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

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

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

	.lg\:text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}

@media (min-width: 1280px) {

	.xl\:absolute {
		position: absolute;
	}

	.xl\:left-6 {
		left: 1.5rem;
	}

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

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

	.xl\:-mx-\[44px\] {
		margin-left: -44px;
		margin-right: -44px;
	}

	.xl\:my-2 {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}

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

	.xl\:ml-6 {
		margin-left: 1.5rem;
	}

	.xl\:mr-6 {
		margin-right: 1.5rem;
	}

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

	.xl\:mt-12 {
		margin-top: 3rem;
	}

	.xl\:block {
		display: block;
	}

	.xl\:inline-block {
		display: inline-block;
	}

	.xl\:inline {
		display: inline;
	}

	.xl\:flex {
		display: flex;
	}

	.xl\:hidden {
		display: none;
	}

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

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

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

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

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

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

	.xl\:w-2\/5 {
		width: 40%;
	}

	.xl\:w-3\/5 {
		width: 60%;
	}

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

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

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

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

	.xl\:max-w-none {
		max-width: none;
	}

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

	.xl\:border-b {
		border-bottom-width: 1px;
	}

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

	.xl\:border-r {
		border-right-width: 1px;
	}

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

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

	.xl\:px-2 {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

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

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

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

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

	.xl\:py-2 {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

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

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

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

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

	.xl\:pl-16 {
		padding-left: 4rem;
	}

	.xl\:pl-32 {
		padding-left: 8rem;
	}

	.xl\:pl-4 {
		padding-left: 1rem;
	}

	.xl\:pl-6 {
		padding-left: 1.5rem;
	}

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

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

	.xl\:pr-28 {
		padding-right: 7rem;
	}

	.xl\:pr-32 {
		padding-right: 8rem;
	}

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

	.xl\:pr-8 {
		padding-right: 2rem;
	}

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

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

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

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

