/* @tailwind base;

@tailwind components; */

.space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)))
}

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

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

.bg-transparent {
  background-color: transparent
}

.bg-black {
  --bg-opacity: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, var(--bg-opacity))
}

.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity))
}

.bg-gray-100 {
  --bg-opacity: 1;
  background-color: #FAFBFD;
  background-color: rgba(250, 251, 253, var(--bg-opacity))
}

.bg-gray-200 {
  --bg-opacity: 1;
  background-color: #F0F4F6;
  background-color: rgba(240, 244, 246, var(--bg-opacity))
}

.bg-gray-900 {
  --bg-opacity: 1;
  background-color: #1A1A1A;
  background-color: rgba(26, 26, 26, var(--bg-opacity))
}

.bg-blue-200 {
  --bg-opacity: 1;
  background-color: #bee3f8;
  background-color: rgba(190, 227, 248, var(--bg-opacity))
}

.bg-blue {
  --bg-opacity: 1;
  background-color: #0062ff;
  background-color: rgba(0, 98, 255, var(--bg-opacity))
}

.hover\:bg-blue:hover {
  --bg-opacity: 1;
  background-color: #0062ff;
  background-color: rgba(0, 98, 255, var(--bg-opacity))
}

.bg-white\! {
  --bg-opacity: 1 !important;
  background-color: #fff !important;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important
}

.bg-center {
  background-position: center
}

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

.bg-cover {
  background-size: cover
}

.border-white {
  --border-opacity: 1;
  border-color: #fff;
  border-color: rgba(255, 255, 255, var(--border-opacity))
}

.border-gray-300 {
  --border-opacity: 1;
  border-color: #C3CDD9;
  border-color: rgba(195, 205, 217, var(--border-opacity))
}

.border-gray-400 {
  --border-opacity: 1;
  border-color: #cbd5e0;
  border-color: rgba(203, 213, 224, var(--border-opacity))
}

.border-gray-500 {
  --border-opacity: 1;
  border-color: #91928D;
  border-color: rgba(145, 146, 141, var(--border-opacity))
}

.border-gray {
  --border-opacity: 1;
  border-color: #494949;
  border-color: rgba(73, 73, 73, var(--border-opacity))
}

.active\:border-black.active {
  --border-opacity: 1;
  border-color: #000;
  border-color: rgba(0, 0, 0, var(--border-opacity))
}

.rounded {
  border-radius: 0.25rem
}

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

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

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

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

.border-solid {
  border-style: solid
}

.border-0 {
  border-width: 0
}

.border {
  border-width: 1px
}

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

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

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

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

.cursor-pointer {
  cursor: pointer
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.table {
  display: table
}

.hidden {
  display: none
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column
}

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

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}

.items-start\! {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important
}

.self-center {
  -ms-flex-item-align: center;
      align-self: center
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%
}

.flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2
}

.font-din {
  font-family: "DIN Condensed", Arial, "Helvetica Neue", Helvetica, sans-serif
}

.font-proximanova {
  font-family: "Proxima Nova", Arial, "Helvetica Neue", Helvetica, sans-serif
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.h-6 {
  height: 1.5rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-auto {
  height: auto
}

.h-2\/3 {
  height: 66.666667%
}

.h-full {
  height: 100%
}

.text-xs {
  font-size: 0.75rem
}

.text-sm {
  font-size: 0.875rem
}

.text-base {
  font-size: 1rem
}

.text-lg {
  font-size: 1.125rem
}

.text-xl {
  font-size: 1.25rem
}

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

.text-3xl {
  font-size: 1.875rem
}

.text-4xl {
  font-size: 2.25rem
}

.text-518px {
  font-size: 518px
}

.leading-none {
  line-height: 1
}

.leading-normal {
  line-height: 1.5
}

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

.m-0 {
  margin: 0
}

.m-4 {
  margin: 1rem
}

.m-5 {
  margin: 1.25rem
}

.m-auto {
  margin: auto
}

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

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

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem
}

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

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

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

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

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

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

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem
}

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

.-mx-3 {
  margin-left: -0.75rem;
  margin-right: -0.75rem
}

.mt-0 {
  margin-top: 0
}

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

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

.mr-3 {
  margin-right: 0.75rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-16 {
  margin-bottom: 4rem
}

.ml-auto {
  margin-left: auto
}

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

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

.-mt-7 {
  margin-top: -1.75rem
}

.-mr-7 {
  margin-right: -1.75rem
}

.-ml-7 {
  margin-left: -1.75rem
}

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

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

.first\:mt-0:first-child {
  margin-top: 0
}

.max-w-xs {
  max-width: 20rem
}

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

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

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

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

.max-w-6xl {
  max-width: 72rem
}

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

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

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

.opacity-0 {
  opacity: 0
}

.opacity-50 {
  opacity: 0.5
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.p-0 {
  padding: 0
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-8 {
  padding: 2rem
}

.p-10 {
  padding: 2.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-0 {
  padding-left: 0
}

.pr-2 {
  padding-right: 0.5rem
}

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

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

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

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

.pl-6 {
  padding-left: 1.5rem
}

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

.pr-20 {
  padding-right: 5rem
}

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

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

.pb-56 {
  padding-bottom: 14rem
}

.pl-0\! {
  padding-left: 0 !important
}

.pt-4\! {
  padding-top: 1rem !important
}

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

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.absolute\! {
  position: absolute !important
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

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

.inset-x-0 {
  right: 0;
  left: 0
}

.top-0 {
  top: 0
}

.right-0 {
  right: 0
}

.bottom-0 {
  bottom: 0
}

.left-0 {
  left: 0
}

.right-full {
  right: 100%
}

.left-full {
  left: 100%
}

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

.shadow-2xl {
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25)
}

.focus-within\:shadow-outline:focus-within {
  -webkit-box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
          box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5)
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-black {
  --text-opacity: 1;
  color: #000;
  color: rgba(0, 0, 0, var(--text-opacity))
}

.text-white {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.text-gray-200 {
  --text-opacity: 1;
  color: #F0F4F6;
  color: rgba(240, 244, 246, var(--text-opacity))
}

.text-gray-500 {
  --text-opacity: 1;
  color: #91928D;
  color: rgba(145, 146, 141, var(--text-opacity))
}

.text-gray-600 {
  --text-opacity: 1;
  color: #8D8F92;
  color: rgba(141, 143, 146, var(--text-opacity))
}

.text-gray-650 {
  --text-opacity: 1;
  color: #555555;
  color: rgba(85, 85, 85, var(--text-opacity))
}

.text-gray-700 {
  --text-opacity: 1;
  color: #3C3C3C;
  color: rgba(60, 60, 60, var(--text-opacity))
}

.text-red-500 {
  --text-opacity: 1;
  color: #f56565;
  color: rgba(245, 101, 101, var(--text-opacity))
}

.text-blue-100 {
  --text-opacity: 1;
  color: #ebf8ff;
  color: rgba(235, 248, 255, var(--text-opacity))
}

.text-blue-600 {
  --text-opacity: 1;
  color: #3182ce;
  color: rgba(49, 130, 206, var(--text-opacity))
}

.text-blue {
  --text-opacity: 1;
  color: #0062ff;
  color: rgba(0, 98, 255, var(--text-opacity))
}

.hover\:text-white:hover {
  --text-opacity: 1;
  color: #fff;
  color: rgba(255, 255, 255, var(--text-opacity))
}

.active\:text-black.active {
  --text-opacity: 1;
  color: #000;
  color: rgba(0, 0, 0, var(--text-opacity))
}

.text-blue\! {
  --text-opacity: 1 !important;
  color: #0062ff !important;
  color: rgba(0, 98, 255, var(--text-opacity)) !important
}

.not-italic {
  font-style: normal
}

.uppercase {
  text-transform: uppercase
}

.capitalize {
  text-transform: capitalize
}

.normal-case {
  text-transform: none
}

.underline {
  text-decoration: underline
}

.hover\:no-underline:hover {
  text-decoration: none
}

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

.tracking-wider {
  letter-spacing: 0.05em
}

.tracking-wide\! {
  letter-spacing: 0.025em !important
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none
}

.align-middle {
  vertical-align: middle
}

.whitespace-no-wrap {
  white-space: nowrap
}

.w-6 {
  width: 1.5rem
}

.w-14 {
  width: 3.5rem
}

.w-16 {
  width: 4rem
}

.w-auto {
  width: auto
}

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

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

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

.w-full {
  width: 100%
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  -webkit-transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
          transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))
}

.rotate-180 {
  --transform-rotate: 180deg
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg)
  }
}

@keyframes ping {
  75%, 100% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    -webkit-transform: none;
            transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

.aspect-ratio-4\/3 {
  padding-top: 75%
}

.aspect-ratio-16\/9 {
  padding-top: 56.25%
}

.border-box\! {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important
}

@media (min-width: 640px) {

  .sm\:block {
    display: block
  }

  .sm\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .sm\:hidden {
    display: none
  }

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

  .sm\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start
  }

  .sm\:justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center
  }

  .sm\:m-2 {
    margin: 0.5rem
  }

  .sm\:m-4 {
    margin: 1rem
  }

  .sm\:mb-0 {
    margin-bottom: 0
  }
}

@media (min-width: 768px) {

  .md\:not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

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

  .md\:rounded-r-xl {
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem
  }

  .md\:inline-block {
    display: inline-block
  }

  .md\:inline {
    display: inline
  }

  .md\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

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

  .md\:items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center
  }

  .md\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around
  }

  .md\:text-base {
    font-size: 1rem
  }

  .md\:text-lg {
    font-size: 1.125rem
  }

  .md\:text-xl {
    font-size: 1.25rem
  }

  .md\:text-3xl {
    font-size: 1.875rem
  }

  .md\:text-6xl {
    font-size: 4rem
  }

  .md\:m-3 {
    margin: 0.75rem
  }

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

  .md\:ml-5 {
    margin-left: 1.25rem
  }

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

  .md\:mr-10 {
    margin-right: 2.5rem
  }

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

  .md\:mb-auto {
    margin-bottom: auto
  }

  .md\:-ml-23 {
    margin-left: -5.75rem
  }

  .md\:max-w-35 {
    max-width: 8.75rem
  }

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

  .md\:p-10 {
    padding: 2.5rem
  }

  .md\:p-15 {
    padding: 3.75rem
  }

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

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

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

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

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

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

  .md\:px-22 {
    padding-left: 5.5rem;
    padding-right: 5.5rem
  }

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

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

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

  .md\:pr-20 {
    padding-right: 5rem
  }

  .md\:pr-23 {
    padding-right: 5.75rem
  }

  .md\:pl-40 {
    padding-left: 10rem
  }

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

  .md\:w-76 {
    width: 19rem
  }

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

  .md\:w-1\/6 {
    width: 16.666667%
  }

  .md\:w-5\/6 {
    width: 83.333333%
  }

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

@media (min-width: 1024px) {

  .lg\:block {
    display: block
  }

  .lg\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .lg\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between
  }

  .lg\:text-110px {
    font-size: 110px
  }

  .lg\:m-0 {
    margin: 0
  }

  .lg\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
  }

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

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

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

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

  .lg\:ml-auto {
    margin-left: auto
  }

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

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem
  }

  .lg\:static {
    position: static
  }

  .lg\:absolute {
    position: absolute
  }

  .lg\:inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }

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

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

  .lg\:w-5\/12 {
    width: 41.666667%
  }

  .lg\:w-8\/12 {
    width: 66.666667%
  }

  .lg\:w-10\/12 {
    width: 83.333333%
  }
}

@media (min-width: 1280px) {

  .xl\:block {
    display: block
  }

  .xl\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .xl\:m-0 {
    margin: 0
  }

  .xl\:mt-0 {
    margin-top: 0
  }

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

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

  .xl\:first\:ml-0:first-child {
    margin-left: 0
  }

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

  .xl\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .xl\:absolute {
    position: absolute
  }

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

  .xl\:w-5\/12 {
    width: 41.666667%
  }

  .xl\:w-7\/12 {
    width: 58.333333%
  }

  .xl\:w-8\/12 {
    width: 66.666667%
  }
}
