:root{
  --iti-hover-color:rgba(0, 0, 0, 0.05);
  --iti-border-color:#ccc;
  --iti-dialcode-color:#999;
  --iti-dropdown-bg:white;
  --iti-search-icon-color:#999;
  --iti-spacer-horizontal:8px;
  --iti-flag-height:12px;
  --iti-flag-width:16px;
  --iti-border-width:1px;
  --iti-arrow-height:4px;
  --iti-arrow-width:6px;
  --iti-triangle-border:calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding:6px;
  --iti-arrow-color:#555;
  --iti-path-flags-1x:url(/../img/flags.webp);
  --iti-path-flags-2x:url(/../img/flags@2x.webp);
  --iti-path-globe-1x:url(/../img/globe.webp);
  --iti-path-globe-2x:url(/../img/globe@2x.webp);
  --iti-flag-sprite-width:3904px;
  --iti-flag-sprite-height:12px;
  --iti-mobile-popup-margin:30px
}

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

.iti *{
  box-sizing:border-box
}

.iti__a11y-text{
  width:1px;
  height:1px;
  clip:rect(1px,1px,1px,1px);
  overflow:hidden;
  position:absolute
}

.iti input.iti__tel-input,.iti input.iti__tel-input[type=tel],.iti input.iti__tel-input[type=text]{
  position:relative;
  z-index:0;
  margin:0!important
}

.iti__country-container{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  padding:var(--iti-border-width)
}

.iti__selected-country{
  z-index:1;
  position:relative;
  display:flex;
  align-items:center;
  height:100%;
  background:0 0;
  border:0;
  margin:0;
  padding:0;
  font-family:inherit;
  font-size:inherit;
  color:inherit;
  border-radius:0;
  font-weight:inherit;
  line-height:inherit;
  text-decoration:none
}

.iti__selected-country-primary{
  display:flex;
  align-items:center;
  height:100%;
  padding:0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal)
}

.iti__arrow{
  margin-left:var(--iti-arrow-padding);
  width:0;
  height:0;
  border-left:var(--iti-triangle-border) solid transparent;
  border-right:var(--iti-triangle-border) solid transparent;
  border-top:var(--iti-arrow-height) solid var(--iti-arrow-color)
}

.iti__arrow--up{
  border-top:none;
  border-bottom:var(--iti-arrow-height) solid var(--iti-arrow-color)
}

.iti__dropdown-content{
  border-radius:3px;
  background-color:var(--iti-dropdown-bg)
}

.iti--inline-dropdown .iti__dropdown-content{
  position:absolute;
  z-index:2;
  margin-top:3px;
  margin-left:calc(var(--iti-border-width) * -1);
  border:var(--iti-border-width) solid var(--iti-border-color);
  box-shadow:1px 1px 4px rgba(0,0,0,.2)
}

.iti__search-input{
  width:100%;
  border-width:0;
  border-radius:3px;
  padding-left:30px;
  padding-right:28px
}

[dir=rtl] .iti__search-input{
  padding-left:inherit;
  padding-right:30px;
  background-position:right 8px center
}

.iti__search-input+.iti__country-list{
  border-top:1px solid var(--iti-border-color)
}

.iti__search-input::-webkit-search-cancel-button{
  -webkit-appearance:none;
          appearance:none
}

.iti__search-input-wrapper{
  position:relative;
  display:flex;
  align-items:center
}

.iti__search-icon{
  position:absolute;
  left:8px;
  display:flex;
  pointer-events:none
}

[dir=rtl] .iti__search-icon{
  left:auto;
  right:8px
}

.iti__search-icon-svg{
  stroke:var(--iti-search-icon-color);
  fill:none;
  stroke-width:3
}

.iti__search-clear{
  position:absolute;
  right:4px;
  background:0 0;
  border:0;
  border-radius:3px;
  cursor:pointer;
  padding:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background-color .15s ease;
  width:24px;
  height:24px
}

.iti__search-clear .iti__search-clear-x{
  stroke-width:2
}

.iti__search-clear .iti__search-clear-bg{
  fill:var(--iti-search-icon-color)
}

[dir=rtl] .iti__search-clear{
  right:auto;
  left:4px
}

.iti__search-clear:focus-visible,.iti__search-clear:hover{
  background:var(--iti-hover-color);
  outline:0
}

.iti__no-results{
  text-align:center;
  padding:30px 0
}

.iti__country-list{
  list-style:none;
  padding:0;
  margin:0;
  cursor:pointer;
  overflow-y:scroll;
  -webkit-overflow-scrolling:touch
}

.iti--inline-dropdown .iti__country-list{
  max-height:185px
}

.iti--flexible-dropdown-width .iti__country-list{
  white-space:nowrap
}

@media (max-width:500px){
  .iti--flexible-dropdown-width .iti__country-list{
    white-space:normal
  }
}

.iti__country{
  display:flex;
  align-items:center;
  padding:8px var(--iti-spacer-horizontal);
  outline:0
}

.iti__dial-code{
  color:var(--iti-dialcode-color)
}

.iti__country.iti__highlight{
  background-color:var(--iti-hover-color)
}

.iti__country-list .iti__flag,.iti__country-name{
  margin-right:var(--iti-spacer-horizontal)
}

[dir=rtl] .iti__country-list .iti__flag,[dir=rtl] .iti__country-name{
  margin-right:0;
  margin-left:var(--iti-spacer-horizontal)
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) button.iti__selected-country{
  cursor:pointer
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary{
  background-color:var(--iti-hover-color)
}

.iti .iti__selected-dial-code{
  margin-left:4px
}

.iti--container{
  position:fixed;
  top:-1000px;
  left:-1000px;
  z-index:1060;
  padding:var(--iti-border-width)
}

.iti--container:hover{
  cursor:pointer
}

.iti__hide{
  display:none
}

.iti__v-hide{
  visibility:hidden
}

.iti--fullscreen-popup.iti--container{
  background-color:rgba(0,0,0,.5);
  top:0;
  bottom:0;
  left:0;
  right:0;
  position:fixed;
  padding:var(--iti-mobile-popup-margin);
  display:flex;
  flex-direction:column;
  justify-content:flex-start
}

.iti--fullscreen-popup .iti__dropdown-content{
  display:flex;
  flex-direction:column;
  max-height:100%;
  position:relative
}

.iti--fullscreen-popup .iti__country{
  padding:10px 10px;
  line-height:1.5em
}

.iti__flag{
  --iti-flag-offset:100px;
  height:var(--iti-flag-height);
  width:var(--iti-flag-width);
  border-radius:1px;
  box-shadow:0 0 1px 0 #888;
  background-image:var(--iti-path-flags-1x);
  background-repeat:no-repeat;
  background-position:var(--iti-flag-offset) 0;
  background-size:var(--iti-flag-sprite-width) var(--iti-flag-sprite-height)
}

.iti__ac{
  --iti-flag-offset:0px
}

.iti__ad{
  --iti-flag-offset:-16px
}

.iti__ae{
  --iti-flag-offset:-32px
}

.iti__af{
  --iti-flag-offset:-48px
}

.iti__ag{
  --iti-flag-offset:-64px
}

.iti__ai{
  --iti-flag-offset:-80px
}

.iti__al{
  --iti-flag-offset:-96px
}

.iti__am{
  --iti-flag-offset:-112px
}

.iti__ao{
  --iti-flag-offset:-128px
}

.iti__ar{
  --iti-flag-offset:-144px
}

.iti__as{
  --iti-flag-offset:-160px
}

.iti__at{
  --iti-flag-offset:-176px
}

.iti__au{
  --iti-flag-offset:-192px
}

.iti__aw{
  --iti-flag-offset:-208px
}

.iti__ax{
  --iti-flag-offset:-224px
}

.iti__az{
  --iti-flag-offset:-240px
}

.iti__ba{
  --iti-flag-offset:-256px
}

.iti__bb{
  --iti-flag-offset:-272px
}

.iti__bd{
  --iti-flag-offset:-288px
}

.iti__be{
  --iti-flag-offset:-304px
}

.iti__bf{
  --iti-flag-offset:-320px
}

.iti__bg{
  --iti-flag-offset:-336px
}

.iti__bh{
  --iti-flag-offset:-352px
}

.iti__bi{
  --iti-flag-offset:-368px
}

.iti__bj{
  --iti-flag-offset:-384px
}

.iti__bl{
  --iti-flag-offset:-400px
}

.iti__bm{
  --iti-flag-offset:-416px
}

.iti__bn{
  --iti-flag-offset:-432px
}

.iti__bo{
  --iti-flag-offset:-448px
}

.iti__bq{
  --iti-flag-offset:-464px
}

.iti__br{
  --iti-flag-offset:-480px
}

.iti__bs{
  --iti-flag-offset:-496px
}

.iti__bt{
  --iti-flag-offset:-512px
}

.iti__bw{
  --iti-flag-offset:-528px
}

.iti__by{
  --iti-flag-offset:-544px
}

.iti__bz{
  --iti-flag-offset:-560px
}

.iti__ca{
  --iti-flag-offset:-576px
}

.iti__cc{
  --iti-flag-offset:-592px
}

.iti__cd{
  --iti-flag-offset:-608px
}

.iti__cf{
  --iti-flag-offset:-624px
}

.iti__cg{
  --iti-flag-offset:-640px
}

.iti__ch{
  --iti-flag-offset:-656px
}

.iti__ci{
  --iti-flag-offset:-672px
}

.iti__ck{
  --iti-flag-offset:-688px
}

.iti__cl{
  --iti-flag-offset:-704px
}

.iti__cm{
  --iti-flag-offset:-720px
}

.iti__cn{
  --iti-flag-offset:-736px
}

.iti__co{
  --iti-flag-offset:-752px
}

.iti__cr{
  --iti-flag-offset:-768px
}

.iti__cu{
  --iti-flag-offset:-784px
}

.iti__cv{
  --iti-flag-offset:-800px
}

.iti__cw{
  --iti-flag-offset:-816px
}

.iti__cx{
  --iti-flag-offset:-832px
}

.iti__cy{
  --iti-flag-offset:-848px
}

.iti__cz{
  --iti-flag-offset:-864px
}

.iti__de{
  --iti-flag-offset:-880px
}

.iti__dj{
  --iti-flag-offset:-896px
}

.iti__dk{
  --iti-flag-offset:-912px
}

.iti__dm{
  --iti-flag-offset:-928px
}

.iti__do{
  --iti-flag-offset:-944px
}

.iti__dz{
  --iti-flag-offset:-960px
}

.iti__ec{
  --iti-flag-offset:-976px
}

.iti__ee{
  --iti-flag-offset:-992px
}

.iti__eg{
  --iti-flag-offset:-1008px
}

.iti__eh{
  --iti-flag-offset:-1024px
}

.iti__er{
  --iti-flag-offset:-1040px
}

.iti__es{
  --iti-flag-offset:-1056px
}

.iti__et{
  --iti-flag-offset:-1072px
}

.iti__fi{
  --iti-flag-offset:-1088px
}

.iti__fj{
  --iti-flag-offset:-1104px
}

.iti__fk{
  --iti-flag-offset:-1120px
}

.iti__fm{
  --iti-flag-offset:-1136px
}

.iti__fo{
  --iti-flag-offset:-1152px
}

.iti__fr{
  --iti-flag-offset:-1168px
}

.iti__ga{
  --iti-flag-offset:-1184px
}

.iti__gb{
  --iti-flag-offset:-1200px
}

.iti__gd{
  --iti-flag-offset:-1216px
}

.iti__ge{
  --iti-flag-offset:-1232px
}

.iti__gf{
  --iti-flag-offset:-1248px
}

.iti__gg{
  --iti-flag-offset:-1264px
}

.iti__gh{
  --iti-flag-offset:-1280px
}

.iti__gi{
  --iti-flag-offset:-1296px
}

.iti__gl{
  --iti-flag-offset:-1312px
}

.iti__gm{
  --iti-flag-offset:-1328px
}

.iti__gn{
  --iti-flag-offset:-1344px
}

.iti__gp{
  --iti-flag-offset:-1360px
}

.iti__gq{
  --iti-flag-offset:-1376px
}

.iti__gr{
  --iti-flag-offset:-1392px
}

.iti__gt{
  --iti-flag-offset:-1408px
}

.iti__gu{
  --iti-flag-offset:-1424px
}

.iti__gw{
  --iti-flag-offset:-1440px
}

.iti__gy{
  --iti-flag-offset:-1456px
}

.iti__hk{
  --iti-flag-offset:-1472px
}

.iti__hn{
  --iti-flag-offset:-1488px
}

.iti__hr{
  --iti-flag-offset:-1504px
}

.iti__ht{
  --iti-flag-offset:-1520px
}

.iti__hu{
  --iti-flag-offset:-1536px
}

.iti__id{
  --iti-flag-offset:-1552px
}

.iti__ie{
  --iti-flag-offset:-1568px
}

.iti__il{
  --iti-flag-offset:-1584px
}

.iti__im{
  --iti-flag-offset:-1600px
}

.iti__in{
  --iti-flag-offset:-1616px
}

.iti__io{
  --iti-flag-offset:-1632px
}

.iti__iq{
  --iti-flag-offset:-1648px
}

.iti__ir{
  --iti-flag-offset:-1664px
}

.iti__is{
  --iti-flag-offset:-1680px
}

.iti__it{
  --iti-flag-offset:-1696px
}

.iti__je{
  --iti-flag-offset:-1712px
}

.iti__jm{
  --iti-flag-offset:-1728px
}

.iti__jo{
  --iti-flag-offset:-1744px
}

.iti__jp{
  --iti-flag-offset:-1760px
}

.iti__ke{
  --iti-flag-offset:-1776px
}

.iti__kg{
  --iti-flag-offset:-1792px
}

.iti__kh{
  --iti-flag-offset:-1808px
}

.iti__ki{
  --iti-flag-offset:-1824px
}

.iti__km{
  --iti-flag-offset:-1840px
}

.iti__kn{
  --iti-flag-offset:-1856px
}

.iti__kp{
  --iti-flag-offset:-1872px
}

.iti__kr{
  --iti-flag-offset:-1888px
}

.iti__kw{
  --iti-flag-offset:-1904px
}

.iti__ky{
  --iti-flag-offset:-1920px
}

.iti__kz{
  --iti-flag-offset:-1936px
}

.iti__la{
  --iti-flag-offset:-1952px
}

.iti__lb{
  --iti-flag-offset:-1968px
}

.iti__lc{
  --iti-flag-offset:-1984px
}

.iti__li{
  --iti-flag-offset:-2000px
}

.iti__lk{
  --iti-flag-offset:-2016px
}

.iti__lr{
  --iti-flag-offset:-2032px
}

.iti__ls{
  --iti-flag-offset:-2048px
}

.iti__lt{
  --iti-flag-offset:-2064px
}

.iti__lu{
  --iti-flag-offset:-2080px
}

.iti__lv{
  --iti-flag-offset:-2096px
}

.iti__ly{
  --iti-flag-offset:-2112px
}

.iti__ma{
  --iti-flag-offset:-2128px
}

.iti__mc{
  --iti-flag-offset:-2144px
}

.iti__md{
  --iti-flag-offset:-2160px
}

.iti__me{
  --iti-flag-offset:-2176px
}

.iti__mf{
  --iti-flag-offset:-2192px
}

.iti__mg{
  --iti-flag-offset:-2208px
}

.iti__mh{
  --iti-flag-offset:-2224px
}

.iti__mk{
  --iti-flag-offset:-2240px
}

.iti__ml{
  --iti-flag-offset:-2256px
}

.iti__mm{
  --iti-flag-offset:-2272px
}

.iti__mn{
  --iti-flag-offset:-2288px
}

.iti__mo{
  --iti-flag-offset:-2304px
}

.iti__mp{
  --iti-flag-offset:-2320px
}

.iti__mq{
  --iti-flag-offset:-2336px
}

.iti__mr{
  --iti-flag-offset:-2352px
}

.iti__ms{
  --iti-flag-offset:-2368px
}

.iti__mt{
  --iti-flag-offset:-2384px
}

.iti__mu{
  --iti-flag-offset:-2400px
}

.iti__mv{
  --iti-flag-offset:-2416px
}

.iti__mw{
  --iti-flag-offset:-2432px
}

.iti__mx{
  --iti-flag-offset:-2448px
}

.iti__my{
  --iti-flag-offset:-2464px
}

.iti__mz{
  --iti-flag-offset:-2480px
}

.iti__na{
  --iti-flag-offset:-2496px
}

.iti__nc{
  --iti-flag-offset:-2512px
}

.iti__ne{
  --iti-flag-offset:-2528px
}

.iti__nf{
  --iti-flag-offset:-2544px
}

.iti__ng{
  --iti-flag-offset:-2560px
}

.iti__ni{
  --iti-flag-offset:-2576px
}

.iti__nl{
  --iti-flag-offset:-2592px
}

.iti__no{
  --iti-flag-offset:-2608px
}

.iti__np{
  --iti-flag-offset:-2624px
}

.iti__nr{
  --iti-flag-offset:-2640px
}

.iti__nu{
  --iti-flag-offset:-2656px
}

.iti__nz{
  --iti-flag-offset:-2672px
}

.iti__om{
  --iti-flag-offset:-2688px
}

.iti__pa{
  --iti-flag-offset:-2704px
}

.iti__pe{
  --iti-flag-offset:-2720px
}

.iti__pf{
  --iti-flag-offset:-2736px
}

.iti__pg{
  --iti-flag-offset:-2752px
}

.iti__ph{
  --iti-flag-offset:-2768px
}

.iti__pk{
  --iti-flag-offset:-2784px
}

.iti__pl{
  --iti-flag-offset:-2800px
}

.iti__pm{
  --iti-flag-offset:-2816px
}

.iti__pr{
  --iti-flag-offset:-2832px
}

.iti__ps{
  --iti-flag-offset:-2848px
}

.iti__pt{
  --iti-flag-offset:-2864px
}

.iti__pw{
  --iti-flag-offset:-2880px
}

.iti__py{
  --iti-flag-offset:-2896px
}

.iti__qa{
  --iti-flag-offset:-2912px
}

.iti__re{
  --iti-flag-offset:-2928px
}

.iti__ro{
  --iti-flag-offset:-2944px
}

.iti__rs{
  --iti-flag-offset:-2960px
}

.iti__ru{
  --iti-flag-offset:-2976px
}

.iti__rw{
  --iti-flag-offset:-2992px
}

.iti__sa{
  --iti-flag-offset:-3008px
}

.iti__sb{
  --iti-flag-offset:-3024px
}

.iti__sc{
  --iti-flag-offset:-3040px
}

.iti__sd{
  --iti-flag-offset:-3056px
}

.iti__se{
  --iti-flag-offset:-3072px
}

.iti__sg{
  --iti-flag-offset:-3088px
}

.iti__sh{
  --iti-flag-offset:-3104px
}

.iti__si{
  --iti-flag-offset:-3120px
}

.iti__sj{
  --iti-flag-offset:-3136px
}

.iti__sk{
  --iti-flag-offset:-3152px
}

.iti__sl{
  --iti-flag-offset:-3168px
}

.iti__sm{
  --iti-flag-offset:-3184px
}

.iti__sn{
  --iti-flag-offset:-3200px
}

.iti__so{
  --iti-flag-offset:-3216px
}

.iti__sr{
  --iti-flag-offset:-3232px
}

.iti__ss{
  --iti-flag-offset:-3248px
}

.iti__st{
  --iti-flag-offset:-3264px
}

.iti__sv{
  --iti-flag-offset:-3280px
}

.iti__sx{
  --iti-flag-offset:-3296px
}

.iti__sy{
  --iti-flag-offset:-3312px
}

.iti__sz{
  --iti-flag-offset:-3328px
}

.iti__tc{
  --iti-flag-offset:-3344px
}

.iti__td{
  --iti-flag-offset:-3360px
}

.iti__tg{
  --iti-flag-offset:-3376px
}

.iti__th{
  --iti-flag-offset:-3392px
}

.iti__tj{
  --iti-flag-offset:-3408px
}

.iti__tk{
  --iti-flag-offset:-3424px
}

.iti__tl{
  --iti-flag-offset:-3440px
}

.iti__tm{
  --iti-flag-offset:-3456px
}

.iti__tn{
  --iti-flag-offset:-3472px
}

.iti__to{
  --iti-flag-offset:-3488px
}

.iti__tr{
  --iti-flag-offset:-3504px
}

.iti__tt{
  --iti-flag-offset:-3520px
}

.iti__tv{
  --iti-flag-offset:-3536px
}

.iti__tw{
  --iti-flag-offset:-3552px
}

.iti__tz{
  --iti-flag-offset:-3568px
}

.iti__ua{
  --iti-flag-offset:-3584px
}

.iti__ug{
  --iti-flag-offset:-3600px
}

.iti__us{
  --iti-flag-offset:-3616px
}

.iti__uy{
  --iti-flag-offset:-3632px
}

.iti__uz{
  --iti-flag-offset:-3648px
}

.iti__va{
  --iti-flag-offset:-3664px
}

.iti__vc{
  --iti-flag-offset:-3680px
}

.iti__ve{
  --iti-flag-offset:-3696px
}

.iti__vg{
  --iti-flag-offset:-3712px
}

.iti__vi{
  --iti-flag-offset:-3728px
}

.iti__vn{
  --iti-flag-offset:-3744px
}

.iti__vu{
  --iti-flag-offset:-3760px
}

.iti__wf{
  --iti-flag-offset:-3776px
}

.iti__ws{
  --iti-flag-offset:-3792px
}

.iti__xk{
  --iti-flag-offset:-3808px
}

.iti__ye{
  --iti-flag-offset:-3824px
}

.iti__yt{
  --iti-flag-offset:-3840px
}

.iti__za{
  --iti-flag-offset:-3856px
}

.iti__zm{
  --iti-flag-offset:-3872px
}

.iti__zw{
  --iti-flag-offset:-3888px
}

.iti__globe{
  background-image:var(--iti-path-globe-1x);
  background-size:contain;
  background-position:right;
  box-shadow:none;
  height:19px
}

@media (min-resolution:2x){
  .iti__flag{
    background-image:var(--iti-path-flags-2x)
  }

  .iti__globe{
    background-image:var(--iti-path-globe-2x)
  }
}

/* Override flag path issue by using CDN flags or hide flags if needed */

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@25.8.6/build/img/flags.webp");
}

/* Fallback for browsers that don't support webp */

.iti__flag.iti__np {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@25.8.6/build/img/flags.png");
}

.iti {
  width: 100%;
}

[id^="iti-"][id$="__search-input"] {
  padding-left: 30px;
}

.phone-input-container .floating-label {
  background-color: white;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Thin.ttf) format("truetype");

  font-weight: 100;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-ThinItalic.ttf) format("truetype");

  font-weight: 100;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-ExtraLight.ttf) format("truetype");

  font-weight: 200;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-ExtraLightItalic.ttf) format("truetype");

  font-weight: 200;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Light.ttf) format("truetype");

  font-weight: 300;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-LightItalic.ttf) format("truetype");

  font-weight: 300;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Regular.ttf) format("truetype");

  font-weight: 400;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Italic.ttf) format("truetype");

  font-weight: 400;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Medium.ttf) format("truetype");

  font-weight: 500;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-MediumItalic.ttf) format("truetype");

  font-weight: 500;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-SemiBold.ttf) format("truetype");

  font-weight: 600;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-SemiBoldItalic.ttf) format("truetype");

  font-weight: 600;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Bold.ttf) format("truetype");

  font-weight: 700;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-BoldItalic.ttf) format("truetype");

  font-weight: 700;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-ExtraBold.ttf) format("truetype");

  font-weight: 800;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-ExtraBoldItalic.ttf) format("truetype");

  font-weight: 800;

  font-style: italic;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-Black.ttf) format("truetype");

  font-weight: 900;

  font-style: normal;
}

@font-face {
  font-family: "Poppins";

  src: url(/font/Poppins-BlackItalic.ttf) format("truetype");

  font-weight: 900;

  font-style: italic;
}

:root {
  /* Font */
  --font-poppins: "Poppins", sans-serif;
  /* Colours - General */
  --color-primary-blue: oklch(0.3597 0.1241 264.13);
  --color-light-grey:  oklch(0.9821 0 0);
  --color-light-blue: oklch(0.8095 0.1109 210.77);
  --color-dark-custom: oklch(0.1743 0.0412 276.93);
  --color-discovery-dark: oklch(0.2064 0.0241 299.57);
  --color-red-dark: oklch(0.49 0.1781 27.94);
  --color-red-medium: oklch(0.5776 0.2226 26.96);
  --color-two-oceans-light-blue: oklch(0.4759 0.1352 258.95);
  --color-two-oceans-dark-blue: oklch(0.3237 0.115 259.23);
  --color-counter-bg: oklch(0.2807 0.0977 259.47);
  --color-two-oceans-orange: oklch(0.715 0.1823 50.71);
  --color-medium-pink: oklch(0.6111 0.229 13.71);
  --color-light-orange: oklch(0.7575 0.1618 60.14);
}

body {
  font-family: var(--font-poppins);
  color: oklch(0.1743 0.0412 276.93);
}

.bg-comrades-blue {
  background-color: #285aa7;
}

.bg-comrades-pink {
  background-color: #f7146c;
}

.text-comrades-pink {
  color: #f7146c;
}

*, ::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: 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]:where(:not([hidden="until-found"])) {
  display: none;
}

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

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

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

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

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

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

::-webkit-datetime-edit{
  display:inline-flex
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top:0;
  padding-bottom:0
}

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

select:where([multiple]),select:where([size]:not([size="1"])){
  background-image:initial;
  background-position:initial;
  background-repeat:unset;
  background-size:initial;
  padding-right:0.75rem;
  -webkit-print-color-adjust:unset;
          print-color-adjust:unset
}

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

input:where([type='checkbox']){
  border-radius:0px
}

input:where([type='radio']){
  border-radius:100%
}

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

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

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

@media (forced-colors: active) {
  input:where([type='checkbox']):checked{
    -webkit-appearance:auto;
       -moz-appearance:auto;
            appearance:auto
  }
}

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

@media (forced-colors: active) {
  input:where([type='radio']):checked{
    -webkit-appearance:auto;
       -moz-appearance:auto;
            appearance:auto
  }
}

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

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

@media (forced-colors: active) {
  input:where([type='checkbox']):indeterminate{
    -webkit-appearance:auto;
       -moz-appearance:auto;
            appearance:auto
  }
}

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

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

input:where([type='file']):focus{
  outline:1px solid ButtonText;
  outline:1px auto -webkit-focus-ring-color
}

.\!container{
  width:100% !important
}

.container{
  width:100%
}

@media (min-width: 640px){
  .\!container{
    max-width:640px !important
  }

  .container{
    max-width:640px
  }
}

@media (min-width: 768px){
  .\!container{
    max-width:768px !important
  }

  .container{
    max-width:768px
  }
}

@media (min-width: 1024px){
  .\!container{
    max-width:1024px !important
  }

  .container{
    max-width:1024px
  }
}

@media (min-width: 1280px){
  .\!container{
    max-width:1280px !important
  }

  .container{
    max-width:1280px
  }
}

@media (min-width: 1536px){
  .\!container{
    max-width:1536px !important
  }

  .container{
    max-width:1536px
  }
}

.prose{
  color:var(--tw-prose-body);
  max-width:65ch;
}

.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 var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  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:rgb(17 24 39 / 10%);
  --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:rgb(255 255 255 / 10%);
  --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
}

.tom-shell{
  display:flex;
  height:100vh;
  flex-direction:column;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.tom-entry-shell{
  min-height:100vh;
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.tom-shell__poster{
  border-radius:2rem;
  padding:2rem
}

@media (min-width: 1024px){
  .tom-shell__poster{
    position:sticky;
    top:2rem;
    height: -moz-fit-content;
    height: fit-content
  }
}

.tom-shell__canvas,
    .tom-entry-shell__canvas{
  min-height:0px;
  flex:1 1 0%;
  padding:1.5rem
}

.tom-entry-shell__media{
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:2.5rem;
  padding-bottom:2.5rem
}

.tom-entry-shell__brand-lockup{
  max-width:24rem
}

/* .tom-entry-shell__context {
        @apply max-w-4xl;
    } */

.tom-page > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))
}

.tom-brand-poster__eyebrow{
  font-size:2.25rem;
  line-height:2.5rem;
  font-weight:300;
  text-transform:uppercase;
  letter-spacing:0.08em
}

@media (min-width: 1024px){
  .tom-brand-poster__eyebrow{
    font-size:3.75rem;
    line-height:1
  }
}

.tom-brand-poster__headline{
  margin-top:0.75rem;
  font-size:3rem;
  font-weight:700;
  text-transform:uppercase;
  line-height:1
}

@media (min-width: 1024px){
  .tom-brand-poster__headline{
    font-size:4.5rem;
    line-height:1
  }
}

.tom-brand-poster__date{
  margin-top:1rem;
  font-size:1.25rem;
  line-height:1.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em
}

.tom-brand-poster__logo-lockup{
  margin-top:2.5rem;
  max-width:12rem
}

.tom-brand-poster__logo{
  width:100%;
  border-radius:0.5rem;
  padding:0.75rem;
  background-color: rgba(255, 255, 255, 0.9)
}

.tom-offer-stack > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(1rem * var(--tw-space-y-reverse))
}

.tom-offer-row{
  padding:1rem
}

.tom-offer-row__summary{
  display:flex;
  flex-direction:column;
  gap:1rem
}

@media (min-width: 1024px){
  .tom-offer-row__summary{
    flex-direction:row;
    align-items:center;
    justify-content:space-between
  }
}

.tom-offer-row__title{
  font-size:1.25rem;
  line-height:1.75rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.tom-offer-row__copy,
    .tom-offer-row__availability,
    .tom-offer-context-bar__copy,
    .tom-offer-detail-panel__copy,
    .tom-offer-detail-panel__helper-copy,
    .tom-entry-context-banner__copy,
    .tom-entry-hero-media__copy{
  font-size:0.875rem;
  line-height:1.5rem;
  --tw-text-opacity:1;
  color:rgb(229 231 235 / var(--tw-text-opacity, 1))
}

.tom-offer-row__status{
  display:flex;
  align-items:center;
  gap:0.75rem
}

.tom-race-row__heading{
  display:flex;
  flex-direction:column;
  gap:0.75rem
}

@media (min-width: 1024px){
  .tom-race-row__heading{
    flex-direction:row;
    align-items:center
  }
}

.tom-offer-row__cta,
    .tom-offer-cta__button,
    .tom-offer-eligibility-prompt__submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  padding-left:1.5rem;
  padding-right:1.5rem;
  padding-top:0.75rem;
  padding-bottom:0.75rem;
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:600;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms
}

.tom-offer-row__expand-link{
  display:inline-flex;
  height:2.75rem;
  width:2.75rem;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  border-width:1px;
  border-color:rgb(255 255 255 / 0.3);
  font-size:1.5rem;
  line-height:2rem;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.tom-offer-context-bar__label,
    .tom-entry-context-banner__label,
    .tom-offer-detail-panel__kicker,
    .tom-entry-hero-media__label,
    .tom-offer-detail-panel__media-label,
    .tom-sponsor-footer__copy,
    .tom-offer-eligibility-prompt__label{
  font-size:0.75rem;
  line-height:1rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.2em;
  --tw-text-opacity:1;
  color:rgb(224 242 254 / var(--tw-text-opacity, 1))
}

.tom-offer-detail-panel{
  display:grid;
  gap:1.5rem;
  border-radius:2rem;
  padding:1.5rem
}

@media (min-width: 1024px){
  .tom-offer-detail-panel{
    grid-template-columns:minmax(0,0.8fr) minmax(0,1.2fr)
  }
}

.tom-offer-detail-panel__body{
  display:flex;
  flex-direction:column;
  gap:1rem
}

.tom-offer-countdown{
  display:inline-flex;
  gap:0.75rem;
  border-radius:1rem;
  padding:0.75rem
}

.tom-offer-closed-badge{
  display:inline-flex;
  align-items:center;
  border-radius:9999px;
  padding-left:1.25rem;
  padding-right:1.25rem;
  padding-top:0.5rem;
  padding-bottom:0.5rem;
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em
}

.tom-offer-eligibility-prompt__form{
  display:flex;
  flex-direction:column;
  gap:0.75rem
}

@media (min-width: 640px){
  .tom-offer-eligibility-prompt__form{
    flex-direction:row
  }
}

.tom-offer-eligibility-prompt__input{
  min-height:3rem;
  flex:1 1 0%;
  border-radius:9999px;
  border-width:1px;
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left:1.25rem;
  padding-right:1.25rem;
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity, 1));
  --tw-shadow:inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-color: rgba(255, 255, 255, 0.2)
}

.tom-offer-eligibility-result{
  display:flex;
  flex-direction:column;
  gap:1rem;
  border-radius:1.25rem;
  border-width:1px;
  padding:1rem;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(2, 6, 23, 0.2)
}

.tom-offer-eligibility-result__label{
  font-size:0.875rem;
  line-height:1.25rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.12em;
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.tom-offer-eligibility-result__copy{
  font-size:0.875rem;
  line-height:1.5rem;
  --tw-text-opacity:1;
  color:rgb(229 231 235 / var(--tw-text-opacity, 1))
}

.tom-sponsor-footer{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:1rem;
  border-radius:1.5rem;
  padding:1.5rem
}

@media (min-width: 1024px){
  .tom-sponsor-footer{
    flex-direction:row;
    align-items:center;
    justify-content:space-between
  }
}

.tom-sponsor-footer {
  background-color: rgba(2, 6, 23, 0.4);
}

.tom-sponsor-footer__image{
  max-height:4rem;
  width:auto;
  border-radius:0.5rem;
  padding:0.5rem;
  background-color: rgba(255, 255, 255, 0.95)
}

.tom-entry-context-banner{
  border-radius:1.5rem;
  padding:1rem
}

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

.pointer-events-none{
  pointer-events:none
}

.\!visible{
  visibility:visible !important
}

.visible{
  visibility:visible
}

.collapse{
  visibility:collapse
}

.static{
  position:static
}

.fixed{
  position:fixed
}

.absolute{
  position:absolute
}

.relative{
  position:relative
}

.inset-0{
  inset:0px
}

.inset-y-0{
  top:0px;
  bottom:0px
}

.left-0{
  left:0px
}

.right-3{
  right:0.75rem
}

.right-4{
  right:1rem
}

.top-0{
  top:0px
}

.top-3{
  top:0.75rem
}

.top-4{
  top:1rem
}

.top-5{
  top:1.25rem
}

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

.z-1{
  z-index:1
}

.z-10{
  z-index:10
}

.z-2{
  z-index:2
}

.z-50{
  z-index:50
}

.order-2{
  order:2
}

.order-3{
  order:3
}

.col-span-1{
  grid-column:span 1 / span 1
}

.col-span-2{
  grid-column:span 2 / span 2
}

.col-span-3{
  grid-column:span 3 / span 3
}

.mx-1{
  margin-left:0.25rem;
  margin-right:0.25rem
}

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

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

.my-10{
  margin-top:2.5rem;
  margin-bottom:2.5rem
}

.my-8{
  margin-top:2rem;
  margin-bottom:2rem
}

.\!mt-0{
  margin-top:0px !important
}

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

.mb-0\.5{
  margin-bottom:0.125rem
}

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

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

.mb-24{
  margin-bottom:6rem
}

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

.me-3{
  margin-inline-end:0.75rem
}

.me-4{
  margin-inline-end:1rem
}

.me-5{
  margin-inline-end:1.25rem
}

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

.ml-2{
  margin-left:0.5rem
}

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

.ml-4{
  margin-left:1rem
}

.ml-auto{
  margin-left:auto
}

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

.ms-2{
  margin-inline-start:0.5rem
}

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

.mt-0\.5{
  margin-top:0.125rem
}

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

.mt-1\.5{
  margin-top:0.375rem
}

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

.mt-15{
  margin-top:3.75rem
}

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

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

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

.mt-5{
  margin-top:1.25rem
}

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

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

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

.mt-\[25vh\]{
  margin-top:25vh
}

.block{
  display:block
}

.inline{
  display:inline
}

.flex{
  display:flex
}

.inline-flex{
  display:inline-flex
}

.table{
  display:table
}

.grid{
  display:grid
}

.hidden{
  display:none
}

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

.size-1{
  width:0.25rem;
  height:0.25rem
}

.size-3\.5{
  width:0.875rem;
  height:0.875rem
}

.size-4{
  width:1rem;
  height:1rem
}

.size-5{
  width:1.25rem;
  height:1.25rem
}

.size-6{
  width:1.5rem;
  height:1.5rem
}

.size-8{
  width:2rem;
  height:2rem
}

.h-1{
  height:0.25rem
}

.h-10{
  height:2.5rem
}

.h-4{
  height:1rem
}

.h-5{
  height:1.25rem
}

.h-\[30vh\]{
  height:30vh
}

.h-\[40vh\]{
  height:40vh
}

.h-\[50vh\]{
  height:50vh
}

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

.h-\[75\%\]{
  height:75%
}

.h-fit{
  height:-moz-fit-content;
  height:fit-content
}

.h-full{
  height:100%
}

.min-h-0{
  min-height:0px
}

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

.min-h-full{
  min-height:100%
}

.min-h-screen{
  min-height:100vh
}

.w-32{
  width:8rem
}

.w-4{
  width:1rem
}

.w-5{
  width:1.25rem
}

.w-\[0\%\]{
  width:0%
}

.w-\[10\%\]{
  width:10%
}

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

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

.w-\[15\%\]{
  width:15%
}

.w-\[1px\]{
  width:1px
}

.w-\[20\%\]{
  width:20%
}

.w-\[25\%\]{
  width:25%
}

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

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

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

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

.w-\[5\%\]{
  width:5%
}

.w-\[50\%\]{
  width:50%
}

.w-\[55\%\]{
  width:55%
}

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

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

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

.w-\[75\%\]{
  width:75%
}

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

.w-\[85\%\]{
  width:85%
}

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

.w-\[95\%\]{
  width:95%
}

.w-auto{
  width:auto
}

.w-fit{
  width:-moz-fit-content;
  width:fit-content
}

.w-full{
  width:100%
}

.min-w-0{
  min-width:0px
}

.min-w-\[220px\]{
  min-width:220px
}

.min-w-full{
  min-width:100%
}

.max-w-2xl{
  max-width:42rem
}

.max-w-3xl{
  max-width:48rem
}

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

.max-w-5xl{
  max-width:64rem
}

.max-w-7xl{
  max-width:80rem
}

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

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

.max-w-md{
  max-width:28rem
}

.max-w-sm{
  max-width:24rem
}

.max-w-xl{
  max-width:36rem
}

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

.flex-shrink-0{
  flex-shrink:0
}

.shrink-0{
  flex-shrink:0
}

.grow{
  flex-grow:1
}

.border-collapse{
  border-collapse:collapse
}

.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))
}

.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))
}

.scale-101{
  --tw-scale-x:1.01;
  --tw-scale-y:1.01;
  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-help{
  cursor:help
}

.cursor-not-allowed{
  cursor:not-allowed
}

.cursor-pointer{
  cursor:pointer
}

.list-inside{
  list-style-position:inside
}

.list-disc{
  list-style-type:disc
}

.appearance-none{
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none
}

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

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

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

.grid-cols-\[3fr_4fr\]{
  grid-template-columns:3fr 4fr
}

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

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

.gap-1{
  gap:0.25rem
}

.gap-2{
  gap:0.5rem
}

.gap-3{
  gap:0.75rem
}

.gap-4{
  gap:1rem
}

.gap-6{
  gap:1.5rem
}

.gap-x-4{
  -moz-column-gap:1rem;
       column-gap:1rem
}

.gap-x-6{
  -moz-column-gap:1.5rem;
       column-gap:1.5rem
}

.gap-y-1{
  row-gap:0.25rem
}

.gap-y-1\.5{
  row-gap:0.375rem
}

.gap-y-4{
  row-gap:1rem
}

.gap-y-6{
  row-gap:1.5rem
}

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

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

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

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

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

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

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

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

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:0;
  border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:calc(1px * var(--tw-divide-y-reverse))
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(229 231 235 / var(--tw-divide-opacity, 1))
}

.divide-slate-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(229 231 235 / var(--tw-divide-opacity, 1))
}

.overflow-hidden{
  overflow:hidden
}

.overflow-x-auto{
  overflow-x:auto
}

.whitespace-nowrap{
  white-space:nowrap
}

.break-all{
  word-break:break-all
}

.rounded{
  border-radius:0.25rem
}

.rounded-2xl{
  border-radius:1rem
}

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

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

.rounded-md{
  border-radius:0.375rem
}

.rounded-sm{
  border-radius:0.125rem
}

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

.rounded-b-md{
  border-bottom-right-radius:0.375rem;
  border-bottom-left-radius:0.375rem
}

.rounded-b-xl{
  border-bottom-right-radius:0.75rem;
  border-bottom-left-radius:0.75rem
}

.rounded-t-md{
  border-top-left-radius:0.375rem;
  border-top-right-radius:0.375rem
}

.rounded-bl-md{
  border-bottom-left-radius:0.375rem
}

.rounded-br-md{
  border-bottom-right-radius:0.375rem
}

.rounded-tl-md{
  border-top-left-radius:0.375rem
}

.rounded-tr-md{
  border-top-right-radius:0.375rem
}

.border{
  border-width:1px
}

.border-0{
  border-width:0px
}

.border-2{
  border-width:2px
}

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

.border-l-4{
  border-left-width:4px
}

.border-r{
  border-right-width:1px
}

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

.border-t-0{
  border-top-width:0px
}

.border-amber-200{
  --tw-border-opacity:1;
  border-color:rgb(253 230 138 / var(--tw-border-opacity, 1))
}

.border-blue-200{
  --tw-border-opacity:1;
  border-color:rgb(191 219 254 / var(--tw-border-opacity, 1))
}

.border-blue-400{
  --tw-border-opacity:1;
  border-color:rgb(96 165 250 / var(--tw-border-opacity, 1))
}

.border-emerald-400{
  --tw-border-opacity:1;
  border-color:rgb(52 211 153 / var(--tw-border-opacity, 1))
}

.border-gray-100{
  --tw-border-opacity:1;
  border-color:rgb(243 244 246 / var(--tw-border-opacity, 1))
}

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

.border-gray-300{
  --tw-border-opacity:1;
  border-color:rgb(209 213 219 / var(--tw-border-opacity, 1))
}

.border-green-200{
  --tw-border-opacity:1;
  border-color:rgb(187 247 208 / var(--tw-border-opacity, 1))
}

.border-green-500{
  --tw-border-opacity:1;
  border-color:rgb(34 197 94 / var(--tw-border-opacity, 1))
}

.border-green-500\/40{
  border-color:rgb(34 197 94 / 0.4)
}

.border-indigo-400{
  --tw-border-opacity:1;
  border-color:rgb(129 140 248 / var(--tw-border-opacity, 1))
}

.border-medium-pink{
  border-color:#d31f3aff
}

.border-purple-400{
  --tw-border-opacity:1;
  border-color:rgb(192 132 252 / var(--tw-border-opacity, 1))
}

.border-red-200{
  --tw-border-opacity:1;
  border-color:rgb(254 202 202 / var(--tw-border-opacity, 1))
}

.border-red-300{
  --tw-border-opacity:1;
  border-color:rgb(252 165 165 / var(--tw-border-opacity, 1))
}

.border-red-500{
  --tw-border-opacity:1;
  border-color:rgb(239 68 68 / var(--tw-border-opacity, 1))
}

.border-red-500\/40{
  border-color:rgb(239 68 68 / 0.4)
}

.border-red-900{
  --tw-border-opacity:1;
  border-color:rgb(127 29 29 / var(--tw-border-opacity, 1))
}

.border-slate-200{
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / var(--tw-border-opacity, 1))
}

.border-slate-300{
  --tw-border-opacity:1;
  border-color:rgb(209 213 219 / var(--tw-border-opacity, 1))
}

.border-transparent{
  border-color:transparent
}

.border-two-oceans-orange{
  --tw-border-opacity:1;
  border-color:rgb(241 139 46 / var(--tw-border-opacity, 1))
}

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

.border-white\/10{
  border-color:rgb(255 255 255 / 0.1)
}

.border-white\/20{
  border-color:rgb(255 255 255 / 0.2)
}

.border-white\/30{
  border-color:rgb(255 255 255 / 0.3)
}

.border-white\/50{
  border-color:rgb(255 255 255 / 0.5)
}

.border-yellow-500{
  --tw-border-opacity:1;
  border-color:rgb(234 179 8 / var(--tw-border-opacity, 1))
}

.bg-\[\#191521\]{
  --tw-bg-opacity:1;
  background-color:rgb(25 21 33 / var(--tw-bg-opacity, 1))
}

.bg-\[\#3b3842\]{
  --tw-bg-opacity:1;
  background-color:rgb(59 56 66 / var(--tw-bg-opacity, 1))
}

.bg-amber-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 243 199 / var(--tw-bg-opacity, 1))
}

.bg-amber-50{
  --tw-bg-opacity:1;
  background-color:rgb(255 251 235 / var(--tw-bg-opacity, 1))
}

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

.bg-black\/50{
  background-color:rgb(0 0 0 / 0.5)
}

.bg-black\/60{
  background-color:rgb(0 0 0 / 0.6)
}

.bg-black\/75{
  background-color:rgb(0 0 0 / 0.75)
}

.bg-blue-100{
  --tw-bg-opacity:1;
  background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1))
}

.bg-blue-50{
  --tw-bg-opacity:1;
  background-color:rgb(239 246 255 / var(--tw-bg-opacity, 1))
}

.bg-blue-600{
  --tw-bg-opacity:1;
  background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1))
}

.bg-counter-bg{
  --tw-bg-opacity:1;
  background-color:rgb(23 56 109 / var(--tw-bg-opacity, 1))
}

.bg-emerald-100{
  --tw-bg-opacity:1;
  background-color:rgb(209 250 229 / var(--tw-bg-opacity, 1))
}

.bg-emerald-50{
  --tw-bg-opacity:1;
  background-color:rgb(236 253 245 / var(--tw-bg-opacity, 1))
}

.bg-gray-100{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

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

.bg-gray-50{
  --tw-bg-opacity:1;
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.bg-gray-600{
  --tw-bg-opacity:1;
  background-color:rgb(75 85 99 / var(--tw-bg-opacity, 1))
}

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

.bg-green-100{
  --tw-bg-opacity:1;
  background-color:rgb(220 252 231 / var(--tw-bg-opacity, 1))
}

.bg-green-50{
  --tw-bg-opacity:1;
  background-color:rgb(240 253 244 / var(--tw-bg-opacity, 1))
}

.bg-green-500{
  --tw-bg-opacity:1;
  background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))
}

.bg-green-700\/40{
  background-color:rgb(21 128 61 / 0.4)
}

.bg-green-800\/40{
  background-color:rgb(22 101 52 / 0.4)
}

.bg-light-grey{
  --tw-bg-opacity:1;
  background-color:rgb(245 245 245 / var(--tw-bg-opacity, 1))
}

.bg-lime-500{
  --tw-bg-opacity:1;
  background-color:rgb(132 204 22 / var(--tw-bg-opacity, 1))
}

.bg-purple-50{
  --tw-bg-opacity:1;
  background-color:rgb(250 245 255 / var(--tw-bg-opacity, 1))
}

.bg-red-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 226 226 / var(--tw-bg-opacity, 1))
}

.bg-red-50{
  --tw-bg-opacity:1;
  background-color:rgb(254 242 242 / var(--tw-bg-opacity, 1))
}

.bg-red-500{
  --tw-bg-opacity:1;
  background-color:rgb(239 68 68 / var(--tw-bg-opacity, 1))
}

.bg-red-800\/40{
  background-color:rgb(153 27 27 / 0.4)
}

.bg-sky-400{
  --tw-bg-opacity:1;
  background-color:rgb(56 189 248 / var(--tw-bg-opacity, 1))
}

.bg-sky-600{
  --tw-bg-opacity:1;
  background-color:rgb(2 132 199 / var(--tw-bg-opacity, 1))
}

.bg-slate-100{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.bg-slate-50{
  --tw-bg-opacity:1;
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

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

.bg-slate-950{
  --tw-bg-opacity:1;
  background-color:rgb(2 6 23 / var(--tw-bg-opacity, 1))
}

.bg-transparent{
  background-color:transparent
}

.bg-two-oceans-dark-blue{
  --tw-bg-opacity:1;
  background-color:rgb(13 62 120 / var(--tw-bg-opacity, 1))
}

.bg-two-oceans-orange{
  --tw-bg-opacity:1;
  background-color:rgb(241 139 46 / var(--tw-bg-opacity, 1))
}

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

.bg-white\/10{
  background-color:rgb(255 255 255 / 0.1)
}

.bg-white\/20{
  background-color:rgb(255 255 255 / 0.2)
}

.bg-white\/25{
  background-color:rgb(255 255 255 / 0.25)
}

.bg-white\/50{
  background-color:rgb(255 255 255 / 0.5)
}

.bg-yellow-100{
  --tw-bg-opacity:1;
  background-color:rgb(254 249 195 / var(--tw-bg-opacity, 1))
}

.bg-yellow-400{
  --tw-bg-opacity:1;
  background-color:rgb(250 204 21 / var(--tw-bg-opacity, 1))
}

.bg-yellow-500{
  --tw-bg-opacity:1;
  background-color:rgb(234 179 8 / var(--tw-bg-opacity, 1))
}

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

.bg-gradient-to-t{
  background-image:linear-gradient(to top, var(--tw-gradient-stops))
}

.from-\[\#F7146C\]{
  --tw-gradient-from:#F7146C var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(247 20 108 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-transparent{
  --tw-gradient-from:transparent var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-two-oceans-orange\/80{
  --tw-gradient-from:rgb(241 139 46 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(241 139 46 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-medium-pink\/80{
  --tw-gradient-to:rgb(211 31 58 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from), rgb(211 31 58 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-\[\#953FE7\]{
  --tw-gradient-to:#953FE7 var(--tw-gradient-to-position)
}

.to-black\/70{
  --tw-gradient-to:rgb(0 0 0 / 0.7) var(--tw-gradient-to-position)
}

.to-medium-pink\/80{
  --tw-gradient-to:rgb(211 31 58 / 0.8) var(--tw-gradient-to-position)
}

.bg-cover{
  background-size:cover
}

.bg-clip-text{
  -webkit-background-clip:text;
          background-clip:text
}

.bg-center{
  background-position:center
}

.bg-left{
  background-position:left
}

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

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

.object-\[40\%_50\%\]{
  -o-object-position:40% 50%;
     object-position:40% 50%
}

.\!p-0{
  padding:0px !important
}

.p-0{
  padding:0px
}

.p-2{
  padding:0.5rem
}

.p-3{
  padding:0.75rem
}

.p-4{
  padding:1rem
}

.p-5{
  padding:1.25rem
}

.p-6{
  padding:1.5rem
}

.p-8{
  padding:2rem
}

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

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

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

.px-12{
  padding-left:3rem;
  padding-right:3rem
}

.px-15{
  padding-left:3.75rem;
  padding-right:3.75rem
}

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

.px-2\.5{
  padding-left:0.625rem;
  padding-right:0.625rem
}

.px-3{
  padding-left:0.75rem;
  padding-right:0.75rem
}

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

.px-5{
  padding-left:1.25rem;
  padding-right:1.25rem
}

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

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

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

.py-0\.5{
  padding-top:0.125rem;
  padding-bottom:0.125rem
}

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

.py-1\.5{
  padding-top:0.375rem;
  padding-bottom:0.375rem
}

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

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

.py-14{
  padding-top:3.5rem;
  padding-bottom:3.5rem
}

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

.py-2\.5{
  padding-top:0.625rem;
  padding-bottom:0.625rem
}

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

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

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

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

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

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

.pb-15{
  padding-bottom:3.75rem
}

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

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

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

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

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

.pe-0{
  padding-inline-end:0px
}

.pe-10{
  padding-inline-end:2.5rem
}

.pe-3{
  padding-inline-end:0.75rem
}

.pe-5{
  padding-inline-end:1.25rem
}

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

.pl-28{
  padding-left:7rem
}

.pl-3{
  padding-left:0.75rem
}

.pl-5{
  padding-left:1.25rem
}

.pr-10{
  padding-right:2.5rem
}

.pr-7{
  padding-right:1.75rem
}

.ps-1{
  padding-inline-start:0.25rem
}

.ps-15{
  padding-inline-start:3.75rem
}

.pt-1{
  padding-top:0.25rem
}

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

.pt-12{
  padding-top:3rem
}

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

.pt-3{
  padding-top:0.75rem
}

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

.pt-40{
  padding-top:10rem
}

.pt-5{
  padding-top:1.25rem
}

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

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

.text-left{
  text-align:left
}

.text-center{
  text-align:center
}

.text-right{
  text-align:right
}

.text-start{
  text-align:start
}

.text-end{
  text-align:end
}

.font-\[Arial\]{
  font-family:Arial
}

.font-mono{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

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

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

.text-6xl{
  font-size:3.75rem;
  line-height:1
}

.text-\[10px\]{
  font-size:10px
}

.text-\[11px\]{
  font-size:11px
}

.text-\[12px\]{
  font-size:12px
}

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

.text-\[25px\]{
  font-size:25px
}

.text-\[45px\]{
  font-size:45px
}

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

.uppercase{
  text-transform:uppercase
}

.capitalize{
  text-transform:capitalize
}

.leading-10{
  line-height:2.5rem
}

.leading-4{
  line-height:1rem
}

.leading-6{
  line-height:1.5rem
}

.leading-none{
  line-height:1
}

.leading-relaxed{
  line-height:1.625
}

.leading-snug{
  line-height:1.375
}

.leading-tight{
  line-height:1.25
}

.tracking-\[0\.2em\]{
  letter-spacing:0.2em
}

.tracking-\[1px\]{
  letter-spacing:1px
}

.tracking-wide{
  letter-spacing:0.025em
}

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

.text-amber-700{
  --tw-text-opacity:1;
  color:rgb(180 83 9 / var(--tw-text-opacity, 1))
}

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

.text-blue-600{
  --tw-text-opacity:1;
  color:rgb(37 99 235 / var(--tw-text-opacity, 1))
}

.text-blue-700{
  --tw-text-opacity:1;
  color:rgb(29 78 216 / var(--tw-text-opacity, 1))
}

.text-blue-900{
  --tw-text-opacity:1;
  color:rgb(30 58 138 / var(--tw-text-opacity, 1))
}

.text-dark-custom{
  --tw-text-opacity:1;
  color:rgb(21 27 41 / var(--tw-text-opacity, 1))
}

.text-emerald-700{
  --tw-text-opacity:1;
  color:rgb(4 120 87 / var(--tw-text-opacity, 1))
}

.text-gray-300{
  --tw-text-opacity:1;
  color:rgb(209 213 219 / var(--tw-text-opacity, 1))
}

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

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

.text-gray-600{
  --tw-text-opacity:1;
  color:rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.text-gray-700{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.text-gray-900{
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.text-green-300{
  --tw-text-opacity:1;
  color:rgb(134 239 172 / var(--tw-text-opacity, 1))
}

.text-green-400{
  --tw-text-opacity:1;
  color:rgb(74 222 128 / var(--tw-text-opacity, 1))
}

.text-green-600{
  --tw-text-opacity:1;
  color:rgb(22 163 74 / var(--tw-text-opacity, 1))
}

.text-green-700{
  --tw-text-opacity:1;
  color:rgb(21 128 61 / var(--tw-text-opacity, 1))
}

.text-green-800{
  --tw-text-opacity:1;
  color:rgb(22 101 52 / var(--tw-text-opacity, 1))
}

.text-indigo-600{
  --tw-text-opacity:1;
  color:rgb(79 70 229 / var(--tw-text-opacity, 1))
}

.text-medium-pink{
  color:#d31f3aff
}

.text-purple-700{
  --tw-text-opacity:1;
  color:rgb(126 34 206 / var(--tw-text-opacity, 1))
}

.text-red-300{
  --tw-text-opacity:1;
  color:rgb(252 165 165 / var(--tw-text-opacity, 1))
}

.text-red-400{
  --tw-text-opacity:1;
  color:rgb(248 113 113 / var(--tw-text-opacity, 1))
}

.text-red-500{
  --tw-text-opacity:1;
  color:rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.text-red-600{
  --tw-text-opacity:1;
  color:rgb(220 38 38 / var(--tw-text-opacity, 1))
}

.text-red-700{
  --tw-text-opacity:1;
  color:rgb(185 28 28 / var(--tw-text-opacity, 1))
}

.text-red-800{
  --tw-text-opacity:1;
  color:rgb(153 27 27 / var(--tw-text-opacity, 1))
}

.text-red-900{
  --tw-text-opacity:1;
  color:rgb(127 29 29 / var(--tw-text-opacity, 1))
}

.text-slate-100{
  --tw-text-opacity:1;
  color:rgb(243 244 246 / var(--tw-text-opacity, 1))
}

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

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

.text-slate-600{
  --tw-text-opacity:1;
  color:rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.text-slate-700{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.text-slate-800{
  --tw-text-opacity:1;
  color:rgb(31 41 55 / var(--tw-text-opacity, 1))
}

.text-slate-900{
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.text-transparent{
  color:transparent
}

.text-two-oceans-orange{
  --tw-text-opacity:1;
  color:rgb(241 139 46 / var(--tw-text-opacity, 1))
}

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

.text-white\/30{
  color:rgb(255 255 255 / 0.3)
}

.text-white\/40{
  color:rgb(255 255 255 / 0.4)
}

.text-white\/50{
  color:rgb(255 255 255 / 0.5)
}

.text-white\/60{
  color:rgb(255 255 255 / 0.6)
}

.text-white\/70{
  color:rgb(255 255 255 / 0.7)
}

.text-white\/80{
  color:rgb(255 255 255 / 0.8)
}

.text-yellow-600{
  --tw-text-opacity:1;
  color:rgb(202 138 4 / var(--tw-text-opacity, 1))
}

.text-yellow-700{
  --tw-text-opacity:1;
  color:rgb(161 98 7 / var(--tw-text-opacity, 1))
}

.underline{
  text-decoration-line:underline
}

.underline-offset-2{
  text-underline-offset:2px
}

.placeholder-gray-400::-moz-placeholder{
  --tw-placeholder-opacity:1;
  color:rgb(156 163 175 / var(--tw-placeholder-opacity, 1))
}

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

.placeholder-red-300::-moz-placeholder{
  --tw-placeholder-opacity:1;
  color:rgb(252 165 165 / var(--tw-placeholder-opacity, 1))
}

.placeholder-red-300::placeholder{
  --tw-placeholder-opacity:1;
  color:rgb(252 165 165 / var(--tw-placeholder-opacity, 1))
}

.placeholder-white\/30::-moz-placeholder{
  color:rgb(255 255 255 / 0.3)
}

.placeholder-white\/30::placeholder{
  color:rgb(255 255 255 / 0.3)
}

.opacity-50{
  opacity:0.5
}

.opacity-60{
  opacity:0.6
}

.opacity-75{
  opacity:0.75
}

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

.shadow-2xl{
  --tw-shadow:0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

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

.outline{
  outline-style:solid
}

.ring-1{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.ring-inset{
  --tw-ring-inset:inset
}

.ring-blue-600\/20{
  --tw-ring-color:rgb(37 99 235 / 0.2)
}

.ring-gray-500\/20{
  --tw-ring-color:rgb(107 114 128 / 0.2)
}

.ring-green-600\/20{
  --tw-ring-color:rgb(22 163 74 / 0.2)
}

.ring-purple-700\/10{
  --tw-ring-color:rgb(126 34 206 / 0.1)
}

.ring-slate-700\/10{
  --tw-ring-color:rgb(55 65 81 / 0.1)
}

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

.invert{
  --tw-invert:invert(100%);
  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)
}

.backdrop-blur-sm{
  --tw-backdrop-blur:blur(4px);
  backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition{
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, 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
}

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

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

.duration-300{
  transition-duration:300ms
}

.temporal-accordion-open{
  height:-moz-fit-content;
  height:fit-content;
  grid-template-rows:1fr;
  overflow:hidden;
  opacity:1;
  transition-property:all;
  transition-duration:500ms;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px){
  .temporal-accordion-open{
    height:45vh
  }
}

@media (min-width: 1024px){
  .temporal-accordion-open{
    height:30vh
  }
}

@media (min-width: 1280px){
  .temporal-accordion-open{
    height:60vh
  }
}

@media (min-width: 1536px){
  .temporal-accordion-open{
    height:45vh
  }
}

.temporal-accordion-close{
  height:0;
  overflow:hidden;
  padding:0px;
  opacity:0;
  transition-property:all;
  transition-duration:500ms;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)
}

.temporal-accordion-header-hidden{
  height:0;
  overflow:hidden;
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:0px;
  padding-bottom:0px;
  opacity:0;
  transition-property:all;
  transition-duration:500ms;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)
}

.temporal-accordion-header-visible{
  display:flex;
  height:-moz-fit-content;
  height:fit-content;
  align-items:center;
  overflow:hidden;
  padding-left:0.75rem;
  padding-right:0.75rem;
  padding-top:1rem;
  padding-bottom:1rem;
  opacity:1;
  transition-property:all;
  transition-duration:500ms;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px){
  .temporal-accordion-header-visible{
    height:100px
  }
}

/* Pagy pagination styling */

.pagy-nav .pagy.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagy-nav .pagy.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #334155;
  /* slate-700 */
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  /* slate-300 */
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}

.pagy-nav .pagy.nav a:hover {
  background-color: #f8fafc;
  /* slate-50 */
  color: #0f172a;
  /* slate-900 */
}

.pagy-nav .pagy.nav a.current {
  background-color: #0f172a;
  /* slate-900 */
  color: #ffffff;
  border-color: #0f172a;
  /* slate-900 */
}

.pagy-nav .pagy.nav a.current:hover {
  background-color: #1e293b;
  /* slate-800 */
  color: #ffffff;
}

.pagy-nav .pagy.nav a[aria-disabled="true"]:not(.current) {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagy-nav .pagy.nav a.gap {
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}

.pagy-nav .pagy.nav a.gap:hover {
  background-color: transparent;
}

/* Optional: Style the prev/next arrows */

.pagy-nav .pagy.nav a[aria-label="Previous"],
.pagy-nav .pagy.nav a[aria-label="Next"] {
  font-weight: 600;
}

@media (min-width: 1024px){
  .lg\:prose-xl{
    font-size:1.25rem;
    line-height:1.8;
  }

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

  .lg\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:1.2em;
    line-height:1.5;
    margin-top:1em;
    margin-bottom:1em
  }

  .lg\:prose-xl :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:1.6em;
    margin-bottom:1.6em;
    padding-inline-start:1.0666667em
  }

  .lg\:prose-xl :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:2.8em;
    margin-top:0;
    margin-bottom:0.8571429em;
    line-height:1
  }

  .lg\:prose-xl :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:1.8em;
    margin-top:1.5555556em;
    margin-bottom:0.8888889em;
    line-height:1.1111111
  }

  .lg\:prose-xl :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:1.5em;
    margin-top:1.6em;
    margin-bottom:0.6666667em;
    line-height:1.3333333
  }

  .lg\:prose-xl :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:1.8em;
    margin-bottom:0.6em;
    line-height:1.6
  }

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

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

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

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

  .lg\:prose-xl :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.9em;
    border-radius:0.3125rem;
    padding-top:0.25em;
    padding-inline-end:0.4em;
    padding-bottom:0.25em;
    padding-inline-start:0.4em
  }

  .lg\:prose-xl :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.9em
  }

  .lg\:prose-xl :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.8611111em
  }

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

  .lg\:prose-xl :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.9em;
    line-height:1.7777778;
    margin-top:2em;
    margin-bottom:2em;
    border-radius:0.5rem;
    padding-top:1.1111111em;
    padding-inline-end:1.3333333em;
    padding-bottom:1.1111111em;
    padding-inline-start:1.3333333em
  }

  .lg\:prose-xl :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:1.2em;
    margin-bottom:1.2em;
    padding-inline-start:1.6em
  }

  .lg\:prose-xl :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:1.2em;
    margin-bottom:1.2em;
    padding-inline-start:1.6em
  }

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

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

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

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

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

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

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

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

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

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

  .lg\:prose-xl :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:1.2em
  }

  .lg\:prose-xl :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:0.6em;
    padding-inline-start:1.6em
  }

  .lg\:prose-xl :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top:2.8em;
    margin-bottom:2.8em
  }

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

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

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

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

  .lg\:prose-xl :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.9em;
    line-height:1.5555556
  }

  .lg\:prose-xl :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-end:0.6666667em;
    padding-bottom:0.8888889em;
    padding-inline-start:0.6666667em
  }

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

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

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

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

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

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

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

  .lg\:prose-xl :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-size:0.9em;
    line-height:1.5555556;
    margin-top:1em
  }

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

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

.hover\:-translate-y-1:hover{
  --tw-translate-y:-0.25rem;
  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))
}

.hover\:bg-blue-200:hover{
  --tw-bg-opacity:1;
  background-color:rgb(191 219 254 / var(--tw-bg-opacity, 1))
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity:1;
  background-color:rgb(29 78 216 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-400:hover{
  --tw-bg-opacity:1;
  background-color:rgb(156 163 175 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity:1;
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-700:hover{
  --tw-bg-opacity:1;
  background-color:rgb(55 65 81 / var(--tw-bg-opacity, 1))
}

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

.hover\:bg-red-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(254 226 226 / var(--tw-bg-opacity, 1))
}

.hover\:bg-sky-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(2 132 199 / var(--tw-bg-opacity, 1))
}

.hover\:bg-sky-700:hover{
  --tw-bg-opacity:1;
  background-color:rgb(3 105 161 / var(--tw-bg-opacity, 1))
}

.hover\:bg-slate-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.hover\:bg-slate-50:hover{
  --tw-bg-opacity:1;
  background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.hover\:bg-slate-700:hover{
  --tw-bg-opacity:1;
  background-color:rgb(55 65 81 / var(--tw-bg-opacity, 1))
}

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

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

.hover\:bg-white\/20:hover{
  background-color:rgb(255 255 255 / 0.2)
}

.hover\:bg-yellow-400:hover{
  --tw-bg-opacity:1;
  background-color:rgb(250 204 21 / var(--tw-bg-opacity, 1))
}

.hover\:text-blue-800:hover{
  --tw-text-opacity:1;
  color:rgb(30 64 175 / var(--tw-text-opacity, 1))
}

.hover\:text-gray-700:hover{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.hover\:text-green-900:hover{
  --tw-text-opacity:1;
  color:rgb(20 83 45 / var(--tw-text-opacity, 1))
}

.hover\:text-slate-700:hover{
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.hover\:text-slate-900:hover{
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.hover\:text-two-oceans-orange:hover{
  --tw-text-opacity:1;
  color:rgb(241 139 46 / var(--tw-text-opacity, 1))
}

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

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

.hover\:opacity-90:hover{
  opacity:0.9
}

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

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

.focus\:border-indigo-500:focus{
  --tw-border-opacity:1;
  border-color:rgb(99 102 241 / var(--tw-border-opacity, 1))
}

.focus\:border-red-500:focus{
  --tw-border-opacity:1;
  border-color:rgb(239 68 68 / var(--tw-border-opacity, 1))
}

.focus\:border-slate-500:focus{
  --tw-border-opacity:1;
  border-color:rgb(107 114 128 / var(--tw-border-opacity, 1))
}

.focus\:border-two-oceans-dark-blue:focus{
  --tw-border-opacity:1;
  border-color:rgb(13 62 120 / var(--tw-border-opacity, 1))
}

.focus\:border-two-oceans-orange:focus{
  --tw-border-opacity:1;
  border-color:rgb(241 139 46 / var(--tw-border-opacity, 1))
}

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

.focus\:ring-1:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

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

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

.focus\:ring-indigo-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(99 102 241 / var(--tw-ring-opacity, 1))
}

.focus\:ring-medium-pink:focus{
  --tw-ring-color:#d31f3aff
}

.focus\:ring-red-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(239 68 68 / var(--tw-ring-opacity, 1))
}

.focus\:ring-sky-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(14 165 233 / var(--tw-ring-opacity, 1))
}

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

.focus\:ring-slate-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(107 114 128 / var(--tw-ring-opacity, 1))
}

.focus\:ring-two-oceans-dark-blue:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(13 62 120 / var(--tw-ring-opacity, 1))
}

.focus\:ring-two-oceans-orange:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(241 139 46 / var(--tw-ring-opacity, 1))
}

.focus\:ring-yellow-500:focus{
  --tw-ring-opacity:1;
  --tw-ring-color:rgb(234 179 8 / var(--tw-ring-opacity, 1))
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width:2px
}

@media (min-width: 640px){
  .sm\:col-span-2{
    grid-column:span 2 / span 2
  }

  .sm\:col-span-3{
    grid-column:span 3 / span 3
  }

  .sm\:col-start-1{
    grid-column-start:1
  }

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

  .sm\:mb-0{
    margin-bottom:0px
  }

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

  .sm\:mt-8{
    margin-top:2rem
  }

  .sm\:block{
    display:block
  }

  .sm\:grid{
    display:grid
  }

  .sm\:w-full{
    width:100%
  }

  .sm\:max-w-md{
    max-width:28rem
  }

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

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

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

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

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

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

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

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

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

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

  .sm\:text-left{
    text-align:left
  }

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

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

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

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

@media (min-width: 768px){
  .md\:order-2{
    order:2
  }

  .md\:order-3{
    order:3
  }

  .md\:col-span-1{
    grid-column:span 1 / span 1
  }

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

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

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

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

  .md\:mt-10{
    margin-top:2.5rem
  }

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

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

  .md\:mt-6{
    margin-top:1.5rem
  }

  .md\:block{
    display:block
  }

  .md\:flex{
    display:flex
  }

  .md\:hidden{
    display:none
  }

  .md\:size-6{
    width:1.5rem;
    height:1.5rem
  }

  .md\:h-\[75\%\]{
    height:75%
  }

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

  .md\:w-64{
    width:16rem
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:grid-cols-6{
    grid-template-columns:repeat(6, minmax(0, 1fr))
  }

  .md\:grid-cols-\[1fr_3fr_1fr\]{
    grid-template-columns:1fr 3fr 1fr
  }

  .md\:grid-cols-\[1fr_auto\]{
    grid-template-columns:1fr auto
  }

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

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

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

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

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

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

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

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

  .md\:gap-4{
    gap:1rem
  }

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

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

  .md\:p-6{
    padding:1.5rem
  }

  .md\:p-8{
    padding:2rem
  }

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

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

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

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

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

  .md\:pe-10{
    padding-inline-end:2.5rem
  }

  .md\:ps-7{
    padding-inline-start:1.75rem
  }

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

  .md\:pt-9{
    padding-top:2.3rem
  }

  .md\:text-right{
    text-align:right
  }

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

  .md\:text-end{
    text-align:end
  }

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

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

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

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

@media (min-width: 1024px){
  .lg\:mx-auto{
    margin-left:auto;
    margin-right:auto
  }

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

  .lg\:block{
    display:block
  }

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

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

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

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

  .lg\:w-fit{
    width:-moz-fit-content;
    width:fit-content
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1280px){
  .xl\:sticky{
    position:sticky
  }

  .xl\:top-0{
    top:0px
  }

  .xl\:mt-\[30vh\]{
    margin-top:30vh
  }

  .xl\:flex{
    display:flex
  }

  .xl\:hidden{
    display:none
  }

  .xl\:h-\[35vh\]{
    height:35vh
  }

  .xl\:h-fit{
    height:-moz-fit-content;
    height:fit-content
  }

  .xl\:h-screen{
    height:100vh
  }

  .xl\:min-h-screen{
    min-height:100vh
  }

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

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

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

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

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

  .xl\:grid-cols-\[4fr_7fr\]{
    grid-template-columns:4fr 7fr
  }

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

  .xl\:flex-col{
    flex-direction:column
  }

  .xl\:justify-start{
    justify-content:flex-start
  }

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

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

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

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

  .xl\:pb-1{
    padding-bottom:0.25rem
  }

  .xl\:pb-4{
    padding-bottom:1rem
  }

  .xl\:pt-16{
    padding-top:4rem
  }

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

  .xl\:text-\[30px\]{
    font-size:30px
  }

  .xl\:text-\[45px\]{
    font-size:45px
  }

  .xl\:text-\[50px\]{
    font-size:50px
  }

  .xl\:text-\[80px\]{
    font-size:80px
  }
}

@media (min-width: 1536px){
  .\32xl\:w-\[75\%\]{
    width:75%
  }

  .\32xl\:px-15{
    padding-left:3.75rem;
    padding-right:3.75rem
  }

  .\32xl\:pt-10{
    padding-top:2.5rem
  }

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