.react-multi-carousel-list {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative
}

.react-multi-carousel-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, transition
}

.react-multiple-carousel__arrow {
  position: absolute;
  outline: 0;
  transition: all .5s;
  border-radius: 35px;
  z-index: 1000;
  border: 0;
  background: rgba(0, 0, 0, .5);
  min-width: 43px;
  min-height: 43px;
  opacity: 1;
  cursor: pointer
}

.react-multiple-carousel__arrow:hover {
  background: rgba(0, 0, 0, .8)
}

.react-multiple-carousel__arrow:before {
  font-size: 20px;
  color: #fff;
  display: block;
  font-family: revicons;
  text-align: center;
  z-index: 2;
  position: relative
}

.react-multiple-carousel__arrow:disabled {
  cursor: default;
  background: rgba(0, 0, 0, .5)
}

.react-multiple-carousel__arrow--left {
  left: calc(4% + 1px)
}

.react-multiple-carousel__arrow--left:before {
  content: "\e824"
}

.react-multiple-carousel__arrow--right {
  right: calc(4% + 1px)
}

.react-multiple-carousel__arrow--right:before {
  content: "\e825"
}

.react-multi-carousel-dot-list {
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center
}

.react-multi-carousel-dot button {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
  transition: background .5s;
  border: 2px solid grey;
  padding: 0;
  margin: 0 6px 0 0;
  outline: 0;
  cursor: pointer
}

.react-multi-carousel-dot button:hover:active, .react-multi-carousel-dot--active button {
  background: #080808
}

.react-multi-carousel-item {
  transform-style: preserve-3d;
  backface-visibility: hidden
}

@media (-ms-high-contrast: active),(-ms-high-contrast: none) {
  .react-multi-carousel-item {
    flex-shrink: 0 !important
  }

  .react-multi-carousel-track {
    overflow: visible !important
  }
}

[dir=rtl].react-multi-carousel-list {
  direction: rtl
}

.rtl.react-multiple-carousel__arrow--right {
  right: auto;
  left: calc(4% + 1px)
}

.rtl.react-multiple-carousel__arrow--right:before {
  content: "\e824"
}

.rtl.react-multiple-carousel__arrow--left {
  left: auto;
  right: calc(4% + 1px)
}

.rtl.react-multiple-carousel__arrow--left:before {
  content: "\e825"
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: hsla(0, 0%, 100%, .7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translateZ(var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff
}

.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em
}

.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0
  }

  .Toastify__toast-container--top-center, .Toastify__toast-container--top-left, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0)
  }

  .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0)
  }

  .Toastify__toast-container--rtl {
    right: 0;
    left: auto
  }
}

.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0
}

.Toastify__toast--rtl {
  direction: rtl
}

.Toastify__toast--close-on-click {
  cursor: pointer
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: .7s
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: .3s
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0
  }
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default, .Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: var(--toastify-color-transparent)
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: .7;
  transition: .3s ease;
  align-self: flex-start
}

.Toastify__close-button--light {
  color: #000;
  opacity: .3
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px
}

.Toastify__close-button:focus, .Toastify__close-button:hover {
  opacity: 1
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1)
  }
  to {
    transform: scaleX(0)
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: .7;
  transform-origin: left
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
  transition: transform .2s
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  transform-origin: right
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    transform: translate3d(10px, 0, 0)
  }
  90% {
    transform: translate3d(-5px, 0, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes Toastify__bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0)
  }
  75% {
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    transform: translate3d(5px, 0, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes Toastify__bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  75% {
    transform: translate3d(0, 10px, 0)
  }
  90% {
    transform: translate3d(0, -5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes Toastify__bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)
  }
  75% {
    transform: translate3d(0, -10px, 0)
  }
  90% {
    transform: translate3d(0, 5px, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}

.Toastify__bounce-enter--bottom-left, .Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right, .Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left, .Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right, .Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}

@keyframes Toastify__zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}

@keyframes Toastify__flipOut {
  0% {
    transform: perspective(400px)
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__slideOutRight {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0)
  }
}

@keyframes Toastify__slideOutLeft {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0)
  }
}

@keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0)
  }
}

@keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0)
  }
}

.Toastify__slide-enter--bottom-left, .Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right, .Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left, .Toastify__slide-exit--top-left {
  animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right, .Toastify__slide-exit--top-right {
  animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

/*
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
*/
.loader {
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid #ed775b;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite
}

.my-container {
  max-width: 1408px
}

.my-container, .my-containerNew {
  margin-left: auto;
  margin-right: auto
}

.my-containerNew {
  max-width: 1708px
}

.insight-link {
  display: flex;
  height: 2.5rem;
  width: 134px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: .375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(103 103 36/var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity))
}

.insight-link:hover {
  opacity: .75
}

@media (min-width: 1024px) {
  .insight-link {
    height: 52px;
    width: 192px;
    gap: .75rem
  }
}

.insight-link-white {
  display: flex;
  height: 36px;
  width: 112px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: .375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(103 103 36/var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgb(103 103 36/var(--tw-text-opacity))
}

.insight-link-white:hover {
  opacity: .75
}

@media (min-width: 1024px) {
  .insight-link-white {
    height: 44px;
    width: 100px;
    gap: .75rem
  }
}

.insight-link > span {
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500
}

@media (min-width: 1280px) {
  .insight-link > span {
    font-size: 1.125rem;
    line-height: 1.75rem
  }
}

.insight-link > svg {
  font-size: 1.25rem;
  line-height: 1.75rem
}

@media (min-width: 1024px) {
  .insight-link > svg {
    font-size: 1.5rem;
    line-height: 2rem
  }
}

.menu-item-link {
  display: flex;
  min-width: 11rem;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81/var(--tw-text-opacity))
}

.menu-item-link:hover {
  opacity: .75
}

.menu-item-link > span {
  position: relative;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center
}

.menu-item-link > img {
  -o-object-fit: contain;
  object-fit: contain
}

.filter-item-button, .menu-item-link > p {
  font-size: 1rem;
  line-height: 1.5rem
}

.filter-item-button {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(125 132 144/var(--tw-text-opacity))
}

.filter-item-button:hover {
  opacity: .75
}

.filter-item-button > input {
  height: 1rem;
  width: 1rem;
  border-radius: .75rem;
  --tw-border-opacity: 1;
  border-color: rgb(246 246 243/var(--tw-border-opacity));
  accent-color: #676724
}

@keyframes rotation {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

* {
  direction: rtl;
  font-size: 16px
}

*, h2 {
  font-family: Arial
}

::-moz-placeholder {
  font-family: Arial !important;
  font-size: 12px !important;
  font-weight: lighter !important;
  outline: none !important;
  color: #7d8490 !important
}

::placeholder, input, label {
  font-family: Arial !important;
  font-size: 12px !important;
  font-weight: lighter !important;
  outline: none !important;
  color: #7d8490 !important
}

strong {
  font-family: Arial;
  font-weight: 500 !important
}

.MuiTypography-root {
  font-family: Arial !important
}

.modal-type .MuiRadio-root {
  margin-left: 34px !important
}

.modal-type-sm .MuiRadio-root {
  margin-left: 50px !important
}

.modal-type-xs .MuiRadio-root {
  margin-left: -10px !important
}

.MuiOutlinedInput-root {
  height: 100% !important
}

#menu-appbar-r .MuiMenu-paper {
  height: 380px !important
}

.MuiFormControl-root > .MuiInputBase-root > .MuiInputAdornment-root:after {
  content: "🢓" !important;
  color: gray;
  font-size: 30px;
  margin-top: 30px
}

.MuiFormControlLabel-root {
  margin-right: 0 !important
}

.MuiTextField-root label {
  top: -3px;
  right: -10px
}

.MuiTextField-root .MuiInputLabel-shrink {
  top: 2px !important
}

.MuiRadio-root {
  padding: 0 !important
}

.label-h .MuiTypography-root {
  font-size: 14px
}

.Mui-selected {
  background-color: #f3f4f6 !important
}

.label-h .MuiRadio-root {
  margin-left: 33px !important
}

#cartNumber {
  padding-right: 15px !important
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px
}

::-webkit-scrollbar-thumb {
  background: #282828;
  border-radius: 4px
}

.MuiTelInput-Menu {
  direction: ltr !important
}

.outline-container {
  display: flex;
  width: 100% !important;
  height: 44px !important;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px;
  color: #7b864b;
  font-size: 12px;
  border: 1px solid #eae8e8 !important
}

.MuiSelect-select {
  font-size: 12px !important;
  padding-right: 10px !important;
  color: #7d8490 !important
}

.MuiSwitch-track {
  height: 100% !important;
  width: 24px !important;
  border-radius: 10px !important;
  background-color: #c1b1634d !important
}

.MuiSwitch-thumb {
  margin: 4px 0 0 1px !important;
  width: 10px !important;
  height: 10px !important;
  background-color: #7d8490 !important
}

.MuiSwitch-root {
  width: 24px !important;
  padding: 0 !important;
  height: 14px !important
}

.MuiSwitch-switchBase {
  width: 12px !important;
  height: 10px !important;
  padding: 1px 0 0 !important
}

.swg .Mui-checked {
  transform: translateX(10px) !important
}

.MuiOutlinedInput-root legend {
  width: 0 !important
}

.MuiTextField-root label {
  background-color: #fff;
  padding: 0 7px
}

.Mui-checked .MuiSwitch-thumb {
  background-color: #c1b163 !important
}

.MuiSwitch-input {
  width: 24px !important
}

.date--separator {
  right: 52px !important
}

.main-border {
  border: 1px solid #7b864b !important
}

input[type=radio] + span {
  color: #7b864b !important
}

.MuiTelInput-MenuItem {
  direction: ltr !important
}

.arrow-landing div:after {
  display: none
}

.MuiTelInput-ListItemText-country {
  direction: ltr !important;
  text-align: left !important
}

.MuiTelInput-ListItemText-country span {
  font-family: Poppins !important
}

.MuiTelInput-Typography-calling-code {
  direction: ltr !important;
  font-family: Poppins !important
}

/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com*/
*, :after, :before {
  box-sizing: border-box;
  border: 0 solid #6c6c72
}

:after, :before {
  --tw-content: ""
}

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

body {
  margin: 0;
  line-height: inherit
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px
}

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

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

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

b, strong {
  font-weight: bolder
}

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

small {
  font-size: 80%
}

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

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse
}

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

button, select {
  text-transform: none
}

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

:-moz-focusring {
  outline: auto
}

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

progress {
  vertical-align: baseline
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

summary {
  display: list-item
}

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

fieldset {
  margin: 0
}

fieldset, legend {
  padding: 0
}

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

dialog {
  padding: 0
}

textarea {
  resize: vertical
}

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

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

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

:disabled {
  cursor: default
}

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

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

[hidden] {
  display: none
}

/**, :after, :before {*/
/*  --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: rgba(59, 130, 246, .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: rgba(59, 130, 246, .5);*/
/*  --tw-ring-offset-shadow: 0 0 #0000;*/
/*  --tw-ring-shadow: 0 0 #0000;*/
/*  --tw-shadow: 0 0 #0000;*/
/*  --tw-shadow-colored: 0 0 #0000;*/
/*  --tw-blur: ;*/
/*  --tw-brightness: ;*/
/*  --tw-contrast: ;*/
/*  --tw-grayscale: ;*/
/*  --tw-hue-rotate: ;*/
/*  --tw-invert: ;*/
/*  --tw-saturate: ;*/
/*  --tw-sepia: ;*/
/*  --tw-drop-shadow: ;*/
/*  --tw-backdrop-blur: ;*/
/*  --tw-backdrop-brightness: ;*/
/*  --tw-backdrop-contrast: ;*/
/*  --tw-backdrop-grayscale: ;*/
/*  --tw-backdrop-hue-rotate: ;*/
/*  --tw-backdrop-invert: ;*/
/*  --tw-backdrop-opacity: ;*/
/*  --tw-backdrop-saturate: ;*/
/*  --tw-backdrop-sepia: ;*/
/*  --tw-contain-size: ;*/
/*  --tw-contain-layout: ;*/
/*  --tw-contain-paint: ;*/
/*  --tw-contain-style:*/
/*}*/

.container {
  width: 100%
}

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

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

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

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

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

.tooltip {
  visibility: hidden;
  position: absolute
}

.has-tooltip:hover .tooltip {
  visibility: visible;
  z-index: 50
}

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

.\!fixed {
  position: fixed !important
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.-inset-1 {
  inset: -.25rem
}

.inset-0 {
  inset: 0
}

.inset-2 {
  inset: .5rem
}

.\!inset-x-0 {
  left: 0 !important;
  right: 0 !important
}

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

.\!bottom-0 {
  bottom: 0 !important
}

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

.\!left-\[20\%\] {
  left: 20% !important
}

.\!right-\[50\%\] {
  right: 50% !important
}

.\!right-\[83\%\] {
  right: 83% !important
}

.-bottom-1 {
  bottom: -.25rem
}

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

.-bottom-2 {
  bottom: -.5rem
}

.-bottom-9 {
  bottom: -2.25rem
}

.-left-1 {
  left: -.25rem
}

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

.-left-\[80px\] {
  left: -80px
}

.-right-1 {
  right: -.25rem
}

.-right-2 {
  right: -.5rem
}

.-right-\[10\%\] {
  right: -10%
}

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

.-right-\[20vh\] {
  right: -20vh
}

.-right-\[46\%\] {
  right: -46%
}

.-right-\[72px\] {
  right: -72px
}

.-top-1 {
  top: -.25rem
}

.-top-2 {
  top: -.5rem
}

.-top-\[110px\] {
  top: -110px
}

.-top-\[11px\] {
  top: -11px
}

.-top-\[150px\] {
  top: -150px
}

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

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

.-top-\[9px\] {
  top: -9px
}

.bottom-0 {
  bottom: 0
}

.bottom-10 {
  bottom: 2.5rem
}

.bottom-3 {
  bottom: .75rem
}

.bottom-7 {
  bottom: 1.75rem
}

.bottom-\[24px\] {
  bottom: 24px
}

.left-0 {
  left: 0
}

.left-10 {
  left: 2.5rem
}

.left-2 {
  left: .5rem
}

.left-3 {
  left: .75rem
}

.left-4 {
  left: 1rem
}

.left-5 {
  left: 1.25rem
}

.left-\[41\%\] {
  left: 41%
}

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

.right-0 {
  right: 0
}

.right-11 {
  right: 2.75rem
}

.right-2 {
  right: .5rem
}

.right-3 {
  right: .75rem
}

.right-4 {
  right: 1rem
}

.right-8 {
  right: 2rem
}

.right-\[-4000px\] {
  right: -4000px
}

.right-\[1\%\] {
  right: 1%
}

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

.right-\[35\%\] {
  right: 35%
}

.right-\[44\%\] {
  right: 44%
}

.right-\[45\%\] {
  right: 45%
}

.right-\[50\%\] {
  right: 50%
}

.right-\[6px\] {
  right: 6px
}

.right-\[7\%\] {
  right: 7%
}

.right-\[calc\(20\%-360px\)\] {
  right: calc(20% - 360px)
}

.right-\[calc\(50\%-180px\)\] {
  right: calc(50% - 180px)
}

.top-0 {
  top: 0
}

.top-1 {
  top: .25rem
}

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

.top-12 {
  top: 3rem
}

.top-2 {
  top: .5rem
}

.top-24 {
  top: 6rem
}

.top-3 {
  top: .75rem
}

.top-4 {
  top: 1rem
}

.top-7 {
  top: 1.75rem
}

.top-\[10\%\] {
  top: 10%
}

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

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

.top-\[15px\] {
  top: 15px
}

.top-\[18px\] {
  top: 18px
}

.top-\[20\.8\%\] {
  top: 20.8%
}

.top-\[30px\] {
  top: 30px
}

.top-\[33\%\] {
  top: 33%
}

.top-\[45px\] {
  top: 45px
}

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

.top-\[55\.1\%\] {
  top: 55.1%
}

.top-\[6\.8\%\] {
  top: 6.8%
}

.top-\[60px\] {
  top: 60px
}

.top-\[89\.5\%\] {
  top: 89.5%
}

.top-\[99\%\] {
  top: 99%
}

.\!z-\[1000000\] {
  z-index: 1000000 !important
}

.\!z-\[50\] {
  z-index: 50 !important
}

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

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

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-1000 {
  z-index: 1000
}

.z-20 {
  z-index: 20
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.z-\[100000\] {
  z-index: 100000
}

.z-\[1000\] {
  z-index: 1000
}

.z-\[110000\] {
  z-index: 110000
}

.z-\[40000000\] {
  z-index: 40000000
}

.z-\[99999\] {
  z-index: 99999
}

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

.float-right {
  float: right
}

.\!m-0 {
  margin: 0 !important
}

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

.m-0 {
  margin: 0
}

.\!my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important
}

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

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

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

.mx-\[0\.875rem\] {
  margin-left: .875rem;
  margin-right: .875rem
}

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

.my-0 {
  margin-top: 0;
  margin-bottom: 0
}

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

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

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

.my-28 {
  margin-top: 7rem;
  margin-bottom: 7rem
}

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

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

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem
}

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

.\!ml-1 {
  margin-left: .25rem !important
}

.\!ml-2 {
  margin-left: .5rem !important
}

.\!mt-2 {
  margin-top: .5rem !important
}

.\!mt-\[50px\] {
  margin-top: 50px !important
}

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

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

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

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

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

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

.-mr-\[15px\] {
  margin-right: -15px
}

.-mr-\[20px\] {
  margin-right: -20px
}

.-mr-\[8px\] {
  margin-right: -8px
}

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

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

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

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

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

.-mt-9 {
  margin-top: -2.25rem
}

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

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

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

.mb-0 {
  margin-bottom: 0
}

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

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

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

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

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

.mb-3 {
  margin-bottom: .75rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-10 {
  margin-left: 2.5rem
}

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

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

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

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

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

.ml-auto {
  margin-left: auto
}

.mr-0 {
  margin-right: 0
}

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

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

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

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

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

.mr-5 {
  margin-right: 1.25rem
}

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

.mr-\[0\.4\] {
  margin-right: .4
}

.mr-\[10\%\] {
  margin-right: 10%
}

.mr-\[10px\] {
  margin-right: 10px
}

.mr-\[5\%\] {
  margin-right: 5%
}

.mr-auto {
  margin-right: auto
}

.mt-0 {
  margin-top: 0
}

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

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

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

.mt-11 {
  margin-top: 2.75rem
}

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

.mt-14 {
  margin-top: 3.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-auto {
  margin-top: auto
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.\!flex {
  display: flex !important
}

.flex {
  display: flex
}

.table {
  display: table
}

.grid {
  display: grid
}

.hidden {
  display: none
}

.\!h-\[144px\] {
  height: 144px !important
}

.\!h-\[20px\] {
  height: 20px !important
}

.\!h-\[25px\] {
  height: 25px !important
}

.\!h-\[3\.25rem\] {
  height: 3.25rem !important
}

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

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

.\!h-full {
  height: 100% !important
}

.h-1\/2 {
  height: 50%
}

.h-10 {
  height: 2.5rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-2 {
  height: .5rem
}

.h-20 {
  height: 5rem
}

.h-28 {
  height: 7rem
}

.h-3 {
  height: .75rem
}

.h-32 {
  height: 8rem
}

.h-4 {
  height: 1rem
}

.h-5 {
  height: 1.25rem
}

.h-6 {
  height: 1.5rem
}

.h-7 {
  height: 1.75rem
}

.h-8 {
  height: 2rem
}

.h-9 {
  height: 2.25rem
}

.h-\[\.09rem\] {
  height: .09rem
}

.h-\[100dvh\] {
  height: 100dvh
}

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

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

.h-\[12rem\] {
  height: 12rem
}

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

.h-\[15rem\] {
  height: 15rem
}

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

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

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

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

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

.h-\[19rem\] {
  height: 19rem
}

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

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

.h-\[20rem\] {
  height: 20rem
}

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

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

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

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

.h-\[22rem\] {
  height: 22rem
}

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

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

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

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

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

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

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

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

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

.h-\[3\.25rem\] {
  height: 3.25rem
}

.h-\[3\.75rem\] {
  height: 3.75rem
}

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

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

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

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

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

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

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

.h-\[4\.5rem\] {
  height: 4.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-\[8rem\] {
  height: 8rem
}

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

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

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

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

.h-auto {
  height: auto
}

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

.h-full {
  height: 100%
}

.h-screen {
  height: 100vh
}

.\!max-h-\[3\.25rem\] {
  max-height: 3.25rem !important
}

.max-h-\[100\%\] {
  max-height: 100%
}

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

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

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

.max-h-\[80\%\] {
  max-height: 80%
}

.\!min-h-\[900vh\] {
  min-height: 900vh !important
}

.\!min-h-\[90vh\] {
  min-height: 90vh !important
}

.min-h-7 {
  min-height: 1.75rem
}

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

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

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

.min-h-\[90vh\] {
  min-height: 90vh
}

.\!w-\[20px\] {
  width: 20px !important
}

.\!w-\[25px\] {
  width: 25px !important
}

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

.\!w-\[40rem\] {
  width: 40rem !important
}

.\!w-full {
  width: 100% !important
}

.w-0 {
  width: 0
}

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

.w-10 {
  width: 2.5rem
}

.w-12 {
  width: 3rem
}

.w-14 {
  width: 3.5rem
}

.w-2 {
  width: .5rem
}

.w-20 {
  width: 5rem
}

.w-24 {
  width: 6rem
}

.w-28 {
  width: 7rem
}

.w-3 {
  width: .75rem
}

.w-4 {
  width: 1rem
}

.w-40 {
  width: 10rem
}

.w-5 {
  width: 1.25rem
}

.w-52 {
  width: 13rem
}

.w-6 {
  width: 1.5rem
}

.w-64 {
  width: 16rem
}

.w-7 {
  width: 1.75rem
}

.w-8 {
  width: 2rem
}

.w-9 {
  width: 2.25rem
}

.w-96 {
  width: 24rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-\[22rem\] {
  width: 22rem
}

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

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

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

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

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

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

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

.w-\[32rem\] {
  width: 32rem
}

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

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

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

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

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

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

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

.w-\[4\.5rem\] {
  width: 4.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-\[calc\(100\%-30px\)\] {
  width: calc(100% - 30px)
}

.w-\[max-content\] {
  width: -moz-max-content;
  width: max-content
}

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

.w-full {
  width: 100%
}

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

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

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

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

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

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

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

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

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

.min-w-\[30rem\] {
  min-width: 30rem
}

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

.min-w-\[44\%\] {
  min-width: 44%
}

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

.min-w-\[46\%\] {
  min-width: 46%
}

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

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

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

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

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

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

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

.min-w-\[max-content\] {
  min-width: -moz-max-content;
  min-width: max-content
}

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

.max-w-40 {
  max-width: 10rem
}

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

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

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

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

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

.max-w-\[24rem\] {
  max-width: 24rem
}

.max-w-\[25rem\] {
  max-width: 25rem
}

.max-w-\[30rem\] {
  max-width: 30rem
}

.max-w-\[32rem\] {
  max-width: 32rem
}

.max-w-\[36rem\] {
  max-width: 36rem
}

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

.max-w-\[40rem\] {
  max-width: 40rem
}

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

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

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

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

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

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

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

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

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

.flex-\[2\] {
  flex: 2
}

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

.shrink {
  flex-shrink: 1
}

.-translate-y-\[150px\] {
  --tw-translate-y: -150px
}

.-rotate-45, .-translate-y-\[150px\] {
  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
}

.-rotate-90 {
  --tw-rotate: -90deg
}

.-rotate-90, .rotate-180 {
  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-180 {
  --tw-rotate: 180deg
}

.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-x-100, .scale-x-\[-1\] {
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
  cursor: pointer
}

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

.resize-none {
  resize: none
}

.resize {
  resize: both
}

.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-4 {
  grid-template-columns:repeat(4, minmax(0, 1fr))
}

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

.flex-row {
  flex-direction: row
}

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

.flex-col {
  flex-direction: column
}

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

.flex-wrap {
  flex-wrap: wrap
}

.items-start {
  align-items: flex-start
}

.items-end {
  align-items: flex-end
}

.items-center {
  align-items: center
}

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

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

.\!justify-center {
  justify-content: center !important
}

.justify-center {
  justify-content: center
}

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

.justify-around {
  justify-content: space-around
}

.\!gap-0 {
  gap: 0 !important
}

.gap-0 {
  gap: 0
}

.gap-1 {
  gap: .25rem
}

.gap-10 {
  gap: 2.5rem
}

.gap-16 {
  gap: 4rem
}

.gap-2 {
  gap: .5rem
}

.gap-20 {
  gap: 5rem
}

.gap-3 {
  gap: .75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-7 {
  gap: 1.75rem
}

.gap-8 {
  gap: 2rem
}

.gap-9 {
  gap: 2.25rem
}

.gap-x-20 {
  -moz-column-gap: 5rem;
  column-gap: 5rem
}

.gap-x-3 {
  -moz-column-gap: .75rem;
  column-gap: .75rem
}

.gap-y-10 {
  row-gap: 2.5rem
}

.gap-y-2 {
  row-gap: .5rem
}

.gap-y-5 {
  row-gap: 1.25rem
}

.gap-y-8 {
  row-gap: 2rem
}

.self-end {
  align-self: flex-end
}

.justify-self-stretch {
  justify-self: stretch
}

.overflow-hidden {
  overflow: hidden
}

.overflow-visible {
  overflow: visible
}

.overflow-scroll {
  overflow: scroll
}

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

.overflow-y-auto {
  overflow-y: auto
}

.overflow-x-scroll {
  overflow-x: scroll
}

.overflow-y-scroll {
  overflow-y: scroll
}

.text-nowrap {
  text-wrap: nowrap
}

.\!rounded {
  border-radius: .25rem !important
}

.\!rounded-lg {
  border-radius: .5rem !important
}

.\!rounded-sm {
  border-radius: .125rem !important
}

.\!rounded-xl {
  border-radius: .75rem !important
}

.rounded {
  border-radius: .25rem
}

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

.rounded-3xl {
  border-radius: 1.5rem
}

.rounded-\[12px\] {
  border-radius: 12px
}

.rounded-\[18px\] {
  border-radius: 18px
}

.rounded-\[40px\] {
  border-radius: 40px
}

.rounded-\[5px\] {
  border-radius: 5px
}

.rounded-\[7px\] {
  border-radius: 7px
}

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

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

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

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

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

.\!rounded-t-lg {
  border-top-left-radius: .5rem !important;
  border-top-right-radius: .5rem !important
}

.rounded-b-lg {
  border-bottom-right-radius: .5rem
}

.rounded-b-lg, .rounded-l-lg {
  border-bottom-left-radius: .5rem
}

.rounded-l-lg {
  border-top-left-radius: .5rem
}

.rounded-r-lg {
  border-bottom-right-radius: .5rem
}

.rounded-r-lg, .rounded-t-lg {
  border-top-right-radius: .5rem
}

.rounded-t-lg {
  border-top-left-radius: .5rem
}

.\!rounded-bl-none {
  border-bottom-left-radius: 0 !important
}

.\!rounded-br-none {
  border-bottom-right-radius: 0 !important
}

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

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

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

.rounded-tl-lg {
  border-top-left-radius: .5rem
}

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

.rounded-tr-lg {
  border-top-right-radius: .5rem
}

.\!border, .\!border-\[1px\] {
  border-width: 1px !important
}

.border {
  border-width: 1px
}

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

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

.border-\[3px\] {
  border-width: 3px
}

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

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

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

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

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

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

.border-dashed {
  border-style: dashed
}

.border-dotted {
  border-style: dotted
}

.border-none {
  border-style: none
}

.\!border-gray-550 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(234 232 232/var(--tw-border-opacity)) !important
}

.\!border-main {
  --tw-border-opacity: 1 !important;
  border-color: rgb(123 134 75/var(--tw-border-opacity)) !important
}

.\!border-newMain, .\!border-primary-500 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(103 103 36/var(--tw-border-opacity)) !important
}

.\!border-secondary-500 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(179 179 179/var(--tw-border-opacity)) !important
}

.border-error-500 {
  --tw-border-opacity: 1;
  border-color: rgb(191 0 76/var(--tw-border-opacity))
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 245/var(--tw-border-opacity))
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(101 101 101/var(--tw-border-opacity))
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(133 133 133/var(--tw-border-opacity))
}

.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(237 237 237/var(--tw-border-opacity))
}

.border-gray-550 {
  --tw-border-opacity: 1;
  border-color: rgb(234 232 232/var(--tw-border-opacity))
}

.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(153 153 153/var(--tw-border-opacity))
}

.border-main {
  --tw-border-opacity: 1;
  border-color: rgb(123 134 75/var(--tw-border-opacity))
}

.border-newMain {
  --tw-border-opacity: 1;
  border-color: rgb(103 103 36/var(--tw-border-opacity))
}

.border-orange-300 {
  border-color: #ed775b4c
}

.border-orange-700 {
  --tw-border-opacity: 1;
  border-color: rgb(239 108 0/var(--tw-border-opacity))
}

.border-primary-400, .border-primary-500 {
  --tw-border-opacity: 1;
  border-color: rgb(103 103 36/var(--tw-border-opacity))
}

.border-primary-500\/40 {
  border-color: rgba(103, 103, 36, .4)
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255 0 102/var(--tw-border-opacity))
}

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

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

.border-secondary-200 {
  --tw-border-opacity: 1;
  border-color: rgb(246 246 243/var(--tw-border-opacity))
}

.border-secondary-400 {
  --tw-border-opacity: 1;
  border-color: rgb(198 198 198/var(--tw-border-opacity))
}

.border-secondary-50 {
  --tw-border-opacity: 1;
  border-color: rgb(249 249 249/var(--tw-border-opacity))
}

.border-secondary-500 {
  --tw-border-opacity: 1;
  border-color: rgb(179 179 179/var(--tw-border-opacity))
}

.border-secondary-900 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81/var(--tw-border-opacity))
}

.border-success-500 {
  --tw-border-opacity: 1;
  border-color: rgb(17 157 70/var(--tw-border-opacity))
}

.border-tertiary-50 {
  border-color: hsla(71, 19%, 49%, .37)
}

.border-yellow-900 {
  --tw-border-opacity: 1;
  border-color: rgb(255 190 24/var(--tw-border-opacity))
}

.border-b-secondary-200 {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(246 246 243/var(--tw-border-opacity))
}

.\!bg-gray-350 {
  background-color: #7b864b0d !important
}

.\!bg-lightMain {
  background-color: #b5dedd33 !important
}

.\!bg-newMain {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(103 103 36/var(--tw-bg-opacity)) !important
}

.\!bg-primary-500\/10 {
  background-color: rgba(103, 103, 36, .1) !important
}

.\!bg-secondary-100 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(243 244 246/var(--tw-bg-opacity)) !important
}

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

.bg-\[\#1877F21A\] {
  background-color: #1877f21a
}

.bg-\[\#1DA1F21A\] {
  background-color: #1da1f21a
}

.bg-\[\#25D3661A\] {
  background-color: #25d3661a
}

.bg-\[\#7B864B33\] {
  background-color: #7b864b33
}

.bg-\[\#C5B86A\] {
  --tw-bg-opacity: 1;
  background-color: rgb(197 184 106/var(--tw-bg-opacity))
}

.bg-\[\#F0E9DE\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 233 222/var(--tw-bg-opacity))
}

.bg-\[\#FF45001A\] {
  background-color: #ff45001a
}

.bg-\[\#dacd7e\] {
  --tw-bg-opacity: 1;
  background-color: rgb(218 205 126/var(--tw-bg-opacity))
}

.bg-\[\#f0e9de\] {
  --tw-bg-opacity: 1;
  background-color: rgb(240 233 222/var(--tw-bg-opacity))
}

.bg-\[\#f7f4ea\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 244 234/var(--tw-bg-opacity))
}

.bg-\[\#fbfbf9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 251 249/var(--tw-bg-opacity))
}

.bg-brown {
  --tw-bg-opacity: 1;
  background-color: rgb(193 177 99/var(--tw-bg-opacity))
}

.bg-error-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 102/var(--tw-bg-opacity))
}

.bg-error-50 {
  background-color: #ff00661a
}

.bg-gold-150 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 243 237/var(--tw-bg-opacity))
}

.bg-gold-200 {
  background-color: #c1b1631a
}

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

.bg-gray-150 {
  background-color: #7b864b33
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(108 108 114/var(--tw-bg-opacity))
}

.bg-gray-350 {
  background-color: #7b864b0d
}

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

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

.bg-gray-550 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 232 232/var(--tw-bg-opacity))
}

.bg-gray-550\/20 {
  background-color: hsla(0, 5%, 91%, .2)
}

.bg-green-50 {
  background-color: #17d25e1a
}

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

.bg-lightBg {
  --tw-bg-opacity: 1;
  background-color: rgb(250 248 245/var(--tw-bg-opacity))
}

.bg-lightBlack {
  background-color: #0000004d
}

.bg-lightBlue {
  --tw-bg-opacity: 1;
  background-color: rgb(239 244 252/var(--tw-bg-opacity))
}

.bg-lightMain {
  background-color: #b5dedd33
}

.bg-lightTest {
  --tw-bg-opacity: 1;
  background-color: rgb(181 222 221/var(--tw-bg-opacity))
}

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

.bg-main {
  --tw-bg-opacity: 1;
  background-color: rgb(123 134 75/var(--tw-bg-opacity))
}

.bg-modal {
  background-color: #65656575
}

.bg-newMain {
  --tw-bg-opacity: 1;
  background-color: rgb(103 103 36/var(--tw-bg-opacity))
}

.bg-newMain\/10 {
  background-color: rgba(103, 103, 36, .1)
}

.bg-orange-100 {
  background-color: #fbdfd866
}

.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 240 227/var(--tw-bg-opacity))
}

.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(237 119 91/var(--tw-bg-opacity))
}

.bg-orange-700\/10 {
  background-color: rgba(239, 108, 0, .1)
}

.bg-primary-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(141 153 92/var(--tw-bg-opacity))
}

.bg-primary-400, .bg-primary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(103 103 36/var(--tw-bg-opacity))
}

.bg-primary-500\/10 {
  background-color: rgba(103, 103, 36, .1)
}

.bg-primary-500\/5 {
  background-color: rgba(103, 103, 36, .05)
}

.bg-primary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(54 59 26/var(--tw-bg-opacity))
}

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

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 102/var(--tw-bg-opacity))
}

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

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

.bg-secondary-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 243/var(--tw-bg-opacity))
}

.bg-secondary-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(198 198 198/var(--tw-bg-opacity))
}

.bg-secondary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249/var(--tw-bg-opacity))
}

.bg-secondary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(179 179 179/var(--tw-bg-opacity))
}

.bg-tertiary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 231 168/var(--tw-bg-opacity))
}

.bg-tertiary-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 232 171/var(--tw-bg-opacity))
}

.bg-tertiary-400\/10 {
  background-color: hsla(52, 55%, 67%, .1)
}

.bg-tertiary-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(207 194 115/var(--tw-bg-opacity))
}

.bg-tertiary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(157 135 58/var(--tw-bg-opacity))
}

.bg-transparent {
  background-color: transparent
}

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

.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 250 243/var(--tw-bg-opacity))
}

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

.bg-\[url\(\"\/img\/lines\/Line-2\.png\"\)\] {
  background-image: /*savepage-url=/img/lines/Line-2.png*/ url()
}

.bg-cover {
  background-size: cover
}

.bg-fixed {
  background-attachment: fixed
}

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

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

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

.object-center {
  -o-object-position: center;
  object-position: center
}

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

.p-0 {
  padding: 0
}

.p-1 {
  padding: .25rem
}

.p-10 {
  padding: 2.5rem
}

.p-2 {
  padding: .5rem
}

.p-3 {
  padding: .75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-\[3px\] {
  padding: 3px
}

.p-\[5px\] {
  padding: 5px
}

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

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

.\!py-3 {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important
}

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

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

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

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

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

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

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

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

.px-9 {
  padding-left: 2.25rem;
  padding-right: 2.25rem
}

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

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

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

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

.py-3 {
  padding-top: .75rem;
  padding-bottom: .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
}

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

.\!pr-0 {
  padding-right: 0 !important
}

.\!pr-1 {
  padding-right: .25rem !important
}

.\!pr-2 {
  padding-right: .5rem !important
}

.\!pr-5 {
  padding-right: 1.25rem !important
}

.pb-0 {
  padding-bottom: 0
}

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

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

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

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

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

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

.pb-20 {
  padding-bottom: 5rem
}

.pb-24 {
  padding-bottom: 6rem
}

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

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

.pb-5 {
  padding-bottom: 1.25rem
}

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

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

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

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

.pl-0 {
  padding-left: 0
}

.pl-1 {
  padding-left: .25rem
}

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

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

.pr-0 {
  padding-right: 0
}

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

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

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

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

.pr-\[10px\] {
  padding-right: 10px
}

.pr-\[54px\] {
  padding-right: 54px
}

.pt-0 {
  padding-top: 0
}

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

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

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

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

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

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

.pt-36 {
  padding-top: 9rem
}

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

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

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

.pt-7 {
  padding-top: 1.75rem
}

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

.pt-\[1rem\] {
  padding-top: 1rem
}

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

.pt-\[40\%\] {
  padding-top: 40%
}

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

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

.text-left {
  text-align: left
}

.\!text-center {
  text-align: center !important
}

.text-center {
  text-align: center
}

.\!text-right {
  text-align: right !important
}

.text-right {
  text-align: right
}

.text-justify {
  text-align: justify
}

.text-start {
  text-align: start
}

.\!font-\[IRANSans\] {
  font-family: IRANSans !important
}

.\!font-\[Poppins\] {
  font-family: Poppins !important
}

.font-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
}

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

.\!text-\[13px\] {
  font-size: 13px !important
}

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

.\!text-sm {
  font-size: .875rem !important;
  line-height: 1.25rem !important
}

.\!text-xs {
  font-size: .75rem !important;
  line-height: 1rem !important
}

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

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

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

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

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

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

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

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

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

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

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

.text-\[3rem\] {
  font-size: 3rem
}

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

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

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

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

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

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

.\!font-bold {
  font-weight: 700 !important
}

.font-\[600\] {
  font-weight: 600
}

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

.\!leading-\[28px\] {
  line-height: 28px !important
}

.\!leading-\[32px\] {
  line-height: 32px !important
}

.\!leading-\[38px\] {
  line-height: 38px !important
}

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

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

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

.leading-7 {
  line-height: 1.75rem
}

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

.leading-9 {
  line-height: 2.25rem
}

.leading-\[17\.27px\] {
  line-height: 17.27px
}

.leading-\[20\.35px\] {
  line-height: 20.35px
}

.leading-\[20px\] {
  line-height: 20px
}

.leading-\[23px\] {
  line-height: 23px
}

.leading-\[24px\] {
  line-height: 24px
}

.leading-\[25px\] {
  line-height: 25px
}

.leading-\[26px\] {
  line-height: 26px
}

.leading-\[30px\] {
  line-height: 30px
}

.leading-\[34px\] {
  line-height: 34px
}

.leading-\[35px\] {
  line-height: 35px
}

.leading-\[37px\] {
  line-height: 37px
}

.leading-\[38px\] {
  line-height: 38px
}

.leading-\[44px\] {
  line-height: 44px
}

.leading-\[46px\] {
  line-height: 46px
}

.leading-loose {
  line-height: 2
}

.leading-tight {
  line-height: 1.25
}

.tracking-\[\.15em\] {
  letter-spacing: .15em
}

.tracking-\[\.25em\] {
  letter-spacing: .25em
}

.\!text-darkBlue {
  --tw-text-opacity: 1 !important;
  color: rgb(79 115 240/var(--tw-text-opacity)) !important
}

.\!text-error-400 {
  --tw-text-opacity: 1 !important;
  color: rgb(255 0 102/var(--tw-text-opacity)) !important
}

.\!text-error-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(191 0 76/var(--tw-text-opacity)) !important
}

.\!text-gray-dark {
  --tw-text-opacity: 1 !important;
  color: rgb(16 18 24/var(--tw-text-opacity)) !important
}

.\!text-green-100 {
  --tw-text-opacity: 1 !important;
  color: rgb(23 210 94/var(--tw-text-opacity)) !important
}

.\!text-newMain {
  --tw-text-opacity: 1 !important;
  color: rgb(103 103 36/var(--tw-text-opacity)) !important
}

.\!text-orange-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(237 119 91/var(--tw-text-opacity)) !important
}

.\!text-primary-400, .\!text-primary-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(103 103 36/var(--tw-text-opacity)) !important
}

.\!text-red-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(255 0 102/var(--tw-text-opacity)) !important
}

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

.\!text-secondary-700 {
  --tw-text-opacity: 1 !important;
  color: rgb(125 132 144/var(--tw-text-opacity)) !important
}

.\!text-secondary-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(30 31 30/var(--tw-text-opacity)) !important
}

.\!text-success-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(17 157 70/var(--tw-text-opacity)) !important
}

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

.text-\[\#000000\] {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/var(--tw-text-opacity))
}

.text-\[\#1877F2\] {
  --tw-text-opacity: 1;
  color: rgb(24 119 242/var(--tw-text-opacity))
}

.text-\[\#1DA1F2\] {
  --tw-text-opacity: 1;
  color: rgb(29 161 242/var(--tw-text-opacity))
}

.text-\[\#25D366\] {
  --tw-text-opacity: 1;
  color: rgb(37 211 102/var(--tw-text-opacity))
}

.text-\[\#FF4500\] {
  --tw-text-opacity: 1;
  color: rgb(255 69 0/var(--tw-text-opacity))
}

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

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246/var(--tw-text-opacity))
}

.text-darkBlue {
  --tw-text-opacity: 1;
  color: rgb(79 115 240/var(--tw-text-opacity))
}

.text-error-500 {
  --tw-text-opacity: 1;
  color: rgb(191 0 76/var(--tw-text-opacity))
}

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

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

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

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(62 50 50/var(--tw-text-opacity))
}

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

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

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

.text-green-100 {
  --tw-text-opacity: 1;
  color: rgb(23 210 94/var(--tw-text-opacity))
}

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

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

.text-main {
  --tw-text-opacity: 1;
  color: rgb(123 134 75/var(--tw-text-opacity))
}

.text-newMain {
  --tw-text-opacity: 1;
  color: rgb(103 103 36/var(--tw-text-opacity))
}

.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(237 119 91/var(--tw-text-opacity))
}

.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(128 95 12/var(--tw-text-opacity))
}

.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(239 108 0/var(--tw-text-opacity))
}

.text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(173 78 0/var(--tw-text-opacity))
}

.text-pink-100 {
  --tw-text-opacity: 1;
  color: rgb(255 0 102/var(--tw-text-opacity))
}

.text-primary-400, .text-primary-500 {
  --tw-text-opacity: 1;
  color: rgb(103 103 36/var(--tw-text-opacity))
}

.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(68 74 34/var(--tw-text-opacity))
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(255 0 102/var(--tw-text-opacity))
}

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

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

.text-secondary-300 {
  --tw-text-opacity: 1;
  color: rgb(101 101 101/var(--tw-text-opacity))
}

.text-secondary-400 {
  --tw-text-opacity: 1;
  color: rgb(198 198 198/var(--tw-text-opacity))
}

.text-secondary-500 {
  --tw-text-opacity: 1;
  color: rgb(179 179 179/var(--tw-text-opacity))
}

.text-secondary-600 {
  --tw-text-opacity: 1;
  color: rgb(119 119 119/var(--tw-text-opacity))
}

.text-secondary-700 {
  --tw-text-opacity: 1;
  color: rgb(125 132 144/var(--tw-text-opacity))
}

.text-secondary-800 {
  --tw-text-opacity: 1;
  color: rgb(30 31 30/var(--tw-text-opacity))
}

.text-secondary-900 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81/var(--tw-text-opacity))
}

.text-success-500 {
  --tw-text-opacity: 1;
  color: rgb(17 157 70/var(--tw-text-opacity))
}

.text-success-600 {
  --tw-text-opacity: 1;
  color: rgb(11 105 47/var(--tw-text-opacity))
}

.text-tertiary-100 {
  --tw-text-opacity: 1;
  color: rgb(241 231 168/var(--tw-text-opacity))
}

.text-tertiary-700 {
  --tw-text-opacity: 1;
  color: rgb(157 135 58/var(--tw-text-opacity))
}

.text-transparent {
  color: transparent
}

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

.underline {
  text-decoration-line: underline
}

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

.accent-main {
  accent-color: #7b864b
}

.accent-newMain {
  accent-color: #676724
}

.opacity-0 {
  opacity: 0
}

.opacity-10 {
  opacity: .1
}

.opacity-100 {
  opacity: 1
}

.opacity-30 {
  opacity: .3
}

.opacity-40 {
  opacity: .4
}

.opacity-50 {
  opacity: .5
}

.opacity-90 {
  opacity: .9
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color)
}

.shadow, .shadow-2xl {
  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 rgba(0, 0, 0, .25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color)
}

.shadow-\[\#AFADB533_0px_10px_50px\] {
  --tw-shadow: #afadb533 0px 10px 50px;
  --tw-shadow-colored: 0px 10px 50px 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-\[0px_3px_10px_-5px_\#AFADB533\2c 0px_0px_0px_0px_\#AFADB533\2c 0px_0px_15px_3px_\#AFADB533\] {
  --tw-shadow: 0px 3px 10px -5px #afadb533, 0px 0px 0px 0px #afadb533, 0px 0px 15px 3px #afadb533;
  --tw-shadow-colored: 0px 3px 10px -5px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 15px 3px 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-\[0px_3px_10px_-5px_\#afadb500\2c 0px_0px_0px_0px_\#AFADB533\2c 0px_0px_15px_3px_\#afadb53d\] {
  --tw-shadow: 0px 3px 10px -5px #afadb500, 0px 0px 0px 0px #afadb533, 0px 0px 15px 3px #afadb53d;
  --tw-shadow-colored: 0px 3px 10px -5px var(--tw-shadow-color), 0px 0px 0px 0px var(--tw-shadow-color), 0px 0px 15px 3px 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-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow-lg, .shadow-md {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color)
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(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-none {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important
}

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

.outline {
  outline-style: solid
}

.outline-0 {
  outline-width: 0
}

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

.placeholder\:\!text-right::-moz-placeholder {
  text-align: right !important
}

.placeholder\:\!text-right::placeholder {
  text-align: right !important
}

.placeholder\:text-secondary-500::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(179 179 179/var(--tw-text-opacity))
}

.placeholder\:text-secondary-500::placeholder {
  --tw-text-opacity: 1;
  color: rgb(179 179 179/var(--tw-text-opacity))
}

.placeholder\:text-secondary-800::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(30 31 30/var(--tw-text-opacity))
}

.placeholder\:text-secondary-800::placeholder {
  --tw-text-opacity: 1;
  color: rgb(30 31 30/var(--tw-text-opacity))
}

.last\:\!pb-0:last-child {
  padding-bottom: 0 !important
}

.hover\:bg-gray-350:hover {
  background-color: #7b864b0d
}

.hover\:bg-lightMain:hover {
  background-color: #b5dedd33
}

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

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

.hover\:text-newMain:hover {
  --tw-text-opacity: 1;
  color: rgb(103 103 36/var(--tw-text-opacity))
}

.hover\:opacity-70:hover {
  opacity: .7
}

.hover\:opacity-75:hover {
  opacity: .75
}

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

.focus\:border-gray-900:focus {
  --tw-border-opacity: 1;
  border-color: rgb(153 153 153/var(--tw-border-opacity))
}

.focus\:border-secondary-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(179 179 179/var(--tw-border-opacity))
}

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

.focus\:outline-0:focus {
  outline-width: 0
}

.disabled\:resize-none:disabled {
  resize: none
}

.disabled\:border-0:disabled {
  border-width: 0
}

.disabled\:bg-gray-550:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(234 232 232/var(--tw-bg-opacity))
}

.disabled\:bg-secondary-400:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(198 198 198/var(--tw-bg-opacity))
}

.disabled\:text-secondary-600:disabled {
  --tw-text-opacity: 1;
  color: rgb(119 119 119/var(--tw-text-opacity))
}

.disabled\:text-secondary-700:disabled {
  --tw-text-opacity: 1;
  color: rgb(125 132 144/var(--tw-text-opacity))
}

@media (min-width: 640px) {
  .sm\:h-\[700px\] {
    height: 700px
  }

  .sm\:justify-start {
    justify-content: flex-start
  }

  .sm\:rounded-lg {
    border-radius: .5rem
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute
  }

  .md\:\!relative {
    position: relative !important
  }

  .md\:relative {
    position: relative
  }

  .md\:\!left-0 {
    left: 0 !important
  }

  .md\:\!top-\[unset\] {
    top: unset !important
  }

  .md\:-bottom-2 {
    bottom: -.5rem
  }

  .md\:-right-32 {
    right: -8rem
  }

  .md\:-top-\[180px\] {
    top: -180px
  }

  .md\:bottom-0 {
    bottom: 0
  }

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

  .md\:left-4 {
    left: 1rem
  }

  .md\:left-6 {
    left: 1.5rem
  }

  .md\:right-9 {
    right: 2.25rem
  }

  .md\:right-\[27\%\] {
    right: 27%
  }

  .md\:right-\[30\%\] {
    right: 30%
  }

  .md\:right-\[39\%\] {
    right: 39%
  }

  .md\:right-\[5\%\] {
    right: 5%
  }

  .md\:right-\[5px\] {
    right: 5px
  }

  .md\:right-\[unset\] {
    right: unset
  }

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

  .md\:top-3 {
    top: .75rem
  }

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

  .md\:top-7 {
    top: 1.75rem
  }

  .md\:top-\[14px\] {
    top: 14px
  }

  .md\:top-\[17\%\] {
    top: 17%
  }

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

  .md\:top-\[24px\] {
    top: 24px
  }

  .md\:top-\[41\%\] {
    top: 41%
  }

  .md\:top-\[45\.7\%\] {
    top: 45.7%
  }

  .md\:top-\[50px\] {
    top: 50px
  }

  .md\:top-\[76\%\] {
    top: 76%
  }

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

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

  .md\:m-2 {
    margin: .5rem
  }

  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0
  }

  .md\:mx-3 {
    margin-left: .75rem;
    margin-right: .75rem
  }

  .md\:my-3 {
    margin-top: .75rem;
    margin-bottom: .75rem
  }

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

  .md\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

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

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

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

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

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

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

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

  .md\:mb-20 {
    margin-bottom: 5rem
  }

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

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

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

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

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

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

  .md\:ml-10 {
    margin-left: 2.5rem
  }

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

  .md\:mr-1 {
    margin-right: .25rem
  }

  .md\:mr-2 {
    margin-right: .5rem
  }

  .md\:mr-5 {
    margin-right: 1.25rem
  }

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

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

  .md\:mt-20 {
    margin-top: 5rem
  }

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

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

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

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

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

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

  .md\:flex {
    display: flex
  }

  .md\:grid {
    display: grid
  }

  .md\:hidden {
    display: none
  }

  .md\:\!h-\[36px\] {
    height: 36px !important
  }

  .md\:h-10 {
    height: 2.5rem
  }

  .md\:h-14 {
    height: 3.5rem
  }

  .md\:h-16 {
    height: 4rem
  }

  .md\:h-3 {
    height: .75rem
  }

  .md\:h-5 {
    height: 1.25rem
  }

  .md\:h-6 {
    height: 1.5rem
  }

  .md\:h-7 {
    height: 1.75rem
  }

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

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

  .md\:h-\[14\.5rem\] {
    height: 14.5rem
  }

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

  .md\:h-\[15rem\] {
    height: 15rem
  }

  .md\:h-\[18rem\] {
    height: 18rem
  }

  .md\:h-\[20rem\] {
    height: 20rem
  }

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

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

  .md\:h-\[26rem\] {
    height: 26rem
  }

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

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

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

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

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

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

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

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

  .md\:h-\[45vh\] {
    height: 45vh
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:h-\[unset\] {
    height: unset
  }

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

  .md\:h-screen {
    height: 100vh
  }

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

  .md\:\!w-16 {
    width: 4rem !important
  }

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

  .md\:\!w-\[108px\] {
    width: 108px !important
  }

  .md\:w-10 {
    width: 2.5rem
  }

  .md\:w-14 {
    width: 3.5rem
  }

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

  .md\:w-3 {
    width: .75rem
  }

  .md\:w-5 {
    width: 1.25rem
  }

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

  .md\:w-6 {
    width: 1.5rem
  }

  .md\:w-7 {
    width: 1.75rem
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:w-\[26rem\] {
    width: 26rem
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .md\:w-\[7\.8\%\] {
    width: 7.8%
  }

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

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

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

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

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

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

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

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

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

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

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

  .md\:w-\[unset\] {
    width: unset
  }

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

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

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

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

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

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

  .md\:min-w-\[unset\] {
    min-width: unset
  }

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

  .md\:rotate-0 {
    --tw-rotate: 0deg;
    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))
  }

  .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-7 {
    grid-template-columns:repeat(7, minmax(0, 1fr))
  }

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

  .md\:\!flex-row {
    flex-direction: row !important
  }

  .md\:flex-row {
    flex-direction: row
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap
  }

  .md\:items-start {
    align-items: flex-start
  }

  .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-4 {
    gap: 1rem
  }

  .md\:gap-5 {
    gap: 1.25rem
  }

  .md\:gap-6 {
    gap: 1.5rem
  }

  .md\:gap-8 {
    gap: 2rem
  }

  .md\:overflow-hidden {
    overflow: hidden
  }

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

  .md\:rounded-lg {
    border-radius: .5rem
  }

  .md\:\!rounded-t-xl {
    border-top-left-radius: .75rem !important;
    border-top-right-radius: .75rem !important
  }

  .md\:rounded-br-\[unset\] {
    border-bottom-right-radius: unset
  }

  .md\:border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(237 237 237/var(--tw-border-opacity))
  }

  .md\:border-gray-550 {
    --tw-border-opacity: 1;
    border-color: rgb(234 232 232/var(--tw-border-opacity))
  }

  .md\:border-transparent {
    border-color: transparent
  }

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

  .md\:bg-home {
    --tw-bg-opacity: 1;
    background-color: rgb(249 247 244/var(--tw-bg-opacity))
  }

  .md\:bg-transparent {
    background-color: transparent
  }

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

  .md\:object-contain {
    -o-object-fit: contain;
    object-fit: contain
  }

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

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

  .md\:p-2 {
    padding: .5rem
  }

  .md\:p-4 {
    padding: 1rem
  }

  .md\:p-5 {
    padding: 1.25rem
  }

  .md\:p-6 {
    padding: 1.5rem
  }

  .md\:p-7 {
    padding: 1.75rem
  }

  .md\:p-8 {
    padding: 2rem
  }

  .md\:\!px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
  }

  .md\:\!px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important
  }

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

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

  .md\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
  }

  .md\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem
  }

  .md\:px-3 {
    padding-left: .75rem;
    padding-right: .75rem
  }

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

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

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

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

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

  .md\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
  }

  .md\:px-\[15\%\] {
    padding-left: 15%;
    padding-right: 15%
  }

  .md\:px-\[30\%\] {
    padding-left: 30%;
    padding-right: 30%
  }

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

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

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

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

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

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

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

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

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

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

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

  .md\:\!pt-0 {
    padding-top: 0 !important
  }

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

  .md\:pb-14 {
    padding-bottom: 3.5rem
  }

  .md\:pb-3 {
    padding-bottom: .75rem
  }

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

  .md\:pb-44 {
    padding-bottom: 11rem
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem
  }

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

  .md\:pl-3 {
    padding-left: .75rem
  }

  .md\:pr-0 {
    padding-right: 0
  }

  .md\:pr-1 {
    padding-right: .25rem
  }

  .md\:pr-12 {
    padding-right: 3rem
  }

  .md\:pt-0 {
    padding-top: 0
  }

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

  .md\:pt-14 {
    padding-top: 3.5rem
  }

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

  .md\:pt-20 {
    padding-top: 5rem
  }

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

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

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

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

  .md\:pt-7 {
    padding-top: 1.75rem
  }

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

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

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

  .md\:\!text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important
  }

  .md\:\!text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important
  }

  .md\:\!text-sm {
    font-size: .875rem !important;
    line-height: 1.25rem !important
  }

  .md\:\!text-xs {
    font-size: .75rem !important;
    line-height: 1rem !important
  }

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

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

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

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

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

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

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

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

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

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

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

  .md\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem
  }

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

  .md\:text-xs {
    font-size: .75rem;
    line-height: 1rem
  }

  .md\:font-medium {
    font-weight: 500
  }

  .md\:font-normal {
    font-weight: 400
  }

  .md\:leading-\[30px\] {
    line-height: 30px
  }

  .md\:leading-\[35px\] {
    line-height: 35px
  }

  .md\:leading-\[40px\] {
    line-height: 40px
  }

  .md\:leading-\[55px\] {
    line-height: 55px
  }

  .md\:\!text-primary-400 {
    --tw-text-opacity: 1 !important;
    color: rgb(103 103 36/var(--tw-text-opacity)) !important
  }

  .md\:shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
  }

  .md\:\!shadow-\[unset\] {
    --tw-shadow-color: unset !important;
    --tw-shadow: var(--tw-shadow-colored) !important
  }
}

@media (min-width: 1024px) {
  .lg\:absolute {
    position: absolute
  }

  .lg\:\!left-0 {
    left: 0 !important
  }

  .lg\:\!left-\[7\%\] {
    left: 7% !important
  }

  .lg\:\!right-\[95\%\] {
    right: 95% !important
  }

  .lg\:\!right-\[calc\(50\%\)\] {
    right: calc(50%) !important
  }

  .lg\:-left-0 {
    left: 0
  }

  .lg\:-right-2 {
    right: -.5rem
  }

  .lg\:-top-2 {
    top: -.5rem
  }

  .lg\:-top-\[100px\] {
    top: -100px
  }

  .lg\:-top-\[7rem\] {
    top: -7rem
  }

  .lg\:right-\[29\%\] {
    right: 29%
  }

  .lg\:right-\[6\%\] {
    right: 6%
  }

  .lg\:top-\[10px\] {
    top: 10px
  }

  .lg\:top-\[280px\] {
    top: 280px
  }

  .lg\:top-\[47\.7\%\] {
    top: 47.7%
  }

  .lg\:top-\[74\%\] {
    top: 74%
  }

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

  .lg\:col-span-7 {
    grid-column: span 7/span 7
  }

  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0
  }

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

  .lg\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
  }

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

  .lg\:my-0 {
    margin-top: 0;
    margin-bottom: 0
  }

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

  .lg\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

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

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

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

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

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

  .lg\:mb-14 {
    margin-bottom: 3.5rem
  }

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

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

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

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

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

  .lg\:ml-\[90px\] {
    margin-left: 90px
  }

  .lg\:mr-0 {
    margin-right: 0
  }

  .lg\:mr-1 {
    margin-right: .25rem
  }

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

  .lg\:mr-\[0px\] {
    margin-right: 0
  }

  .lg\:mr-\[130px\] {
    margin-right: 130px
  }

  .lg\:mr-\[18\%\] {
    margin-right: 18%
  }

  .lg\:mr-\[5\%\] {
    margin-right: 5%
  }

  .lg\:mr-\[90px\] {
    margin-right: 90px
  }

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

  .lg\:mt-1 {
    margin-top: .25rem
  }

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

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

  .lg\:mt-2 {
    margin-top: .5rem
  }

  .lg\:mt-3 {
    margin-top: .75rem
  }

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

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

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

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

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

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

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

  .lg\:block {
    display: block
  }

  .lg\:flex {
    display: flex
  }

  .lg\:grid {
    display: grid
  }

  .lg\:hidden {
    display: none
  }

  .lg\:\!h-\[50px\] {
    height: 50px !important
  }

  .lg\:\!h-\[62px\] {
    height: 62px !important
  }

  .lg\:h-11 {
    height: 2.75rem
  }

  .lg\:h-12 {
    height: 3rem
  }

  .lg\:h-14 {
    height: 3.5rem
  }

  .lg\:h-24 {
    height: 6rem
  }

  .lg\:h-28 {
    height: 7rem
  }

  .lg\:h-5 {
    height: 1.25rem
  }

  .lg\:h-8 {
    height: 2rem
  }

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

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

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

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

  .lg\:h-\[14\.5rem\] {
    height: 14.5rem
  }

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

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

  .lg\:h-\[25rem\] {
    height: 25rem
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:h-auto {
    height: auto
  }

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

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

  .lg\:\!w-\[108px\] {
    width: 108px !important
  }

  .lg\:\!w-\[121px\] {
    width: 121px !important
  }

  .lg\:\!w-\[168px\] {
    width: 168px !important
  }

  .lg\:\!w-\[50px\] {
    width: 50px !important
  }

  .lg\:\!w-\[62px\] {
    width: 62px !important
  }

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

  .lg\:w-12 {
    width: 3rem
  }

  .lg\:w-14 {
    width: 3.5rem
  }

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

  .lg\:w-24 {
    width: 6rem
  }

  .lg\:w-5 {
    width: 1.25rem
  }

  .lg\:w-56 {
    width: 14rem
  }

  .lg\:w-8 {
    width: 2rem
  }

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

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

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

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

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

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

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

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

  .lg\:w-\[137\%\] {
    width: 137%
  }

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

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

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

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

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

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

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

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

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

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

  .lg\:w-\[30rem\] {
    width: 30rem
  }

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

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

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

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

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

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

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

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

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

  .lg\:w-\[52\%\] {
    width: 52%
  }

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

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

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

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

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

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

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

  .lg\:w-full {
    width: 100%
  }

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

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

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

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

  .lg\:min-w-\[unset\] {
    min-width: unset
  }

  .lg\:\!max-w-\[993px\] {
    max-width: 993px !important
  }

  .lg\:max-w-\[25rem\] {
    max-width: 25rem
  }

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

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

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

  .lg\:flex-\[2\] {
    flex: 2
  }

  .lg\:-translate-y-\[200px\] {
    --tw-translate-y: -200px;
    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))
  }

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

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

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

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

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

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

  .lg\:justify-start {
    justify-content: flex-start
  }

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

  .lg\:justify-between {
    justify-content: space-between
  }

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

  .lg\:gap-10 {
    gap: 2.5rem
  }

  .lg\:gap-14 {
    gap: 3.5rem
  }

  .lg\:gap-2 {
    gap: .5rem
  }

  .lg\:gap-20 {
    gap: 5rem
  }

  .lg\:gap-3 {
    gap: .75rem
  }

  .lg\:gap-4 {
    gap: 1rem
  }

  .lg\:gap-6 {
    gap: 1.5rem
  }

  .lg\:gap-7 {
    gap: 1.75rem
  }

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

  .lg\:gap-9 {
    gap: 2.25rem
  }

  .lg\:gap-\[140px\] {
    gap: 140px
  }

  .lg\:rounded-lg {
    border-radius: .5rem
  }

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

  .lg\:p-2 {
    padding: .5rem
  }

  .lg\:p-4 {
    padding: 1rem
  }

  .lg\:p-6 {
    padding: 1.5rem
  }

  .lg\:p-8 {
    padding: 2rem
  }

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

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

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

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

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

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

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

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

  .lg\:py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
  }

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

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

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

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

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

  .lg\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
  }

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

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

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

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

  .lg\:pb-0 {
    padding-bottom: 0
  }

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

  .lg\:pb-2 {
    padding-bottom: .5rem
  }

  .lg\:pb-3 {
    padding-bottom: .75rem
  }

  .lg\:pb-5 {
    padding-bottom: 1.25rem
  }

  .lg\:pb-6 {
    padding-bottom: 1.5rem
  }

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

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

  .lg\:pl-3 {
    padding-left: .75rem
  }

  .lg\:pr-12 {
    padding-right: 3rem
  }

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

  .lg\:pt-1 {
    padding-top: .25rem
  }

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

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

  .lg\:pt-14 {
    padding-top: 3.5rem
  }

  .lg\:pt-16 {
    padding-top: 4rem
  }

  .lg\:pt-2 {
    padding-top: .5rem
  }

  .lg\:pt-20 {
    padding-top: 5rem
  }

  .lg\:pt-3 {
    padding-top: .75rem
  }

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

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

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

  .lg\:pt-\[3\.5rem\] {
    padding-top: 3.5rem
  }

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

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

  .lg\:text-justify {
    text-align: justify
  }

  .lg\:text-start {
    text-align: start
  }

  .lg\:\!text-\[14px\] {
    font-size: 14px !important
  }

  .lg\:\!text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important
  }

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

  .lg\:\!text-sm {
    font-size: .875rem !important;
    line-height: 1.25rem !important
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lg\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem
  }

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

  .lg\:text-xs {
    font-size: .75rem;
    line-height: 1rem
  }

  .lg\:font-bold {
    font-weight: 700
  }

  .lg\:\!leading-\[34px\] {
    line-height: 34px !important
  }

  .lg\:\!leading-\[38px\] {
    line-height: 38px !important
  }

  .lg\:\!leading-\[42px\] {
    line-height: 42px !important
  }

  .lg\:\!leading-\[53px\] {
    line-height: 53px !important
  }

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

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

  .lg\:leading-7 {
    line-height: 1.75rem
  }

  .lg\:leading-8 {
    line-height: 2rem
  }

  .lg\:leading-\[31\.09px\] {
    line-height: 31.09px
  }

  .lg\:leading-\[40\.7px\] {
    line-height: 40.7px
  }

  .lg\:leading-\[46px\] {
    line-height: 46px
  }

  .lg\:leading-\[84px\] {
    line-height: 84px
  }
}

@media (min-width: 1280px) {
  .xl\:right-\[30\%\] {
    right: 30%
  }

  .xl\:right-\[31\.8\%\] {
    right: 31.8%
  }

  .xl\:right-\[9\%\] {
    right: 9%
  }

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

  .xl\:top-\[17\%\] {
    top: 17%
  }

  .xl\:top-\[18\%\] {
    top: 18%
  }

  .xl\:top-\[63px\] {
    top: 63px
  }

  .xl\:top-\[74\.5\%\] {
    top: 74.5%
  }

  .xl\:order-1 {
    order: 1
  }

  .xl\:order-2 {
    order: 2
  }

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

  .xl\:col-span-4 {
    grid-column: span 4/span 4
  }

  .xl\:\!mt-\[67px\] {
    margin-top: 67px !important
  }

  .xl\:\!mt-\[77px\] {
    margin-top: 77px !important
  }

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

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

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

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

  .xl\:mr-16 {
    margin-right: 4rem
  }

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

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

  .xl\:mt-1 {
    margin-top: .25rem
  }

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

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

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

  .xl\:block {
    display: block
  }

  .xl\:flex {
    display: flex
  }

  .xl\:hidden {
    display: none
  }

  .xl\:h-12 {
    height: 3rem
  }

  .xl\:h-14 {
    height: 3.5rem
  }

  .xl\:h-16 {
    height: 4rem
  }

  .xl\:h-3 {
    height: .75rem
  }

  .xl\:h-6 {
    height: 1.5rem
  }

  .xl\:h-64 {
    height: 16rem
  }

  .xl\:h-7 {
    height: 1.75rem
  }

  .xl\:h-8 {
    height: 2rem
  }

  .xl\:h-\[102px\] {
    height: 102px
  }

  .xl\:h-\[12rem\] {
    height: 12rem
  }

  .xl\:h-\[132px\] {
    height: 132px
  }

  .xl\:h-\[18rem\] {
    height: 18rem
  }

  .xl\:h-\[22rem\] {
    height: 22rem
  }

  .xl\:h-\[35rem\] {
    height: 35rem
  }

  .xl\:h-\[36px\] {
    height: 36px
  }

  .xl\:h-\[400px\] {
    height: 400px
  }

  .xl\:h-\[433px\] {
    height: 433px
  }

  .xl\:h-\[52px\] {
    height: 52px
  }

  .xl\:h-\[589px\] {
    height: 589px
  }

  .xl\:h-\[6\.5rem\] {
    height: 6.5rem
  }

  .xl\:h-\[62px\] {
    height: 62px
  }

  .xl\:h-\[72px\] {
    height: 72px
  }

  .xl\:h-\[860px\] {
    height: 860px
  }

  .xl\:\!w-\[192px\] {
    width: 192px !important
  }

  .xl\:w-12 {
    width: 3rem
  }

  .xl\:w-14 {
    width: 3.5rem
  }

  .xl\:w-16 {
    width: 4rem
  }

  .xl\:w-3 {
    width: .75rem
  }

  .xl\:w-52 {
    width: 13rem
  }

  .xl\:w-6 {
    width: 1.5rem
  }

  .xl\:w-7 {
    width: 1.75rem
  }

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

  .xl\:w-\[102px\] {
    width: 102px
  }

  .xl\:w-\[106px\] {
    width: 106px
  }

  .xl\:w-\[12rem\] {
    width: 12rem
  }

  .xl\:w-\[132px\] {
    width: 132px
  }

  .xl\:w-\[136px\] {
    width: 136px
  }

  .xl\:w-\[20rem\] {
    width: 20rem
  }

  .xl\:w-\[35rem\] {
    width: 35rem
  }

  .xl\:w-\[38\%\] {
    width: 38%
  }

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

  .xl\:w-\[48\%\] {
    width: 48%
  }

  .xl\:w-\[52px\] {
    width: 52px
  }

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

  .xl\:w-\[66px\] {
    width: 66px
  }

  .xl\:w-\[724px\] {
    width: 724px
  }

  .xl\:w-\[72px\] {
    width: 72px
  }

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

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

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

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

  .xl\:flex-\[2\] {
    flex: 2
  }

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

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

  .xl\:flex-row {
    flex-direction: row
  }

  .xl\:items-start {
    align-items: flex-start
  }

  .xl\:justify-start {
    justify-content: flex-start
  }

  .xl\:justify-center {
    justify-content: center
  }

  .xl\:justify-between {
    justify-content: space-between
  }

  .xl\:gap-4 {
    gap: 1rem
  }

  .xl\:gap-\[14rem\] {
    gap: 14rem
  }

  .xl\:gap-\[4rem\] {
    gap: 4rem
  }

  .xl\:gap-\[5rem\] {
    gap: 5rem
  }

  .xl\:bg-transparent {
    background-color: transparent
  }

  .xl\:p-8 {
    padding: 2rem
  }

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

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

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

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

  .xl\:py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
  }

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

  .xl\:pb-1 {
    padding-bottom: .25rem
  }

  .xl\:pb-12 {
    padding-bottom: 3rem
  }

  .xl\:pb-3 {
    padding-bottom: .75rem
  }

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

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

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

  .xl\:pr-\[122px\] {
    padding-right: 122px
  }

  .xl\:pr-\[90px\] {
    padding-right: 90px
  }

  .xl\:pt-0 {
    padding-top: 0
  }

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

  .xl\:pt-3 {
    padding-top: .75rem
  }

  .xl\:pt-7 {
    padding-top: 1.75rem
  }

  .xl\:pt-\[1px\] {
    padding-top: 1px
  }

  .xl\:pt-\[3\.5rem\] {
    padding-top: 3.5rem
  }

  .xl\:pt-\[8\.5rem\] {
    padding-top: 8.5rem
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .xl\:font-bold {
    font-weight: 700
  }

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

  .xl\:leading-\[31\.3px\] {
    line-height: 31.3px
  }

  .xl\:leading-\[38px\] {
    line-height: 38px
  }

  .xl\:leading-\[40px\] {
    line-height: 40px
  }

  .xl\:leading-\[42px\] {
    line-height: 42px
  }

  .xl\:leading-\[48px\] {
    line-height: 48px
  }

  .xl\:leading-\[60px\] {
    line-height: 60px
  }

  .xl\:text-neutral-950 {
    --tw-text-opacity: 1;
    color: rgb(10 10 10/var(--tw-text-opacity))
  }
}

@media (min-width: 1536px) {
  .\32xl\:flex {
    display: flex
  }

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

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

  .\32xl\:w-\[48\%\] {
    width: 48%
  }

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

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

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

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

  .\32xl\:gap-8 {
    gap: 2rem
  }

  .\32xl\:\!py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
  }

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

.rtl\:text-right:where([dir=rtl],[dir=rtl] *) {
  text-align: right
}

.\[\&\:not\(\:last-child\)\]\:border-b-2:not(:last-child) {
  border-bottom-width: 2px
}








._reserve_button_container_1 {
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 9999px;
  box-shadow: 0px 10px 50px #AFADB533;
}
@media (min-width: 768px) {
  ._reserve_button_container_1 {
    position: relative;
    justify-content: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

._reserve_button_text_container_1 {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}

._reserve_button_title_1 {
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: rgb(75 85 99);
}
@media (min-width: 768px) {
  ._reserve_button_title_1 {
    font-size: 10px;
  }
}

._reserve_button_subtitle_1 {
  font-size: 10px;
  color: rgb(107 114 128);
}
@media (min-width: 768px) {
  ._reserve_button_subtitle_1 {
    font-size: 11px;
  }
}