@charset "UTF-8";
@tailwind components;
@tailwind base;
@tailwind components;
@tailwind utilities;
.form-wrapper {
  /* Custom inner dot for checked state */
}
.form-wrapper .umbraco-forms-field {
  margin-bottom: 16px;
  padding: 0;
}
.form-wrapper .umbraco-forms-form input.text,
.form-wrapper .umbraco-forms-form input.title,
.form-wrapper .umbraco-forms-form select,
.form-wrapper .umbraco-forms-form textarea {
  padding: 16px 40px 16px 16px;
  align-items: center;
  align-self: stretch;
  max-width: none !important;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  border-width: 2px;
  border-color: var(--color-form-border);
}
.form-wrapper .umbraco-forms-form textarea {
  height: 128px;
}
.form-wrapper .umbraco-forms-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cg clip-path='url(%23clip0_18510_1197)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.0474 12.8916L16.6348 8.25L18.0474 9.67921L12.0474 15.75L6.04736 9.67921L7.4599 8.25L12.0474 12.8916Z' fill='%232B5A80'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_18510_1197'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.0473633)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 25px;
}
.form-wrapper input, .form-wrapper button, .form-wrapper textarea, .form-wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  transition: none;
}
.form-wrapper .umbraco-forms-form input.text:focus,
.form-wrapper .umbraco-forms-form input.text:active,
.form-wrapper .umbraco-forms-form input.title:focus,
.form-wrapper .umbraco-forms-form input.title:active,
.form-wrapper .umbraco-forms-form select:focus,
.form-wrapper .umbraco-forms-form select:active,
.form-wrapper .umbraco-forms-form textarea:focus,
.form-wrapper .umbraco-forms-form textarea:active{
  border-width: 2px;
  border-color: var(--color-form-hover-border);
  box-shadow: 0px 0px 0px 3px var(--color-form-hover-bg), 0px 1px 14px 0px rgba(0, 0, 0, 0.1) !important;
}
.form-wrapper label.umbraco-forms-label{
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-form-text);
}
.form-wrapper .umbraco-forms-form input.input-validation-error {
  background: #ffffff;
  border-color: var(--color-form-error-border);
}
.form-wrapper .umbraco-forms-indicator,
.form-wrapper .error{
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(183 0 0 / var(--tw-text-opacity, 1));
}
.form-wrapper .umbraco-forms-form span.field-validation-error {
  color: #B70000 !important;
  font-weight: 700;
}
.form-wrapper select.input-validation-error{
  border-color: var(--color-form-error-border);
}
.form-wrapper .umbraco-forms-field-wrapper p{
  font-size: 16px;
  line-height: 24px;
  color: var(--color-global-text);
}
.form-wrapper h3{
  color: var(--color-gallagher-blue);
}
.form-wrapper a {
  text-decoration: underline;
}
.form-wrapper .checkbox .umbraco-forms-field-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}
.form-wrapper .umbraco-forms-form .checkbox input,
.form-wrapper .umbraco-forms-form .checkboxlist input,
.form-wrapper .umbraco-forms-form .radiobuttonlist input {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid var(--color-form-border) !important;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff;
}
.form-wrapper .umbraco-forms-form .radiobuttonlist input {
  border-radius: 50%;
}
.form-wrapper input[type=checkbox]:checked, .form-wrapper input[type=radio]:checked {
  position: relative;
}
.form-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  border-color: var(--color-form-border);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.form-wrapper .radiobuttonlist input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-form-bg);
}
.form-wrapper .umbraco-forms-form .radiobuttonlist {
  display: grid;
  row-gap: 8px;
  padding: 0;
}
.form-wrapper .umbraco-forms-form .radiobuttonlist > div {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.form-wrapper .btn {
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid var(--color-dflt-border);
  background-color: var(--color-btn-bg);
  padding: 24px;
  font-weight: 700;
  color: var(--color-btn-text);
}
.form-wrapper .btn:is(.dark *){
  color: var(--color-dflt-dark-text);
}
.form-wrapper .btn:hover {
  border: 1px solid var(--color-dflt-hover-border);
  background-color: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
}
.form-wrapper .btn:active {
  transform: scale(0.98);
  border-color: var(--color-dflt-pressed-border);
  background-color: var(--color-dflt-pressed-bg);
  color: var(--color-dflt-pressed-text);
}
.form-wrapper .btn:focus-visible{
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #333;
}
.form-wrapper .chervon_icon path {
  fill: currentColor;
}
.form-wrapper p{
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}
.form-wrapper h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.form-wrapper .acknowledgement p {
  font-size: 16px;
  line-height: 20px;
  padding-top: 16px;
  font-weight: 700;
  padding-bottom: 0;
}
.form-wrapper .umbraco-forms-form .umbraco-forms-navigation {
  padding: 24px 0;
}
.form-wrapper .umbraco-forms-form {
  padding-bottom: 16px;
}
.form-wrapper .umbraco-forms-form legend {
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}
.form-wrapper .select2-container {
  width: 100% !important;
}
.form-wrapper fieldset {
  padding: 0;
  margin: 0;
}

@media (min-width: 1025px){
  .full-row-form{
    width: 50%;
  }
}

@tailwind base;
@tailwind components;
@tailwind utilities;
.ahs-backtotop-cmp {
  display: flex;
  width: 96px;
  height: 96px;
  padding: 8px 7px 16px 7px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: fixed;
  right: 0.047px;
  bottom: 250px;
  z-index: 1054;
  display: none;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-color: var(--color-dflt-border);
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
}
.ahs-backtotop-cmp:is(.dark *){
  color: var(--color-dflt-dark-text);
}

.ahs-backtotop-cmp:hover{
  border-color: var(--color-dflt-hover-border);
  background-color: var(--color-dflt-bcktop-hover-bg);
  color: var(--color-dflt-bcktop-hover-text);
}

.ahs-backtotop-cmp:hover .ahs-backtotop-text {
  color: inherit;
}

.ahs-backtotop-cmp:hover .ahs-backtotop-svg path {
  fill: currentColor;
}

.ahs-backtotop-cmp:active{
  background-color: var(--color-dflt-active-bg);
  color: var(--color-dflt-active-text);
}

.ahs-backtotop-cmp:active .ahs-backtotop-text {
  color: inherit;
}

.ahs-backtotop-cmp:active .ahs-backtotop-svg path {
  fill: currentColor;
}

@media (max-width: 768px) {
  .ahs-backtotop-cmp {
    display: none;
  }
}
.ahs-backtotop-text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px;
}

.ahs-backtotop-svg {
  height: 32px;
  width: 32px;
  display: inline;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
  line-height: 24px;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
  line-height: 24px;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #d0d1d1;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  margin-top: -5px;
  box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.1);
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 8px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 8px;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 8px;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  padding: 16px 40px 16px 16px;
  border-width: 2px;
  border-color: var(--color-form-border);
  color: var(--color-global-text);
  border-radius: 0;
  height: auto;
  position: relative;
  background-image: none;
  margin: 0.5em 0;
  background: #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #606363;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  line-height: 24px;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #F3F4F4;
  color: #606363;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ffffff;
  color: #444444 !important;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #606363;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  line-height: 24px;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-container--default .select2-results__option--selected::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14 4.27436L5.74773 12.5597L2 8.79696L2.94341 7.85561L5.74773 10.6712L13.0566 3.33301L14 4.27436Z' fill='%23444444'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* Chevron icon */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  width: 24px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
}

/* Dropdown options */
.select2-container--default .select2-results__option {
  padding: 10px 16px;
  font-size: 15px;
  color: #606363;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  transform: translateY(-50%) rotate(0deg); /* ▼ Down by default */
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Rotate up on open */
.select2-container.select2-open .select2-selection--single .select2-selection__arrow::after {
  transform: translateY(-50%) rotate(180deg); /* ▲ */
}

.select2-container--default.select2-container--focus .select2-selection--single {
  box-shadow: 0px 0px 0px 3px var(--color-form-hover-bg), 0px 1px 14px 0px rgba(0, 0, 0, 0.1) !important;
  outline: none; /* Optional: remove default outline */ border-width: 2px; border-color: var(--color-form-hover-border);
}

/* Apply red border to Select2 when input-validation-error is present */
.input-validation-error ~ .select2-container .select2-selection {
  background: #ffffff;
  border-color: var(--color-form-error-border);
}

.ahs-standard-hero-cmp {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 0px;
}

@media (min-width: 1025px){
  .ahs-standard-hero-cmp{
    padding-bottom: 56px;
  }
}

@media (min-width: 1025px) and (max-width: 1108px) {
  .ahs-standard-hero-cmp {
    min-height: auto;
  }
}
.ahs-standard-hero-cmp .hero-wrapper {
  margin: 0 auto;
  position: relative;
}

.ahs-standard-hero-cmp .hero-wrapper .banner {
  display: block;
  position: relative;
  width: 100%;
  z-index: -2;
}

@media (min-width: 1026px) {
  .ahs-standard-hero-cmp .hero-wrapper .banner {
    max-height: 550px;
  }
}
.ahs-standard-hero-cmp .hero-wrapper:before {
  background-image: url(/images/hero-mobile-normal-accent.svg);
  background-position: 100% 100%;
  bottom: -1px;
  opacity: 0.8;
  z-index: -1;
}

.ahs-standard-hero-cmp .hero-wrapper::after, .ahs-standard-hero-cmp .hero-wrapper::before {
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}

.ahs-standard-hero-cmp .hero-wrapper::after {
  background-image: url(/images/hero-mobile-normal-cover.svg);
  background-position: 0 100%;
  bottom: -2px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ahs-standard-hero-cmp .hero-wrapper::before {
    background-image: url(/images/hero-tablet-normal-accent.svg);
    background-size: contain;
    bottom: -2px;
  }
  .ahs-standard-hero-cmp .hero-wrapper::after {
    background-image: url(/images/hero-tablet-normal-cover.svg);
    background-size: contain;
    bottom: -2px;
  }
}
@media (min-width: 1026px) {
  .ahs-standard-hero-cmp .hero-wrapper::before {
    background-image: url(../images/hero-desktop-normal-accent.svg);
    bottom: -3.5px;
  }
  .ahs-standard-hero-cmp .hero-wrapper::after {
    background-image: url(../images/hero-desktop-normal-cover.svg);
    bottom: -5px;
  }
}
.umb-block-grid__layout-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 1), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  -moz-column-gap: var(--umb-block-grid--column-gap, 0);
  column-gap: var(--umb-block-grid--column-gap, 0);
  row-gap: var(--umb-block-grid--row-gap, 0);
}

.umb-block-grid__layout-item {
  position: relative;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--item-column-span, 1) * 3, var(--umb-block-grid--grid-columns));
  grid-row: span var(--umb-block-grid--item-row-span, 1);
}

.umb-block-grid__area-container, .umb-block-grid__block--view::part(area-container) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--area-grid-columns, var(--umb-block-grid--grid-columns, 1)), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: minmax(50px, min-content);
  -moz-column-gap: var(--umb-block-grid--areas-column-gap, 0);
  column-gap: var(--umb-block-grid--areas-column-gap, 0);
  row-gap: var(--umb-block-grid--areas-row-gap, 0);
  gap: 24px;
}

.umb-block-grid__area {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* For small devices we scale columnSpan by three, to make everything bigger than 1/3 take full width: */
  grid-column-end: span min(var(--umb-block-grid--area-column-span, 1) * 3, var(--umb-block-grid--area-grid-columns));
  grid-row: span var(--umb-block-grid--area-row-span, 1);
}

@media (min-width: 1025px) {
  .umb-block-grid__layout-item {
    grid-column-end: span min(var(--umb-block-grid--item-column-span, 1), var(--umb-block-grid--grid-columns));
  }
  .umb-block-grid__area {
    grid-column-end: span min(var(--umb-block-grid--area-column-span, 1), var(--umb-block-grid--area-grid-columns));
  }
}
.ahs-grid-cmp p{
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1025px){
  .ahs-grid-cmp p{
    font-size: 18px;
    line-height: 32px;
  }
}

.umb-block-grid__area-container h3{
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: var(--color-gallagher-blue);
}

@media (min-width: 1025px){
  .umb-block-grid__area-container h3{
    font-size: 20px;
    line-height: 32px;
  }
}

.ahs-grid-cmp .umb-block-grid__area-container h3{
  padding-bottom: 16px;
}

.umb-block-grid__area-container h4{
  padding-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

@media (min-width: 1025px){
  .umb-block-grid__area-container h4{
    font-size: 18px;
    line-height: 28px;
  }
}

.umb-block-grid__area-container h4.large-text {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}

@media (min-width: 1025px){
  .umb-block-grid__area-container h4.large-text{
    font-size: 40px;
    line-height: 52px;
  }
}

.umb-block-grid__area-container h6 {
  font-size: 16px;
  line-height: 20px;
  padding-top: 16px;
  font-weight: 700;
}

.rte_container {
  display: grid;
  gap: 24px;
  padding: 24px 0 16px 0;
  grid-template-columns: 1fr; /* Default for mobile */
}

.card_wrapper p{
  font-size: 18px;
  line-height: 28px;
}

@media (min-width: 1025px){
  .card_wrapper p{
    font-size: 18px;
    line-height: 32px;
  }
}

.rte_container .card_wrapper p{
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 1025px) {
  .rte_container {
    grid-template-columns: repeat(3, minmax(300px, 1fr)); /* 3 columns for desktops */
  }
}
.card_wrapper {
  padding: 32px 0;
}

.rte_container .card_wrapper {
  background-color: #F6F6F6;
  min-height: auto;
  margin-top: 0;
  padding: 16px;
}

.rte_two_cmp {
  padding-right: 30px;
}

.card_wrapper .umb-block-grid__area {
  padding: 16px;
}

.umb-block-grid__area-container ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.umb-block-grid__area-container ul {
  list-style-type: disc;
  padding: 0 0 16px 20px;
}
.umb-block-grid__area-container li{
  font-size: 16px;
  line-height: 24px;
  color: var(--color-global-text);
  margin-bottom: 10px;
}

/**umb_name:Heading 1*/
h1{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
@media (min-width: 1025px){
  h1{
    font-size: 36px;
    line-height: 48px;
  }
}

/**umb_name:Heading 2*/
h2{
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
@media (min-width: 1025px){
  h2{
    font-size: 24px;
    line-height: 32px;
  }
}

/**umb_name:Heading 3*/
h3{
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
}
@media (min-width: 1025px){
  h3{
    font-size: 24px;
    line-height: 32px;
  }
}

/**umb_name:Heading 4*/
h4{
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1025px){
  h4{
    font-size: 20px;
    line-height: 28px;
  }
}

/**umb_name:Heading 5*/
h5{
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
@media (min-width: 1025px){
  h5{
    font-size: 18px;
    line-height: 32px;
  }
}

/**umb_name:Heading 6*/
h6{
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

/**umb_name:medium Text*/
.medium-text{
  font-size: 16px;
  line-height: 24px;
}

/**umb_name:Small Text*/
p.small-text{
  font-size: 10px;
  line-height: 16px;
}

/**umb_name:UL Heading*/
p.list-heading{
  padding-bottom: 0px;
  font-size: 16px;
  line-height: 24px;
}

/**umb_name:Terms Text*/
p.terms-text{
  padding-bottom: 48px;
  font-size: 16px;
  line-height: 24px;
}

/**umb_name:large Text*/
h4.large-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

/**table styles*/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

th {
  font-weight: bold;
  color: #111;
}

table th:first-child {
  border-top-left-radius: 10px;
}

table th:last-child {
  border-top-right-radius: 10px;
}

table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

@tailwind base;
@tailwind components;
@tailwind utilities;
.ahs-btn-interactive{
  background-color: var(--color-dflt-bg);
  color: var(--color-dflt-text);
}
.ahs-btn-interactive:hover{
  border-width: 1px;
  border-color: var(--color-dflt-hover-border);
  background-color: var(--color-dflt-hover-bg);
  color: var(--color-dflt-hover-text);
}
.ahs-btn-interactive:active{
  border-width: 1px;
  border-color: var(--color-dflt-pressed-border);
  background-color: var(--color-dflt-pressed-bg);
  color: var(--color-dflt-pressed-text);
}
.ahs-btn-interactive:is(.dark *){
  color: var(--color-dark-text);
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.btn {
  position: relative;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid var(--color-btn-border);
  background-color: var(--color-btn-bg);
  padding: 24px;
  font-weight: 700;
  color: var(--color-btn-text);
}

.btn:is(.dark *){
  color: var(--color-dflt-dark-text);
}

.btn:hover {
  border: 1px solid var(--color-dflt-hover-border);
  background-color: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
}

.btn:active {
  transform: scale(0.98);
  border-color: var(--color-dflt-pressed-border);
  background-color: var(--color-dflt-pressed-bg);
  color: var(--color-dflt-pressed-text);
}

.btn:focus-visible{
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #333;
}

.chervon_icon path {
  fill: currentColor;
}

*, ::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:  ;
}

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

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

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

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

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
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: "PT Sans", sans-serif; /* 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]:where(:not([hidden="until-found"])) {
  display: none;
}

:root {
    --color-dflt-bg: #6FACDE;
    --color-dflt-border: #195EB1;
    --color-dflt-text: #FFFFFF;
    --color-dflt-hover-bg: #FFFFFF;
    --color-dflt-hover-border: #444444;
    --color-dflt-hover-text: #000000;
    --color-dflt-bcktop-hover-bg: #6FACDE;
    --color-dflt-bcktop-hover-border: #444444;
    --color-dflt-bcktop-hover-text: #000000;
    --color-dflt-pressed-bg: #00263E;
    --color-dflt-pressed-border: #00263E;
    --color-dflt-pressed-text: #ffffff;
    --color-dflt-active-bg: #00263E;
    --color-dflt-active-border: #00263E;
    --color-dflt-active-text: #fff;
    --color-dark-text: #000000;
    --color-dflt-dark-text: #FFFFFF;
    --color-global-white: #FFFFFF;
    --color-global-text: #444444;
    --color-global-dark-text: #000000;
    --color-global-placeholder-text: #606363;
    --color-global-darker-grey: #D0D1D1;
    --color-global-lighter-grey: #F6F6F6;
    --color-form-border:#2B5A80;
    --color-form-text:#2B5A80;
    --color-form-bg:#2B5A80;
    --color-form-hover-border:#0075BC;
    --color-form-hover-text:#0075BC;
    --color-form-hover-bg:#0075BC;
    --color-form-error-border:#B70000;
    --color-btn-bg: #2B5A80;
    --color-btn-border: #2B5A80;
    --color-btn-text: #FFFFFF;
    --color-btn-hover-bg: #6FACDE;
    --color-btn-hover-border: #444444;
    --color-btn-hover-text: #000000;
    --color-dflt-cta-text: #00263E;
    --color-scroll-cta: #000000;
    --color-scroll-btn-cta: #000000;
    --color-gallagher-blue:#00263E;
  }

html {
    scroll-behavior: smooth;
  }

body{
  font-weight: 400;
  font-family: "PT Sans", sans-serif;
  color: var(--color-global-text);
  font-size: 16px;
  line-height: 24px;
}

main {
    overflow: hidden;
  }

main .ahs-hero-cmp:before {
    content: "";
    width: 100%;
    position: absolute;
    z-index: -10;
    background: var(--color-dflt-bg);
    height: 96px;
  }

@media (min-width: 1025px){
  main .ahs-hero-cmp:before{
    height: 360px;
  }
}

section {
    overflow: hidden;
  }

.skip-to-content-link {
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
    left: 25%;
    border-color: var(--color-dflt-border);
    background-color: var(--color-dflt-bg);
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--color-dflt-cta-text);
  }

.skip-to-content-link:is(.dark *){
  color: var(--color-dark-text);
}

@media (min-width: 1025px){
  .skip-to-content-link{
    left: 40%;
    padding-left: 44px;
    padding-right: 44px;
  }
}

.skip-to-content-link {
    align-items: center;
    border-radius: 4px;
  }

.skip-to-content-link:focus {
    transform: translateY(0%);
  }

.ahs-footer-cmp {
    padding: 24px 9%;
  }

.ahs-full-container{
  width: 100%;
  padding-left: 22px;
  padding-right: 22px;
}

@media (min-width: 1025px){
  .ahs-full-container{
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
  }
    [data-content-element-type-alias=scrollToFormCTA] {
      display: none;
    }
}

.sticky-header{
  position: sticky;
  top: 0px;
  z-index: 50;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.sticky-header #header-meta-nav {
    display: flex;
  }

.destroy{
  display: none !important;
}
.ahs-container{
  width: 100%;
}
@media (min-width: 768px){
  .ahs-container{
    max-width: 560px;
  }
}
@media (min-width: 1025px){
  .ahs-container{
    max-width: 896px;
  }
}
@media (min-width: 1200px){
  .ahs-container{
    max-width: 1152px;
  }
}
@media (min-width: 1536px){
  .ahs-container{
    max-width: 1408px;
  }
}
.ahs-slider-flex-container {
    overflow-x: scroll;
    scroll-behavior: smooth;
    height: 100%;
    padding-bottom: 40px;
    padding-top: 16px;
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    transition: transform 0.4s ease-in-out;
    align-items: center;
  }
@media (prefers-reduced-motion: reduce) {
    .ahs-slider-flex-container {
      scroll-behavior: auto;
    }
  }
.slide {
    flex: 1 0 100px;
    scroll-snap-align: start;
    display: inline-block;
    transition: transform 0.5s ease-in-out;
  }
@-moz-document url-prefix() {
    * .ahs-slider-flex-container {
      scrollbar-width: thin;
      scrollbar-color: #5d5d5d #d1d1d1;
    }
  }
.ahs-slider-flex-container::-webkit-scrollbar {
    width: 7px;
    height: 4px;
    cursor: pointer;
  }
.ahs-slider-flex-container::-webkit-scrollbar-track {
    background: #d1d1d1;
  }
.ahs-slider-flex-container::-webkit-scrollbar-thumb {
    background-color: #5d5d5d;
    border-radius: 5px;
    border: 0;
  }
.ahs-slider-flex-container::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
  }
.ahs-slider-buttons {
    align-items: end;
    margin-top: -42px;
  }
.ahs-slider-buttons button {
    border-radius: 50%;
    border: 1px solid #000000;
    color: #000000;
    padding: 7px;
  }
.ahs-slider-buttons button:focus-visible {
    border: 1px solid #000000;
    outline: 2px solid #000000;
    outline-offset: 2px;
    color: #000000;
  }
.ahs-slider-buttons button:hover {
    border: 1px solid #000000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #000000;
  }
.ahs-slider-buttons button:active {
    background: #F6F6F6;
    border: 1px solid #000000;
    outline: 0 none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0px #fff;
  }
.ahs-slider-buttons button:focus {
    outline: 2px solid #333333;
    outline-offset: 2px;
  }
.ahs-slider-buttons button:disabled {
    border: 1px solid #d1d1d1;
    color: #d1d1d1;
    box-shadow: none;
  }
.static{
  position: static;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.left-\[-9999px\]{
  left: -9999px;
}
.col-span-full{
  grid-column: 1 / -1;
}
.float-right{
  float: right;
}
.mx-0{
  margin-left: 0px;
  margin-right: 0px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-12{
  margin-top: 24px;
  margin-bottom: 24px;
}
.my-15{
  margin-top: 30px;
  margin-bottom: 30px;
}
.my-16{
  margin-top: 32px;
  margin-bottom: 32px;
}
.mb-10{
  margin-bottom: 20px;
}
.mb-12{
  margin-bottom: 24px;
}
.mb-16{
  margin-bottom: 32px;
}
.mb-20{
  margin-bottom: 40px;
}
.mb-4{
  margin-bottom: 8px;
}
.mb-5{
  margin-bottom: 10px;
}
.mb-6{
  margin-bottom: 12px;
}
.mb-8{
  margin-bottom: 16px;
}
.ml-16{
  margin-left: 32px;
}
.mr-14{
  margin-right: 28px;
}
.mr-28{
  margin-right: 56px;
}
.mr-4{
  margin-right: 8px;
}
.mt-12{
  margin-top: 24px;
}
.mt-4{
  margin-top: 8px;
}
.mt-5{
  margin-top: 10px;
}
.mt-50{
  margin-top: 100px;
}
.mt-8{
  margin-top: 16px;
}
.mt-\[-20px\]{
  margin-top: -20px;
}
.mt-\[100px\]{
  margin-top: 100px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-12{
  height: 24px;
}
.h-23{
  height: 46px;
}
.h-24{
  height: 48px;
}
.h-32{
  height: 64px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[64px\]{
  height: 64px;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.max-h-123{
  max-height: 246px;
}
.max-h-15{
  max-height: 30px;
}
.max-h-167{
  max-height: 334px;
}
.max-h-31{
  max-height: 62px;
}
.max-h-62{
  max-height: 124px;
}
.max-h-\[32px\]{
  max-height: 32px;
}
.max-h-\[55px\]{
  max-height: 55px;
}
.w-10{
  width: 20px;
}
.w-12{
  width: 24px;
}
.w-125{
  width: 250px;
}
.w-24{
  width: 48px;
}
.w-30{
  width: 60px;
}
.w-35{
  width: 70px;
}
.w-70{
  width: 140px;
}
.w-\[220px\]{
  width: 220px;
}
.w-\[268px\]{
  width: 268px;
}
.w-\[70px\]{
  width: 70px;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.min-w-110{
  min-width: 220px;
}
.min-w-112{
  min-width: 224px;
}
.max-w-\[198px\]{
  max-width: 198px;
}
.max-w-\[199px\]{
  max-width: 199px;
}
.flex-grow{
  flex-grow: 1;
}
.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;
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-12{
  gap: 24px;
}
.gap-15{
  gap: 30px;
}
.gap-2{
  gap: 4px;
}
.gap-4{
  gap: 8px;
}
.gap-6{
  gap: 12px;
}
.gap-8{
  gap: 16px;
}
.gap-x-8{
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.gap-y-0{
  row-gap: 0px;
}
.gap-y-12{
  row-gap: 24px;
}
.gap-y-8{
  row-gap: 16px;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
.self-start{
  align-self: flex-start;
}
.self-center{
  align-self: center;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[4px\]{
  border-radius: 4px;
}
.border{
  border-width: 1px;
}
.border-1{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-1{
  border-bottom-width: 1px;
}
.border-b-4{
  border-bottom-width: 4px;
}
.border-t-1{
  border-top-width: 1px;
}
.border-t-4{
  border-top-width: 4px;
}
.border-dflt-bg{
  border-color: var(--color-dflt-bg);
}
.border-global-darker-grey{
  border-color: var(--color-global-darker-grey);
}
.border-global-lighter-grey{
  border-color: var(--color-global-lighter-grey);
}
.border-global-text{
  border-color: var(--color-global-text);
}
.border-scrollCTA-buttonText{
  border-color: var(--color-scroll-btn-cta);
}
.bg-dflt-bg{
  background-color: var(--color-dflt-bg);
}
.bg-global-lighter-grey{
  background-color: var(--color-global-lighter-grey);
}
.bg-global-white{
  background-color: var(--color-global-white);
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-80{
  --tw-bg-opacity: 1;
  background-color: rgb(68 68 68 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.fill-current{
  fill: currentColor;
}
.fill-dflt-bg{
  fill: var(--color-dflt-bg);
}
.fill-global-white{
  fill: var(--color-global-white);
}
.fill-transparent{
  fill: transparent;
}
.stroke-current{
  stroke: currentColor;
}
.p-12{
  padding: 24px;
}
.p-3{
  padding: 6px;
}
.p-4{
  padding: 8px;
}
.p-6{
  padding: 12px;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-11{
  padding-left: 22px;
  padding-right: 22px;
}
.px-12{
  padding-left: 24px;
  padding-right: 24px;
}
.px-4{
  padding-left: 8px;
  padding-right: 8px;
}
.px-9{
  padding-left: 18px;
  padding-right: 18px;
}
.px-\[9\%\]{
  padding-left: 9%;
  padding-right: 9%;
}
.py-10{
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-11{
  padding-top: 22px;
  padding-bottom: 22px;
}
.py-12{
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-15{
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-16{
  padding-top: 32px;
  padding-bottom: 32px;
}
.py-2{
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-20{
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-5{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-6{
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-8{
  padding-top: 16px;
  padding-bottom: 16px;
}
.pb-2{
  padding-bottom: 4px;
}
.pb-7{
  padding-bottom: 14px;
}
.pb-8{
  padding-bottom: 16px;
}
.pl-12{
  padding-left: 24px;
}
.pl-2{
  padding-left: 4px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-12-20{
  font-size: 12px;
  line-height: 20px;
}
.text-14-24{
  font-size: 14px;
  line-height: 24px;
}
.text-16-20{
  font-size: 16px;
  line-height: 20px;
}
.text-18-24{
  font-size: 18px;
  line-height: 24px;
}
.text-18-28{
  font-size: 18px;
  line-height: 28px;
}
.text-18-30{
  font-size: 18px;
  line-height: 30px;
}
.text-20-32{
  font-size: 20px;
  line-height: 32px;
}
.text-26-32{
  font-size: 26px;
  line-height: 32px;
}
.text-3xl{
  font-size: 26px;
  line-height: 32px;
}
.text-4xl{
  font-size: 36px;
  line-height: 48px;
}
.text-base{
  font-size: 16px;
  line-height: 24px;
}
.text-lg{
  font-size: 18px;
  line-height: 32px;
}
.text-sm{
  font-size: 14px;
  line-height: 20px;
}
.text-xl{
  font-size: 20px;
  line-height: 28px;
}
.text-xxs{
  font-size: 10px;
  line-height: 16px;
}
.font-bold{
  font-weight: 700;
}
.uppercase{
  text-transform: uppercase;
}
.tracking-\[1\.5px\]{
  letter-spacing: 1.5px;
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-dflt-bg{
  color: var(--color-dflt-bg);
}
.text-dflt-cta-text{
  color: var(--color-dflt-cta-text);
}
.text-dflt-text{
  color: var(--color-dflt-text);
}
.text-gallagher-text-blue{
  color: var(--color-gallagher-blue);
}
.text-global-darker-text{
  color: var(--color-global-dark-text);
}
.text-global-text{
  color: var(--color-global-text);
}
.text-global-white{
  color: var(--color-global-white);
}
.text-gray-90{
  --tw-text-opacity: 1;
  color: rgb(243 244 244 / var(--tw-text-opacity, 1));
}
.text-scrollCTA-buttonText{
  color: var(--color-scroll-btn-cta);
}
.text-scrollCTA-text{
  color: var(--color-scroll-cta);
}
.underline{
  text-decoration-line: underline;
}
.shadow-custom{
  --tw-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0px 1px 14px 0px 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-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
/* styles.css */
@media (min-width: 1025px){
  .lg\:ahs-container{
    width: 100%;
  }
  @media (min-width: 768px){
    .lg\:ahs-container{
      max-width: 560px;
    }
  }
  @media (min-width: 1025px){
    .lg\:ahs-container{
      max-width: 896px;
    }
  }
  @media (min-width: 1200px){
    .lg\:ahs-container{
      max-width: 1152px;
    }
  }
  @media (min-width: 1536px){
    .lg\:ahs-container{
      max-width: 1408px;
    }
  }
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.hover\:bg-dflt-hover-bg:hover{
  background-color: var(--color-dflt-hover-bg);
}
.hover\:text-dflt-hover-text:hover{
  color: var(--color-dflt-hover-text);
}
.hover\:text-global-darker-text:hover{
  color: var(--color-global-dark-text);
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.group:hover .group-hover\:fill-dflt-hover-text{
  fill: var(--color-dflt-hover-text);
}
.group:active .group-active\:fill-dflt-pressed-text{
  fill: var(--color-dflt-pressed-text);
}
.dark\:fill-dark-text:is(.dark *){
  fill: var(--color-dark-text);
}
.dark\:text-dark-text:is(.dark *){
  color: var(--color-dark-text);
}
@media (min-width: 640px){
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px){
  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mb-2{
    margin-bottom: 4px;
  }
  .md\:mr-4{
    margin-right: 8px;
  }
  .md\:mt-\[-36px\]{
    margin-top: -36px;
  }
  .md\:mt-\[-50px\]{
    margin-top: -50px;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:w-23{
    width: 46px;
  }
  .md\:w-24{
    width: 48px;
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:gap-8{
    gap: 16px;
  }
  .md\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-20-32{
    font-size: 20px;
    line-height: 32px;
  }
  .md\:text-26-32{
    font-size: 26px;
    line-height: 32px;
  }
  .md\:text-base{
    font-size: 16px;
    line-height: 24px;
  }
  .md\:text-sm{
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 1025px){
  .lg\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:mt-88{
    margin-top: 176px;
  }
  .lg\:mt-93{
    margin-top: 186px;
  }
  .lg\:mt-\[-130px\]{
    margin-top: -130px;
  }
  .lg\:mt-\[186px\]{
    margin-top: 186px;
  }
  .lg\:block{
    display: block;
  }
  .lg\:h-16{
    height: 32px;
  }
  .lg\:h-24{
    height: 48px;
  }
  .lg\:h-\[72px\]{
    height: 72px;
  }
  .lg\:max-h-150{
    max-height: 300px;
  }
  .lg\:max-h-167{
    max-height: 334px;
  }
  .lg\:max-h-36{
    max-height: 72px;
  }
  .lg\:max-h-75{
    max-height: 150px;
  }
  .lg\:max-h-\[55px\]{
    max-height: 55px;
  }
  .lg\:min-h-36{
    min-height: 72px;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-16{
    width: 32px;
  }
  .lg\:w-24{
    width: 48px;
  }
  .lg\:w-35{
    width: 70px;
  }
  .lg\:w-\[262px\]{
    width: 262px;
  }
  .lg\:w-\[90\%\]{
    width: 90%;
  }
  .lg\:min-w-131{
    min-width: 262px;
  }
  .lg\:max-w-184{
    max-width: 368px;
  }
  .lg\:max-w-200{
    max-width: 400px;
  }
  .lg\:max-w-\[198px\]{
    max-width: 198px;
  }
  .lg\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:justify-center{
    justify-content: center;
  }
  .lg\:gap-12{
    gap: 24px;
  }
  .lg\:gap-x-10{
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .lg\:gap-y-0{
    row-gap: 0px;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-40{
    padding-left: 80px;
    padding-right: 80px;
  }
  .lg\:px-\[4\%\]{
    padding-left: 4%;
    padding-right: 4%;
  }
  .lg\:py-16{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .lg\:py-20{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .lg\:py-28{
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .lg\:py-8{
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .lg\:pl-0{
    padding-left: 0px;
  }
  .lg\:pr-\[25\%\]{
    padding-right: 25%;
  }
  .lg\:text-center{
    text-align: center;
  }
  .lg\:text-right{
    text-align: right;
  }
  .lg\:text-18-32{
    font-size: 18px;
    line-height: 32px;
  }
  .lg\:text-20-32{
    font-size: 20px;
    line-height: 32px;
  }
  .lg\:text-24-40{
    font-size: 24px;
    line-height: 40px;
  }
  .lg\:text-2xl{
    font-size: 24px;
    line-height: 32px;
  }
  .lg\:text-4xl{
    font-size: 36px;
    line-height: 48px;
  }
  .lg\:text-5xl{
    font-size: 40px;
    line-height: 52px;
  }
  .lg\:text-lg{
    font-size: 18px;
    line-height: 32px;
  }
  .lg\:text-xl{
    font-size: 20px;
    line-height: 28px;
  }
  .lg\:font-bold{
    font-weight: 700;
  }
}
@media (min-width: 1200px){
  .xl\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xl\:pr-\[32\%\]{
    padding-right: 32%;
  }
}
@media (min-width: 1536px){
  .\32xl\:pr-\[40\%\]{
    padding-right: 40%;
  }
}