@charset "UTF-8";
/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  /*max-inline-size: 100%;
  max-block-size: 100%; */
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

.color-primaly {
  color: #1e98ce !important;
}

.bg-primaly {
  background-color: #1e98ce !important;
}

.border-primaly {
  border-color: #1e98ce !important;
}

a.color-primaly {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-primaly:hover {
  color: #115675 !important;
}

.color-secondary {
  color: #231815 !important;
}

.bg-secondary {
  background-color: #231815 !important;
}

.border-secondary {
  border-color: #231815 !important;
}

a.color-secondary {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-secondary:hover {
  color: black !important;
}

.color-light {
  color: #8297A7 !important;
}

.bg-light {
  background-color: #8297A7 !important;
}

.border-light {
  border-color: #8297A7 !important;
}

a.color-light {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-light:hover {
  color: #516472 !important;
}

.color-dark {
  color: #221815 !important;
}

.bg-dark {
  background-color: #221815 !important;
}

.border-dark {
  border-color: #221815 !important;
}

a.color-dark {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-dark:hover {
  color: black !important;
}

.color-text {
  color: #262626 !important;
}

.bg-text {
  background-color: #262626 !important;
}

.border-text {
  border-color: #262626 !important;
}

a.color-text {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-text:hover {
  color: black !important;
}

.color-gray {
  color: #8b99a9 !important;
}

.bg-gray {
  background-color: #8b99a9 !important;
}

.border-gray {
  border-color: #8b99a9 !important;
}

a.color-gray {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-gray:hover {
  color: #586676 !important;
}

.color-lightgray {
  color: #eeeeee !important;
}

.bg-lightgray {
  background-color: #eeeeee !important;
}

.border-lightgray {
  border-color: #eeeeee !important;
}

a.color-lightgray {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-lightgray:hover {
  color: #bbbbbb !important;
}

.color-darkgray {
  color: #404040 !important;
}

.bg-darkgray {
  background-color: #404040 !important;
}

.border-darkgray {
  border-color: #404040 !important;
}

a.color-darkgray {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-darkgray:hover {
  color: #0d0d0d !important;
}

.color-darkgray2 {
  color: #1a1a1a !important;
}

.bg-darkgray2 {
  background-color: #1a1a1a !important;
}

.border-darkgray2 {
  border-color: #1a1a1a !important;
}

a.color-darkgray2 {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-darkgray2:hover {
  color: black !important;
}

.color-input {
  color: #cccccc !important;
}

.bg-input {
  background-color: #cccccc !important;
}

.border-input {
  border-color: #cccccc !important;
}

a.color-input {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-input:hover {
  color: #999999 !important;
}

.color-black {
  color: #000000 !important;
}

.bg-black {
  background-color: #000000 !important;
}

.border-black {
  border-color: #000000 !important;
}

a.color-black {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-black:hover {
  color: black !important;
}

.color-white {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.border-white {
  border-color: #ffffff !important;
}

a.color-white {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-white:hover {
  color: #cccccc !important;
}

.color-pink {
  color: #FF29C5 !important;
}

.bg-pink {
  background-color: #FF29C5 !important;
}

.border-pink {
  border-color: #FF29C5 !important;
}

a.color-pink {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-pink:hover {
  color: #c2008d !important;
}

.color-green {
  color: #5FAFB1 !important;
}

.bg-green {
  background-color: #5FAFB1 !important;
}

.border-green {
  border-color: #5FAFB1 !important;
}

a.color-green {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-green:hover {
  color: #387172 !important;
}

.color-yellow {
  color: #FFBA00 !important;
}

.bg-yellow {
  background-color: #FFBA00 !important;
}

.border-yellow {
  border-color: #FFBA00 !important;
}

a.color-yellow {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-yellow:hover {
  color: #997000 !important;
}

.color-purple {
  color: #8853FF !important;
}

.bg-purple {
  background-color: #8853FF !important;
}

.border-purple {
  border-color: #8853FF !important;
}

a.color-purple {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-purple:hover {
  color: #4900ec !important;
}

.color-orange {
  color: #FAAF58 !important;
}

.bg-orange {
  background-color: #FAAF58 !important;
}

.border-orange {
  border-color: #FAAF58 !important;
}

a.color-orange {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-orange:hover {
  color: #e57e07 !important;
}

.color-link {
  color: #0A6594 !important;
}

.bg-link {
  background-color: #0A6594 !important;
}

.border-link {
  border-color: #0A6594 !important;
}

a.color-link {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-link:hover {
  color: #042434 !important;
}

.color-red {
  color: #a40000 !important;
}

.bg-red {
  background-color: #a40000 !important;
}

.border-red {
  border-color: #a40000 !important;
}

a.color-red {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-red:hover {
  color: #3e0000 !important;
}

.color-tw {
  color: #1da1f2 !important;
}

.bg-tw {
  background-color: #1da1f2 !important;
}

.border-tw {
  border-color: #1da1f2 !important;
}

a.color-tw {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-tw:hover {
  color: #0967a0 !important;
}

.color-line {
  color: #06C755 !important;
}

.bg-line {
  background-color: #06C755 !important;
}

.border-line {
  border-color: #06C755 !important;
}

a.color-line {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-line:hover {
  color: #03642b !important;
}

.color-transparent {
  color: transparent !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border-transparent {
  border-color: transparent !important;
}

a.color-transparent {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.color-transparent:hover {
  color: rgba(0, 0, 0, 0) !important;
}

.fs-8 {
  font-size: 0.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-8 {
    font-size: 0.5rem !important;
  }
}

.fs-9 {
  font-size: 0.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-9 {
    font-size: 0.5625rem !important;
  }
}

.fs-10 {
  font-size: 0.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-10 {
    font-size: 0.625rem !important;
  }
}

.fs-11 {
  font-size: 0.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-11 {
    font-size: 0.6875rem !important;
  }
}

.fs-12 {
  font-size: 0.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-12 {
    font-size: 0.75rem !important;
  }
}

.fs-13 {
  font-size: 0.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-13 {
    font-size: 0.8125rem !important;
  }
}

.fs-14 {
  font-size: 0.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-14 {
    font-size: 0.875rem !important;
  }
}

.fs-15 {
  font-size: 0.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-15 {
    font-size: 0.9375rem !important;
  }
}

.fs-16 {
  font-size: 1rem !important;
}
@media (max-width: 767.98px) {
  .fs-16 {
    font-size: 1rem !important;
  }
}

.fs-17 {
  font-size: 1.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-17 {
    font-size: 1.0625rem !important;
  }
}

.fs-18 {
  font-size: 1.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-18 {
    font-size: 1.125rem !important;
  }
}

.fs-19 {
  font-size: 1.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-19 {
    font-size: 1.1875rem !important;
  }
}

.fs-20 {
  font-size: 1.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-20 {
    font-size: 1.25rem !important;
  }
}

.fs-21 {
  font-size: 1.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-21 {
    font-size: 1.3125rem !important;
  }
}

.fs-22 {
  font-size: 1.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-22 {
    font-size: 1.375rem !important;
  }
}

.fs-23 {
  font-size: 1.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-23 {
    font-size: 1.4375rem !important;
  }
}

.fs-24 {
  font-size: 1.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-24 {
    font-size: 1.5rem !important;
  }
}

.fs-25 {
  font-size: 1.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-25 {
    font-size: 1.5625rem !important;
  }
}

.fs-26 {
  font-size: 1.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-26 {
    font-size: 1.625rem !important;
  }
}

.fs-27 {
  font-size: 1.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-27 {
    font-size: 1.6875rem !important;
  }
}

.fs-28 {
  font-size: 1.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-28 {
    font-size: 1.75rem !important;
  }
}

.fs-29 {
  font-size: 1.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-29 {
    font-size: 1.8125rem !important;
  }
}

.fs-30 {
  font-size: 1.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-30 {
    font-size: 1.875rem !important;
  }
}

.fs-31 {
  font-size: 1.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-31 {
    font-size: 1.9375rem !important;
  }
}

.fs-32 {
  font-size: 2rem !important;
}
@media (max-width: 767.98px) {
  .fs-32 {
    font-size: 2rem !important;
  }
}

.fs-33 {
  font-size: 2.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-33 {
    font-size: 2.0625rem !important;
  }
}

.fs-34 {
  font-size: 2.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-34 {
    font-size: 2.125rem !important;
  }
}

.fs-35 {
  font-size: 2.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-35 {
    font-size: 2.1875rem !important;
  }
}

.fs-36 {
  font-size: 2.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-36 {
    font-size: 2.25rem !important;
  }
}

.fs-37 {
  font-size: 2.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-37 {
    font-size: 2.3125rem !important;
  }
}

.fs-38 {
  font-size: 2.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-38 {
    font-size: 2.375rem !important;
  }
}

.fs-39 {
  font-size: 2.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-39 {
    font-size: 2.4375rem !important;
  }
}

.fs-40 {
  font-size: 2.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-40 {
    font-size: 2.5rem !important;
  }
}

.fs-41 {
  font-size: 2.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-41 {
    font-size: 2.5625rem !important;
  }
}

.fs-42 {
  font-size: 2.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-42 {
    font-size: 2.625rem !important;
  }
}

.fs-43 {
  font-size: 2.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-43 {
    font-size: 2.6875rem !important;
  }
}

.fs-44 {
  font-size: 2.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-44 {
    font-size: 2.75rem !important;
  }
}

.fs-45 {
  font-size: 2.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-45 {
    font-size: 2.8125rem !important;
  }
}

.fs-46 {
  font-size: 2.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-46 {
    font-size: 2.875rem !important;
  }
}

.fs-47 {
  font-size: 2.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-47 {
    font-size: 2.9375rem !important;
  }
}

.fs-48 {
  font-size: 3rem !important;
}
@media (max-width: 767.98px) {
  .fs-48 {
    font-size: 3rem !important;
  }
}

.fs-49 {
  font-size: 3.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-49 {
    font-size: 3.0625rem !important;
  }
}

.fs-50 {
  font-size: 3.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-50 {
    font-size: 3.125rem !important;
  }
}

.fs-51 {
  font-size: 3.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-51 {
    font-size: 3.1875rem !important;
  }
}

.fs-52 {
  font-size: 3.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-52 {
    font-size: 3.25rem !important;
  }
}

.fs-53 {
  font-size: 3.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-53 {
    font-size: 3.3125rem !important;
  }
}

.fs-54 {
  font-size: 3.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-54 {
    font-size: 3.375rem !important;
  }
}

.fs-55 {
  font-size: 3.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-55 {
    font-size: 3.4375rem !important;
  }
}

.fs-56 {
  font-size: 3.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-56 {
    font-size: 3.5rem !important;
  }
}

.fs-57 {
  font-size: 3.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-57 {
    font-size: 3.5625rem !important;
  }
}

.fs-58 {
  font-size: 3.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-58 {
    font-size: 3.625rem !important;
  }
}

.fs-59 {
  font-size: 3.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-59 {
    font-size: 3.6875rem !important;
  }
}

.fs-60 {
  font-size: 3.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-60 {
    font-size: 3.75rem !important;
  }
}

.fs-61 {
  font-size: 3.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-61 {
    font-size: 3.8125rem !important;
  }
}

.fs-62 {
  font-size: 3.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-62 {
    font-size: 3.875rem !important;
  }
}

.fs-63 {
  font-size: 3.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-63 {
    font-size: 3.9375rem !important;
  }
}

.fs-64 {
  font-size: 4rem !important;
}
@media (max-width: 767.98px) {
  .fs-64 {
    font-size: 4rem !important;
  }
}

.fs-65 {
  font-size: 4.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-65 {
    font-size: 4.0625rem !important;
  }
}

.fs-66 {
  font-size: 4.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-66 {
    font-size: 4.125rem !important;
  }
}

.fs-67 {
  font-size: 4.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-67 {
    font-size: 4.1875rem !important;
  }
}

.fs-68 {
  font-size: 4.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-68 {
    font-size: 4.25rem !important;
  }
}

.fs-69 {
  font-size: 4.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-69 {
    font-size: 4.3125rem !important;
  }
}

.fs-70 {
  font-size: 4.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-70 {
    font-size: 4.375rem !important;
  }
}

.fs-71 {
  font-size: 4.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-71 {
    font-size: 4.4375rem !important;
  }
}

.fs-72 {
  font-size: 4.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-72 {
    font-size: 4.5rem !important;
  }
}

.fs-73 {
  font-size: 4.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-73 {
    font-size: 4.5625rem !important;
  }
}

.fs-74 {
  font-size: 4.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-74 {
    font-size: 4.625rem !important;
  }
}

.fs-75 {
  font-size: 4.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-75 {
    font-size: 4.6875rem !important;
  }
}

.fs-76 {
  font-size: 4.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-76 {
    font-size: 4.75rem !important;
  }
}

.fs-77 {
  font-size: 4.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-77 {
    font-size: 4.8125rem !important;
  }
}

.fs-78 {
  font-size: 4.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-78 {
    font-size: 4.875rem !important;
  }
}

.fs-79 {
  font-size: 4.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-79 {
    font-size: 4.9375rem !important;
  }
}

.fs-80 {
  font-size: 5rem !important;
}
@media (max-width: 767.98px) {
  .fs-80 {
    font-size: 5rem !important;
  }
}

.fs-81 {
  font-size: 5.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-81 {
    font-size: 5.0625rem !important;
  }
}

.fs-82 {
  font-size: 5.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-82 {
    font-size: 5.125rem !important;
  }
}

.fs-83 {
  font-size: 5.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-83 {
    font-size: 5.1875rem !important;
  }
}

.fs-84 {
  font-size: 5.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-84 {
    font-size: 5.25rem !important;
  }
}

.fs-85 {
  font-size: 5.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-85 {
    font-size: 5.3125rem !important;
  }
}

.fs-86 {
  font-size: 5.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-86 {
    font-size: 5.375rem !important;
  }
}

.fs-87 {
  font-size: 5.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-87 {
    font-size: 5.4375rem !important;
  }
}

.fs-88 {
  font-size: 5.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-88 {
    font-size: 5.5rem !important;
  }
}

.fs-89 {
  font-size: 5.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-89 {
    font-size: 5.5625rem !important;
  }
}

.fs-90 {
  font-size: 5.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-90 {
    font-size: 5.625rem !important;
  }
}

.fs-91 {
  font-size: 5.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-91 {
    font-size: 5.6875rem !important;
  }
}

.fs-92 {
  font-size: 5.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-92 {
    font-size: 5.75rem !important;
  }
}

.fs-93 {
  font-size: 5.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-93 {
    font-size: 5.8125rem !important;
  }
}

.fs-94 {
  font-size: 5.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-94 {
    font-size: 5.875rem !important;
  }
}

.fs-95 {
  font-size: 5.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-95 {
    font-size: 5.9375rem !important;
  }
}

.fs-96 {
  font-size: 6rem !important;
}
@media (max-width: 767.98px) {
  .fs-96 {
    font-size: 6rem !important;
  }
}

.fs-97 {
  font-size: 6.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-97 {
    font-size: 6.0625rem !important;
  }
}

.fs-98 {
  font-size: 6.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-98 {
    font-size: 6.125rem !important;
  }
}

.fs-99 {
  font-size: 6.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-99 {
    font-size: 6.1875rem !important;
  }
}

.fs-100 {
  font-size: 6.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-100 {
    font-size: 6.25rem !important;
  }
}

.fs-101 {
  font-size: 6.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-101 {
    font-size: 6.3125rem !important;
  }
}

.fs-102 {
  font-size: 6.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-102 {
    font-size: 6.375rem !important;
  }
}

.fs-103 {
  font-size: 6.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-103 {
    font-size: 6.4375rem !important;
  }
}

.fs-104 {
  font-size: 6.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-104 {
    font-size: 6.5rem !important;
  }
}

.fs-105 {
  font-size: 6.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-105 {
    font-size: 6.5625rem !important;
  }
}

.fs-106 {
  font-size: 6.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-106 {
    font-size: 6.625rem !important;
  }
}

.fs-107 {
  font-size: 6.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-107 {
    font-size: 6.6875rem !important;
  }
}

.fs-108 {
  font-size: 6.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-108 {
    font-size: 6.75rem !important;
  }
}

.fs-109 {
  font-size: 6.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-109 {
    font-size: 6.8125rem !important;
  }
}

.fs-110 {
  font-size: 6.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-110 {
    font-size: 6.875rem !important;
  }
}

.fs-111 {
  font-size: 6.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-111 {
    font-size: 6.9375rem !important;
  }
}

.fs-112 {
  font-size: 7rem !important;
}
@media (max-width: 767.98px) {
  .fs-112 {
    font-size: 7rem !important;
  }
}

.fs-113 {
  font-size: 7.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-113 {
    font-size: 7.0625rem !important;
  }
}

.fs-114 {
  font-size: 7.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-114 {
    font-size: 7.125rem !important;
  }
}

.fs-115 {
  font-size: 7.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-115 {
    font-size: 7.1875rem !important;
  }
}

.fs-116 {
  font-size: 7.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-116 {
    font-size: 7.25rem !important;
  }
}

.fs-117 {
  font-size: 7.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-117 {
    font-size: 7.3125rem !important;
  }
}

.fs-118 {
  font-size: 7.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-118 {
    font-size: 7.375rem !important;
  }
}

.fs-119 {
  font-size: 7.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-119 {
    font-size: 7.4375rem !important;
  }
}

.fs-120 {
  font-size: 7.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-120 {
    font-size: 7.5rem !important;
  }
}

.fs-121 {
  font-size: 7.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-121 {
    font-size: 7.5625rem !important;
  }
}

.fs-122 {
  font-size: 7.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-122 {
    font-size: 7.625rem !important;
  }
}

.fs-123 {
  font-size: 7.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-123 {
    font-size: 7.6875rem !important;
  }
}

.fs-124 {
  font-size: 7.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-124 {
    font-size: 7.75rem !important;
  }
}

.fs-125 {
  font-size: 7.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-125 {
    font-size: 7.8125rem !important;
  }
}

.fs-126 {
  font-size: 7.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-126 {
    font-size: 7.875rem !important;
  }
}

.fs-127 {
  font-size: 7.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-127 {
    font-size: 7.9375rem !important;
  }
}

.fs-128 {
  font-size: 8rem !important;
}
@media (max-width: 767.98px) {
  .fs-128 {
    font-size: 8rem !important;
  }
}

.fs-129 {
  font-size: 8.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-129 {
    font-size: 8.0625rem !important;
  }
}

.fs-130 {
  font-size: 8.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-130 {
    font-size: 8.125rem !important;
  }
}

.fs-131 {
  font-size: 8.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-131 {
    font-size: 8.1875rem !important;
  }
}

.fs-132 {
  font-size: 8.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-132 {
    font-size: 8.25rem !important;
  }
}

.fs-133 {
  font-size: 8.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-133 {
    font-size: 8.3125rem !important;
  }
}

.fs-134 {
  font-size: 8.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-134 {
    font-size: 8.375rem !important;
  }
}

.fs-135 {
  font-size: 8.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-135 {
    font-size: 8.4375rem !important;
  }
}

.fs-136 {
  font-size: 8.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-136 {
    font-size: 8.5rem !important;
  }
}

.fs-137 {
  font-size: 8.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-137 {
    font-size: 8.5625rem !important;
  }
}

.fs-138 {
  font-size: 8.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-138 {
    font-size: 8.625rem !important;
  }
}

.fs-139 {
  font-size: 8.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-139 {
    font-size: 8.6875rem !important;
  }
}

.fs-140 {
  font-size: 8.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-140 {
    font-size: 8.75rem !important;
  }
}

.fs-141 {
  font-size: 8.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-141 {
    font-size: 8.8125rem !important;
  }
}

.fs-142 {
  font-size: 8.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-142 {
    font-size: 8.875rem !important;
  }
}

.fs-143 {
  font-size: 8.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-143 {
    font-size: 8.9375rem !important;
  }
}

.fs-144 {
  font-size: 9rem !important;
}
@media (max-width: 767.98px) {
  .fs-144 {
    font-size: 9rem !important;
  }
}

.fs-145 {
  font-size: 9.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-145 {
    font-size: 9.0625rem !important;
  }
}

.fs-146 {
  font-size: 9.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-146 {
    font-size: 9.125rem !important;
  }
}

.fs-147 {
  font-size: 9.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-147 {
    font-size: 9.1875rem !important;
  }
}

.fs-148 {
  font-size: 9.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-148 {
    font-size: 9.25rem !important;
  }
}

.fs-149 {
  font-size: 9.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-149 {
    font-size: 9.3125rem !important;
  }
}

.fs-150 {
  font-size: 9.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-150 {
    font-size: 9.375rem !important;
  }
}

.fs-151 {
  font-size: 9.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-151 {
    font-size: 9.4375rem !important;
  }
}

.fs-152 {
  font-size: 9.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-152 {
    font-size: 9.5rem !important;
  }
}

.fs-153 {
  font-size: 9.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-153 {
    font-size: 9.5625rem !important;
  }
}

.fs-154 {
  font-size: 9.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-154 {
    font-size: 9.625rem !important;
  }
}

.fs-155 {
  font-size: 9.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-155 {
    font-size: 9.6875rem !important;
  }
}

.fs-156 {
  font-size: 9.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-156 {
    font-size: 9.75rem !important;
  }
}

.fs-157 {
  font-size: 9.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-157 {
    font-size: 9.8125rem !important;
  }
}

.fs-158 {
  font-size: 9.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-158 {
    font-size: 9.875rem !important;
  }
}

.fs-159 {
  font-size: 9.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-159 {
    font-size: 9.9375rem !important;
  }
}

.fs-160 {
  font-size: 10rem !important;
}
@media (max-width: 767.98px) {
  .fs-160 {
    font-size: 10rem !important;
  }
}

.fs-161 {
  font-size: 10.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-161 {
    font-size: 10.0625rem !important;
  }
}

.fs-162 {
  font-size: 10.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-162 {
    font-size: 10.125rem !important;
  }
}

.fs-163 {
  font-size: 10.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-163 {
    font-size: 10.1875rem !important;
  }
}

.fs-164 {
  font-size: 10.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-164 {
    font-size: 10.25rem !important;
  }
}

.fs-165 {
  font-size: 10.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-165 {
    font-size: 10.3125rem !important;
  }
}

.fs-166 {
  font-size: 10.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-166 {
    font-size: 10.375rem !important;
  }
}

.fs-167 {
  font-size: 10.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-167 {
    font-size: 10.4375rem !important;
  }
}

.fs-168 {
  font-size: 10.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-168 {
    font-size: 10.5rem !important;
  }
}

.fs-169 {
  font-size: 10.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-169 {
    font-size: 10.5625rem !important;
  }
}

.fs-170 {
  font-size: 10.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-170 {
    font-size: 10.625rem !important;
  }
}

.fs-171 {
  font-size: 10.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-171 {
    font-size: 10.6875rem !important;
  }
}

.fs-172 {
  font-size: 10.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-172 {
    font-size: 10.75rem !important;
  }
}

.fs-173 {
  font-size: 10.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-173 {
    font-size: 10.8125rem !important;
  }
}

.fs-174 {
  font-size: 10.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-174 {
    font-size: 10.875rem !important;
  }
}

.fs-175 {
  font-size: 10.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-175 {
    font-size: 10.9375rem !important;
  }
}

.fs-176 {
  font-size: 11rem !important;
}
@media (max-width: 767.98px) {
  .fs-176 {
    font-size: 11rem !important;
  }
}

.fs-177 {
  font-size: 11.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-177 {
    font-size: 11.0625rem !important;
  }
}

.fs-178 {
  font-size: 11.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-178 {
    font-size: 11.125rem !important;
  }
}

.fs-179 {
  font-size: 11.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-179 {
    font-size: 11.1875rem !important;
  }
}

.fs-180 {
  font-size: 11.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-180 {
    font-size: 11.25rem !important;
  }
}

.fs-181 {
  font-size: 11.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-181 {
    font-size: 11.3125rem !important;
  }
}

.fs-182 {
  font-size: 11.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-182 {
    font-size: 11.375rem !important;
  }
}

.fs-183 {
  font-size: 11.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-183 {
    font-size: 11.4375rem !important;
  }
}

.fs-184 {
  font-size: 11.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-184 {
    font-size: 11.5rem !important;
  }
}

.fs-185 {
  font-size: 11.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-185 {
    font-size: 11.5625rem !important;
  }
}

.fs-186 {
  font-size: 11.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-186 {
    font-size: 11.625rem !important;
  }
}

.fs-187 {
  font-size: 11.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-187 {
    font-size: 11.6875rem !important;
  }
}

.fs-188 {
  font-size: 11.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-188 {
    font-size: 11.75rem !important;
  }
}

.fs-189 {
  font-size: 11.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-189 {
    font-size: 11.8125rem !important;
  }
}

.fs-190 {
  font-size: 11.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-190 {
    font-size: 11.875rem !important;
  }
}

.fs-191 {
  font-size: 11.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-191 {
    font-size: 11.9375rem !important;
  }
}

.fs-192 {
  font-size: 12rem !important;
}
@media (max-width: 767.98px) {
  .fs-192 {
    font-size: 12rem !important;
  }
}

.fs-193 {
  font-size: 12.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-193 {
    font-size: 12.0625rem !important;
  }
}

.fs-194 {
  font-size: 12.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-194 {
    font-size: 12.125rem !important;
  }
}

.fs-195 {
  font-size: 12.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-195 {
    font-size: 12.1875rem !important;
  }
}

.fs-196 {
  font-size: 12.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-196 {
    font-size: 12.25rem !important;
  }
}

.fs-197 {
  font-size: 12.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-197 {
    font-size: 12.3125rem !important;
  }
}

.fs-198 {
  font-size: 12.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-198 {
    font-size: 12.375rem !important;
  }
}

.fs-199 {
  font-size: 12.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-199 {
    font-size: 12.4375rem !important;
  }
}

.fs-200 {
  font-size: 12.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-200 {
    font-size: 12.5rem !important;
  }
}

.ls-0 {
  letter-spacing: 0em;
}

.ls-10 {
  letter-spacing: 0.01em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.ls-30 {
  letter-spacing: 0.03em;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-70 {
  letter-spacing: 0.07em;
}

.ls-80 {
  letter-spacing: 0.08em;
}

.ls-90 {
  letter-spacing: 0.09em;
}

.ls-100 {
  letter-spacing: 0.1em;
}

.ls-110 {
  letter-spacing: 0.11em;
}

.ls-120 {
  letter-spacing: 0.12em;
}

.ls-130 {
  letter-spacing: 0.13em;
}

.ls-140 {
  letter-spacing: 0.14em;
}

.ls-150 {
  letter-spacing: 0.15em;
}

.ls-160 {
  letter-spacing: 0.16em;
}

.ls-170 {
  letter-spacing: 0.17em;
}

.ls-180 {
  letter-spacing: 0.18em;
}

.ls-190 {
  letter-spacing: 0.19em;
}

.ls-200 {
  letter-spacing: 0.2em;
}

.ls-210 {
  letter-spacing: 0.21em;
}

.ls-220 {
  letter-spacing: 0.22em;
}

.ls-230 {
  letter-spacing: 0.23em;
}

.ls-240 {
  letter-spacing: 0.24em;
}

.ls-250 {
  letter-spacing: 0.25em;
}

.ls-260 {
  letter-spacing: 0.26em;
}

.ls-270 {
  letter-spacing: 0.27em;
}

.ls-280 {
  letter-spacing: 0.28em;
}

.ls-290 {
  letter-spacing: 0.29em;
}

.ls-300 {
  letter-spacing: 0.3em;
}

.ls-310 {
  letter-spacing: 0.31em;
}

.ls-320 {
  letter-spacing: 0.32em;
}

.ls-330 {
  letter-spacing: 0.33em;
}

.ls-340 {
  letter-spacing: 0.34em;
}

.ls-350 {
  letter-spacing: 0.35em;
}

.ls-360 {
  letter-spacing: 0.36em;
}

.ls-370 {
  letter-spacing: 0.37em;
}

.ls-380 {
  letter-spacing: 0.38em;
}

.ls-390 {
  letter-spacing: 0.39em;
}

.ls-400 {
  letter-spacing: 0.4em;
}

.ls-410 {
  letter-spacing: 0.41em;
}

.ls-420 {
  letter-spacing: 0.42em;
}

.ls-430 {
  letter-spacing: 0.43em;
}

.ls-440 {
  letter-spacing: 0.44em;
}

.ls-450 {
  letter-spacing: 0.45em;
}

.ls-460 {
  letter-spacing: 0.46em;
}

.ls-470 {
  letter-spacing: 0.47em;
}

.ls-480 {
  letter-spacing: 0.48em;
}

.ls-490 {
  letter-spacing: 0.49em;
}

.ls-500 {
  letter-spacing: 0.5em;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.lh-21 {
  line-height: 2.1;
}

.lh-22 {
  line-height: 2.2;
}

.lh-23 {
  line-height: 2.3;
}

.lh-24 {
  line-height: 2.4;
}

.lh-25 {
  line-height: 2.5;
}

.lh-26 {
  line-height: 2.6;
}

.lh-27 {
  line-height: 2.7;
}

.lh-28 {
  line-height: 2.8;
}

.lh-29 {
  line-height: 2.9;
}

.lh-30 {
  line-height: 3;
}

.lh-31 {
  line-height: 3.1;
}

.lh-32 {
  line-height: 3.2;
}

.lh-33 {
  line-height: 3.3;
}

.lh-34 {
  line-height: 3.4;
}

.lh-35 {
  line-height: 3.5;
}

.lh-36 {
  line-height: 3.6;
}

.lh-37 {
  line-height: 3.7;
}

.lh-38 {
  line-height: 3.8;
}

.lh-39 {
  line-height: 3.9;
}

.lh-40 {
  line-height: 4;
}

@media (min-width: 576px) {
  .fs-sm-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 576px) {
  .ls-sm-0 {
    letter-spacing: 0em;
  }
  .ls-sm-10 {
    letter-spacing: 0.01em;
  }
  .ls-sm-20 {
    letter-spacing: 0.02em;
  }
  .ls-sm-30 {
    letter-spacing: 0.03em;
  }
  .ls-sm-40 {
    letter-spacing: 0.04em;
  }
  .ls-sm-50 {
    letter-spacing: 0.05em;
  }
  .ls-sm-60 {
    letter-spacing: 0.06em;
  }
  .ls-sm-70 {
    letter-spacing: 0.07em;
  }
  .ls-sm-80 {
    letter-spacing: 0.08em;
  }
  .ls-sm-90 {
    letter-spacing: 0.09em;
  }
  .ls-sm-100 {
    letter-spacing: 0.1em;
  }
  .ls-sm-110 {
    letter-spacing: 0.11em;
  }
  .ls-sm-120 {
    letter-spacing: 0.12em;
  }
  .ls-sm-130 {
    letter-spacing: 0.13em;
  }
  .ls-sm-140 {
    letter-spacing: 0.14em;
  }
  .ls-sm-150 {
    letter-spacing: 0.15em;
  }
  .ls-sm-160 {
    letter-spacing: 0.16em;
  }
  .ls-sm-170 {
    letter-spacing: 0.17em;
  }
  .ls-sm-180 {
    letter-spacing: 0.18em;
  }
  .ls-sm-190 {
    letter-spacing: 0.19em;
  }
  .ls-sm-200 {
    letter-spacing: 0.2em;
  }
  .ls-sm-210 {
    letter-spacing: 0.21em;
  }
  .ls-sm-220 {
    letter-spacing: 0.22em;
  }
  .ls-sm-230 {
    letter-spacing: 0.23em;
  }
  .ls-sm-240 {
    letter-spacing: 0.24em;
  }
  .ls-sm-250 {
    letter-spacing: 0.25em;
  }
  .ls-sm-260 {
    letter-spacing: 0.26em;
  }
  .ls-sm-270 {
    letter-spacing: 0.27em;
  }
  .ls-sm-280 {
    letter-spacing: 0.28em;
  }
  .ls-sm-290 {
    letter-spacing: 0.29em;
  }
  .ls-sm-300 {
    letter-spacing: 0.3em;
  }
  .ls-sm-310 {
    letter-spacing: 0.31em;
  }
  .ls-sm-320 {
    letter-spacing: 0.32em;
  }
  .ls-sm-330 {
    letter-spacing: 0.33em;
  }
  .ls-sm-340 {
    letter-spacing: 0.34em;
  }
  .ls-sm-350 {
    letter-spacing: 0.35em;
  }
  .ls-sm-360 {
    letter-spacing: 0.36em;
  }
  .ls-sm-370 {
    letter-spacing: 0.37em;
  }
  .ls-sm-380 {
    letter-spacing: 0.38em;
  }
  .ls-sm-390 {
    letter-spacing: 0.39em;
  }
  .ls-sm-400 {
    letter-spacing: 0.4em;
  }
  .ls-sm-410 {
    letter-spacing: 0.41em;
  }
  .ls-sm-420 {
    letter-spacing: 0.42em;
  }
  .ls-sm-430 {
    letter-spacing: 0.43em;
  }
  .ls-sm-440 {
    letter-spacing: 0.44em;
  }
  .ls-sm-450 {
    letter-spacing: 0.45em;
  }
  .ls-sm-460 {
    letter-spacing: 0.46em;
  }
  .ls-sm-470 {
    letter-spacing: 0.47em;
  }
  .ls-sm-480 {
    letter-spacing: 0.48em;
  }
  .ls-sm-490 {
    letter-spacing: 0.49em;
  }
  .ls-sm-500 {
    letter-spacing: 0.5em;
  }
  .lh-sm-10 {
    line-height: 1;
  }
  .lh-sm-11 {
    line-height: 1.1;
  }
  .lh-sm-12 {
    line-height: 1.2;
  }
  .lh-sm-13 {
    line-height: 1.3;
  }
  .lh-sm-14 {
    line-height: 1.4;
  }
  .lh-sm-15 {
    line-height: 1.5;
  }
  .lh-sm-16 {
    line-height: 1.6;
  }
  .lh-sm-17 {
    line-height: 1.7;
  }
  .lh-sm-18 {
    line-height: 1.8;
  }
  .lh-sm-19 {
    line-height: 1.9;
  }
  .lh-sm-20 {
    line-height: 2;
  }
  .lh-sm-21 {
    line-height: 2.1;
  }
  .lh-sm-22 {
    line-height: 2.2;
  }
  .lh-sm-23 {
    line-height: 2.3;
  }
  .lh-sm-24 {
    line-height: 2.4;
  }
  .lh-sm-25 {
    line-height: 2.5;
  }
  .lh-sm-26 {
    line-height: 2.6;
  }
  .lh-sm-27 {
    line-height: 2.7;
  }
  .lh-sm-28 {
    line-height: 2.8;
  }
  .lh-sm-29 {
    line-height: 2.9;
  }
  .lh-sm-30 {
    line-height: 3;
  }
  .lh-sm-31 {
    line-height: 3.1;
  }
  .lh-sm-32 {
    line-height: 3.2;
  }
  .lh-sm-33 {
    line-height: 3.3;
  }
  .lh-sm-34 {
    line-height: 3.4;
  }
  .lh-sm-35 {
    line-height: 3.5;
  }
  .lh-sm-36 {
    line-height: 3.6;
  }
  .lh-sm-37 {
    line-height: 3.7;
  }
  .lh-sm-38 {
    line-height: 3.8;
  }
  .lh-sm-39 {
    line-height: 3.9;
  }
  .lh-sm-40 {
    line-height: 4;
  }
}
@media (min-width: 768px) {
  .fs-md-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 768px) {
  .ls-md-0 {
    letter-spacing: 0em;
  }
  .ls-md-10 {
    letter-spacing: 0.01em;
  }
  .ls-md-20 {
    letter-spacing: 0.02em;
  }
  .ls-md-30 {
    letter-spacing: 0.03em;
  }
  .ls-md-40 {
    letter-spacing: 0.04em;
  }
  .ls-md-50 {
    letter-spacing: 0.05em;
  }
  .ls-md-60 {
    letter-spacing: 0.06em;
  }
  .ls-md-70 {
    letter-spacing: 0.07em;
  }
  .ls-md-80 {
    letter-spacing: 0.08em;
  }
  .ls-md-90 {
    letter-spacing: 0.09em;
  }
  .ls-md-100 {
    letter-spacing: 0.1em;
  }
  .ls-md-110 {
    letter-spacing: 0.11em;
  }
  .ls-md-120 {
    letter-spacing: 0.12em;
  }
  .ls-md-130 {
    letter-spacing: 0.13em;
  }
  .ls-md-140 {
    letter-spacing: 0.14em;
  }
  .ls-md-150 {
    letter-spacing: 0.15em;
  }
  .ls-md-160 {
    letter-spacing: 0.16em;
  }
  .ls-md-170 {
    letter-spacing: 0.17em;
  }
  .ls-md-180 {
    letter-spacing: 0.18em;
  }
  .ls-md-190 {
    letter-spacing: 0.19em;
  }
  .ls-md-200 {
    letter-spacing: 0.2em;
  }
  .ls-md-210 {
    letter-spacing: 0.21em;
  }
  .ls-md-220 {
    letter-spacing: 0.22em;
  }
  .ls-md-230 {
    letter-spacing: 0.23em;
  }
  .ls-md-240 {
    letter-spacing: 0.24em;
  }
  .ls-md-250 {
    letter-spacing: 0.25em;
  }
  .ls-md-260 {
    letter-spacing: 0.26em;
  }
  .ls-md-270 {
    letter-spacing: 0.27em;
  }
  .ls-md-280 {
    letter-spacing: 0.28em;
  }
  .ls-md-290 {
    letter-spacing: 0.29em;
  }
  .ls-md-300 {
    letter-spacing: 0.3em;
  }
  .ls-md-310 {
    letter-spacing: 0.31em;
  }
  .ls-md-320 {
    letter-spacing: 0.32em;
  }
  .ls-md-330 {
    letter-spacing: 0.33em;
  }
  .ls-md-340 {
    letter-spacing: 0.34em;
  }
  .ls-md-350 {
    letter-spacing: 0.35em;
  }
  .ls-md-360 {
    letter-spacing: 0.36em;
  }
  .ls-md-370 {
    letter-spacing: 0.37em;
  }
  .ls-md-380 {
    letter-spacing: 0.38em;
  }
  .ls-md-390 {
    letter-spacing: 0.39em;
  }
  .ls-md-400 {
    letter-spacing: 0.4em;
  }
  .ls-md-410 {
    letter-spacing: 0.41em;
  }
  .ls-md-420 {
    letter-spacing: 0.42em;
  }
  .ls-md-430 {
    letter-spacing: 0.43em;
  }
  .ls-md-440 {
    letter-spacing: 0.44em;
  }
  .ls-md-450 {
    letter-spacing: 0.45em;
  }
  .ls-md-460 {
    letter-spacing: 0.46em;
  }
  .ls-md-470 {
    letter-spacing: 0.47em;
  }
  .ls-md-480 {
    letter-spacing: 0.48em;
  }
  .ls-md-490 {
    letter-spacing: 0.49em;
  }
  .ls-md-500 {
    letter-spacing: 0.5em;
  }
  .lh-md-10 {
    line-height: 1;
  }
  .lh-md-11 {
    line-height: 1.1;
  }
  .lh-md-12 {
    line-height: 1.2;
  }
  .lh-md-13 {
    line-height: 1.3;
  }
  .lh-md-14 {
    line-height: 1.4;
  }
  .lh-md-15 {
    line-height: 1.5;
  }
  .lh-md-16 {
    line-height: 1.6;
  }
  .lh-md-17 {
    line-height: 1.7;
  }
  .lh-md-18 {
    line-height: 1.8;
  }
  .lh-md-19 {
    line-height: 1.9;
  }
  .lh-md-20 {
    line-height: 2;
  }
  .lh-md-21 {
    line-height: 2.1;
  }
  .lh-md-22 {
    line-height: 2.2;
  }
  .lh-md-23 {
    line-height: 2.3;
  }
  .lh-md-24 {
    line-height: 2.4;
  }
  .lh-md-25 {
    line-height: 2.5;
  }
  .lh-md-26 {
    line-height: 2.6;
  }
  .lh-md-27 {
    line-height: 2.7;
  }
  .lh-md-28 {
    line-height: 2.8;
  }
  .lh-md-29 {
    line-height: 2.9;
  }
  .lh-md-30 {
    line-height: 3;
  }
  .lh-md-31 {
    line-height: 3.1;
  }
  .lh-md-32 {
    line-height: 3.2;
  }
  .lh-md-33 {
    line-height: 3.3;
  }
  .lh-md-34 {
    line-height: 3.4;
  }
  .lh-md-35 {
    line-height: 3.5;
  }
  .lh-md-36 {
    line-height: 3.6;
  }
  .lh-md-37 {
    line-height: 3.7;
  }
  .lh-md-38 {
    line-height: 3.8;
  }
  .lh-md-39 {
    line-height: 3.9;
  }
  .lh-md-40 {
    line-height: 4;
  }
}
@media (min-width: 992px) {
  .fs-lg-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 992px) {
  .ls-lg-0 {
    letter-spacing: 0em;
  }
  .ls-lg-10 {
    letter-spacing: 0.01em;
  }
  .ls-lg-20 {
    letter-spacing: 0.02em;
  }
  .ls-lg-30 {
    letter-spacing: 0.03em;
  }
  .ls-lg-40 {
    letter-spacing: 0.04em;
  }
  .ls-lg-50 {
    letter-spacing: 0.05em;
  }
  .ls-lg-60 {
    letter-spacing: 0.06em;
  }
  .ls-lg-70 {
    letter-spacing: 0.07em;
  }
  .ls-lg-80 {
    letter-spacing: 0.08em;
  }
  .ls-lg-90 {
    letter-spacing: 0.09em;
  }
  .ls-lg-100 {
    letter-spacing: 0.1em;
  }
  .ls-lg-110 {
    letter-spacing: 0.11em;
  }
  .ls-lg-120 {
    letter-spacing: 0.12em;
  }
  .ls-lg-130 {
    letter-spacing: 0.13em;
  }
  .ls-lg-140 {
    letter-spacing: 0.14em;
  }
  .ls-lg-150 {
    letter-spacing: 0.15em;
  }
  .ls-lg-160 {
    letter-spacing: 0.16em;
  }
  .ls-lg-170 {
    letter-spacing: 0.17em;
  }
  .ls-lg-180 {
    letter-spacing: 0.18em;
  }
  .ls-lg-190 {
    letter-spacing: 0.19em;
  }
  .ls-lg-200 {
    letter-spacing: 0.2em;
  }
  .ls-lg-210 {
    letter-spacing: 0.21em;
  }
  .ls-lg-220 {
    letter-spacing: 0.22em;
  }
  .ls-lg-230 {
    letter-spacing: 0.23em;
  }
  .ls-lg-240 {
    letter-spacing: 0.24em;
  }
  .ls-lg-250 {
    letter-spacing: 0.25em;
  }
  .ls-lg-260 {
    letter-spacing: 0.26em;
  }
  .ls-lg-270 {
    letter-spacing: 0.27em;
  }
  .ls-lg-280 {
    letter-spacing: 0.28em;
  }
  .ls-lg-290 {
    letter-spacing: 0.29em;
  }
  .ls-lg-300 {
    letter-spacing: 0.3em;
  }
  .ls-lg-310 {
    letter-spacing: 0.31em;
  }
  .ls-lg-320 {
    letter-spacing: 0.32em;
  }
  .ls-lg-330 {
    letter-spacing: 0.33em;
  }
  .ls-lg-340 {
    letter-spacing: 0.34em;
  }
  .ls-lg-350 {
    letter-spacing: 0.35em;
  }
  .ls-lg-360 {
    letter-spacing: 0.36em;
  }
  .ls-lg-370 {
    letter-spacing: 0.37em;
  }
  .ls-lg-380 {
    letter-spacing: 0.38em;
  }
  .ls-lg-390 {
    letter-spacing: 0.39em;
  }
  .ls-lg-400 {
    letter-spacing: 0.4em;
  }
  .ls-lg-410 {
    letter-spacing: 0.41em;
  }
  .ls-lg-420 {
    letter-spacing: 0.42em;
  }
  .ls-lg-430 {
    letter-spacing: 0.43em;
  }
  .ls-lg-440 {
    letter-spacing: 0.44em;
  }
  .ls-lg-450 {
    letter-spacing: 0.45em;
  }
  .ls-lg-460 {
    letter-spacing: 0.46em;
  }
  .ls-lg-470 {
    letter-spacing: 0.47em;
  }
  .ls-lg-480 {
    letter-spacing: 0.48em;
  }
  .ls-lg-490 {
    letter-spacing: 0.49em;
  }
  .ls-lg-500 {
    letter-spacing: 0.5em;
  }
  .lh-lg-10 {
    line-height: 1;
  }
  .lh-lg-11 {
    line-height: 1.1;
  }
  .lh-lg-12 {
    line-height: 1.2;
  }
  .lh-lg-13 {
    line-height: 1.3;
  }
  .lh-lg-14 {
    line-height: 1.4;
  }
  .lh-lg-15 {
    line-height: 1.5;
  }
  .lh-lg-16 {
    line-height: 1.6;
  }
  .lh-lg-17 {
    line-height: 1.7;
  }
  .lh-lg-18 {
    line-height: 1.8;
  }
  .lh-lg-19 {
    line-height: 1.9;
  }
  .lh-lg-20 {
    line-height: 2;
  }
  .lh-lg-21 {
    line-height: 2.1;
  }
  .lh-lg-22 {
    line-height: 2.2;
  }
  .lh-lg-23 {
    line-height: 2.3;
  }
  .lh-lg-24 {
    line-height: 2.4;
  }
  .lh-lg-25 {
    line-height: 2.5;
  }
  .lh-lg-26 {
    line-height: 2.6;
  }
  .lh-lg-27 {
    line-height: 2.7;
  }
  .lh-lg-28 {
    line-height: 2.8;
  }
  .lh-lg-29 {
    line-height: 2.9;
  }
  .lh-lg-30 {
    line-height: 3;
  }
  .lh-lg-31 {
    line-height: 3.1;
  }
  .lh-lg-32 {
    line-height: 3.2;
  }
  .lh-lg-33 {
    line-height: 3.3;
  }
  .lh-lg-34 {
    line-height: 3.4;
  }
  .lh-lg-35 {
    line-height: 3.5;
  }
  .lh-lg-36 {
    line-height: 3.6;
  }
  .lh-lg-37 {
    line-height: 3.7;
  }
  .lh-lg-38 {
    line-height: 3.8;
  }
  .lh-lg-39 {
    line-height: 3.9;
  }
  .lh-lg-40 {
    line-height: 4;
  }
}
@media (min-width: 1200px) {
  .fs-xl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1200px) {
  .ls-xl-0 {
    letter-spacing: 0em;
  }
  .ls-xl-10 {
    letter-spacing: 0.01em;
  }
  .ls-xl-20 {
    letter-spacing: 0.02em;
  }
  .ls-xl-30 {
    letter-spacing: 0.03em;
  }
  .ls-xl-40 {
    letter-spacing: 0.04em;
  }
  .ls-xl-50 {
    letter-spacing: 0.05em;
  }
  .ls-xl-60 {
    letter-spacing: 0.06em;
  }
  .ls-xl-70 {
    letter-spacing: 0.07em;
  }
  .ls-xl-80 {
    letter-spacing: 0.08em;
  }
  .ls-xl-90 {
    letter-spacing: 0.09em;
  }
  .ls-xl-100 {
    letter-spacing: 0.1em;
  }
  .ls-xl-110 {
    letter-spacing: 0.11em;
  }
  .ls-xl-120 {
    letter-spacing: 0.12em;
  }
  .ls-xl-130 {
    letter-spacing: 0.13em;
  }
  .ls-xl-140 {
    letter-spacing: 0.14em;
  }
  .ls-xl-150 {
    letter-spacing: 0.15em;
  }
  .ls-xl-160 {
    letter-spacing: 0.16em;
  }
  .ls-xl-170 {
    letter-spacing: 0.17em;
  }
  .ls-xl-180 {
    letter-spacing: 0.18em;
  }
  .ls-xl-190 {
    letter-spacing: 0.19em;
  }
  .ls-xl-200 {
    letter-spacing: 0.2em;
  }
  .ls-xl-210 {
    letter-spacing: 0.21em;
  }
  .ls-xl-220 {
    letter-spacing: 0.22em;
  }
  .ls-xl-230 {
    letter-spacing: 0.23em;
  }
  .ls-xl-240 {
    letter-spacing: 0.24em;
  }
  .ls-xl-250 {
    letter-spacing: 0.25em;
  }
  .ls-xl-260 {
    letter-spacing: 0.26em;
  }
  .ls-xl-270 {
    letter-spacing: 0.27em;
  }
  .ls-xl-280 {
    letter-spacing: 0.28em;
  }
  .ls-xl-290 {
    letter-spacing: 0.29em;
  }
  .ls-xl-300 {
    letter-spacing: 0.3em;
  }
  .ls-xl-310 {
    letter-spacing: 0.31em;
  }
  .ls-xl-320 {
    letter-spacing: 0.32em;
  }
  .ls-xl-330 {
    letter-spacing: 0.33em;
  }
  .ls-xl-340 {
    letter-spacing: 0.34em;
  }
  .ls-xl-350 {
    letter-spacing: 0.35em;
  }
  .ls-xl-360 {
    letter-spacing: 0.36em;
  }
  .ls-xl-370 {
    letter-spacing: 0.37em;
  }
  .ls-xl-380 {
    letter-spacing: 0.38em;
  }
  .ls-xl-390 {
    letter-spacing: 0.39em;
  }
  .ls-xl-400 {
    letter-spacing: 0.4em;
  }
  .ls-xl-410 {
    letter-spacing: 0.41em;
  }
  .ls-xl-420 {
    letter-spacing: 0.42em;
  }
  .ls-xl-430 {
    letter-spacing: 0.43em;
  }
  .ls-xl-440 {
    letter-spacing: 0.44em;
  }
  .ls-xl-450 {
    letter-spacing: 0.45em;
  }
  .ls-xl-460 {
    letter-spacing: 0.46em;
  }
  .ls-xl-470 {
    letter-spacing: 0.47em;
  }
  .ls-xl-480 {
    letter-spacing: 0.48em;
  }
  .ls-xl-490 {
    letter-spacing: 0.49em;
  }
  .ls-xl-500 {
    letter-spacing: 0.5em;
  }
  .lh-xl-10 {
    line-height: 1;
  }
  .lh-xl-11 {
    line-height: 1.1;
  }
  .lh-xl-12 {
    line-height: 1.2;
  }
  .lh-xl-13 {
    line-height: 1.3;
  }
  .lh-xl-14 {
    line-height: 1.4;
  }
  .lh-xl-15 {
    line-height: 1.5;
  }
  .lh-xl-16 {
    line-height: 1.6;
  }
  .lh-xl-17 {
    line-height: 1.7;
  }
  .lh-xl-18 {
    line-height: 1.8;
  }
  .lh-xl-19 {
    line-height: 1.9;
  }
  .lh-xl-20 {
    line-height: 2;
  }
  .lh-xl-21 {
    line-height: 2.1;
  }
  .lh-xl-22 {
    line-height: 2.2;
  }
  .lh-xl-23 {
    line-height: 2.3;
  }
  .lh-xl-24 {
    line-height: 2.4;
  }
  .lh-xl-25 {
    line-height: 2.5;
  }
  .lh-xl-26 {
    line-height: 2.6;
  }
  .lh-xl-27 {
    line-height: 2.7;
  }
  .lh-xl-28 {
    line-height: 2.8;
  }
  .lh-xl-29 {
    line-height: 2.9;
  }
  .lh-xl-30 {
    line-height: 3;
  }
  .lh-xl-31 {
    line-height: 3.1;
  }
  .lh-xl-32 {
    line-height: 3.2;
  }
  .lh-xl-33 {
    line-height: 3.3;
  }
  .lh-xl-34 {
    line-height: 3.4;
  }
  .lh-xl-35 {
    line-height: 3.5;
  }
  .lh-xl-36 {
    line-height: 3.6;
  }
  .lh-xl-37 {
    line-height: 3.7;
  }
  .lh-xl-38 {
    line-height: 3.8;
  }
  .lh-xl-39 {
    line-height: 3.9;
  }
  .lh-xl-40 {
    line-height: 4;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1400px) {
  .ls-xxl-0 {
    letter-spacing: 0em;
  }
  .ls-xxl-10 {
    letter-spacing: 0.01em;
  }
  .ls-xxl-20 {
    letter-spacing: 0.02em;
  }
  .ls-xxl-30 {
    letter-spacing: 0.03em;
  }
  .ls-xxl-40 {
    letter-spacing: 0.04em;
  }
  .ls-xxl-50 {
    letter-spacing: 0.05em;
  }
  .ls-xxl-60 {
    letter-spacing: 0.06em;
  }
  .ls-xxl-70 {
    letter-spacing: 0.07em;
  }
  .ls-xxl-80 {
    letter-spacing: 0.08em;
  }
  .ls-xxl-90 {
    letter-spacing: 0.09em;
  }
  .ls-xxl-100 {
    letter-spacing: 0.1em;
  }
  .ls-xxl-110 {
    letter-spacing: 0.11em;
  }
  .ls-xxl-120 {
    letter-spacing: 0.12em;
  }
  .ls-xxl-130 {
    letter-spacing: 0.13em;
  }
  .ls-xxl-140 {
    letter-spacing: 0.14em;
  }
  .ls-xxl-150 {
    letter-spacing: 0.15em;
  }
  .ls-xxl-160 {
    letter-spacing: 0.16em;
  }
  .ls-xxl-170 {
    letter-spacing: 0.17em;
  }
  .ls-xxl-180 {
    letter-spacing: 0.18em;
  }
  .ls-xxl-190 {
    letter-spacing: 0.19em;
  }
  .ls-xxl-200 {
    letter-spacing: 0.2em;
  }
  .ls-xxl-210 {
    letter-spacing: 0.21em;
  }
  .ls-xxl-220 {
    letter-spacing: 0.22em;
  }
  .ls-xxl-230 {
    letter-spacing: 0.23em;
  }
  .ls-xxl-240 {
    letter-spacing: 0.24em;
  }
  .ls-xxl-250 {
    letter-spacing: 0.25em;
  }
  .ls-xxl-260 {
    letter-spacing: 0.26em;
  }
  .ls-xxl-270 {
    letter-spacing: 0.27em;
  }
  .ls-xxl-280 {
    letter-spacing: 0.28em;
  }
  .ls-xxl-290 {
    letter-spacing: 0.29em;
  }
  .ls-xxl-300 {
    letter-spacing: 0.3em;
  }
  .ls-xxl-310 {
    letter-spacing: 0.31em;
  }
  .ls-xxl-320 {
    letter-spacing: 0.32em;
  }
  .ls-xxl-330 {
    letter-spacing: 0.33em;
  }
  .ls-xxl-340 {
    letter-spacing: 0.34em;
  }
  .ls-xxl-350 {
    letter-spacing: 0.35em;
  }
  .ls-xxl-360 {
    letter-spacing: 0.36em;
  }
  .ls-xxl-370 {
    letter-spacing: 0.37em;
  }
  .ls-xxl-380 {
    letter-spacing: 0.38em;
  }
  .ls-xxl-390 {
    letter-spacing: 0.39em;
  }
  .ls-xxl-400 {
    letter-spacing: 0.4em;
  }
  .ls-xxl-410 {
    letter-spacing: 0.41em;
  }
  .ls-xxl-420 {
    letter-spacing: 0.42em;
  }
  .ls-xxl-430 {
    letter-spacing: 0.43em;
  }
  .ls-xxl-440 {
    letter-spacing: 0.44em;
  }
  .ls-xxl-450 {
    letter-spacing: 0.45em;
  }
  .ls-xxl-460 {
    letter-spacing: 0.46em;
  }
  .ls-xxl-470 {
    letter-spacing: 0.47em;
  }
  .ls-xxl-480 {
    letter-spacing: 0.48em;
  }
  .ls-xxl-490 {
    letter-spacing: 0.49em;
  }
  .ls-xxl-500 {
    letter-spacing: 0.5em;
  }
  .lh-xxl-10 {
    line-height: 1;
  }
  .lh-xxl-11 {
    line-height: 1.1;
  }
  .lh-xxl-12 {
    line-height: 1.2;
  }
  .lh-xxl-13 {
    line-height: 1.3;
  }
  .lh-xxl-14 {
    line-height: 1.4;
  }
  .lh-xxl-15 {
    line-height: 1.5;
  }
  .lh-xxl-16 {
    line-height: 1.6;
  }
  .lh-xxl-17 {
    line-height: 1.7;
  }
  .lh-xxl-18 {
    line-height: 1.8;
  }
  .lh-xxl-19 {
    line-height: 1.9;
  }
  .lh-xxl-20 {
    line-height: 2;
  }
  .lh-xxl-21 {
    line-height: 2.1;
  }
  .lh-xxl-22 {
    line-height: 2.2;
  }
  .lh-xxl-23 {
    line-height: 2.3;
  }
  .lh-xxl-24 {
    line-height: 2.4;
  }
  .lh-xxl-25 {
    line-height: 2.5;
  }
  .lh-xxl-26 {
    line-height: 2.6;
  }
  .lh-xxl-27 {
    line-height: 2.7;
  }
  .lh-xxl-28 {
    line-height: 2.8;
  }
  .lh-xxl-29 {
    line-height: 2.9;
  }
  .lh-xxl-30 {
    line-height: 3;
  }
  .lh-xxl-31 {
    line-height: 3.1;
  }
  .lh-xxl-32 {
    line-height: 3.2;
  }
  .lh-xxl-33 {
    line-height: 3.3;
  }
  .lh-xxl-34 {
    line-height: 3.4;
  }
  .lh-xxl-35 {
    line-height: 3.5;
  }
  .lh-xxl-36 {
    line-height: 3.6;
  }
  .lh-xxl-37 {
    line-height: 3.7;
  }
  .lh-xxl-38 {
    line-height: 3.8;
  }
  .lh-xxl-39 {
    line-height: 3.9;
  }
  .lh-xxl-40 {
    line-height: 4;
  }
}
.ls-0 {
  letter-spacing: 0em;
}

.ls-10 {
  letter-spacing: 0.01em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.ls-30 {
  letter-spacing: 0.03em;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-70 {
  letter-spacing: 0.07em;
}

.ls-80 {
  letter-spacing: 0.08em;
}

.ls-90 {
  letter-spacing: 0.09em;
}

.ls-100 {
  letter-spacing: 0.1em;
}

.ls-110 {
  letter-spacing: 0.11em;
}

.ls-120 {
  letter-spacing: 0.12em;
}

.ls-130 {
  letter-spacing: 0.13em;
}

.ls-140 {
  letter-spacing: 0.14em;
}

.ls-150 {
  letter-spacing: 0.15em;
}

.ls-160 {
  letter-spacing: 0.16em;
}

.ls-170 {
  letter-spacing: 0.17em;
}

.ls-180 {
  letter-spacing: 0.18em;
}

.ls-190 {
  letter-spacing: 0.19em;
}

.ls-200 {
  letter-spacing: 0.2em;
}

.ls-210 {
  letter-spacing: 0.21em;
}

.ls-220 {
  letter-spacing: 0.22em;
}

.ls-230 {
  letter-spacing: 0.23em;
}

.ls-240 {
  letter-spacing: 0.24em;
}

.ls-250 {
  letter-spacing: 0.25em;
}

.ls-260 {
  letter-spacing: 0.26em;
}

.ls-270 {
  letter-spacing: 0.27em;
}

.ls-280 {
  letter-spacing: 0.28em;
}

.ls-290 {
  letter-spacing: 0.29em;
}

.ls-300 {
  letter-spacing: 0.3em;
}

.ls-310 {
  letter-spacing: 0.31em;
}

.ls-320 {
  letter-spacing: 0.32em;
}

.ls-330 {
  letter-spacing: 0.33em;
}

.ls-340 {
  letter-spacing: 0.34em;
}

.ls-350 {
  letter-spacing: 0.35em;
}

.ls-360 {
  letter-spacing: 0.36em;
}

.ls-370 {
  letter-spacing: 0.37em;
}

.ls-380 {
  letter-spacing: 0.38em;
}

.ls-390 {
  letter-spacing: 0.39em;
}

.ls-400 {
  letter-spacing: 0.4em;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.lh-21 {
  line-height: 2.1;
}

.lh-22 {
  line-height: 2.2;
}

.lh-23 {
  line-height: 2.3;
}

.lh-24 {
  line-height: 2.4;
}

.lh-25 {
  line-height: 2.5;
}

.lh-26 {
  line-height: 2.6;
}

.lh-27 {
  line-height: 2.7;
}

.lh-28 {
  line-height: 2.8;
}

.lh-29 {
  line-height: 2.9;
}

.lh-30 {
  line-height: 3;
}

.lh-31 {
  line-height: 3.1;
}

.lh-32 {
  line-height: 3.2;
}

.lh-33 {
  line-height: 3.3;
}

.lh-34 {
  line-height: 3.4;
}

.lh-35 {
  line-height: 3.5;
}

.lh-36 {
  line-height: 3.6;
}

.lh-37 {
  line-height: 3.7;
}

.lh-38 {
  line-height: 3.8;
}

.lh-39 {
  line-height: 3.9;
}

.lh-40 {
  line-height: 4;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #262626;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: underline;
}

a {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a.button:hover {
  opacity: 1;
  -webkit-transition: opacity 0;
  transition: opacity 0;
  text-decoration: none;
}
@media (min-width: 992px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

object {
  pointer-events: none;
}

a.svg {
  display: inline-block;
  position: relative;
  z-index: 1;
}
a.svg span {
  display: inline-block;
}
a.svg span object {
  position: relative;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

button,
button:hover,
button:active,
button:focus {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  border: solid 1px #8b99a9;
  border-radius: 0;
  background-color: #ffffff;
}

input[type=checkbox] {
  all: revert;
}

hr {
  border-top: solid 1px #8b99a9;
  background: transparent;
  opacity: 1;
}

::-moz-selection {
  background-color: #000000;
  color: #eeeeee;
}

::selection {
  background-color: #000000;
  color: #eeeeee;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideAndHold {
  0%, 70% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideAndHold {
  0%, 70% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes purun {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.5, 1) translate(0%, 0%);
            transform: scale(1.5, 1) translate(0%, 0%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes purun {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.5, 1) translate(0%, 0%);
            transform: scale(1.5, 1) translate(0%, 0%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@-webkit-keyframes poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
.poyon {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: poyon;
          animation-name: poyon;
}

@-webkit-keyframes headerNavLine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes headerNavLine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  51% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes splashFadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
}
@keyframes splashFadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
}
.anime-container {
  overflow: hidden;
}

.anime {
  visibility: hidden;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.anime.animated {
  visibility: visible;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInFromLeft {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: slideInFromLeft;
          animation-name: slideInFromLeft;
}

@-webkit-keyframes slideOutFromLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideOutFromLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInFromRight {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: slideInFromRight;
          animation-name: slideInFromRight;
}

@-webkit-keyframes slideInFromBottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInFromBottom {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: slideInFromBottom;
          animation-name: slideInFromBottom;
}

@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInFromTop {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: slideInFromTop;
          animation-name: slideInFromTop;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInFromBottom {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInFromBottom {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fadeInFromBottom {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeInFromBottom;
          animation-name: fadeInFromBottom;
}

@-webkit-keyframes fadeOutFromBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
}

@keyframes fadeOutFromBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
}
@-webkit-keyframes fadeInFromTop {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInFromTop {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fadeInFromTop {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeInFromTop;
          animation-name: fadeInFromTop;
}

@-webkit-keyframes fadeInFromLeft {
  0% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInFromLeft {
  0% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.fadeInFromLeft {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeInFromLeft;
          animation-name: fadeInFromLeft;
}

@-webkit-keyframes fadeInFromRight {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInFromRight {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.fadeInFromRight {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: fadeInFromRight;
          animation-name: fadeInFromRight;
}

@-webkit-keyframes scaleFadeIn {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleFadeIn {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.scaleFadeIn {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: scaleFadeIn;
          animation-name: scaleFadeIn;
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.scaleIn {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-name: scaleIn;
          animation-name: scaleIn;
}

/* グラデーションアニメーションのキーフレームを定義 */
@-webkit-keyframes gradientFade {
  0% {
    -webkit-mask-position: 0 -150vw;
            mask-position: 0 -150vw;
  }
  100% {
    -webkit-mask-position: 0 100vh;
            mask-position: 0 100vh;
  }
}
@keyframes gradientFade {
  0% {
    -webkit-mask-position: 0 -150vw;
            mask-position: 0 -150vw;
  }
  100% {
    -webkit-mask-position: 0 100vh;
            mask-position: 0 100vh;
  }
}
/* temp */
@-webkit-keyframes open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideopen {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@keyframes slideopen {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@keyframes close {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@-webkit-keyframes external-link {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes external-link {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes move-y {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes move-y {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes move-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
}
@keyframes move-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
}
.anime-tsdu-0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}

.anime-tsdu-1 {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
}

.anime-tsdu-2 {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
}

.anime-tsdu-3 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.anime-tsdu-4 {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.anime-tsdu-5 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.anime-tsdu-6 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

.anime-tsdu-7 {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
}

.anime-tsdu-8 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
}

.anime-tsdu-9 {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
}

.anime-tsdu-10 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.anime-tsdu-11 {
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
}

.anime-tsdu-12 {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

.anime-tsdu-13 {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
}

.anime-tsdu-14 {
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
}

.anime-tsdu-15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.anime-tsdu-16 {
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
}

.anime-tsdu-17 {
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
}

.anime-tsdu-18 {
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
}

.anime-tsdu-19 {
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
}

.anime-tsdu-20 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.anime-tsdu-21 {
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
}

.anime-tsdu-22 {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
}

.anime-tsdu-23 {
  -webkit-animation-duration: 2.3s;
          animation-duration: 2.3s;
}

.anime-tsdu-24 {
  -webkit-animation-duration: 2.4s;
          animation-duration: 2.4s;
}

.anime-tsdu-25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.anime-tsdu-26 {
  -webkit-animation-duration: 2.6s;
          animation-duration: 2.6s;
}

.anime-tsdu-27 {
  -webkit-animation-duration: 2.7s;
          animation-duration: 2.7s;
}

.anime-tsdu-28 {
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
}

.anime-tsdu-29 {
  -webkit-animation-duration: 2.9s;
          animation-duration: 2.9s;
}

.anime-tsdu-30 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.anime-tsdu-31 {
  -webkit-animation-duration: 3.1s;
          animation-duration: 3.1s;
}

.anime-tsdu-32 {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
}

.anime-tsdu-33 {
  -webkit-animation-duration: 3.3s;
          animation-duration: 3.3s;
}

.anime-tsdu-34 {
  -webkit-animation-duration: 3.4s;
          animation-duration: 3.4s;
}

.anime-tsdu-35 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}

.anime-tsdu-36 {
  -webkit-animation-duration: 3.6s;
          animation-duration: 3.6s;
}

.anime-tsdu-37 {
  -webkit-animation-duration: 3.7s;
          animation-duration: 3.7s;
}

.anime-tsdu-38 {
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
}

.anime-tsdu-39 {
  -webkit-animation-duration: 3.9s;
          animation-duration: 3.9s;
}

.anime-tsdu-40 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.anime-tsdu-41 {
  -webkit-animation-duration: 4.1s;
          animation-duration: 4.1s;
}

.anime-tsdu-42 {
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
}

.anime-tsdu-43 {
  -webkit-animation-duration: 4.3s;
          animation-duration: 4.3s;
}

.anime-tsdu-44 {
  -webkit-animation-duration: 4.4s;
          animation-duration: 4.4s;
}

.anime-tsdu-45 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
}

.anime-tsdu-46 {
  -webkit-animation-duration: 4.6s;
          animation-duration: 4.6s;
}

.anime-tsdu-47 {
  -webkit-animation-duration: 4.7s;
          animation-duration: 4.7s;
}

.anime-tsdu-48 {
  -webkit-animation-duration: 4.8s;
          animation-duration: 4.8s;
}

.anime-tsdu-49 {
  -webkit-animation-duration: 4.9s;
          animation-duration: 4.9s;
}

.anime-tsdu-50 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

.anime-tsdu-51 {
  -webkit-animation-duration: 5.1s;
          animation-duration: 5.1s;
}

.anime-tsdu-52 {
  -webkit-animation-duration: 5.2s;
          animation-duration: 5.2s;
}

.anime-tsdu-53 {
  -webkit-animation-duration: 5.3s;
          animation-duration: 5.3s;
}

.anime-tsdu-54 {
  -webkit-animation-duration: 5.4s;
          animation-duration: 5.4s;
}

.anime-tsdu-55 {
  -webkit-animation-duration: 5.5s;
          animation-duration: 5.5s;
}

.anime-tsdu-56 {
  -webkit-animation-duration: 5.6s;
          animation-duration: 5.6s;
}

.anime-tsdu-57 {
  -webkit-animation-duration: 5.7s;
          animation-duration: 5.7s;
}

.anime-tsdu-58 {
  -webkit-animation-duration: 5.8s;
          animation-duration: 5.8s;
}

.anime-tsdu-59 {
  -webkit-animation-duration: 5.9s;
          animation-duration: 5.9s;
}

.anime-tsdu-60 {
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.anime-tsdu-61 {
  -webkit-animation-duration: 6.1s;
          animation-duration: 6.1s;
}

.anime-tsdu-62 {
  -webkit-animation-duration: 6.2s;
          animation-duration: 6.2s;
}

.anime-tsdu-63 {
  -webkit-animation-duration: 6.3s;
          animation-duration: 6.3s;
}

.anime-tsdu-64 {
  -webkit-animation-duration: 6.4s;
          animation-duration: 6.4s;
}

.anime-tsdu-65 {
  -webkit-animation-duration: 6.5s;
          animation-duration: 6.5s;
}

.anime-tsdu-66 {
  -webkit-animation-duration: 6.6s;
          animation-duration: 6.6s;
}

.anime-tsdu-67 {
  -webkit-animation-duration: 6.7s;
          animation-duration: 6.7s;
}

.anime-tsdu-68 {
  -webkit-animation-duration: 6.8s;
          animation-duration: 6.8s;
}

.anime-tsdu-69 {
  -webkit-animation-duration: 6.9s;
          animation-duration: 6.9s;
}

.anime-tsdu-70 {
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.anime-tsdu-71 {
  -webkit-animation-duration: 7.1s;
          animation-duration: 7.1s;
}

.anime-tsdu-72 {
  -webkit-animation-duration: 7.2s;
          animation-duration: 7.2s;
}

.anime-tsdu-73 {
  -webkit-animation-duration: 7.3s;
          animation-duration: 7.3s;
}

.anime-tsdu-74 {
  -webkit-animation-duration: 7.4s;
          animation-duration: 7.4s;
}

.anime-tsdu-75 {
  -webkit-animation-duration: 7.5s;
          animation-duration: 7.5s;
}

.anime-tsdu-76 {
  -webkit-animation-duration: 7.6s;
          animation-duration: 7.6s;
}

.anime-tsdu-77 {
  -webkit-animation-duration: 7.7s;
          animation-duration: 7.7s;
}

.anime-tsdu-78 {
  -webkit-animation-duration: 7.8s;
          animation-duration: 7.8s;
}

.anime-tsdu-79 {
  -webkit-animation-duration: 7.9s;
          animation-duration: 7.9s;
}

.anime-tsdu-80 {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
}

.anime-tsdu-81 {
  -webkit-animation-duration: 8.1s;
          animation-duration: 8.1s;
}

.anime-tsdu-82 {
  -webkit-animation-duration: 8.2s;
          animation-duration: 8.2s;
}

.anime-tsdu-83 {
  -webkit-animation-duration: 8.3s;
          animation-duration: 8.3s;
}

.anime-tsdu-84 {
  -webkit-animation-duration: 8.4s;
          animation-duration: 8.4s;
}

.anime-tsdu-85 {
  -webkit-animation-duration: 8.5s;
          animation-duration: 8.5s;
}

.anime-tsdu-86 {
  -webkit-animation-duration: 8.6s;
          animation-duration: 8.6s;
}

.anime-tsdu-87 {
  -webkit-animation-duration: 8.7s;
          animation-duration: 8.7s;
}

.anime-tsdu-88 {
  -webkit-animation-duration: 8.8s;
          animation-duration: 8.8s;
}

.anime-tsdu-89 {
  -webkit-animation-duration: 8.9s;
          animation-duration: 8.9s;
}

.anime-tsdu-90 {
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
}

.anime-tsdu-91 {
  -webkit-animation-duration: 9.1s;
          animation-duration: 9.1s;
}

.anime-tsdu-92 {
  -webkit-animation-duration: 9.2s;
          animation-duration: 9.2s;
}

.anime-tsdu-93 {
  -webkit-animation-duration: 9.3s;
          animation-duration: 9.3s;
}

.anime-tsdu-94 {
  -webkit-animation-duration: 9.4s;
          animation-duration: 9.4s;
}

.anime-tsdu-95 {
  -webkit-animation-duration: 9.5s;
          animation-duration: 9.5s;
}

.anime-tsdu-96 {
  -webkit-animation-duration: 9.6s;
          animation-duration: 9.6s;
}

.anime-tsdu-97 {
  -webkit-animation-duration: 9.7s;
          animation-duration: 9.7s;
}

.anime-tsdu-98 {
  -webkit-animation-duration: 9.8s;
          animation-duration: 9.8s;
}

.anime-tsdu-99 {
  -webkit-animation-duration: 9.9s;
          animation-duration: 9.9s;
}

.anime-tsdu-100 {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.anime-tsde-0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-0 {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
  }
}
.anime-tsde-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-1 {
    -webkit-animation-delay: 0.1s !important;
            animation-delay: 0.1s !important;
  }
}
.anime-tsde-2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-2 {
    -webkit-animation-delay: 0.2s !important;
            animation-delay: 0.2s !important;
  }
}
.anime-tsde-3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-3 {
    -webkit-animation-delay: 0.3s !important;
            animation-delay: 0.3s !important;
  }
}
.anime-tsde-4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-4 {
    -webkit-animation-delay: 0.4s !important;
            animation-delay: 0.4s !important;
  }
}
.anime-tsde-5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-5 {
    -webkit-animation-delay: 0.5s !important;
            animation-delay: 0.5s !important;
  }
}
.anime-tsde-6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-6 {
    -webkit-animation-delay: 0.6s !important;
            animation-delay: 0.6s !important;
  }
}
.anime-tsde-7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-7 {
    -webkit-animation-delay: 0.7s !important;
            animation-delay: 0.7s !important;
  }
}
.anime-tsde-8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-8 {
    -webkit-animation-delay: 0.8s !important;
            animation-delay: 0.8s !important;
  }
}
.anime-tsde-9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-9 {
    -webkit-animation-delay: 0.9s !important;
            animation-delay: 0.9s !important;
  }
}
.anime-tsde-10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-10 {
    -webkit-animation-delay: 1s !important;
            animation-delay: 1s !important;
  }
}
.anime-tsde-11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-11 {
    -webkit-animation-delay: 1.1s !important;
            animation-delay: 1.1s !important;
  }
}
.anime-tsde-12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-12 {
    -webkit-animation-delay: 1.2s !important;
            animation-delay: 1.2s !important;
  }
}
.anime-tsde-13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-13 {
    -webkit-animation-delay: 1.3s !important;
            animation-delay: 1.3s !important;
  }
}
.anime-tsde-14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-14 {
    -webkit-animation-delay: 1.4s !important;
            animation-delay: 1.4s !important;
  }
}
.anime-tsde-15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-15 {
    -webkit-animation-delay: 1.5s !important;
            animation-delay: 1.5s !important;
  }
}
.anime-tsde-16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-16 {
    -webkit-animation-delay: 1.6s !important;
            animation-delay: 1.6s !important;
  }
}
.anime-tsde-17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-17 {
    -webkit-animation-delay: 1.7s !important;
            animation-delay: 1.7s !important;
  }
}
.anime-tsde-18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-18 {
    -webkit-animation-delay: 1.8s !important;
            animation-delay: 1.8s !important;
  }
}
.anime-tsde-19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-19 {
    -webkit-animation-delay: 1.9s !important;
            animation-delay: 1.9s !important;
  }
}
.anime-tsde-20 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-20 {
    -webkit-animation-delay: 2s !important;
            animation-delay: 2s !important;
  }
}
.anime-tsde-21 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-21 {
    -webkit-animation-delay: 2.1s !important;
            animation-delay: 2.1s !important;
  }
}
.anime-tsde-22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-22 {
    -webkit-animation-delay: 2.2s !important;
            animation-delay: 2.2s !important;
  }
}
.anime-tsde-23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-23 {
    -webkit-animation-delay: 2.3s !important;
            animation-delay: 2.3s !important;
  }
}
.anime-tsde-24 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-24 {
    -webkit-animation-delay: 2.4s !important;
            animation-delay: 2.4s !important;
  }
}
.anime-tsde-25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-25 {
    -webkit-animation-delay: 2.5s !important;
            animation-delay: 2.5s !important;
  }
}
.anime-tsde-26 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-26 {
    -webkit-animation-delay: 2.6s !important;
            animation-delay: 2.6s !important;
  }
}
.anime-tsde-27 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-27 {
    -webkit-animation-delay: 2.7s !important;
            animation-delay: 2.7s !important;
  }
}
.anime-tsde-28 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-28 {
    -webkit-animation-delay: 2.8s !important;
            animation-delay: 2.8s !important;
  }
}
.anime-tsde-29 {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-29 {
    -webkit-animation-delay: 2.9s !important;
            animation-delay: 2.9s !important;
  }
}
.anime-tsde-30 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-30 {
    -webkit-animation-delay: 3s !important;
            animation-delay: 3s !important;
  }
}
.anime-tsde-31 {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-31 {
    -webkit-animation-delay: 3.1s !important;
            animation-delay: 3.1s !important;
  }
}
.anime-tsde-32 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-32 {
    -webkit-animation-delay: 3.2s !important;
            animation-delay: 3.2s !important;
  }
}
.anime-tsde-33 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-33 {
    -webkit-animation-delay: 3.3s !important;
            animation-delay: 3.3s !important;
  }
}
.anime-tsde-34 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-34 {
    -webkit-animation-delay: 3.4s !important;
            animation-delay: 3.4s !important;
  }
}
.anime-tsde-35 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-35 {
    -webkit-animation-delay: 3.5s !important;
            animation-delay: 3.5s !important;
  }
}
.anime-tsde-36 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-36 {
    -webkit-animation-delay: 3.6s !important;
            animation-delay: 3.6s !important;
  }
}
.anime-tsde-37 {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-37 {
    -webkit-animation-delay: 3.7s !important;
            animation-delay: 3.7s !important;
  }
}
.anime-tsde-38 {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-38 {
    -webkit-animation-delay: 3.8s !important;
            animation-delay: 3.8s !important;
  }
}
.anime-tsde-39 {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-39 {
    -webkit-animation-delay: 3.9s !important;
            animation-delay: 3.9s !important;
  }
}
.anime-tsde-40 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-40 {
    -webkit-animation-delay: 4s !important;
            animation-delay: 4s !important;
  }
}
.anime-tsde-41 {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-41 {
    -webkit-animation-delay: 4.1s !important;
            animation-delay: 4.1s !important;
  }
}
.anime-tsde-42 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-42 {
    -webkit-animation-delay: 4.2s !important;
            animation-delay: 4.2s !important;
  }
}
.anime-tsde-43 {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-43 {
    -webkit-animation-delay: 4.3s !important;
            animation-delay: 4.3s !important;
  }
}
.anime-tsde-44 {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-44 {
    -webkit-animation-delay: 4.4s !important;
            animation-delay: 4.4s !important;
  }
}
.anime-tsde-45 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-45 {
    -webkit-animation-delay: 4.5s !important;
            animation-delay: 4.5s !important;
  }
}
.anime-tsde-46 {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-46 {
    -webkit-animation-delay: 4.6s !important;
            animation-delay: 4.6s !important;
  }
}
.anime-tsde-47 {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-47 {
    -webkit-animation-delay: 4.7s !important;
            animation-delay: 4.7s !important;
  }
}
.anime-tsde-48 {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-48 {
    -webkit-animation-delay: 4.8s !important;
            animation-delay: 4.8s !important;
  }
}
.anime-tsde-49 {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-49 {
    -webkit-animation-delay: 4.9s !important;
            animation-delay: 4.9s !important;
  }
}
.anime-tsde-50 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-50 {
    -webkit-animation-delay: 5s !important;
            animation-delay: 5s !important;
  }
}
.anime-tsde-51 {
  -webkit-animation-delay: 5.1s;
          animation-delay: 5.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-51 {
    -webkit-animation-delay: 5.1s !important;
            animation-delay: 5.1s !important;
  }
}
.anime-tsde-52 {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-52 {
    -webkit-animation-delay: 5.2s !important;
            animation-delay: 5.2s !important;
  }
}
.anime-tsde-53 {
  -webkit-animation-delay: 5.3s;
          animation-delay: 5.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-53 {
    -webkit-animation-delay: 5.3s !important;
            animation-delay: 5.3s !important;
  }
}
.anime-tsde-54 {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-54 {
    -webkit-animation-delay: 5.4s !important;
            animation-delay: 5.4s !important;
  }
}
.anime-tsde-55 {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-55 {
    -webkit-animation-delay: 5.5s !important;
            animation-delay: 5.5s !important;
  }
}
.anime-tsde-56 {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-56 {
    -webkit-animation-delay: 5.6s !important;
            animation-delay: 5.6s !important;
  }
}
.anime-tsde-57 {
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-57 {
    -webkit-animation-delay: 5.7s !important;
            animation-delay: 5.7s !important;
  }
}
.anime-tsde-58 {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-58 {
    -webkit-animation-delay: 5.8s !important;
            animation-delay: 5.8s !important;
  }
}
.anime-tsde-59 {
  -webkit-animation-delay: 5.9s;
          animation-delay: 5.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-59 {
    -webkit-animation-delay: 5.9s !important;
            animation-delay: 5.9s !important;
  }
}
.anime-tsde-60 {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-60 {
    -webkit-animation-delay: 6s !important;
            animation-delay: 6s !important;
  }
}
.anime-tsde-61 {
  -webkit-animation-delay: 6.1s;
          animation-delay: 6.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-61 {
    -webkit-animation-delay: 6.1s !important;
            animation-delay: 6.1s !important;
  }
}
.anime-tsde-62 {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-62 {
    -webkit-animation-delay: 6.2s !important;
            animation-delay: 6.2s !important;
  }
}
.anime-tsde-63 {
  -webkit-animation-delay: 6.3s;
          animation-delay: 6.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-63 {
    -webkit-animation-delay: 6.3s !important;
            animation-delay: 6.3s !important;
  }
}
.anime-tsde-64 {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-64 {
    -webkit-animation-delay: 6.4s !important;
            animation-delay: 6.4s !important;
  }
}
.anime-tsde-65 {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-65 {
    -webkit-animation-delay: 6.5s !important;
            animation-delay: 6.5s !important;
  }
}
.anime-tsde-66 {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-66 {
    -webkit-animation-delay: 6.6s !important;
            animation-delay: 6.6s !important;
  }
}
.anime-tsde-67 {
  -webkit-animation-delay: 6.7s;
          animation-delay: 6.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-67 {
    -webkit-animation-delay: 6.7s !important;
            animation-delay: 6.7s !important;
  }
}
.anime-tsde-68 {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-68 {
    -webkit-animation-delay: 6.8s !important;
            animation-delay: 6.8s !important;
  }
}
.anime-tsde-69 {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-69 {
    -webkit-animation-delay: 6.9s !important;
            animation-delay: 6.9s !important;
  }
}
.anime-tsde-70 {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-70 {
    -webkit-animation-delay: 7s !important;
            animation-delay: 7s !important;
  }
}
.anime-tsde-71 {
  -webkit-animation-delay: 7.1s;
          animation-delay: 7.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-71 {
    -webkit-animation-delay: 7.1s !important;
            animation-delay: 7.1s !important;
  }
}
.anime-tsde-72 {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-72 {
    -webkit-animation-delay: 7.2s !important;
            animation-delay: 7.2s !important;
  }
}
.anime-tsde-73 {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-73 {
    -webkit-animation-delay: 7.3s !important;
            animation-delay: 7.3s !important;
  }
}
.anime-tsde-74 {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-74 {
    -webkit-animation-delay: 7.4s !important;
            animation-delay: 7.4s !important;
  }
}
.anime-tsde-75 {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-75 {
    -webkit-animation-delay: 7.5s !important;
            animation-delay: 7.5s !important;
  }
}
.anime-tsde-76 {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-76 {
    -webkit-animation-delay: 7.6s !important;
            animation-delay: 7.6s !important;
  }
}
.anime-tsde-77 {
  -webkit-animation-delay: 7.7s;
          animation-delay: 7.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-77 {
    -webkit-animation-delay: 7.7s !important;
            animation-delay: 7.7s !important;
  }
}
.anime-tsde-78 {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-78 {
    -webkit-animation-delay: 7.8s !important;
            animation-delay: 7.8s !important;
  }
}
.anime-tsde-79 {
  -webkit-animation-delay: 7.9s;
          animation-delay: 7.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-79 {
    -webkit-animation-delay: 7.9s !important;
            animation-delay: 7.9s !important;
  }
}
.anime-tsde-80 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-80 {
    -webkit-animation-delay: 8s !important;
            animation-delay: 8s !important;
  }
}
.anime-tsde-81 {
  -webkit-animation-delay: 8.1s;
          animation-delay: 8.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-81 {
    -webkit-animation-delay: 8.1s !important;
            animation-delay: 8.1s !important;
  }
}
.anime-tsde-82 {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-82 {
    -webkit-animation-delay: 8.2s !important;
            animation-delay: 8.2s !important;
  }
}
.anime-tsde-83 {
  -webkit-animation-delay: 8.3s;
          animation-delay: 8.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-83 {
    -webkit-animation-delay: 8.3s !important;
            animation-delay: 8.3s !important;
  }
}
.anime-tsde-84 {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-84 {
    -webkit-animation-delay: 8.4s !important;
            animation-delay: 8.4s !important;
  }
}
.anime-tsde-85 {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-85 {
    -webkit-animation-delay: 8.5s !important;
            animation-delay: 8.5s !important;
  }
}
.anime-tsde-86 {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-86 {
    -webkit-animation-delay: 8.6s !important;
            animation-delay: 8.6s !important;
  }
}
.anime-tsde-87 {
  -webkit-animation-delay: 8.7s;
          animation-delay: 8.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-87 {
    -webkit-animation-delay: 8.7s !important;
            animation-delay: 8.7s !important;
  }
}
.anime-tsde-88 {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-88 {
    -webkit-animation-delay: 8.8s !important;
            animation-delay: 8.8s !important;
  }
}
.anime-tsde-89 {
  -webkit-animation-delay: 8.9s;
          animation-delay: 8.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-89 {
    -webkit-animation-delay: 8.9s !important;
            animation-delay: 8.9s !important;
  }
}
.anime-tsde-90 {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-90 {
    -webkit-animation-delay: 9s !important;
            animation-delay: 9s !important;
  }
}
.anime-tsde-91 {
  -webkit-animation-delay: 9.1s;
          animation-delay: 9.1s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-91 {
    -webkit-animation-delay: 9.1s !important;
            animation-delay: 9.1s !important;
  }
}
.anime-tsde-92 {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-92 {
    -webkit-animation-delay: 9.2s !important;
            animation-delay: 9.2s !important;
  }
}
.anime-tsde-93 {
  -webkit-animation-delay: 9.3s;
          animation-delay: 9.3s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-93 {
    -webkit-animation-delay: 9.3s !important;
            animation-delay: 9.3s !important;
  }
}
.anime-tsde-94 {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-94 {
    -webkit-animation-delay: 9.4s !important;
            animation-delay: 9.4s !important;
  }
}
.anime-tsde-95 {
  -webkit-animation-delay: 9.5s;
          animation-delay: 9.5s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-95 {
    -webkit-animation-delay: 9.5s !important;
            animation-delay: 9.5s !important;
  }
}
.anime-tsde-96 {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-96 {
    -webkit-animation-delay: 9.6s !important;
            animation-delay: 9.6s !important;
  }
}
.anime-tsde-97 {
  -webkit-animation-delay: 9.7s;
          animation-delay: 9.7s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-97 {
    -webkit-animation-delay: 9.7s !important;
            animation-delay: 9.7s !important;
  }
}
.anime-tsde-98 {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-98 {
    -webkit-animation-delay: 9.8s !important;
            animation-delay: 9.8s !important;
  }
}
.anime-tsde-99 {
  -webkit-animation-delay: 9.9s;
          animation-delay: 9.9s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-99 {
    -webkit-animation-delay: 9.9s !important;
            animation-delay: 9.9s !important;
  }
}
.anime-tsde-100 {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@media (max-width: 991.98px) {
  .anime-tsde-sp-100 {
    -webkit-animation-delay: 10s !important;
            animation-delay: 10s !important;
  }
}
.barlow {
  font-family: "Barlow", sans-serif;
}

.fs-8 {
  font-size: 0.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-8 {
    font-size: 0.5rem !important;
  }
}

.fs-9 {
  font-size: 0.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-9 {
    font-size: 0.5625rem !important;
  }
}

.fs-10 {
  font-size: 0.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-10 {
    font-size: 0.625rem !important;
  }
}

.fs-11 {
  font-size: 0.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-11 {
    font-size: 0.6875rem !important;
  }
}

.fs-12 {
  font-size: 0.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-12 {
    font-size: 0.75rem !important;
  }
}

.fs-13 {
  font-size: 0.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-13 {
    font-size: 0.8125rem !important;
  }
}

.fs-14 {
  font-size: 0.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-14 {
    font-size: 0.875rem !important;
  }
}

.fs-15 {
  font-size: 0.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-15 {
    font-size: 0.9375rem !important;
  }
}

.fs-16 {
  font-size: 1rem !important;
}
@media (max-width: 767.98px) {
  .fs-16 {
    font-size: 1rem !important;
  }
}

.fs-17 {
  font-size: 1.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-17 {
    font-size: 1.0625rem !important;
  }
}

.fs-18 {
  font-size: 1.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-18 {
    font-size: 1.125rem !important;
  }
}

.fs-19 {
  font-size: 1.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-19 {
    font-size: 1.1875rem !important;
  }
}

.fs-20 {
  font-size: 1.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-20 {
    font-size: 1.25rem !important;
  }
}

.fs-21 {
  font-size: 1.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-21 {
    font-size: 1.3125rem !important;
  }
}

.fs-22 {
  font-size: 1.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-22 {
    font-size: 1.375rem !important;
  }
}

.fs-23 {
  font-size: 1.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-23 {
    font-size: 1.4375rem !important;
  }
}

.fs-24 {
  font-size: 1.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-24 {
    font-size: 1.5rem !important;
  }
}

.fs-25 {
  font-size: 1.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-25 {
    font-size: 1.5625rem !important;
  }
}

.fs-26 {
  font-size: 1.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-26 {
    font-size: 1.625rem !important;
  }
}

.fs-27 {
  font-size: 1.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-27 {
    font-size: 1.6875rem !important;
  }
}

.fs-28 {
  font-size: 1.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-28 {
    font-size: 1.75rem !important;
  }
}

.fs-29 {
  font-size: 1.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-29 {
    font-size: 1.8125rem !important;
  }
}

.fs-30 {
  font-size: 1.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-30 {
    font-size: 1.875rem !important;
  }
}

.fs-31 {
  font-size: 1.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-31 {
    font-size: 1.9375rem !important;
  }
}

.fs-32 {
  font-size: 2rem !important;
}
@media (max-width: 767.98px) {
  .fs-32 {
    font-size: 2rem !important;
  }
}

.fs-33 {
  font-size: 2.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-33 {
    font-size: 2.0625rem !important;
  }
}

.fs-34 {
  font-size: 2.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-34 {
    font-size: 2.125rem !important;
  }
}

.fs-35 {
  font-size: 2.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-35 {
    font-size: 2.1875rem !important;
  }
}

.fs-36 {
  font-size: 2.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-36 {
    font-size: 2.25rem !important;
  }
}

.fs-37 {
  font-size: 2.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-37 {
    font-size: 2.3125rem !important;
  }
}

.fs-38 {
  font-size: 2.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-38 {
    font-size: 2.375rem !important;
  }
}

.fs-39 {
  font-size: 2.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-39 {
    font-size: 2.4375rem !important;
  }
}

.fs-40 {
  font-size: 2.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-40 {
    font-size: 2.5rem !important;
  }
}

.fs-41 {
  font-size: 2.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-41 {
    font-size: 2.5625rem !important;
  }
}

.fs-42 {
  font-size: 2.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-42 {
    font-size: 2.625rem !important;
  }
}

.fs-43 {
  font-size: 2.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-43 {
    font-size: 2.6875rem !important;
  }
}

.fs-44 {
  font-size: 2.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-44 {
    font-size: 2.75rem !important;
  }
}

.fs-45 {
  font-size: 2.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-45 {
    font-size: 2.8125rem !important;
  }
}

.fs-46 {
  font-size: 2.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-46 {
    font-size: 2.875rem !important;
  }
}

.fs-47 {
  font-size: 2.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-47 {
    font-size: 2.9375rem !important;
  }
}

.fs-48 {
  font-size: 3rem !important;
}
@media (max-width: 767.98px) {
  .fs-48 {
    font-size: 3rem !important;
  }
}

.fs-49 {
  font-size: 3.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-49 {
    font-size: 3.0625rem !important;
  }
}

.fs-50 {
  font-size: 3.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-50 {
    font-size: 3.125rem !important;
  }
}

.fs-51 {
  font-size: 3.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-51 {
    font-size: 3.1875rem !important;
  }
}

.fs-52 {
  font-size: 3.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-52 {
    font-size: 3.25rem !important;
  }
}

.fs-53 {
  font-size: 3.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-53 {
    font-size: 3.3125rem !important;
  }
}

.fs-54 {
  font-size: 3.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-54 {
    font-size: 3.375rem !important;
  }
}

.fs-55 {
  font-size: 3.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-55 {
    font-size: 3.4375rem !important;
  }
}

.fs-56 {
  font-size: 3.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-56 {
    font-size: 3.5rem !important;
  }
}

.fs-57 {
  font-size: 3.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-57 {
    font-size: 3.5625rem !important;
  }
}

.fs-58 {
  font-size: 3.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-58 {
    font-size: 3.625rem !important;
  }
}

.fs-59 {
  font-size: 3.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-59 {
    font-size: 3.6875rem !important;
  }
}

.fs-60 {
  font-size: 3.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-60 {
    font-size: 3.75rem !important;
  }
}

.fs-61 {
  font-size: 3.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-61 {
    font-size: 3.8125rem !important;
  }
}

.fs-62 {
  font-size: 3.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-62 {
    font-size: 3.875rem !important;
  }
}

.fs-63 {
  font-size: 3.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-63 {
    font-size: 3.9375rem !important;
  }
}

.fs-64 {
  font-size: 4rem !important;
}
@media (max-width: 767.98px) {
  .fs-64 {
    font-size: 4rem !important;
  }
}

.fs-65 {
  font-size: 4.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-65 {
    font-size: 4.0625rem !important;
  }
}

.fs-66 {
  font-size: 4.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-66 {
    font-size: 4.125rem !important;
  }
}

.fs-67 {
  font-size: 4.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-67 {
    font-size: 4.1875rem !important;
  }
}

.fs-68 {
  font-size: 4.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-68 {
    font-size: 4.25rem !important;
  }
}

.fs-69 {
  font-size: 4.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-69 {
    font-size: 4.3125rem !important;
  }
}

.fs-70 {
  font-size: 4.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-70 {
    font-size: 4.375rem !important;
  }
}

.fs-71 {
  font-size: 4.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-71 {
    font-size: 4.4375rem !important;
  }
}

.fs-72 {
  font-size: 4.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-72 {
    font-size: 4.5rem !important;
  }
}

.fs-73 {
  font-size: 4.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-73 {
    font-size: 4.5625rem !important;
  }
}

.fs-74 {
  font-size: 4.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-74 {
    font-size: 4.625rem !important;
  }
}

.fs-75 {
  font-size: 4.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-75 {
    font-size: 4.6875rem !important;
  }
}

.fs-76 {
  font-size: 4.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-76 {
    font-size: 4.75rem !important;
  }
}

.fs-77 {
  font-size: 4.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-77 {
    font-size: 4.8125rem !important;
  }
}

.fs-78 {
  font-size: 4.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-78 {
    font-size: 4.875rem !important;
  }
}

.fs-79 {
  font-size: 4.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-79 {
    font-size: 4.9375rem !important;
  }
}

.fs-80 {
  font-size: 5rem !important;
}
@media (max-width: 767.98px) {
  .fs-80 {
    font-size: 5rem !important;
  }
}

.fs-81 {
  font-size: 5.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-81 {
    font-size: 5.0625rem !important;
  }
}

.fs-82 {
  font-size: 5.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-82 {
    font-size: 5.125rem !important;
  }
}

.fs-83 {
  font-size: 5.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-83 {
    font-size: 5.1875rem !important;
  }
}

.fs-84 {
  font-size: 5.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-84 {
    font-size: 5.25rem !important;
  }
}

.fs-85 {
  font-size: 5.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-85 {
    font-size: 5.3125rem !important;
  }
}

.fs-86 {
  font-size: 5.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-86 {
    font-size: 5.375rem !important;
  }
}

.fs-87 {
  font-size: 5.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-87 {
    font-size: 5.4375rem !important;
  }
}

.fs-88 {
  font-size: 5.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-88 {
    font-size: 5.5rem !important;
  }
}

.fs-89 {
  font-size: 5.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-89 {
    font-size: 5.5625rem !important;
  }
}

.fs-90 {
  font-size: 5.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-90 {
    font-size: 5.625rem !important;
  }
}

.fs-91 {
  font-size: 5.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-91 {
    font-size: 5.6875rem !important;
  }
}

.fs-92 {
  font-size: 5.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-92 {
    font-size: 5.75rem !important;
  }
}

.fs-93 {
  font-size: 5.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-93 {
    font-size: 5.8125rem !important;
  }
}

.fs-94 {
  font-size: 5.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-94 {
    font-size: 5.875rem !important;
  }
}

.fs-95 {
  font-size: 5.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-95 {
    font-size: 5.9375rem !important;
  }
}

.fs-96 {
  font-size: 6rem !important;
}
@media (max-width: 767.98px) {
  .fs-96 {
    font-size: 6rem !important;
  }
}

.fs-97 {
  font-size: 6.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-97 {
    font-size: 6.0625rem !important;
  }
}

.fs-98 {
  font-size: 6.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-98 {
    font-size: 6.125rem !important;
  }
}

.fs-99 {
  font-size: 6.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-99 {
    font-size: 6.1875rem !important;
  }
}

.fs-100 {
  font-size: 6.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-100 {
    font-size: 6.25rem !important;
  }
}

.fs-101 {
  font-size: 6.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-101 {
    font-size: 6.3125rem !important;
  }
}

.fs-102 {
  font-size: 6.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-102 {
    font-size: 6.375rem !important;
  }
}

.fs-103 {
  font-size: 6.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-103 {
    font-size: 6.4375rem !important;
  }
}

.fs-104 {
  font-size: 6.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-104 {
    font-size: 6.5rem !important;
  }
}

.fs-105 {
  font-size: 6.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-105 {
    font-size: 6.5625rem !important;
  }
}

.fs-106 {
  font-size: 6.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-106 {
    font-size: 6.625rem !important;
  }
}

.fs-107 {
  font-size: 6.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-107 {
    font-size: 6.6875rem !important;
  }
}

.fs-108 {
  font-size: 6.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-108 {
    font-size: 6.75rem !important;
  }
}

.fs-109 {
  font-size: 6.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-109 {
    font-size: 6.8125rem !important;
  }
}

.fs-110 {
  font-size: 6.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-110 {
    font-size: 6.875rem !important;
  }
}

.fs-111 {
  font-size: 6.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-111 {
    font-size: 6.9375rem !important;
  }
}

.fs-112 {
  font-size: 7rem !important;
}
@media (max-width: 767.98px) {
  .fs-112 {
    font-size: 7rem !important;
  }
}

.fs-113 {
  font-size: 7.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-113 {
    font-size: 7.0625rem !important;
  }
}

.fs-114 {
  font-size: 7.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-114 {
    font-size: 7.125rem !important;
  }
}

.fs-115 {
  font-size: 7.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-115 {
    font-size: 7.1875rem !important;
  }
}

.fs-116 {
  font-size: 7.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-116 {
    font-size: 7.25rem !important;
  }
}

.fs-117 {
  font-size: 7.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-117 {
    font-size: 7.3125rem !important;
  }
}

.fs-118 {
  font-size: 7.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-118 {
    font-size: 7.375rem !important;
  }
}

.fs-119 {
  font-size: 7.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-119 {
    font-size: 7.4375rem !important;
  }
}

.fs-120 {
  font-size: 7.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-120 {
    font-size: 7.5rem !important;
  }
}

.fs-121 {
  font-size: 7.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-121 {
    font-size: 7.5625rem !important;
  }
}

.fs-122 {
  font-size: 7.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-122 {
    font-size: 7.625rem !important;
  }
}

.fs-123 {
  font-size: 7.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-123 {
    font-size: 7.6875rem !important;
  }
}

.fs-124 {
  font-size: 7.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-124 {
    font-size: 7.75rem !important;
  }
}

.fs-125 {
  font-size: 7.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-125 {
    font-size: 7.8125rem !important;
  }
}

.fs-126 {
  font-size: 7.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-126 {
    font-size: 7.875rem !important;
  }
}

.fs-127 {
  font-size: 7.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-127 {
    font-size: 7.9375rem !important;
  }
}

.fs-128 {
  font-size: 8rem !important;
}
@media (max-width: 767.98px) {
  .fs-128 {
    font-size: 8rem !important;
  }
}

.fs-129 {
  font-size: 8.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-129 {
    font-size: 8.0625rem !important;
  }
}

.fs-130 {
  font-size: 8.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-130 {
    font-size: 8.125rem !important;
  }
}

.fs-131 {
  font-size: 8.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-131 {
    font-size: 8.1875rem !important;
  }
}

.fs-132 {
  font-size: 8.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-132 {
    font-size: 8.25rem !important;
  }
}

.fs-133 {
  font-size: 8.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-133 {
    font-size: 8.3125rem !important;
  }
}

.fs-134 {
  font-size: 8.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-134 {
    font-size: 8.375rem !important;
  }
}

.fs-135 {
  font-size: 8.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-135 {
    font-size: 8.4375rem !important;
  }
}

.fs-136 {
  font-size: 8.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-136 {
    font-size: 8.5rem !important;
  }
}

.fs-137 {
  font-size: 8.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-137 {
    font-size: 8.5625rem !important;
  }
}

.fs-138 {
  font-size: 8.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-138 {
    font-size: 8.625rem !important;
  }
}

.fs-139 {
  font-size: 8.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-139 {
    font-size: 8.6875rem !important;
  }
}

.fs-140 {
  font-size: 8.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-140 {
    font-size: 8.75rem !important;
  }
}

.fs-141 {
  font-size: 8.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-141 {
    font-size: 8.8125rem !important;
  }
}

.fs-142 {
  font-size: 8.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-142 {
    font-size: 8.875rem !important;
  }
}

.fs-143 {
  font-size: 8.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-143 {
    font-size: 8.9375rem !important;
  }
}

.fs-144 {
  font-size: 9rem !important;
}
@media (max-width: 767.98px) {
  .fs-144 {
    font-size: 9rem !important;
  }
}

.fs-145 {
  font-size: 9.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-145 {
    font-size: 9.0625rem !important;
  }
}

.fs-146 {
  font-size: 9.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-146 {
    font-size: 9.125rem !important;
  }
}

.fs-147 {
  font-size: 9.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-147 {
    font-size: 9.1875rem !important;
  }
}

.fs-148 {
  font-size: 9.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-148 {
    font-size: 9.25rem !important;
  }
}

.fs-149 {
  font-size: 9.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-149 {
    font-size: 9.3125rem !important;
  }
}

.fs-150 {
  font-size: 9.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-150 {
    font-size: 9.375rem !important;
  }
}

.fs-151 {
  font-size: 9.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-151 {
    font-size: 9.4375rem !important;
  }
}

.fs-152 {
  font-size: 9.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-152 {
    font-size: 9.5rem !important;
  }
}

.fs-153 {
  font-size: 9.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-153 {
    font-size: 9.5625rem !important;
  }
}

.fs-154 {
  font-size: 9.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-154 {
    font-size: 9.625rem !important;
  }
}

.fs-155 {
  font-size: 9.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-155 {
    font-size: 9.6875rem !important;
  }
}

.fs-156 {
  font-size: 9.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-156 {
    font-size: 9.75rem !important;
  }
}

.fs-157 {
  font-size: 9.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-157 {
    font-size: 9.8125rem !important;
  }
}

.fs-158 {
  font-size: 9.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-158 {
    font-size: 9.875rem !important;
  }
}

.fs-159 {
  font-size: 9.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-159 {
    font-size: 9.9375rem !important;
  }
}

.fs-160 {
  font-size: 10rem !important;
}
@media (max-width: 767.98px) {
  .fs-160 {
    font-size: 10rem !important;
  }
}

.fs-161 {
  font-size: 10.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-161 {
    font-size: 10.0625rem !important;
  }
}

.fs-162 {
  font-size: 10.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-162 {
    font-size: 10.125rem !important;
  }
}

.fs-163 {
  font-size: 10.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-163 {
    font-size: 10.1875rem !important;
  }
}

.fs-164 {
  font-size: 10.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-164 {
    font-size: 10.25rem !important;
  }
}

.fs-165 {
  font-size: 10.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-165 {
    font-size: 10.3125rem !important;
  }
}

.fs-166 {
  font-size: 10.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-166 {
    font-size: 10.375rem !important;
  }
}

.fs-167 {
  font-size: 10.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-167 {
    font-size: 10.4375rem !important;
  }
}

.fs-168 {
  font-size: 10.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-168 {
    font-size: 10.5rem !important;
  }
}

.fs-169 {
  font-size: 10.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-169 {
    font-size: 10.5625rem !important;
  }
}

.fs-170 {
  font-size: 10.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-170 {
    font-size: 10.625rem !important;
  }
}

.fs-171 {
  font-size: 10.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-171 {
    font-size: 10.6875rem !important;
  }
}

.fs-172 {
  font-size: 10.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-172 {
    font-size: 10.75rem !important;
  }
}

.fs-173 {
  font-size: 10.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-173 {
    font-size: 10.8125rem !important;
  }
}

.fs-174 {
  font-size: 10.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-174 {
    font-size: 10.875rem !important;
  }
}

.fs-175 {
  font-size: 10.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-175 {
    font-size: 10.9375rem !important;
  }
}

.fs-176 {
  font-size: 11rem !important;
}
@media (max-width: 767.98px) {
  .fs-176 {
    font-size: 11rem !important;
  }
}

.fs-177 {
  font-size: 11.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-177 {
    font-size: 11.0625rem !important;
  }
}

.fs-178 {
  font-size: 11.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-178 {
    font-size: 11.125rem !important;
  }
}

.fs-179 {
  font-size: 11.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-179 {
    font-size: 11.1875rem !important;
  }
}

.fs-180 {
  font-size: 11.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-180 {
    font-size: 11.25rem !important;
  }
}

.fs-181 {
  font-size: 11.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-181 {
    font-size: 11.3125rem !important;
  }
}

.fs-182 {
  font-size: 11.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-182 {
    font-size: 11.375rem !important;
  }
}

.fs-183 {
  font-size: 11.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-183 {
    font-size: 11.4375rem !important;
  }
}

.fs-184 {
  font-size: 11.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-184 {
    font-size: 11.5rem !important;
  }
}

.fs-185 {
  font-size: 11.5625rem !important;
}
@media (max-width: 767.98px) {
  .fs-185 {
    font-size: 11.5625rem !important;
  }
}

.fs-186 {
  font-size: 11.625rem !important;
}
@media (max-width: 767.98px) {
  .fs-186 {
    font-size: 11.625rem !important;
  }
}

.fs-187 {
  font-size: 11.6875rem !important;
}
@media (max-width: 767.98px) {
  .fs-187 {
    font-size: 11.6875rem !important;
  }
}

.fs-188 {
  font-size: 11.75rem !important;
}
@media (max-width: 767.98px) {
  .fs-188 {
    font-size: 11.75rem !important;
  }
}

.fs-189 {
  font-size: 11.8125rem !important;
}
@media (max-width: 767.98px) {
  .fs-189 {
    font-size: 11.8125rem !important;
  }
}

.fs-190 {
  font-size: 11.875rem !important;
}
@media (max-width: 767.98px) {
  .fs-190 {
    font-size: 11.875rem !important;
  }
}

.fs-191 {
  font-size: 11.9375rem !important;
}
@media (max-width: 767.98px) {
  .fs-191 {
    font-size: 11.9375rem !important;
  }
}

.fs-192 {
  font-size: 12rem !important;
}
@media (max-width: 767.98px) {
  .fs-192 {
    font-size: 12rem !important;
  }
}

.fs-193 {
  font-size: 12.0625rem !important;
}
@media (max-width: 767.98px) {
  .fs-193 {
    font-size: 12.0625rem !important;
  }
}

.fs-194 {
  font-size: 12.125rem !important;
}
@media (max-width: 767.98px) {
  .fs-194 {
    font-size: 12.125rem !important;
  }
}

.fs-195 {
  font-size: 12.1875rem !important;
}
@media (max-width: 767.98px) {
  .fs-195 {
    font-size: 12.1875rem !important;
  }
}

.fs-196 {
  font-size: 12.25rem !important;
}
@media (max-width: 767.98px) {
  .fs-196 {
    font-size: 12.25rem !important;
  }
}

.fs-197 {
  font-size: 12.3125rem !important;
}
@media (max-width: 767.98px) {
  .fs-197 {
    font-size: 12.3125rem !important;
  }
}

.fs-198 {
  font-size: 12.375rem !important;
}
@media (max-width: 767.98px) {
  .fs-198 {
    font-size: 12.375rem !important;
  }
}

.fs-199 {
  font-size: 12.4375rem !important;
}
@media (max-width: 767.98px) {
  .fs-199 {
    font-size: 12.4375rem !important;
  }
}

.fs-200 {
  font-size: 12.5rem !important;
}
@media (max-width: 767.98px) {
  .fs-200 {
    font-size: 12.5rem !important;
  }
}

.ls-0 {
  letter-spacing: 0em;
}

.ls-10 {
  letter-spacing: 0.01em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.ls-30 {
  letter-spacing: 0.03em;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-70 {
  letter-spacing: 0.07em;
}

.ls-80 {
  letter-spacing: 0.08em;
}

.ls-90 {
  letter-spacing: 0.09em;
}

.ls-100 {
  letter-spacing: 0.1em;
}

.ls-110 {
  letter-spacing: 0.11em;
}

.ls-120 {
  letter-spacing: 0.12em;
}

.ls-130 {
  letter-spacing: 0.13em;
}

.ls-140 {
  letter-spacing: 0.14em;
}

.ls-150 {
  letter-spacing: 0.15em;
}

.ls-160 {
  letter-spacing: 0.16em;
}

.ls-170 {
  letter-spacing: 0.17em;
}

.ls-180 {
  letter-spacing: 0.18em;
}

.ls-190 {
  letter-spacing: 0.19em;
}

.ls-200 {
  letter-spacing: 0.2em;
}

.ls-210 {
  letter-spacing: 0.21em;
}

.ls-220 {
  letter-spacing: 0.22em;
}

.ls-230 {
  letter-spacing: 0.23em;
}

.ls-240 {
  letter-spacing: 0.24em;
}

.ls-250 {
  letter-spacing: 0.25em;
}

.ls-260 {
  letter-spacing: 0.26em;
}

.ls-270 {
  letter-spacing: 0.27em;
}

.ls-280 {
  letter-spacing: 0.28em;
}

.ls-290 {
  letter-spacing: 0.29em;
}

.ls-300 {
  letter-spacing: 0.3em;
}

.ls-310 {
  letter-spacing: 0.31em;
}

.ls-320 {
  letter-spacing: 0.32em;
}

.ls-330 {
  letter-spacing: 0.33em;
}

.ls-340 {
  letter-spacing: 0.34em;
}

.ls-350 {
  letter-spacing: 0.35em;
}

.ls-360 {
  letter-spacing: 0.36em;
}

.ls-370 {
  letter-spacing: 0.37em;
}

.ls-380 {
  letter-spacing: 0.38em;
}

.ls-390 {
  letter-spacing: 0.39em;
}

.ls-400 {
  letter-spacing: 0.4em;
}

.ls-410 {
  letter-spacing: 0.41em;
}

.ls-420 {
  letter-spacing: 0.42em;
}

.ls-430 {
  letter-spacing: 0.43em;
}

.ls-440 {
  letter-spacing: 0.44em;
}

.ls-450 {
  letter-spacing: 0.45em;
}

.ls-460 {
  letter-spacing: 0.46em;
}

.ls-470 {
  letter-spacing: 0.47em;
}

.ls-480 {
  letter-spacing: 0.48em;
}

.ls-490 {
  letter-spacing: 0.49em;
}

.ls-500 {
  letter-spacing: 0.5em;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.lh-21 {
  line-height: 2.1;
}

.lh-22 {
  line-height: 2.2;
}

.lh-23 {
  line-height: 2.3;
}

.lh-24 {
  line-height: 2.4;
}

.lh-25 {
  line-height: 2.5;
}

.lh-26 {
  line-height: 2.6;
}

.lh-27 {
  line-height: 2.7;
}

.lh-28 {
  line-height: 2.8;
}

.lh-29 {
  line-height: 2.9;
}

.lh-30 {
  line-height: 3;
}

.lh-31 {
  line-height: 3.1;
}

.lh-32 {
  line-height: 3.2;
}

.lh-33 {
  line-height: 3.3;
}

.lh-34 {
  line-height: 3.4;
}

.lh-35 {
  line-height: 3.5;
}

.lh-36 {
  line-height: 3.6;
}

.lh-37 {
  line-height: 3.7;
}

.lh-38 {
  line-height: 3.8;
}

.lh-39 {
  line-height: 3.9;
}

.lh-40 {
  line-height: 4;
}

@media (min-width: 576px) {
  .fs-sm-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 576px) {
  .fs-sm-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .fs-sm-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 576px) {
  .ls-sm-0 {
    letter-spacing: 0em;
  }
  .ls-sm-10 {
    letter-spacing: 0.01em;
  }
  .ls-sm-20 {
    letter-spacing: 0.02em;
  }
  .ls-sm-30 {
    letter-spacing: 0.03em;
  }
  .ls-sm-40 {
    letter-spacing: 0.04em;
  }
  .ls-sm-50 {
    letter-spacing: 0.05em;
  }
  .ls-sm-60 {
    letter-spacing: 0.06em;
  }
  .ls-sm-70 {
    letter-spacing: 0.07em;
  }
  .ls-sm-80 {
    letter-spacing: 0.08em;
  }
  .ls-sm-90 {
    letter-spacing: 0.09em;
  }
  .ls-sm-100 {
    letter-spacing: 0.1em;
  }
  .ls-sm-110 {
    letter-spacing: 0.11em;
  }
  .ls-sm-120 {
    letter-spacing: 0.12em;
  }
  .ls-sm-130 {
    letter-spacing: 0.13em;
  }
  .ls-sm-140 {
    letter-spacing: 0.14em;
  }
  .ls-sm-150 {
    letter-spacing: 0.15em;
  }
  .ls-sm-160 {
    letter-spacing: 0.16em;
  }
  .ls-sm-170 {
    letter-spacing: 0.17em;
  }
  .ls-sm-180 {
    letter-spacing: 0.18em;
  }
  .ls-sm-190 {
    letter-spacing: 0.19em;
  }
  .ls-sm-200 {
    letter-spacing: 0.2em;
  }
  .ls-sm-210 {
    letter-spacing: 0.21em;
  }
  .ls-sm-220 {
    letter-spacing: 0.22em;
  }
  .ls-sm-230 {
    letter-spacing: 0.23em;
  }
  .ls-sm-240 {
    letter-spacing: 0.24em;
  }
  .ls-sm-250 {
    letter-spacing: 0.25em;
  }
  .ls-sm-260 {
    letter-spacing: 0.26em;
  }
  .ls-sm-270 {
    letter-spacing: 0.27em;
  }
  .ls-sm-280 {
    letter-spacing: 0.28em;
  }
  .ls-sm-290 {
    letter-spacing: 0.29em;
  }
  .ls-sm-300 {
    letter-spacing: 0.3em;
  }
  .ls-sm-310 {
    letter-spacing: 0.31em;
  }
  .ls-sm-320 {
    letter-spacing: 0.32em;
  }
  .ls-sm-330 {
    letter-spacing: 0.33em;
  }
  .ls-sm-340 {
    letter-spacing: 0.34em;
  }
  .ls-sm-350 {
    letter-spacing: 0.35em;
  }
  .ls-sm-360 {
    letter-spacing: 0.36em;
  }
  .ls-sm-370 {
    letter-spacing: 0.37em;
  }
  .ls-sm-380 {
    letter-spacing: 0.38em;
  }
  .ls-sm-390 {
    letter-spacing: 0.39em;
  }
  .ls-sm-400 {
    letter-spacing: 0.4em;
  }
  .ls-sm-410 {
    letter-spacing: 0.41em;
  }
  .ls-sm-420 {
    letter-spacing: 0.42em;
  }
  .ls-sm-430 {
    letter-spacing: 0.43em;
  }
  .ls-sm-440 {
    letter-spacing: 0.44em;
  }
  .ls-sm-450 {
    letter-spacing: 0.45em;
  }
  .ls-sm-460 {
    letter-spacing: 0.46em;
  }
  .ls-sm-470 {
    letter-spacing: 0.47em;
  }
  .ls-sm-480 {
    letter-spacing: 0.48em;
  }
  .ls-sm-490 {
    letter-spacing: 0.49em;
  }
  .ls-sm-500 {
    letter-spacing: 0.5em;
  }
  .lh-sm-10 {
    line-height: 1;
  }
  .lh-sm-11 {
    line-height: 1.1;
  }
  .lh-sm-12 {
    line-height: 1.2;
  }
  .lh-sm-13 {
    line-height: 1.3;
  }
  .lh-sm-14 {
    line-height: 1.4;
  }
  .lh-sm-15 {
    line-height: 1.5;
  }
  .lh-sm-16 {
    line-height: 1.6;
  }
  .lh-sm-17 {
    line-height: 1.7;
  }
  .lh-sm-18 {
    line-height: 1.8;
  }
  .lh-sm-19 {
    line-height: 1.9;
  }
  .lh-sm-20 {
    line-height: 2;
  }
  .lh-sm-21 {
    line-height: 2.1;
  }
  .lh-sm-22 {
    line-height: 2.2;
  }
  .lh-sm-23 {
    line-height: 2.3;
  }
  .lh-sm-24 {
    line-height: 2.4;
  }
  .lh-sm-25 {
    line-height: 2.5;
  }
  .lh-sm-26 {
    line-height: 2.6;
  }
  .lh-sm-27 {
    line-height: 2.7;
  }
  .lh-sm-28 {
    line-height: 2.8;
  }
  .lh-sm-29 {
    line-height: 2.9;
  }
  .lh-sm-30 {
    line-height: 3;
  }
  .lh-sm-31 {
    line-height: 3.1;
  }
  .lh-sm-32 {
    line-height: 3.2;
  }
  .lh-sm-33 {
    line-height: 3.3;
  }
  .lh-sm-34 {
    line-height: 3.4;
  }
  .lh-sm-35 {
    line-height: 3.5;
  }
  .lh-sm-36 {
    line-height: 3.6;
  }
  .lh-sm-37 {
    line-height: 3.7;
  }
  .lh-sm-38 {
    line-height: 3.8;
  }
  .lh-sm-39 {
    line-height: 3.9;
  }
  .lh-sm-40 {
    line-height: 4;
  }
}
@media (min-width: 768px) {
  .fs-md-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 768px) {
  .fs-md-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 768px) and (max-width: 767.98px) {
  .fs-md-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 768px) {
  .ls-md-0 {
    letter-spacing: 0em;
  }
  .ls-md-10 {
    letter-spacing: 0.01em;
  }
  .ls-md-20 {
    letter-spacing: 0.02em;
  }
  .ls-md-30 {
    letter-spacing: 0.03em;
  }
  .ls-md-40 {
    letter-spacing: 0.04em;
  }
  .ls-md-50 {
    letter-spacing: 0.05em;
  }
  .ls-md-60 {
    letter-spacing: 0.06em;
  }
  .ls-md-70 {
    letter-spacing: 0.07em;
  }
  .ls-md-80 {
    letter-spacing: 0.08em;
  }
  .ls-md-90 {
    letter-spacing: 0.09em;
  }
  .ls-md-100 {
    letter-spacing: 0.1em;
  }
  .ls-md-110 {
    letter-spacing: 0.11em;
  }
  .ls-md-120 {
    letter-spacing: 0.12em;
  }
  .ls-md-130 {
    letter-spacing: 0.13em;
  }
  .ls-md-140 {
    letter-spacing: 0.14em;
  }
  .ls-md-150 {
    letter-spacing: 0.15em;
  }
  .ls-md-160 {
    letter-spacing: 0.16em;
  }
  .ls-md-170 {
    letter-spacing: 0.17em;
  }
  .ls-md-180 {
    letter-spacing: 0.18em;
  }
  .ls-md-190 {
    letter-spacing: 0.19em;
  }
  .ls-md-200 {
    letter-spacing: 0.2em;
  }
  .ls-md-210 {
    letter-spacing: 0.21em;
  }
  .ls-md-220 {
    letter-spacing: 0.22em;
  }
  .ls-md-230 {
    letter-spacing: 0.23em;
  }
  .ls-md-240 {
    letter-spacing: 0.24em;
  }
  .ls-md-250 {
    letter-spacing: 0.25em;
  }
  .ls-md-260 {
    letter-spacing: 0.26em;
  }
  .ls-md-270 {
    letter-spacing: 0.27em;
  }
  .ls-md-280 {
    letter-spacing: 0.28em;
  }
  .ls-md-290 {
    letter-spacing: 0.29em;
  }
  .ls-md-300 {
    letter-spacing: 0.3em;
  }
  .ls-md-310 {
    letter-spacing: 0.31em;
  }
  .ls-md-320 {
    letter-spacing: 0.32em;
  }
  .ls-md-330 {
    letter-spacing: 0.33em;
  }
  .ls-md-340 {
    letter-spacing: 0.34em;
  }
  .ls-md-350 {
    letter-spacing: 0.35em;
  }
  .ls-md-360 {
    letter-spacing: 0.36em;
  }
  .ls-md-370 {
    letter-spacing: 0.37em;
  }
  .ls-md-380 {
    letter-spacing: 0.38em;
  }
  .ls-md-390 {
    letter-spacing: 0.39em;
  }
  .ls-md-400 {
    letter-spacing: 0.4em;
  }
  .ls-md-410 {
    letter-spacing: 0.41em;
  }
  .ls-md-420 {
    letter-spacing: 0.42em;
  }
  .ls-md-430 {
    letter-spacing: 0.43em;
  }
  .ls-md-440 {
    letter-spacing: 0.44em;
  }
  .ls-md-450 {
    letter-spacing: 0.45em;
  }
  .ls-md-460 {
    letter-spacing: 0.46em;
  }
  .ls-md-470 {
    letter-spacing: 0.47em;
  }
  .ls-md-480 {
    letter-spacing: 0.48em;
  }
  .ls-md-490 {
    letter-spacing: 0.49em;
  }
  .ls-md-500 {
    letter-spacing: 0.5em;
  }
  .lh-md-10 {
    line-height: 1;
  }
  .lh-md-11 {
    line-height: 1.1;
  }
  .lh-md-12 {
    line-height: 1.2;
  }
  .lh-md-13 {
    line-height: 1.3;
  }
  .lh-md-14 {
    line-height: 1.4;
  }
  .lh-md-15 {
    line-height: 1.5;
  }
  .lh-md-16 {
    line-height: 1.6;
  }
  .lh-md-17 {
    line-height: 1.7;
  }
  .lh-md-18 {
    line-height: 1.8;
  }
  .lh-md-19 {
    line-height: 1.9;
  }
  .lh-md-20 {
    line-height: 2;
  }
  .lh-md-21 {
    line-height: 2.1;
  }
  .lh-md-22 {
    line-height: 2.2;
  }
  .lh-md-23 {
    line-height: 2.3;
  }
  .lh-md-24 {
    line-height: 2.4;
  }
  .lh-md-25 {
    line-height: 2.5;
  }
  .lh-md-26 {
    line-height: 2.6;
  }
  .lh-md-27 {
    line-height: 2.7;
  }
  .lh-md-28 {
    line-height: 2.8;
  }
  .lh-md-29 {
    line-height: 2.9;
  }
  .lh-md-30 {
    line-height: 3;
  }
  .lh-md-31 {
    line-height: 3.1;
  }
  .lh-md-32 {
    line-height: 3.2;
  }
  .lh-md-33 {
    line-height: 3.3;
  }
  .lh-md-34 {
    line-height: 3.4;
  }
  .lh-md-35 {
    line-height: 3.5;
  }
  .lh-md-36 {
    line-height: 3.6;
  }
  .lh-md-37 {
    line-height: 3.7;
  }
  .lh-md-38 {
    line-height: 3.8;
  }
  .lh-md-39 {
    line-height: 3.9;
  }
  .lh-md-40 {
    line-height: 4;
  }
}
@media (min-width: 992px) {
  .fs-lg-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 992px) {
  .fs-lg-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 992px) and (max-width: 767.98px) {
  .fs-lg-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 992px) {
  .ls-lg-0 {
    letter-spacing: 0em;
  }
  .ls-lg-10 {
    letter-spacing: 0.01em;
  }
  .ls-lg-20 {
    letter-spacing: 0.02em;
  }
  .ls-lg-30 {
    letter-spacing: 0.03em;
  }
  .ls-lg-40 {
    letter-spacing: 0.04em;
  }
  .ls-lg-50 {
    letter-spacing: 0.05em;
  }
  .ls-lg-60 {
    letter-spacing: 0.06em;
  }
  .ls-lg-70 {
    letter-spacing: 0.07em;
  }
  .ls-lg-80 {
    letter-spacing: 0.08em;
  }
  .ls-lg-90 {
    letter-spacing: 0.09em;
  }
  .ls-lg-100 {
    letter-spacing: 0.1em;
  }
  .ls-lg-110 {
    letter-spacing: 0.11em;
  }
  .ls-lg-120 {
    letter-spacing: 0.12em;
  }
  .ls-lg-130 {
    letter-spacing: 0.13em;
  }
  .ls-lg-140 {
    letter-spacing: 0.14em;
  }
  .ls-lg-150 {
    letter-spacing: 0.15em;
  }
  .ls-lg-160 {
    letter-spacing: 0.16em;
  }
  .ls-lg-170 {
    letter-spacing: 0.17em;
  }
  .ls-lg-180 {
    letter-spacing: 0.18em;
  }
  .ls-lg-190 {
    letter-spacing: 0.19em;
  }
  .ls-lg-200 {
    letter-spacing: 0.2em;
  }
  .ls-lg-210 {
    letter-spacing: 0.21em;
  }
  .ls-lg-220 {
    letter-spacing: 0.22em;
  }
  .ls-lg-230 {
    letter-spacing: 0.23em;
  }
  .ls-lg-240 {
    letter-spacing: 0.24em;
  }
  .ls-lg-250 {
    letter-spacing: 0.25em;
  }
  .ls-lg-260 {
    letter-spacing: 0.26em;
  }
  .ls-lg-270 {
    letter-spacing: 0.27em;
  }
  .ls-lg-280 {
    letter-spacing: 0.28em;
  }
  .ls-lg-290 {
    letter-spacing: 0.29em;
  }
  .ls-lg-300 {
    letter-spacing: 0.3em;
  }
  .ls-lg-310 {
    letter-spacing: 0.31em;
  }
  .ls-lg-320 {
    letter-spacing: 0.32em;
  }
  .ls-lg-330 {
    letter-spacing: 0.33em;
  }
  .ls-lg-340 {
    letter-spacing: 0.34em;
  }
  .ls-lg-350 {
    letter-spacing: 0.35em;
  }
  .ls-lg-360 {
    letter-spacing: 0.36em;
  }
  .ls-lg-370 {
    letter-spacing: 0.37em;
  }
  .ls-lg-380 {
    letter-spacing: 0.38em;
  }
  .ls-lg-390 {
    letter-spacing: 0.39em;
  }
  .ls-lg-400 {
    letter-spacing: 0.4em;
  }
  .ls-lg-410 {
    letter-spacing: 0.41em;
  }
  .ls-lg-420 {
    letter-spacing: 0.42em;
  }
  .ls-lg-430 {
    letter-spacing: 0.43em;
  }
  .ls-lg-440 {
    letter-spacing: 0.44em;
  }
  .ls-lg-450 {
    letter-spacing: 0.45em;
  }
  .ls-lg-460 {
    letter-spacing: 0.46em;
  }
  .ls-lg-470 {
    letter-spacing: 0.47em;
  }
  .ls-lg-480 {
    letter-spacing: 0.48em;
  }
  .ls-lg-490 {
    letter-spacing: 0.49em;
  }
  .ls-lg-500 {
    letter-spacing: 0.5em;
  }
  .lh-lg-10 {
    line-height: 1;
  }
  .lh-lg-11 {
    line-height: 1.1;
  }
  .lh-lg-12 {
    line-height: 1.2;
  }
  .lh-lg-13 {
    line-height: 1.3;
  }
  .lh-lg-14 {
    line-height: 1.4;
  }
  .lh-lg-15 {
    line-height: 1.5;
  }
  .lh-lg-16 {
    line-height: 1.6;
  }
  .lh-lg-17 {
    line-height: 1.7;
  }
  .lh-lg-18 {
    line-height: 1.8;
  }
  .lh-lg-19 {
    line-height: 1.9;
  }
  .lh-lg-20 {
    line-height: 2;
  }
  .lh-lg-21 {
    line-height: 2.1;
  }
  .lh-lg-22 {
    line-height: 2.2;
  }
  .lh-lg-23 {
    line-height: 2.3;
  }
  .lh-lg-24 {
    line-height: 2.4;
  }
  .lh-lg-25 {
    line-height: 2.5;
  }
  .lh-lg-26 {
    line-height: 2.6;
  }
  .lh-lg-27 {
    line-height: 2.7;
  }
  .lh-lg-28 {
    line-height: 2.8;
  }
  .lh-lg-29 {
    line-height: 2.9;
  }
  .lh-lg-30 {
    line-height: 3;
  }
  .lh-lg-31 {
    line-height: 3.1;
  }
  .lh-lg-32 {
    line-height: 3.2;
  }
  .lh-lg-33 {
    line-height: 3.3;
  }
  .lh-lg-34 {
    line-height: 3.4;
  }
  .lh-lg-35 {
    line-height: 3.5;
  }
  .lh-lg-36 {
    line-height: 3.6;
  }
  .lh-lg-37 {
    line-height: 3.7;
  }
  .lh-lg-38 {
    line-height: 3.8;
  }
  .lh-lg-39 {
    line-height: 3.9;
  }
  .lh-lg-40 {
    line-height: 4;
  }
}
@media (min-width: 1200px) {
  .fs-xl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1200px) {
  .fs-xl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1200px) and (max-width: 767.98px) {
  .fs-xl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1200px) {
  .ls-xl-0 {
    letter-spacing: 0em;
  }
  .ls-xl-10 {
    letter-spacing: 0.01em;
  }
  .ls-xl-20 {
    letter-spacing: 0.02em;
  }
  .ls-xl-30 {
    letter-spacing: 0.03em;
  }
  .ls-xl-40 {
    letter-spacing: 0.04em;
  }
  .ls-xl-50 {
    letter-spacing: 0.05em;
  }
  .ls-xl-60 {
    letter-spacing: 0.06em;
  }
  .ls-xl-70 {
    letter-spacing: 0.07em;
  }
  .ls-xl-80 {
    letter-spacing: 0.08em;
  }
  .ls-xl-90 {
    letter-spacing: 0.09em;
  }
  .ls-xl-100 {
    letter-spacing: 0.1em;
  }
  .ls-xl-110 {
    letter-spacing: 0.11em;
  }
  .ls-xl-120 {
    letter-spacing: 0.12em;
  }
  .ls-xl-130 {
    letter-spacing: 0.13em;
  }
  .ls-xl-140 {
    letter-spacing: 0.14em;
  }
  .ls-xl-150 {
    letter-spacing: 0.15em;
  }
  .ls-xl-160 {
    letter-spacing: 0.16em;
  }
  .ls-xl-170 {
    letter-spacing: 0.17em;
  }
  .ls-xl-180 {
    letter-spacing: 0.18em;
  }
  .ls-xl-190 {
    letter-spacing: 0.19em;
  }
  .ls-xl-200 {
    letter-spacing: 0.2em;
  }
  .ls-xl-210 {
    letter-spacing: 0.21em;
  }
  .ls-xl-220 {
    letter-spacing: 0.22em;
  }
  .ls-xl-230 {
    letter-spacing: 0.23em;
  }
  .ls-xl-240 {
    letter-spacing: 0.24em;
  }
  .ls-xl-250 {
    letter-spacing: 0.25em;
  }
  .ls-xl-260 {
    letter-spacing: 0.26em;
  }
  .ls-xl-270 {
    letter-spacing: 0.27em;
  }
  .ls-xl-280 {
    letter-spacing: 0.28em;
  }
  .ls-xl-290 {
    letter-spacing: 0.29em;
  }
  .ls-xl-300 {
    letter-spacing: 0.3em;
  }
  .ls-xl-310 {
    letter-spacing: 0.31em;
  }
  .ls-xl-320 {
    letter-spacing: 0.32em;
  }
  .ls-xl-330 {
    letter-spacing: 0.33em;
  }
  .ls-xl-340 {
    letter-spacing: 0.34em;
  }
  .ls-xl-350 {
    letter-spacing: 0.35em;
  }
  .ls-xl-360 {
    letter-spacing: 0.36em;
  }
  .ls-xl-370 {
    letter-spacing: 0.37em;
  }
  .ls-xl-380 {
    letter-spacing: 0.38em;
  }
  .ls-xl-390 {
    letter-spacing: 0.39em;
  }
  .ls-xl-400 {
    letter-spacing: 0.4em;
  }
  .ls-xl-410 {
    letter-spacing: 0.41em;
  }
  .ls-xl-420 {
    letter-spacing: 0.42em;
  }
  .ls-xl-430 {
    letter-spacing: 0.43em;
  }
  .ls-xl-440 {
    letter-spacing: 0.44em;
  }
  .ls-xl-450 {
    letter-spacing: 0.45em;
  }
  .ls-xl-460 {
    letter-spacing: 0.46em;
  }
  .ls-xl-470 {
    letter-spacing: 0.47em;
  }
  .ls-xl-480 {
    letter-spacing: 0.48em;
  }
  .ls-xl-490 {
    letter-spacing: 0.49em;
  }
  .ls-xl-500 {
    letter-spacing: 0.5em;
  }
  .lh-xl-10 {
    line-height: 1;
  }
  .lh-xl-11 {
    line-height: 1.1;
  }
  .lh-xl-12 {
    line-height: 1.2;
  }
  .lh-xl-13 {
    line-height: 1.3;
  }
  .lh-xl-14 {
    line-height: 1.4;
  }
  .lh-xl-15 {
    line-height: 1.5;
  }
  .lh-xl-16 {
    line-height: 1.6;
  }
  .lh-xl-17 {
    line-height: 1.7;
  }
  .lh-xl-18 {
    line-height: 1.8;
  }
  .lh-xl-19 {
    line-height: 1.9;
  }
  .lh-xl-20 {
    line-height: 2;
  }
  .lh-xl-21 {
    line-height: 2.1;
  }
  .lh-xl-22 {
    line-height: 2.2;
  }
  .lh-xl-23 {
    line-height: 2.3;
  }
  .lh-xl-24 {
    line-height: 2.4;
  }
  .lh-xl-25 {
    line-height: 2.5;
  }
  .lh-xl-26 {
    line-height: 2.6;
  }
  .lh-xl-27 {
    line-height: 2.7;
  }
  .lh-xl-28 {
    line-height: 2.8;
  }
  .lh-xl-29 {
    line-height: 2.9;
  }
  .lh-xl-30 {
    line-height: 3;
  }
  .lh-xl-31 {
    line-height: 3.1;
  }
  .lh-xl-32 {
    line-height: 3.2;
  }
  .lh-xl-33 {
    line-height: 3.3;
  }
  .lh-xl-34 {
    line-height: 3.4;
  }
  .lh-xl-35 {
    line-height: 3.5;
  }
  .lh-xl-36 {
    line-height: 3.6;
  }
  .lh-xl-37 {
    line-height: 3.7;
  }
  .lh-xl-38 {
    line-height: 3.8;
  }
  .lh-xl-39 {
    line-height: 3.9;
  }
  .lh-xl-40 {
    line-height: 4;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-8 {
    font-size: 0.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-9 {
    font-size: 0.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-10 {
    font-size: 0.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-11 {
    font-size: 0.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-12 {
    font-size: 0.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-13 {
    font-size: 0.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-14 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-15 {
    font-size: 0.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-16 {
    font-size: 1rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-17 {
    font-size: 1.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-18 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-19 {
    font-size: 1.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-20 {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-21 {
    font-size: 1.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-22 {
    font-size: 1.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-23 {
    font-size: 1.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-24 {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-25 {
    font-size: 1.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-26 {
    font-size: 1.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-27 {
    font-size: 1.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-28 {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-29 {
    font-size: 1.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-30 {
    font-size: 1.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-31 {
    font-size: 1.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-32 {
    font-size: 2rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-33 {
    font-size: 2.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-34 {
    font-size: 2.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-35 {
    font-size: 2.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-36 {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-37 {
    font-size: 2.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-38 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-39 {
    font-size: 2.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-40 {
    font-size: 2.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-41 {
    font-size: 2.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-42 {
    font-size: 2.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-43 {
    font-size: 2.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-44 {
    font-size: 2.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-45 {
    font-size: 2.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-46 {
    font-size: 2.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-47 {
    font-size: 2.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-48 {
    font-size: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-49 {
    font-size: 3.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-50 {
    font-size: 3.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-51 {
    font-size: 3.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-52 {
    font-size: 3.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-53 {
    font-size: 3.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-54 {
    font-size: 3.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-55 {
    font-size: 3.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-56 {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-57 {
    font-size: 3.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-58 {
    font-size: 3.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-59 {
    font-size: 3.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-60 {
    font-size: 3.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-61 {
    font-size: 3.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-62 {
    font-size: 3.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-63 {
    font-size: 3.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-64 {
    font-size: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-65 {
    font-size: 4.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-66 {
    font-size: 4.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-67 {
    font-size: 4.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-68 {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-69 {
    font-size: 4.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-70 {
    font-size: 4.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-71 {
    font-size: 4.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-72 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-73 {
    font-size: 4.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-74 {
    font-size: 4.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-75 {
    font-size: 4.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-76 {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-77 {
    font-size: 4.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-78 {
    font-size: 4.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-79 {
    font-size: 4.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-80 {
    font-size: 5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-81 {
    font-size: 5.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-82 {
    font-size: 5.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-83 {
    font-size: 5.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-84 {
    font-size: 5.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-85 {
    font-size: 5.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-86 {
    font-size: 5.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-87 {
    font-size: 5.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-88 {
    font-size: 5.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-89 {
    font-size: 5.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-90 {
    font-size: 5.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-91 {
    font-size: 5.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-92 {
    font-size: 5.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-93 {
    font-size: 5.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-94 {
    font-size: 5.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-95 {
    font-size: 5.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-96 {
    font-size: 6rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-97 {
    font-size: 6.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-98 {
    font-size: 6.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-99 {
    font-size: 6.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-100 {
    font-size: 6.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-101 {
    font-size: 6.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-102 {
    font-size: 6.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-103 {
    font-size: 6.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-104 {
    font-size: 6.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-105 {
    font-size: 6.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-106 {
    font-size: 6.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-107 {
    font-size: 6.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-108 {
    font-size: 6.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-109 {
    font-size: 6.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-110 {
    font-size: 6.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-111 {
    font-size: 6.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-112 {
    font-size: 7rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-113 {
    font-size: 7.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-114 {
    font-size: 7.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-115 {
    font-size: 7.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-116 {
    font-size: 7.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-117 {
    font-size: 7.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-118 {
    font-size: 7.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-119 {
    font-size: 7.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-120 {
    font-size: 7.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-121 {
    font-size: 7.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-122 {
    font-size: 7.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-123 {
    font-size: 7.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-124 {
    font-size: 7.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-125 {
    font-size: 7.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-126 {
    font-size: 7.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-127 {
    font-size: 7.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-128 {
    font-size: 8rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-129 {
    font-size: 8.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-130 {
    font-size: 8.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-131 {
    font-size: 8.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-132 {
    font-size: 8.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-133 {
    font-size: 8.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-134 {
    font-size: 8.375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-135 {
    font-size: 8.4375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-136 {
    font-size: 8.5rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-137 {
    font-size: 8.5625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-138 {
    font-size: 8.625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-139 {
    font-size: 8.6875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-140 {
    font-size: 8.75rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-141 {
    font-size: 8.8125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-142 {
    font-size: 8.875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-143 {
    font-size: 8.9375rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-144 {
    font-size: 9rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-145 {
    font-size: 9.0625rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-146 {
    font-size: 9.125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-147 {
    font-size: 9.1875rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-148 {
    font-size: 9.25rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-149 {
    font-size: 9.3125rem !important;
  }
}
@media (min-width: 1400px) {
  .fs-xxl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 767.98px) {
  .fs-xxl-150 {
    font-size: 9.375rem !important;
  }
}
@media (min-width: 1400px) {
  .ls-xxl-0 {
    letter-spacing: 0em;
  }
  .ls-xxl-10 {
    letter-spacing: 0.01em;
  }
  .ls-xxl-20 {
    letter-spacing: 0.02em;
  }
  .ls-xxl-30 {
    letter-spacing: 0.03em;
  }
  .ls-xxl-40 {
    letter-spacing: 0.04em;
  }
  .ls-xxl-50 {
    letter-spacing: 0.05em;
  }
  .ls-xxl-60 {
    letter-spacing: 0.06em;
  }
  .ls-xxl-70 {
    letter-spacing: 0.07em;
  }
  .ls-xxl-80 {
    letter-spacing: 0.08em;
  }
  .ls-xxl-90 {
    letter-spacing: 0.09em;
  }
  .ls-xxl-100 {
    letter-spacing: 0.1em;
  }
  .ls-xxl-110 {
    letter-spacing: 0.11em;
  }
  .ls-xxl-120 {
    letter-spacing: 0.12em;
  }
  .ls-xxl-130 {
    letter-spacing: 0.13em;
  }
  .ls-xxl-140 {
    letter-spacing: 0.14em;
  }
  .ls-xxl-150 {
    letter-spacing: 0.15em;
  }
  .ls-xxl-160 {
    letter-spacing: 0.16em;
  }
  .ls-xxl-170 {
    letter-spacing: 0.17em;
  }
  .ls-xxl-180 {
    letter-spacing: 0.18em;
  }
  .ls-xxl-190 {
    letter-spacing: 0.19em;
  }
  .ls-xxl-200 {
    letter-spacing: 0.2em;
  }
  .ls-xxl-210 {
    letter-spacing: 0.21em;
  }
  .ls-xxl-220 {
    letter-spacing: 0.22em;
  }
  .ls-xxl-230 {
    letter-spacing: 0.23em;
  }
  .ls-xxl-240 {
    letter-spacing: 0.24em;
  }
  .ls-xxl-250 {
    letter-spacing: 0.25em;
  }
  .ls-xxl-260 {
    letter-spacing: 0.26em;
  }
  .ls-xxl-270 {
    letter-spacing: 0.27em;
  }
  .ls-xxl-280 {
    letter-spacing: 0.28em;
  }
  .ls-xxl-290 {
    letter-spacing: 0.29em;
  }
  .ls-xxl-300 {
    letter-spacing: 0.3em;
  }
  .ls-xxl-310 {
    letter-spacing: 0.31em;
  }
  .ls-xxl-320 {
    letter-spacing: 0.32em;
  }
  .ls-xxl-330 {
    letter-spacing: 0.33em;
  }
  .ls-xxl-340 {
    letter-spacing: 0.34em;
  }
  .ls-xxl-350 {
    letter-spacing: 0.35em;
  }
  .ls-xxl-360 {
    letter-spacing: 0.36em;
  }
  .ls-xxl-370 {
    letter-spacing: 0.37em;
  }
  .ls-xxl-380 {
    letter-spacing: 0.38em;
  }
  .ls-xxl-390 {
    letter-spacing: 0.39em;
  }
  .ls-xxl-400 {
    letter-spacing: 0.4em;
  }
  .ls-xxl-410 {
    letter-spacing: 0.41em;
  }
  .ls-xxl-420 {
    letter-spacing: 0.42em;
  }
  .ls-xxl-430 {
    letter-spacing: 0.43em;
  }
  .ls-xxl-440 {
    letter-spacing: 0.44em;
  }
  .ls-xxl-450 {
    letter-spacing: 0.45em;
  }
  .ls-xxl-460 {
    letter-spacing: 0.46em;
  }
  .ls-xxl-470 {
    letter-spacing: 0.47em;
  }
  .ls-xxl-480 {
    letter-spacing: 0.48em;
  }
  .ls-xxl-490 {
    letter-spacing: 0.49em;
  }
  .ls-xxl-500 {
    letter-spacing: 0.5em;
  }
  .lh-xxl-10 {
    line-height: 1;
  }
  .lh-xxl-11 {
    line-height: 1.1;
  }
  .lh-xxl-12 {
    line-height: 1.2;
  }
  .lh-xxl-13 {
    line-height: 1.3;
  }
  .lh-xxl-14 {
    line-height: 1.4;
  }
  .lh-xxl-15 {
    line-height: 1.5;
  }
  .lh-xxl-16 {
    line-height: 1.6;
  }
  .lh-xxl-17 {
    line-height: 1.7;
  }
  .lh-xxl-18 {
    line-height: 1.8;
  }
  .lh-xxl-19 {
    line-height: 1.9;
  }
  .lh-xxl-20 {
    line-height: 2;
  }
  .lh-xxl-21 {
    line-height: 2.1;
  }
  .lh-xxl-22 {
    line-height: 2.2;
  }
  .lh-xxl-23 {
    line-height: 2.3;
  }
  .lh-xxl-24 {
    line-height: 2.4;
  }
  .lh-xxl-25 {
    line-height: 2.5;
  }
  .lh-xxl-26 {
    line-height: 2.6;
  }
  .lh-xxl-27 {
    line-height: 2.7;
  }
  .lh-xxl-28 {
    line-height: 2.8;
  }
  .lh-xxl-29 {
    line-height: 2.9;
  }
  .lh-xxl-30 {
    line-height: 3;
  }
  .lh-xxl-31 {
    line-height: 3.1;
  }
  .lh-xxl-32 {
    line-height: 3.2;
  }
  .lh-xxl-33 {
    line-height: 3.3;
  }
  .lh-xxl-34 {
    line-height: 3.4;
  }
  .lh-xxl-35 {
    line-height: 3.5;
  }
  .lh-xxl-36 {
    line-height: 3.6;
  }
  .lh-xxl-37 {
    line-height: 3.7;
  }
  .lh-xxl-38 {
    line-height: 3.8;
  }
  .lh-xxl-39 {
    line-height: 3.9;
  }
  .lh-xxl-40 {
    line-height: 4;
  }
}
.ls-0 {
  letter-spacing: 0em;
}

.ls-10 {
  letter-spacing: 0.01em;
}

.ls-20 {
  letter-spacing: 0.02em;
}

.ls-30 {
  letter-spacing: 0.03em;
}

.ls-40 {
  letter-spacing: 0.04em;
}

.ls-50 {
  letter-spacing: 0.05em;
}

.ls-60 {
  letter-spacing: 0.06em;
}

.ls-70 {
  letter-spacing: 0.07em;
}

.ls-80 {
  letter-spacing: 0.08em;
}

.ls-90 {
  letter-spacing: 0.09em;
}

.ls-100 {
  letter-spacing: 0.1em;
}

.ls-110 {
  letter-spacing: 0.11em;
}

.ls-120 {
  letter-spacing: 0.12em;
}

.ls-130 {
  letter-spacing: 0.13em;
}

.ls-140 {
  letter-spacing: 0.14em;
}

.ls-150 {
  letter-spacing: 0.15em;
}

.ls-160 {
  letter-spacing: 0.16em;
}

.ls-170 {
  letter-spacing: 0.17em;
}

.ls-180 {
  letter-spacing: 0.18em;
}

.ls-190 {
  letter-spacing: 0.19em;
}

.ls-200 {
  letter-spacing: 0.2em;
}

.ls-210 {
  letter-spacing: 0.21em;
}

.ls-220 {
  letter-spacing: 0.22em;
}

.ls-230 {
  letter-spacing: 0.23em;
}

.ls-240 {
  letter-spacing: 0.24em;
}

.ls-250 {
  letter-spacing: 0.25em;
}

.ls-260 {
  letter-spacing: 0.26em;
}

.ls-270 {
  letter-spacing: 0.27em;
}

.ls-280 {
  letter-spacing: 0.28em;
}

.ls-290 {
  letter-spacing: 0.29em;
}

.ls-300 {
  letter-spacing: 0.3em;
}

.ls-310 {
  letter-spacing: 0.31em;
}

.ls-320 {
  letter-spacing: 0.32em;
}

.ls-330 {
  letter-spacing: 0.33em;
}

.ls-340 {
  letter-spacing: 0.34em;
}

.ls-350 {
  letter-spacing: 0.35em;
}

.ls-360 {
  letter-spacing: 0.36em;
}

.ls-370 {
  letter-spacing: 0.37em;
}

.ls-380 {
  letter-spacing: 0.38em;
}

.ls-390 {
  letter-spacing: 0.39em;
}

.ls-400 {
  letter-spacing: 0.4em;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.lh-21 {
  line-height: 2.1;
}

.lh-22 {
  line-height: 2.2;
}

.lh-23 {
  line-height: 2.3;
}

.lh-24 {
  line-height: 2.4;
}

.lh-25 {
  line-height: 2.5;
}

.lh-26 {
  line-height: 2.6;
}

.lh-27 {
  line-height: 2.7;
}

.lh-28 {
  line-height: 2.8;
}

.lh-29 {
  line-height: 2.9;
}

.lh-30 {
  line-height: 3;
}

.lh-31 {
  line-height: 3.1;
}

.lh-32 {
  line-height: 3.2;
}

.lh-33 {
  line-height: 3.3;
}

.lh-34 {
  line-height: 3.4;
}

.lh-35 {
  line-height: 3.5;
}

.lh-36 {
  line-height: 3.6;
}

.lh-37 {
  line-height: 3.7;
}

.lh-38 {
  line-height: 3.8;
}

.lh-39 {
  line-height: 3.9;
}

.lh-40 {
  line-height: 4;
}

.button-primaly {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #1e98ce;
  border: solid 1px #1e98ce;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-primaly {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-primaly {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-primaly:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-secondary {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #231815;
  border: solid 1px #231815;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-secondary {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-secondary {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-secondary:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-light {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #8297A7;
  border: solid 1px #8297A7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-light {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-light {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-light:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-dark {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #221815;
  border: solid 1px #221815;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-dark {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-dark {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-dark:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #262626;
  border: solid 1px #262626;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-text {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-text {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-text:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-gray {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #8b99a9;
  border: solid 1px #8b99a9;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-gray {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-gray {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-gray:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-lightgray {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #eeeeee;
  border: solid 1px #eeeeee;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-lightgray {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-lightgray {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-lightgray:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-darkgray {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #404040;
  border: solid 1px #404040;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-darkgray {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-darkgray {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-darkgray:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-darkgray2 {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #1a1a1a;
  border: solid 1px #1a1a1a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-darkgray2 {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-darkgray2 {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-darkgray2:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #cccccc;
  border: solid 1px #cccccc;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-input {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-input {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-input:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-black {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #000000;
  border: solid 1px #000000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-black {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-black {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-black:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-white {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #ffffff;
  border: solid 1px #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-white {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-white {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-white:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-pink {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #FF29C5;
  border: solid 1px #FF29C5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-pink {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-pink {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-pink:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-green {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #5FAFB1;
  border: solid 1px #5FAFB1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-green {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-green {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-green:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-yellow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #FFBA00;
  border: solid 1px #FFBA00;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-yellow {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-yellow {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-yellow:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-purple {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #8853FF;
  border: solid 1px #8853FF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-purple {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-purple {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-purple:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-orange {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #FAAF58;
  border: solid 1px #FAAF58;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-orange {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-orange {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-orange:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #0A6594;
  border: solid 1px #0A6594;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-link {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-link {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-link:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-red {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #a40000;
  border: solid 1px #a40000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-red {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-red {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-red:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-tw {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #1da1f2;
  border: solid 1px #1da1f2;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-tw {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-tw {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-tw:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-line {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #06C755;
  border: solid 1px #06C755;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-line {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-line {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-line:hover {
  text-decoration: none;
  color: #ffffff;
}

.button-transparent {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 400px;
  max-width: 100%;
  min-height: 100px;
  padding: 0 20px;
  color: #ffffff;
  background-color: transparent;
  border: solid 1px transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.125rem !important;
  line-height: 1.5;
  font-weight: bold;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767.98px) {
  .button-transparent {
    font-size: 0.9375rem !important;
  }
}
@media (max-width: 991.98px) {
  .button-transparent {
    min-width: 225px;
    min-height: 60px;
  }
}
.button-transparent:hover {
  text-decoration: none;
  color: #ffffff;
}

.border-none {
  border-style: none !important;
}

.border-top-none {
  border-top-style: none !important;
}

.border-right-none {
  border-right-style: none !important;
}

.border-bottom-none {
  border-bottom-style: none !important;
}

.border-left-none {
  border-left-style: none !important;
}

.border-hidden {
  border-style: hidden !important;
}

.border-top-hidden {
  border-top-style: hidden !important;
}

.border-right-hidden {
  border-right-style: hidden !important;
}

.border-bottom-hidden {
  border-bottom-style: hidden !important;
}

.border-left-hidden {
  border-left-style: hidden !important;
}

.border-solid {
  border-style: solid !important;
}

.border-top-solid {
  border-top-style: solid !important;
}

.border-right-solid {
  border-right-style: solid !important;
}

.border-bottom-solid {
  border-bottom-style: solid !important;
}

.border-left-solid {
  border-left-style: solid !important;
}

.border-double {
  border-style: double !important;
}

.border-top-double {
  border-top-style: double !important;
}

.border-right-double {
  border-right-style: double !important;
}

.border-bottom-double {
  border-bottom-style: double !important;
}

.border-left-double {
  border-left-style: double !important;
}

.border-groove {
  border-style: groove !important;
}

.border-top-groove {
  border-top-style: groove !important;
}

.border-right-groove {
  border-right-style: groove !important;
}

.border-bottom-groove {
  border-bottom-style: groove !important;
}

.border-left-groove {
  border-left-style: groove !important;
}

.border-ridge {
  border-style: ridge !important;
}

.border-top-ridge {
  border-top-style: ridge !important;
}

.border-right-ridge {
  border-right-style: ridge !important;
}

.border-bottom-ridge {
  border-bottom-style: ridge !important;
}

.border-left-ridge {
  border-left-style: ridge !important;
}

.border-inset {
  border-style: inset !important;
}

.border-top-inset {
  border-top-style: inset !important;
}

.border-right-inset {
  border-right-style: inset !important;
}

.border-bottom-inset {
  border-bottom-style: inset !important;
}

.border-left-inset {
  border-left-style: inset !important;
}

.border-outset {
  border-style: outset !important;
}

.border-top-outset {
  border-top-style: outset !important;
}

.border-right-outset {
  border-right-style: outset !important;
}

.border-bottom-outset {
  border-bottom-style: outset !important;
}

.border-left-outset {
  border-left-style: outset !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-top-dashed {
  border-top-style: dashed !important;
}

.border-right-dashed {
  border-right-style: dashed !important;
}

.border-bottom-dashed {
  border-bottom-style: dashed !important;
}

.border-left-dashed {
  border-left-style: dashed !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-top-dotted {
  border-top-style: dotted !important;
}

.border-right-dotted {
  border-right-style: dotted !important;
}

.border-bottom-dotted {
  border-bottom-style: dotted !important;
}

.border-left-dotted {
  border-left-style: dotted !important;
}

.bw-0 {
  border-width: 0px !important;
}

.btw-0 {
  border-top-width: 0px !important;
}

.brw-0 {
  border-right-width: 0px !important;
}

.bbw-0 {
  border-bottom-width: 0px !important;
}

.blw-0 {
  border-left-width: 0px !important;
}

.bw-1 {
  border-width: 1px !important;
}

.btw-1 {
  border-top-width: 1px !important;
}

.brw-1 {
  border-right-width: 1px !important;
}

.bbw-1 {
  border-bottom-width: 1px !important;
}

.blw-1 {
  border-left-width: 1px !important;
}

.bw-2 {
  border-width: 2px !important;
}

.btw-2 {
  border-top-width: 2px !important;
}

.brw-2 {
  border-right-width: 2px !important;
}

.bbw-2 {
  border-bottom-width: 2px !important;
}

.blw-2 {
  border-left-width: 2px !important;
}

.bw-3 {
  border-width: 3px !important;
}

.btw-3 {
  border-top-width: 3px !important;
}

.brw-3 {
  border-right-width: 3px !important;
}

.bbw-3 {
  border-bottom-width: 3px !important;
}

.blw-3 {
  border-left-width: 3px !important;
}

.bw-4 {
  border-width: 4px !important;
}

.btw-4 {
  border-top-width: 4px !important;
}

.brw-4 {
  border-right-width: 4px !important;
}

.bbw-4 {
  border-bottom-width: 4px !important;
}

.blw-4 {
  border-left-width: 4px !important;
}

.bw-5 {
  border-width: 5px !important;
}

.btw-5 {
  border-top-width: 5px !important;
}

.brw-5 {
  border-right-width: 5px !important;
}

.bbw-5 {
  border-bottom-width: 5px !important;
}

.blw-5 {
  border-left-width: 5px !important;
}

.bw-6 {
  border-width: 6px !important;
}

.btw-6 {
  border-top-width: 6px !important;
}

.brw-6 {
  border-right-width: 6px !important;
}

.bbw-6 {
  border-bottom-width: 6px !important;
}

.blw-6 {
  border-left-width: 6px !important;
}

.bw-7 {
  border-width: 7px !important;
}

.btw-7 {
  border-top-width: 7px !important;
}

.brw-7 {
  border-right-width: 7px !important;
}

.bbw-7 {
  border-bottom-width: 7px !important;
}

.blw-7 {
  border-left-width: 7px !important;
}

.bw-8 {
  border-width: 8px !important;
}

.btw-8 {
  border-top-width: 8px !important;
}

.brw-8 {
  border-right-width: 8px !important;
}

.bbw-8 {
  border-bottom-width: 8px !important;
}

.blw-8 {
  border-left-width: 8px !important;
}

.bw-9 {
  border-width: 9px !important;
}

.btw-9 {
  border-top-width: 9px !important;
}

.brw-9 {
  border-right-width: 9px !important;
}

.bbw-9 {
  border-bottom-width: 9px !important;
}

.blw-9 {
  border-left-width: 9px !important;
}

.bw-10 {
  border-width: 10px !important;
}

.btw-10 {
  border-top-width: 10px !important;
}

.brw-10 {
  border-right-width: 10px !important;
}

.bbw-10 {
  border-bottom-width: 10px !important;
}

.blw-10 {
  border-left-width: 10px !important;
}

.rounded-0 {
  border-radius: 0px !important;
  overflow: hidden;
}

.rounded-1 {
  border-radius: 1px !important;
  overflow: hidden;
}

.rounded-2 {
  border-radius: 2px !important;
  overflow: hidden;
}

.rounded-3 {
  border-radius: 3px !important;
  overflow: hidden;
}

.rounded-4 {
  border-radius: 4px !important;
  overflow: hidden;
}

.rounded-5 {
  border-radius: 5px !important;
  overflow: hidden;
}

.rounded-6 {
  border-radius: 6px !important;
  overflow: hidden;
}

.rounded-7 {
  border-radius: 7px !important;
  overflow: hidden;
}

.rounded-8 {
  border-radius: 8px !important;
  overflow: hidden;
}

.rounded-9 {
  border-radius: 9px !important;
  overflow: hidden;
}

.rounded-10 {
  border-radius: 10px !important;
  overflow: hidden;
}

.rounded-11 {
  border-radius: 11px !important;
  overflow: hidden;
}

.rounded-12 {
  border-radius: 12px !important;
  overflow: hidden;
}

.rounded-13 {
  border-radius: 13px !important;
  overflow: hidden;
}

.rounded-14 {
  border-radius: 14px !important;
  overflow: hidden;
}

.rounded-15 {
  border-radius: 15px !important;
  overflow: hidden;
}

.rounded-16 {
  border-radius: 16px !important;
  overflow: hidden;
}

.rounded-17 {
  border-radius: 17px !important;
  overflow: hidden;
}

.rounded-18 {
  border-radius: 18px !important;
  overflow: hidden;
}

.rounded-19 {
  border-radius: 19px !important;
  overflow: hidden;
}

.rounded-20 {
  border-radius: 20px !important;
  overflow: hidden;
}

.rounded-21 {
  border-radius: 21px !important;
  overflow: hidden;
}

.rounded-22 {
  border-radius: 22px !important;
  overflow: hidden;
}

.rounded-23 {
  border-radius: 23px !important;
  overflow: hidden;
}

.rounded-24 {
  border-radius: 24px !important;
  overflow: hidden;
}

.rounded-25 {
  border-radius: 25px !important;
  overflow: hidden;
}

.rounded-26 {
  border-radius: 26px !important;
  overflow: hidden;
}

.rounded-27 {
  border-radius: 27px !important;
  overflow: hidden;
}

.rounded-28 {
  border-radius: 28px !important;
  overflow: hidden;
}

.rounded-29 {
  border-radius: 29px !important;
  overflow: hidden;
}

.rounded-30 {
  border-radius: 30px !important;
  overflow: hidden;
}

.rounded-31 {
  border-radius: 31px !important;
  overflow: hidden;
}

.rounded-32 {
  border-radius: 32px !important;
  overflow: hidden;
}

.rounded-33 {
  border-radius: 33px !important;
  overflow: hidden;
}

.rounded-34 {
  border-radius: 34px !important;
  overflow: hidden;
}

.rounded-35 {
  border-radius: 35px !important;
  overflow: hidden;
}

.rounded-36 {
  border-radius: 36px !important;
  overflow: hidden;
}

.rounded-37 {
  border-radius: 37px !important;
  overflow: hidden;
}

.rounded-38 {
  border-radius: 38px !important;
  overflow: hidden;
}

.rounded-39 {
  border-radius: 39px !important;
  overflow: hidden;
}

.rounded-40 {
  border-radius: 40px !important;
  overflow: hidden;
}

.rounded-41 {
  border-radius: 41px !important;
  overflow: hidden;
}

.rounded-42 {
  border-radius: 42px !important;
  overflow: hidden;
}

.rounded-43 {
  border-radius: 43px !important;
  overflow: hidden;
}

.rounded-44 {
  border-radius: 44px !important;
  overflow: hidden;
}

.rounded-45 {
  border-radius: 45px !important;
  overflow: hidden;
}

.rounded-46 {
  border-radius: 46px !important;
  overflow: hidden;
}

.rounded-47 {
  border-radius: 47px !important;
  overflow: hidden;
}

.rounded-48 {
  border-radius: 48px !important;
  overflow: hidden;
}

.rounded-49 {
  border-radius: 49px !important;
  overflow: hidden;
}

.rounded-50 {
  border-radius: 50px !important;
  overflow: hidden;
}

.rounded-51 {
  border-radius: 51px !important;
  overflow: hidden;
}

.rounded-52 {
  border-radius: 52px !important;
  overflow: hidden;
}

.rounded-53 {
  border-radius: 53px !important;
  overflow: hidden;
}

.rounded-54 {
  border-radius: 54px !important;
  overflow: hidden;
}

.rounded-55 {
  border-radius: 55px !important;
  overflow: hidden;
}

.rounded-56 {
  border-radius: 56px !important;
  overflow: hidden;
}

.rounded-57 {
  border-radius: 57px !important;
  overflow: hidden;
}

.rounded-58 {
  border-radius: 58px !important;
  overflow: hidden;
}

.rounded-59 {
  border-radius: 59px !important;
  overflow: hidden;
}

.rounded-60 {
  border-radius: 60px !important;
  overflow: hidden;
}

.m-0 {
  margin: 0px !important;
}

.mx-0 {
  margin-right: 0px !important;
  margin-left: 0px !important;
}

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

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

.me-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ms-0 {
  margin-left: 0px !important;
}

.m-5 {
  margin: 5px !important;
}

.mx-5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.me-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ms-5 {
  margin-left: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.mx-10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.me-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ms-10 {
  margin-left: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.mx-15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.me-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ms-15 {
  margin-left: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.mx-20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.me-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ms-20 {
  margin-left: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.mx-25 {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.me-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ms-25 {
  margin-left: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.mx-30 {
  margin-right: 30px !important;
  margin-left: 30px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.me-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ms-30 {
  margin-left: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.mx-35 {
  margin-right: 35px !important;
  margin-left: 35px !important;
}

.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.me-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ms-35 {
  margin-left: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.mx-40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.me-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ms-40 {
  margin-left: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.mx-45 {
  margin-right: 45px !important;
  margin-left: 45px !important;
}

.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.me-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ms-45 {
  margin-left: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.mx-50 {
  margin-right: 50px !important;
  margin-left: 50px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.me-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ms-50 {
  margin-left: 50px !important;
}

.m-55 {
  margin: 55px !important;
}

.mx-55 {
  margin-right: 55px !important;
  margin-left: 55px !important;
}

.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.me-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ms-55 {
  margin-left: 55px !important;
}

.m-60 {
  margin: 60px !important;
}

.mx-60 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.me-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ms-60 {
  margin-left: 60px !important;
}

.m-65 {
  margin: 65px !important;
}

.mx-65 {
  margin-right: 65px !important;
  margin-left: 65px !important;
}

.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.me-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ms-65 {
  margin-left: 65px !important;
}

.m-70 {
  margin: 70px !important;
}

.mx-70 {
  margin-right: 70px !important;
  margin-left: 70px !important;
}

.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.me-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ms-70 {
  margin-left: 70px !important;
}

.m-75 {
  margin: 75px !important;
}

.mx-75 {
  margin-right: 75px !important;
  margin-left: 75px !important;
}

.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.me-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ms-75 {
  margin-left: 75px !important;
}

.m-80 {
  margin: 80px !important;
}

.mx-80 {
  margin-right: 80px !important;
  margin-left: 80px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.me-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ms-80 {
  margin-left: 80px !important;
}

.m-85 {
  margin: 85px !important;
}

.mx-85 {
  margin-right: 85px !important;
  margin-left: 85px !important;
}

.my-85 {
  margin-top: 85px !important;
  margin-bottom: 85px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.me-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ms-85 {
  margin-left: 85px !important;
}

.m-90 {
  margin: 90px !important;
}

.mx-90 {
  margin-right: 90px !important;
  margin-left: 90px !important;
}

.my-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.me-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ms-90 {
  margin-left: 90px !important;
}

.m-95 {
  margin: 95px !important;
}

.mx-95 {
  margin-right: 95px !important;
  margin-left: 95px !important;
}

.my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.me-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ms-95 {
  margin-left: 95px !important;
}

.m-100 {
  margin: 100px !important;
}

.mx-100 {
  margin-right: 100px !important;
  margin-left: 100px !important;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.me-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ms-100 {
  margin-left: 100px !important;
}

.m-105 {
  margin: 105px !important;
}

.mx-105 {
  margin-right: 105px !important;
  margin-left: 105px !important;
}

.my-105 {
  margin-top: 105px !important;
  margin-bottom: 105px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.me-105 {
  margin-right: 105px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.ms-105 {
  margin-left: 105px !important;
}

.m-110 {
  margin: 110px !important;
}

.mx-110 {
  margin-right: 110px !important;
  margin-left: 110px !important;
}

.my-110 {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.me-110 {
  margin-right: 110px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.ms-110 {
  margin-left: 110px !important;
}

.m-115 {
  margin: 115px !important;
}

.mx-115 {
  margin-right: 115px !important;
  margin-left: 115px !important;
}

.my-115 {
  margin-top: 115px !important;
  margin-bottom: 115px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.me-115 {
  margin-right: 115px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.ms-115 {
  margin-left: 115px !important;
}

.m-120 {
  margin: 120px !important;
}

.mx-120 {
  margin-right: 120px !important;
  margin-left: 120px !important;
}

.my-120 {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.me-120 {
  margin-right: 120px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.ms-120 {
  margin-left: 120px !important;
}

.m-125 {
  margin: 125px !important;
}

.mx-125 {
  margin-right: 125px !important;
  margin-left: 125px !important;
}

.my-125 {
  margin-top: 125px !important;
  margin-bottom: 125px !important;
}

.mt-125 {
  margin-top: 125px !important;
}

.me-125 {
  margin-right: 125px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.ms-125 {
  margin-left: 125px !important;
}

.m-130 {
  margin: 130px !important;
}

.mx-130 {
  margin-right: 130px !important;
  margin-left: 130px !important;
}

.my-130 {
  margin-top: 130px !important;
  margin-bottom: 130px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.me-130 {
  margin-right: 130px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.ms-130 {
  margin-left: 130px !important;
}

.m-135 {
  margin: 135px !important;
}

.mx-135 {
  margin-right: 135px !important;
  margin-left: 135px !important;
}

.my-135 {
  margin-top: 135px !important;
  margin-bottom: 135px !important;
}

.mt-135 {
  margin-top: 135px !important;
}

.me-135 {
  margin-right: 135px !important;
}

.mb-135 {
  margin-bottom: 135px !important;
}

.ms-135 {
  margin-left: 135px !important;
}

.m-140 {
  margin: 140px !important;
}

.mx-140 {
  margin-right: 140px !important;
  margin-left: 140px !important;
}

.my-140 {
  margin-top: 140px !important;
  margin-bottom: 140px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.me-140 {
  margin-right: 140px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.ms-140 {
  margin-left: 140px !important;
}

.m-145 {
  margin: 145px !important;
}

.mx-145 {
  margin-right: 145px !important;
  margin-left: 145px !important;
}

.my-145 {
  margin-top: 145px !important;
  margin-bottom: 145px !important;
}

.mt-145 {
  margin-top: 145px !important;
}

.me-145 {
  margin-right: 145px !important;
}

.mb-145 {
  margin-bottom: 145px !important;
}

.ms-145 {
  margin-left: 145px !important;
}

.m-150 {
  margin: 150px !important;
}

.mx-150 {
  margin-right: 150px !important;
  margin-left: 150px !important;
}

.my-150 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.me-150 {
  margin-right: 150px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.ms-150 {
  margin-left: 150px !important;
}

.m-155 {
  margin: 155px !important;
}

.mx-155 {
  margin-right: 155px !important;
  margin-left: 155px !important;
}

.my-155 {
  margin-top: 155px !important;
  margin-bottom: 155px !important;
}

.mt-155 {
  margin-top: 155px !important;
}

.me-155 {
  margin-right: 155px !important;
}

.mb-155 {
  margin-bottom: 155px !important;
}

.ms-155 {
  margin-left: 155px !important;
}

.m-160 {
  margin: 160px !important;
}

.mx-160 {
  margin-right: 160px !important;
  margin-left: 160px !important;
}

.my-160 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.me-160 {
  margin-right: 160px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.ms-160 {
  margin-left: 160px !important;
}

.m-165 {
  margin: 165px !important;
}

.mx-165 {
  margin-right: 165px !important;
  margin-left: 165px !important;
}

.my-165 {
  margin-top: 165px !important;
  margin-bottom: 165px !important;
}

.mt-165 {
  margin-top: 165px !important;
}

.me-165 {
  margin-right: 165px !important;
}

.mb-165 {
  margin-bottom: 165px !important;
}

.ms-165 {
  margin-left: 165px !important;
}

.m-170 {
  margin: 170px !important;
}

.mx-170 {
  margin-right: 170px !important;
  margin-left: 170px !important;
}

.my-170 {
  margin-top: 170px !important;
  margin-bottom: 170px !important;
}

.mt-170 {
  margin-top: 170px !important;
}

.me-170 {
  margin-right: 170px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.ms-170 {
  margin-left: 170px !important;
}

.m-175 {
  margin: 175px !important;
}

.mx-175 {
  margin-right: 175px !important;
  margin-left: 175px !important;
}

.my-175 {
  margin-top: 175px !important;
  margin-bottom: 175px !important;
}

.mt-175 {
  margin-top: 175px !important;
}

.me-175 {
  margin-right: 175px !important;
}

.mb-175 {
  margin-bottom: 175px !important;
}

.ms-175 {
  margin-left: 175px !important;
}

.m-180 {
  margin: 180px !important;
}

.mx-180 {
  margin-right: 180px !important;
  margin-left: 180px !important;
}

.my-180 {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}

.mt-180 {
  margin-top: 180px !important;
}

.me-180 {
  margin-right: 180px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.ms-180 {
  margin-left: 180px !important;
}

.m-185 {
  margin: 185px !important;
}

.mx-185 {
  margin-right: 185px !important;
  margin-left: 185px !important;
}

.my-185 {
  margin-top: 185px !important;
  margin-bottom: 185px !important;
}

.mt-185 {
  margin-top: 185px !important;
}

.me-185 {
  margin-right: 185px !important;
}

.mb-185 {
  margin-bottom: 185px !important;
}

.ms-185 {
  margin-left: 185px !important;
}

.m-190 {
  margin: 190px !important;
}

.mx-190 {
  margin-right: 190px !important;
  margin-left: 190px !important;
}

.my-190 {
  margin-top: 190px !important;
  margin-bottom: 190px !important;
}

.mt-190 {
  margin-top: 190px !important;
}

.me-190 {
  margin-right: 190px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.ms-190 {
  margin-left: 190px !important;
}

.m-195 {
  margin: 195px !important;
}

.mx-195 {
  margin-right: 195px !important;
  margin-left: 195px !important;
}

.my-195 {
  margin-top: 195px !important;
  margin-bottom: 195px !important;
}

.mt-195 {
  margin-top: 195px !important;
}

.me-195 {
  margin-right: 195px !important;
}

.mb-195 {
  margin-bottom: 195px !important;
}

.ms-195 {
  margin-left: 195px !important;
}

.m-200 {
  margin: 200px !important;
}

.mx-200 {
  margin-right: 200px !important;
  margin-left: 200px !important;
}

.my-200 {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.me-200 {
  margin-right: 200px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.ms-200 {
  margin-left: 200px !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .mx-sm-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .me-sm-0 {
    margin-right: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .ms-sm-0 {
    margin-left: 0px !important;
  }
  .m-0 {
    margin: 0px !important;
  }
  .mx-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-0 {
    margin-top: 0px !important;
  }
  .me-0 {
    margin-right: 0px !important;
  }
  .mb-0 {
    margin-bottom: 0px !important;
  }
  .ms-0 {
    margin-left: 0px !important;
  }
  .m-sm-5 {
    margin: 5px !important;
  }
  .mx-sm-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .me-sm-5 {
    margin-right: 5px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .ms-sm-5 {
    margin-left: 5px !important;
  }
  .m-5 {
    margin: 5px !important;
  }
  .mx-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-5 {
    margin-top: 5px !important;
  }
  .me-5 {
    margin-right: 5px !important;
  }
  .mb-5 {
    margin-bottom: 5px !important;
  }
  .ms-5 {
    margin-left: 5px !important;
  }
  .m-sm-10 {
    margin: 10px !important;
  }
  .mx-sm-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .me-sm-10 {
    margin-right: 10px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .ms-sm-10 {
    margin-left: 10px !important;
  }
  .m-10 {
    margin: 10px !important;
  }
  .mx-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-10 {
    margin-top: 10px !important;
  }
  .me-10 {
    margin-right: 10px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .ms-10 {
    margin-left: 10px !important;
  }
  .m-sm-15 {
    margin: 15px !important;
  }
  .mx-sm-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .me-sm-15 {
    margin-right: 15px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .ms-sm-15 {
    margin-left: 15px !important;
  }
  .m-15 {
    margin: 15px !important;
  }
  .mx-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-15 {
    margin-top: 15px !important;
  }
  .me-15 {
    margin-right: 15px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .ms-15 {
    margin-left: 15px !important;
  }
  .m-sm-20 {
    margin: 20px !important;
  }
  .mx-sm-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .me-sm-20 {
    margin-right: 20px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .ms-sm-20 {
    margin-left: 20px !important;
  }
  .m-20 {
    margin: 20px !important;
  }
  .mx-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .me-20 {
    margin-right: 20px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .ms-20 {
    margin-left: 20px !important;
  }
  .m-sm-25 {
    margin: 25px !important;
  }
  .mx-sm-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .me-sm-25 {
    margin-right: 25px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .ms-sm-25 {
    margin-left: 25px !important;
  }
  .m-25 {
    margin: 25px !important;
  }
  .mx-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-25 {
    margin-top: 25px !important;
  }
  .me-25 {
    margin-right: 25px !important;
  }
  .mb-25 {
    margin-bottom: 25px !important;
  }
  .ms-25 {
    margin-left: 25px !important;
  }
  .m-sm-30 {
    margin: 30px !important;
  }
  .mx-sm-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .me-sm-30 {
    margin-right: 30px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .ms-sm-30 {
    margin-left: 30px !important;
  }
  .m-30 {
    margin: 30px !important;
  }
  .mx-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .me-30 {
    margin-right: 30px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .ms-30 {
    margin-left: 30px !important;
  }
  .m-sm-35 {
    margin: 35px !important;
  }
  .mx-sm-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .me-sm-35 {
    margin-right: 35px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .ms-sm-35 {
    margin-left: 35px !important;
  }
  .m-35 {
    margin: 35px !important;
  }
  .mx-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-35 {
    margin-top: 35px !important;
  }
  .me-35 {
    margin-right: 35px !important;
  }
  .mb-35 {
    margin-bottom: 35px !important;
  }
  .ms-35 {
    margin-left: 35px !important;
  }
  .m-sm-40 {
    margin: 40px !important;
  }
  .mx-sm-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .me-sm-40 {
    margin-right: 40px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .ms-sm-40 {
    margin-left: 40px !important;
  }
  .m-40 {
    margin: 40px !important;
  }
  .mx-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .me-40 {
    margin-right: 40px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .ms-40 {
    margin-left: 40px !important;
  }
  .m-sm-45 {
    margin: 45px !important;
  }
  .mx-sm-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .me-sm-45 {
    margin-right: 45px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .ms-sm-45 {
    margin-left: 45px !important;
  }
  .m-45 {
    margin: 45px !important;
  }
  .mx-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-45 {
    margin-top: 45px !important;
  }
  .me-45 {
    margin-right: 45px !important;
  }
  .mb-45 {
    margin-bottom: 45px !important;
  }
  .ms-45 {
    margin-left: 45px !important;
  }
  .m-sm-50 {
    margin: 50px !important;
  }
  .mx-sm-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .me-sm-50 {
    margin-right: 50px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .ms-sm-50 {
    margin-left: 50px !important;
  }
  .m-50 {
    margin: 50px !important;
  }
  .mx-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-50 {
    margin-top: 50px !important;
  }
  .me-50 {
    margin-right: 50px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .ms-50 {
    margin-left: 50px !important;
  }
  .m-sm-55 {
    margin: 55px !important;
  }
  .mx-sm-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .me-sm-55 {
    margin-right: 55px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .ms-sm-55 {
    margin-left: 55px !important;
  }
  .m-55 {
    margin: 55px !important;
  }
  .mx-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-55 {
    margin-top: 55px !important;
  }
  .me-55 {
    margin-right: 55px !important;
  }
  .mb-55 {
    margin-bottom: 55px !important;
  }
  .ms-55 {
    margin-left: 55px !important;
  }
  .m-sm-60 {
    margin: 60px !important;
  }
  .mx-sm-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .me-sm-60 {
    margin-right: 60px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .ms-sm-60 {
    margin-left: 60px !important;
  }
  .m-60 {
    margin: 60px !important;
  }
  .mx-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .me-60 {
    margin-right: 60px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .ms-60 {
    margin-left: 60px !important;
  }
  .m-sm-65 {
    margin: 65px !important;
  }
  .mx-sm-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .me-sm-65 {
    margin-right: 65px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .ms-sm-65 {
    margin-left: 65px !important;
  }
  .m-65 {
    margin: 65px !important;
  }
  .mx-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-65 {
    margin-top: 65px !important;
  }
  .me-65 {
    margin-right: 65px !important;
  }
  .mb-65 {
    margin-bottom: 65px !important;
  }
  .ms-65 {
    margin-left: 65px !important;
  }
  .m-sm-70 {
    margin: 70px !important;
  }
  .mx-sm-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .me-sm-70 {
    margin-right: 70px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .ms-sm-70 {
    margin-left: 70px !important;
  }
  .m-70 {
    margin: 70px !important;
  }
  .mx-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-70 {
    margin-top: 70px !important;
  }
  .me-70 {
    margin-right: 70px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .ms-70 {
    margin-left: 70px !important;
  }
  .m-sm-75 {
    margin: 75px !important;
  }
  .mx-sm-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .me-sm-75 {
    margin-right: 75px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .ms-sm-75 {
    margin-left: 75px !important;
  }
  .m-75 {
    margin: 75px !important;
  }
  .mx-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-75 {
    margin-top: 75px !important;
  }
  .me-75 {
    margin-right: 75px !important;
  }
  .mb-75 {
    margin-bottom: 75px !important;
  }
  .ms-75 {
    margin-left: 75px !important;
  }
  .m-sm-80 {
    margin: 80px !important;
  }
  .mx-sm-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .me-sm-80 {
    margin-right: 80px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .ms-sm-80 {
    margin-left: 80px !important;
  }
  .m-80 {
    margin: 80px !important;
  }
  .mx-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .me-80 {
    margin-right: 80px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .ms-80 {
    margin-left: 80px !important;
  }
  .m-sm-85 {
    margin: 85px !important;
  }
  .mx-sm-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-sm-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .me-sm-85 {
    margin-right: 85px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .ms-sm-85 {
    margin-left: 85px !important;
  }
  .m-85 {
    margin: 85px !important;
  }
  .mx-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-85 {
    margin-top: 85px !important;
  }
  .me-85 {
    margin-right: 85px !important;
  }
  .mb-85 {
    margin-bottom: 85px !important;
  }
  .ms-85 {
    margin-left: 85px !important;
  }
  .m-sm-90 {
    margin: 90px !important;
  }
  .mx-sm-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .me-sm-90 {
    margin-right: 90px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .ms-sm-90 {
    margin-left: 90px !important;
  }
  .m-90 {
    margin: 90px !important;
  }
  .mx-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
  .me-90 {
    margin-right: 90px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .ms-90 {
    margin-left: 90px !important;
  }
  .m-sm-95 {
    margin: 95px !important;
  }
  .mx-sm-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .me-sm-95 {
    margin-right: 95px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .ms-sm-95 {
    margin-left: 95px !important;
  }
  .m-95 {
    margin: 95px !important;
  }
  .mx-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-95 {
    margin-top: 95px !important;
  }
  .me-95 {
    margin-right: 95px !important;
  }
  .mb-95 {
    margin-bottom: 95px !important;
  }
  .ms-95 {
    margin-left: 95px !important;
  }
  .m-sm-100 {
    margin: 100px !important;
  }
  .mx-sm-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
  .me-sm-100 {
    margin-right: 100px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .ms-sm-100 {
    margin-left: 100px !important;
  }
  .m-100 {
    margin: 100px !important;
  }
  .mx-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }
  .me-100 {
    margin-right: 100px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .ms-100 {
    margin-left: 100px !important;
  }
  .m-sm-105 {
    margin: 105px !important;
  }
  .mx-sm-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-sm-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-sm-105 {
    margin-top: 105px !important;
  }
  .me-sm-105 {
    margin-right: 105px !important;
  }
  .mb-sm-105 {
    margin-bottom: 105px !important;
  }
  .ms-sm-105 {
    margin-left: 105px !important;
  }
  .m-105 {
    margin: 105px !important;
  }
  .mx-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-105 {
    margin-top: 105px !important;
  }
  .me-105 {
    margin-right: 105px !important;
  }
  .mb-105 {
    margin-bottom: 105px !important;
  }
  .ms-105 {
    margin-left: 105px !important;
  }
  .m-sm-110 {
    margin: 110px !important;
  }
  .mx-sm-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-sm-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-sm-110 {
    margin-top: 110px !important;
  }
  .me-sm-110 {
    margin-right: 110px !important;
  }
  .mb-sm-110 {
    margin-bottom: 110px !important;
  }
  .ms-sm-110 {
    margin-left: 110px !important;
  }
  .m-110 {
    margin: 110px !important;
  }
  .mx-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-110 {
    margin-top: 110px !important;
  }
  .me-110 {
    margin-right: 110px !important;
  }
  .mb-110 {
    margin-bottom: 110px !important;
  }
  .ms-110 {
    margin-left: 110px !important;
  }
  .m-sm-115 {
    margin: 115px !important;
  }
  .mx-sm-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-sm-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-sm-115 {
    margin-top: 115px !important;
  }
  .me-sm-115 {
    margin-right: 115px !important;
  }
  .mb-sm-115 {
    margin-bottom: 115px !important;
  }
  .ms-sm-115 {
    margin-left: 115px !important;
  }
  .m-115 {
    margin: 115px !important;
  }
  .mx-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-115 {
    margin-top: 115px !important;
  }
  .me-115 {
    margin-right: 115px !important;
  }
  .mb-115 {
    margin-bottom: 115px !important;
  }
  .ms-115 {
    margin-left: 115px !important;
  }
  .m-sm-120 {
    margin: 120px !important;
  }
  .mx-sm-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-sm-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-sm-120 {
    margin-top: 120px !important;
  }
  .me-sm-120 {
    margin-right: 120px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .ms-sm-120 {
    margin-left: 120px !important;
  }
  .m-120 {
    margin: 120px !important;
  }
  .mx-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-120 {
    margin-top: 120px !important;
  }
  .me-120 {
    margin-right: 120px !important;
  }
  .mb-120 {
    margin-bottom: 120px !important;
  }
  .ms-120 {
    margin-left: 120px !important;
  }
  .m-sm-125 {
    margin: 125px !important;
  }
  .mx-sm-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-sm-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-sm-125 {
    margin-top: 125px !important;
  }
  .me-sm-125 {
    margin-right: 125px !important;
  }
  .mb-sm-125 {
    margin-bottom: 125px !important;
  }
  .ms-sm-125 {
    margin-left: 125px !important;
  }
  .m-125 {
    margin: 125px !important;
  }
  .mx-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-125 {
    margin-top: 125px !important;
  }
  .me-125 {
    margin-right: 125px !important;
  }
  .mb-125 {
    margin-bottom: 125px !important;
  }
  .ms-125 {
    margin-left: 125px !important;
  }
  .m-sm-130 {
    margin: 130px !important;
  }
  .mx-sm-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-sm-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-sm-130 {
    margin-top: 130px !important;
  }
  .me-sm-130 {
    margin-right: 130px !important;
  }
  .mb-sm-130 {
    margin-bottom: 130px !important;
  }
  .ms-sm-130 {
    margin-left: 130px !important;
  }
  .m-130 {
    margin: 130px !important;
  }
  .mx-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-130 {
    margin-top: 130px !important;
  }
  .me-130 {
    margin-right: 130px !important;
  }
  .mb-130 {
    margin-bottom: 130px !important;
  }
  .ms-130 {
    margin-left: 130px !important;
  }
  .m-sm-135 {
    margin: 135px !important;
  }
  .mx-sm-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-sm-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-sm-135 {
    margin-top: 135px !important;
  }
  .me-sm-135 {
    margin-right: 135px !important;
  }
  .mb-sm-135 {
    margin-bottom: 135px !important;
  }
  .ms-sm-135 {
    margin-left: 135px !important;
  }
  .m-135 {
    margin: 135px !important;
  }
  .mx-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-135 {
    margin-top: 135px !important;
  }
  .me-135 {
    margin-right: 135px !important;
  }
  .mb-135 {
    margin-bottom: 135px !important;
  }
  .ms-135 {
    margin-left: 135px !important;
  }
  .m-sm-140 {
    margin: 140px !important;
  }
  .mx-sm-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-sm-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-sm-140 {
    margin-top: 140px !important;
  }
  .me-sm-140 {
    margin-right: 140px !important;
  }
  .mb-sm-140 {
    margin-bottom: 140px !important;
  }
  .ms-sm-140 {
    margin-left: 140px !important;
  }
  .m-140 {
    margin: 140px !important;
  }
  .mx-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-140 {
    margin-top: 140px !important;
  }
  .me-140 {
    margin-right: 140px !important;
  }
  .mb-140 {
    margin-bottom: 140px !important;
  }
  .ms-140 {
    margin-left: 140px !important;
  }
  .m-sm-145 {
    margin: 145px !important;
  }
  .mx-sm-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-sm-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-sm-145 {
    margin-top: 145px !important;
  }
  .me-sm-145 {
    margin-right: 145px !important;
  }
  .mb-sm-145 {
    margin-bottom: 145px !important;
  }
  .ms-sm-145 {
    margin-left: 145px !important;
  }
  .m-145 {
    margin: 145px !important;
  }
  .mx-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-145 {
    margin-top: 145px !important;
  }
  .me-145 {
    margin-right: 145px !important;
  }
  .mb-145 {
    margin-bottom: 145px !important;
  }
  .ms-145 {
    margin-left: 145px !important;
  }
  .m-sm-150 {
    margin: 150px !important;
  }
  .mx-sm-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-sm-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-sm-150 {
    margin-top: 150px !important;
  }
  .me-sm-150 {
    margin-right: 150px !important;
  }
  .mb-sm-150 {
    margin-bottom: 150px !important;
  }
  .ms-sm-150 {
    margin-left: 150px !important;
  }
  .m-150 {
    margin: 150px !important;
  }
  .mx-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-150 {
    margin-top: 150px !important;
  }
  .me-150 {
    margin-right: 150px !important;
  }
  .mb-150 {
    margin-bottom: 150px !important;
  }
  .ms-150 {
    margin-left: 150px !important;
  }
  .m-sm-155 {
    margin: 155px !important;
  }
  .mx-sm-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-sm-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-sm-155 {
    margin-top: 155px !important;
  }
  .me-sm-155 {
    margin-right: 155px !important;
  }
  .mb-sm-155 {
    margin-bottom: 155px !important;
  }
  .ms-sm-155 {
    margin-left: 155px !important;
  }
  .m-155 {
    margin: 155px !important;
  }
  .mx-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-155 {
    margin-top: 155px !important;
  }
  .me-155 {
    margin-right: 155px !important;
  }
  .mb-155 {
    margin-bottom: 155px !important;
  }
  .ms-155 {
    margin-left: 155px !important;
  }
  .m-sm-160 {
    margin: 160px !important;
  }
  .mx-sm-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-sm-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-sm-160 {
    margin-top: 160px !important;
  }
  .me-sm-160 {
    margin-right: 160px !important;
  }
  .mb-sm-160 {
    margin-bottom: 160px !important;
  }
  .ms-sm-160 {
    margin-left: 160px !important;
  }
  .m-160 {
    margin: 160px !important;
  }
  .mx-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-160 {
    margin-top: 160px !important;
  }
  .me-160 {
    margin-right: 160px !important;
  }
  .mb-160 {
    margin-bottom: 160px !important;
  }
  .ms-160 {
    margin-left: 160px !important;
  }
  .m-sm-165 {
    margin: 165px !important;
  }
  .mx-sm-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-sm-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-sm-165 {
    margin-top: 165px !important;
  }
  .me-sm-165 {
    margin-right: 165px !important;
  }
  .mb-sm-165 {
    margin-bottom: 165px !important;
  }
  .ms-sm-165 {
    margin-left: 165px !important;
  }
  .m-165 {
    margin: 165px !important;
  }
  .mx-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-165 {
    margin-top: 165px !important;
  }
  .me-165 {
    margin-right: 165px !important;
  }
  .mb-165 {
    margin-bottom: 165px !important;
  }
  .ms-165 {
    margin-left: 165px !important;
  }
  .m-sm-170 {
    margin: 170px !important;
  }
  .mx-sm-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-sm-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-sm-170 {
    margin-top: 170px !important;
  }
  .me-sm-170 {
    margin-right: 170px !important;
  }
  .mb-sm-170 {
    margin-bottom: 170px !important;
  }
  .ms-sm-170 {
    margin-left: 170px !important;
  }
  .m-170 {
    margin: 170px !important;
  }
  .mx-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-170 {
    margin-top: 170px !important;
  }
  .me-170 {
    margin-right: 170px !important;
  }
  .mb-170 {
    margin-bottom: 170px !important;
  }
  .ms-170 {
    margin-left: 170px !important;
  }
  .m-sm-175 {
    margin: 175px !important;
  }
  .mx-sm-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-sm-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-sm-175 {
    margin-top: 175px !important;
  }
  .me-sm-175 {
    margin-right: 175px !important;
  }
  .mb-sm-175 {
    margin-bottom: 175px !important;
  }
  .ms-sm-175 {
    margin-left: 175px !important;
  }
  .m-175 {
    margin: 175px !important;
  }
  .mx-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-175 {
    margin-top: 175px !important;
  }
  .me-175 {
    margin-right: 175px !important;
  }
  .mb-175 {
    margin-bottom: 175px !important;
  }
  .ms-175 {
    margin-left: 175px !important;
  }
  .m-sm-180 {
    margin: 180px !important;
  }
  .mx-sm-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-sm-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-sm-180 {
    margin-top: 180px !important;
  }
  .me-sm-180 {
    margin-right: 180px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .ms-sm-180 {
    margin-left: 180px !important;
  }
  .m-180 {
    margin: 180px !important;
  }
  .mx-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-180 {
    margin-top: 180px !important;
  }
  .me-180 {
    margin-right: 180px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .ms-180 {
    margin-left: 180px !important;
  }
  .m-sm-185 {
    margin: 185px !important;
  }
  .mx-sm-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-sm-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-sm-185 {
    margin-top: 185px !important;
  }
  .me-sm-185 {
    margin-right: 185px !important;
  }
  .mb-sm-185 {
    margin-bottom: 185px !important;
  }
  .ms-sm-185 {
    margin-left: 185px !important;
  }
  .m-185 {
    margin: 185px !important;
  }
  .mx-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-185 {
    margin-top: 185px !important;
  }
  .me-185 {
    margin-right: 185px !important;
  }
  .mb-185 {
    margin-bottom: 185px !important;
  }
  .ms-185 {
    margin-left: 185px !important;
  }
  .m-sm-190 {
    margin: 190px !important;
  }
  .mx-sm-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-sm-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-sm-190 {
    margin-top: 190px !important;
  }
  .me-sm-190 {
    margin-right: 190px !important;
  }
  .mb-sm-190 {
    margin-bottom: 190px !important;
  }
  .ms-sm-190 {
    margin-left: 190px !important;
  }
  .m-190 {
    margin: 190px !important;
  }
  .mx-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-190 {
    margin-top: 190px !important;
  }
  .me-190 {
    margin-right: 190px !important;
  }
  .mb-190 {
    margin-bottom: 190px !important;
  }
  .ms-190 {
    margin-left: 190px !important;
  }
  .m-sm-195 {
    margin: 195px !important;
  }
  .mx-sm-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-sm-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-sm-195 {
    margin-top: 195px !important;
  }
  .me-sm-195 {
    margin-right: 195px !important;
  }
  .mb-sm-195 {
    margin-bottom: 195px !important;
  }
  .ms-sm-195 {
    margin-left: 195px !important;
  }
  .m-195 {
    margin: 195px !important;
  }
  .mx-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-195 {
    margin-top: 195px !important;
  }
  .me-195 {
    margin-right: 195px !important;
  }
  .mb-195 {
    margin-bottom: 195px !important;
  }
  .ms-195 {
    margin-left: 195px !important;
  }
  .m-sm-200 {
    margin: 200px !important;
  }
  .mx-sm-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-sm-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-sm-200 {
    margin-top: 200px !important;
  }
  .me-sm-200 {
    margin-right: 200px !important;
  }
  .mb-sm-200 {
    margin-bottom: 200px !important;
  }
  .ms-sm-200 {
    margin-left: 200px !important;
  }
  .m-200 {
    margin: 200px !important;
  }
  .mx-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-200 {
    margin-top: 200px !important;
  }
  .me-200 {
    margin-right: 200px !important;
  }
  .mb-200 {
    margin-bottom: 200px !important;
  }
  .ms-200 {
    margin-left: 200px !important;
  }
}
@media (min-width: 768px) {
  .m-0 {
    margin: 0px !important;
  }
  .mx-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-0 {
    margin-top: 0px !important;
  }
  .me-0 {
    margin-right: 0px !important;
  }
  .mb-0 {
    margin-bottom: 0px !important;
  }
  .ms-0 {
    margin-left: 0px !important;
  }
  .m-5 {
    margin: 5px !important;
  }
  .mx-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-5 {
    margin-top: 5px !important;
  }
  .me-5 {
    margin-right: 5px !important;
  }
  .mb-5 {
    margin-bottom: 5px !important;
  }
  .ms-5 {
    margin-left: 5px !important;
  }
  .m-10 {
    margin: 10px !important;
  }
  .mx-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-10 {
    margin-top: 10px !important;
  }
  .me-10 {
    margin-right: 10px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .ms-10 {
    margin-left: 10px !important;
  }
  .m-15 {
    margin: 15px !important;
  }
  .mx-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-15 {
    margin-top: 15px !important;
  }
  .me-15 {
    margin-right: 15px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .ms-15 {
    margin-left: 15px !important;
  }
  .m-20 {
    margin: 20px !important;
  }
  .mx-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .me-20 {
    margin-right: 20px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .ms-20 {
    margin-left: 20px !important;
  }
  .m-25 {
    margin: 25px !important;
  }
  .mx-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-25 {
    margin-top: 25px !important;
  }
  .me-25 {
    margin-right: 25px !important;
  }
  .mb-25 {
    margin-bottom: 25px !important;
  }
  .ms-25 {
    margin-left: 25px !important;
  }
  .m-30 {
    margin: 30px !important;
  }
  .mx-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .me-30 {
    margin-right: 30px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .ms-30 {
    margin-left: 30px !important;
  }
  .m-35 {
    margin: 35px !important;
  }
  .mx-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-35 {
    margin-top: 35px !important;
  }
  .me-35 {
    margin-right: 35px !important;
  }
  .mb-35 {
    margin-bottom: 35px !important;
  }
  .ms-35 {
    margin-left: 35px !important;
  }
  .m-40 {
    margin: 40px !important;
  }
  .mx-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .me-40 {
    margin-right: 40px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .ms-40 {
    margin-left: 40px !important;
  }
  .m-45 {
    margin: 45px !important;
  }
  .mx-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-45 {
    margin-top: 45px !important;
  }
  .me-45 {
    margin-right: 45px !important;
  }
  .mb-45 {
    margin-bottom: 45px !important;
  }
  .ms-45 {
    margin-left: 45px !important;
  }
  .m-50 {
    margin: 50px !important;
  }
  .mx-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-50 {
    margin-top: 50px !important;
  }
  .me-50 {
    margin-right: 50px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .ms-50 {
    margin-left: 50px !important;
  }
  .m-55 {
    margin: 55px !important;
  }
  .mx-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-55 {
    margin-top: 55px !important;
  }
  .me-55 {
    margin-right: 55px !important;
  }
  .mb-55 {
    margin-bottom: 55px !important;
  }
  .ms-55 {
    margin-left: 55px !important;
  }
  .m-60 {
    margin: 60px !important;
  }
  .mx-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .me-60 {
    margin-right: 60px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .ms-60 {
    margin-left: 60px !important;
  }
  .m-65 {
    margin: 65px !important;
  }
  .mx-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-65 {
    margin-top: 65px !important;
  }
  .me-65 {
    margin-right: 65px !important;
  }
  .mb-65 {
    margin-bottom: 65px !important;
  }
  .ms-65 {
    margin-left: 65px !important;
  }
  .m-70 {
    margin: 70px !important;
  }
  .mx-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-70 {
    margin-top: 70px !important;
  }
  .me-70 {
    margin-right: 70px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .ms-70 {
    margin-left: 70px !important;
  }
  .m-75 {
    margin: 75px !important;
  }
  .mx-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-75 {
    margin-top: 75px !important;
  }
  .me-75 {
    margin-right: 75px !important;
  }
  .mb-75 {
    margin-bottom: 75px !important;
  }
  .ms-75 {
    margin-left: 75px !important;
  }
  .m-80 {
    margin: 80px !important;
  }
  .mx-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .me-80 {
    margin-right: 80px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .ms-80 {
    margin-left: 80px !important;
  }
  .m-85 {
    margin: 85px !important;
  }
  .mx-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-85 {
    margin-top: 85px !important;
  }
  .me-85 {
    margin-right: 85px !important;
  }
  .mb-85 {
    margin-bottom: 85px !important;
  }
  .ms-85 {
    margin-left: 85px !important;
  }
  .m-90 {
    margin: 90px !important;
  }
  .mx-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
  .me-90 {
    margin-right: 90px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .ms-90 {
    margin-left: 90px !important;
  }
  .m-95 {
    margin: 95px !important;
  }
  .mx-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-95 {
    margin-top: 95px !important;
  }
  .me-95 {
    margin-right: 95px !important;
  }
  .mb-95 {
    margin-bottom: 95px !important;
  }
  .ms-95 {
    margin-left: 95px !important;
  }
  .m-100 {
    margin: 100px !important;
  }
  .mx-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }
  .me-100 {
    margin-right: 100px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .ms-100 {
    margin-left: 100px !important;
  }
  .m-105 {
    margin: 105px !important;
  }
  .mx-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-105 {
    margin-top: 105px !important;
  }
  .me-105 {
    margin-right: 105px !important;
  }
  .mb-105 {
    margin-bottom: 105px !important;
  }
  .ms-105 {
    margin-left: 105px !important;
  }
  .m-110 {
    margin: 110px !important;
  }
  .mx-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-110 {
    margin-top: 110px !important;
  }
  .me-110 {
    margin-right: 110px !important;
  }
  .mb-110 {
    margin-bottom: 110px !important;
  }
  .ms-110 {
    margin-left: 110px !important;
  }
  .m-115 {
    margin: 115px !important;
  }
  .mx-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-115 {
    margin-top: 115px !important;
  }
  .me-115 {
    margin-right: 115px !important;
  }
  .mb-115 {
    margin-bottom: 115px !important;
  }
  .ms-115 {
    margin-left: 115px !important;
  }
  .m-120 {
    margin: 120px !important;
  }
  .mx-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-120 {
    margin-top: 120px !important;
  }
  .me-120 {
    margin-right: 120px !important;
  }
  .mb-120 {
    margin-bottom: 120px !important;
  }
  .ms-120 {
    margin-left: 120px !important;
  }
  .m-125 {
    margin: 125px !important;
  }
  .mx-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-125 {
    margin-top: 125px !important;
  }
  .me-125 {
    margin-right: 125px !important;
  }
  .mb-125 {
    margin-bottom: 125px !important;
  }
  .ms-125 {
    margin-left: 125px !important;
  }
  .m-130 {
    margin: 130px !important;
  }
  .mx-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-130 {
    margin-top: 130px !important;
  }
  .me-130 {
    margin-right: 130px !important;
  }
  .mb-130 {
    margin-bottom: 130px !important;
  }
  .ms-130 {
    margin-left: 130px !important;
  }
  .m-135 {
    margin: 135px !important;
  }
  .mx-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-135 {
    margin-top: 135px !important;
  }
  .me-135 {
    margin-right: 135px !important;
  }
  .mb-135 {
    margin-bottom: 135px !important;
  }
  .ms-135 {
    margin-left: 135px !important;
  }
  .m-140 {
    margin: 140px !important;
  }
  .mx-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-140 {
    margin-top: 140px !important;
  }
  .me-140 {
    margin-right: 140px !important;
  }
  .mb-140 {
    margin-bottom: 140px !important;
  }
  .ms-140 {
    margin-left: 140px !important;
  }
  .m-145 {
    margin: 145px !important;
  }
  .mx-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-145 {
    margin-top: 145px !important;
  }
  .me-145 {
    margin-right: 145px !important;
  }
  .mb-145 {
    margin-bottom: 145px !important;
  }
  .ms-145 {
    margin-left: 145px !important;
  }
  .m-150 {
    margin: 150px !important;
  }
  .mx-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-150 {
    margin-top: 150px !important;
  }
  .me-150 {
    margin-right: 150px !important;
  }
  .mb-150 {
    margin-bottom: 150px !important;
  }
  .ms-150 {
    margin-left: 150px !important;
  }
  .m-155 {
    margin: 155px !important;
  }
  .mx-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-155 {
    margin-top: 155px !important;
  }
  .me-155 {
    margin-right: 155px !important;
  }
  .mb-155 {
    margin-bottom: 155px !important;
  }
  .ms-155 {
    margin-left: 155px !important;
  }
  .m-160 {
    margin: 160px !important;
  }
  .mx-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-160 {
    margin-top: 160px !important;
  }
  .me-160 {
    margin-right: 160px !important;
  }
  .mb-160 {
    margin-bottom: 160px !important;
  }
  .ms-160 {
    margin-left: 160px !important;
  }
  .m-165 {
    margin: 165px !important;
  }
  .mx-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-165 {
    margin-top: 165px !important;
  }
  .me-165 {
    margin-right: 165px !important;
  }
  .mb-165 {
    margin-bottom: 165px !important;
  }
  .ms-165 {
    margin-left: 165px !important;
  }
  .m-170 {
    margin: 170px !important;
  }
  .mx-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-170 {
    margin-top: 170px !important;
  }
  .me-170 {
    margin-right: 170px !important;
  }
  .mb-170 {
    margin-bottom: 170px !important;
  }
  .ms-170 {
    margin-left: 170px !important;
  }
  .m-175 {
    margin: 175px !important;
  }
  .mx-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-175 {
    margin-top: 175px !important;
  }
  .me-175 {
    margin-right: 175px !important;
  }
  .mb-175 {
    margin-bottom: 175px !important;
  }
  .ms-175 {
    margin-left: 175px !important;
  }
  .m-180 {
    margin: 180px !important;
  }
  .mx-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-180 {
    margin-top: 180px !important;
  }
  .me-180 {
    margin-right: 180px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .ms-180 {
    margin-left: 180px !important;
  }
  .m-185 {
    margin: 185px !important;
  }
  .mx-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-185 {
    margin-top: 185px !important;
  }
  .me-185 {
    margin-right: 185px !important;
  }
  .mb-185 {
    margin-bottom: 185px !important;
  }
  .ms-185 {
    margin-left: 185px !important;
  }
  .m-190 {
    margin: 190px !important;
  }
  .mx-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-190 {
    margin-top: 190px !important;
  }
  .me-190 {
    margin-right: 190px !important;
  }
  .mb-190 {
    margin-bottom: 190px !important;
  }
  .ms-190 {
    margin-left: 190px !important;
  }
  .m-195 {
    margin: 195px !important;
  }
  .mx-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-195 {
    margin-top: 195px !important;
  }
  .me-195 {
    margin-right: 195px !important;
  }
  .mb-195 {
    margin-bottom: 195px !important;
  }
  .ms-195 {
    margin-left: 195px !important;
  }
  .m-200 {
    margin: 200px !important;
  }
  .mx-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-200 {
    margin-top: 200px !important;
  }
  .me-200 {
    margin-right: 200px !important;
  }
  .mb-200 {
    margin-bottom: 200px !important;
  }
  .ms-200 {
    margin-left: 200px !important;
  }
  .m-md-0 {
    margin: 0px !important;
  }
  .mx-md-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .me-md-0 {
    margin-right: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .ms-md-0 {
    margin-left: 0px !important;
  }
  .m-md-5 {
    margin: 5px !important;
  }
  .mx-md-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .me-md-5 {
    margin-right: 5px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .ms-md-5 {
    margin-left: 5px !important;
  }
  .m-md-10 {
    margin: 10px !important;
  }
  .mx-md-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .me-md-10 {
    margin-right: 10px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .ms-md-10 {
    margin-left: 10px !important;
  }
  .m-md-15 {
    margin: 15px !important;
  }
  .mx-md-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .me-md-15 {
    margin-right: 15px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .ms-md-15 {
    margin-left: 15px !important;
  }
  .m-md-20 {
    margin: 20px !important;
  }
  .mx-md-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .me-md-20 {
    margin-right: 20px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .ms-md-20 {
    margin-left: 20px !important;
  }
  .m-md-25 {
    margin: 25px !important;
  }
  .mx-md-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .me-md-25 {
    margin-right: 25px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .ms-md-25 {
    margin-left: 25px !important;
  }
  .m-md-30 {
    margin: 30px !important;
  }
  .mx-md-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .me-md-30 {
    margin-right: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .ms-md-30 {
    margin-left: 30px !important;
  }
  .m-md-35 {
    margin: 35px !important;
  }
  .mx-md-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .me-md-35 {
    margin-right: 35px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .ms-md-35 {
    margin-left: 35px !important;
  }
  .m-md-40 {
    margin: 40px !important;
  }
  .mx-md-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .me-md-40 {
    margin-right: 40px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .ms-md-40 {
    margin-left: 40px !important;
  }
  .m-md-45 {
    margin: 45px !important;
  }
  .mx-md-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .me-md-45 {
    margin-right: 45px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .ms-md-45 {
    margin-left: 45px !important;
  }
  .m-md-50 {
    margin: 50px !important;
  }
  .mx-md-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .me-md-50 {
    margin-right: 50px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .ms-md-50 {
    margin-left: 50px !important;
  }
  .m-md-55 {
    margin: 55px !important;
  }
  .mx-md-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .me-md-55 {
    margin-right: 55px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .ms-md-55 {
    margin-left: 55px !important;
  }
  .m-md-60 {
    margin: 60px !important;
  }
  .mx-md-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .me-md-60 {
    margin-right: 60px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .ms-md-60 {
    margin-left: 60px !important;
  }
  .m-md-65 {
    margin: 65px !important;
  }
  .mx-md-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .me-md-65 {
    margin-right: 65px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .ms-md-65 {
    margin-left: 65px !important;
  }
  .m-md-70 {
    margin: 70px !important;
  }
  .mx-md-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .me-md-70 {
    margin-right: 70px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .ms-md-70 {
    margin-left: 70px !important;
  }
  .m-md-75 {
    margin: 75px !important;
  }
  .mx-md-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .me-md-75 {
    margin-right: 75px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .ms-md-75 {
    margin-left: 75px !important;
  }
  .m-md-80 {
    margin: 80px !important;
  }
  .mx-md-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .me-md-80 {
    margin-right: 80px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .ms-md-80 {
    margin-left: 80px !important;
  }
  .m-md-85 {
    margin: 85px !important;
  }
  .mx-md-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-md-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .me-md-85 {
    margin-right: 85px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .ms-md-85 {
    margin-left: 85px !important;
  }
  .m-md-90 {
    margin: 90px !important;
  }
  .mx-md-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .me-md-90 {
    margin-right: 90px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .ms-md-90 {
    margin-left: 90px !important;
  }
  .m-md-95 {
    margin: 95px !important;
  }
  .mx-md-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .me-md-95 {
    margin-right: 95px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .ms-md-95 {
    margin-left: 95px !important;
  }
  .m-md-100 {
    margin: 100px !important;
  }
  .mx-md-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .me-md-100 {
    margin-right: 100px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .ms-md-100 {
    margin-left: 100px !important;
  }
  .m-md-105 {
    margin: 105px !important;
  }
  .mx-md-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-md-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-md-105 {
    margin-top: 105px !important;
  }
  .me-md-105 {
    margin-right: 105px !important;
  }
  .mb-md-105 {
    margin-bottom: 105px !important;
  }
  .ms-md-105 {
    margin-left: 105px !important;
  }
  .m-md-110 {
    margin: 110px !important;
  }
  .mx-md-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-md-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-md-110 {
    margin-top: 110px !important;
  }
  .me-md-110 {
    margin-right: 110px !important;
  }
  .mb-md-110 {
    margin-bottom: 110px !important;
  }
  .ms-md-110 {
    margin-left: 110px !important;
  }
  .m-md-115 {
    margin: 115px !important;
  }
  .mx-md-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-md-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-md-115 {
    margin-top: 115px !important;
  }
  .me-md-115 {
    margin-right: 115px !important;
  }
  .mb-md-115 {
    margin-bottom: 115px !important;
  }
  .ms-md-115 {
    margin-left: 115px !important;
  }
  .m-md-120 {
    margin: 120px !important;
  }
  .mx-md-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-md-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-md-120 {
    margin-top: 120px !important;
  }
  .me-md-120 {
    margin-right: 120px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .ms-md-120 {
    margin-left: 120px !important;
  }
  .m-md-125 {
    margin: 125px !important;
  }
  .mx-md-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-md-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-md-125 {
    margin-top: 125px !important;
  }
  .me-md-125 {
    margin-right: 125px !important;
  }
  .mb-md-125 {
    margin-bottom: 125px !important;
  }
  .ms-md-125 {
    margin-left: 125px !important;
  }
  .m-md-130 {
    margin: 130px !important;
  }
  .mx-md-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-md-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-md-130 {
    margin-top: 130px !important;
  }
  .me-md-130 {
    margin-right: 130px !important;
  }
  .mb-md-130 {
    margin-bottom: 130px !important;
  }
  .ms-md-130 {
    margin-left: 130px !important;
  }
  .m-md-135 {
    margin: 135px !important;
  }
  .mx-md-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-md-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-md-135 {
    margin-top: 135px !important;
  }
  .me-md-135 {
    margin-right: 135px !important;
  }
  .mb-md-135 {
    margin-bottom: 135px !important;
  }
  .ms-md-135 {
    margin-left: 135px !important;
  }
  .m-md-140 {
    margin: 140px !important;
  }
  .mx-md-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-md-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-md-140 {
    margin-top: 140px !important;
  }
  .me-md-140 {
    margin-right: 140px !important;
  }
  .mb-md-140 {
    margin-bottom: 140px !important;
  }
  .ms-md-140 {
    margin-left: 140px !important;
  }
  .m-md-145 {
    margin: 145px !important;
  }
  .mx-md-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-md-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-md-145 {
    margin-top: 145px !important;
  }
  .me-md-145 {
    margin-right: 145px !important;
  }
  .mb-md-145 {
    margin-bottom: 145px !important;
  }
  .ms-md-145 {
    margin-left: 145px !important;
  }
  .m-md-150 {
    margin: 150px !important;
  }
  .mx-md-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-md-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-md-150 {
    margin-top: 150px !important;
  }
  .me-md-150 {
    margin-right: 150px !important;
  }
  .mb-md-150 {
    margin-bottom: 150px !important;
  }
  .ms-md-150 {
    margin-left: 150px !important;
  }
  .m-md-155 {
    margin: 155px !important;
  }
  .mx-md-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-md-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-md-155 {
    margin-top: 155px !important;
  }
  .me-md-155 {
    margin-right: 155px !important;
  }
  .mb-md-155 {
    margin-bottom: 155px !important;
  }
  .ms-md-155 {
    margin-left: 155px !important;
  }
  .m-md-160 {
    margin: 160px !important;
  }
  .mx-md-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-md-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-md-160 {
    margin-top: 160px !important;
  }
  .me-md-160 {
    margin-right: 160px !important;
  }
  .mb-md-160 {
    margin-bottom: 160px !important;
  }
  .ms-md-160 {
    margin-left: 160px !important;
  }
  .m-md-165 {
    margin: 165px !important;
  }
  .mx-md-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-md-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-md-165 {
    margin-top: 165px !important;
  }
  .me-md-165 {
    margin-right: 165px !important;
  }
  .mb-md-165 {
    margin-bottom: 165px !important;
  }
  .ms-md-165 {
    margin-left: 165px !important;
  }
  .m-md-170 {
    margin: 170px !important;
  }
  .mx-md-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-md-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-md-170 {
    margin-top: 170px !important;
  }
  .me-md-170 {
    margin-right: 170px !important;
  }
  .mb-md-170 {
    margin-bottom: 170px !important;
  }
  .ms-md-170 {
    margin-left: 170px !important;
  }
  .m-md-175 {
    margin: 175px !important;
  }
  .mx-md-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-md-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-md-175 {
    margin-top: 175px !important;
  }
  .me-md-175 {
    margin-right: 175px !important;
  }
  .mb-md-175 {
    margin-bottom: 175px !important;
  }
  .ms-md-175 {
    margin-left: 175px !important;
  }
  .m-md-180 {
    margin: 180px !important;
  }
  .mx-md-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-md-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-md-180 {
    margin-top: 180px !important;
  }
  .me-md-180 {
    margin-right: 180px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .ms-md-180 {
    margin-left: 180px !important;
  }
  .m-md-185 {
    margin: 185px !important;
  }
  .mx-md-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-md-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-md-185 {
    margin-top: 185px !important;
  }
  .me-md-185 {
    margin-right: 185px !important;
  }
  .mb-md-185 {
    margin-bottom: 185px !important;
  }
  .ms-md-185 {
    margin-left: 185px !important;
  }
  .m-md-190 {
    margin: 190px !important;
  }
  .mx-md-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-md-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-md-190 {
    margin-top: 190px !important;
  }
  .me-md-190 {
    margin-right: 190px !important;
  }
  .mb-md-190 {
    margin-bottom: 190px !important;
  }
  .ms-md-190 {
    margin-left: 190px !important;
  }
  .m-md-195 {
    margin: 195px !important;
  }
  .mx-md-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-md-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-md-195 {
    margin-top: 195px !important;
  }
  .me-md-195 {
    margin-right: 195px !important;
  }
  .mb-md-195 {
    margin-bottom: 195px !important;
  }
  .ms-md-195 {
    margin-left: 195px !important;
  }
  .m-md-200 {
    margin: 200px !important;
  }
  .mx-md-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-md-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-md-200 {
    margin-top: 200px !important;
  }
  .me-md-200 {
    margin-right: 200px !important;
  }
  .mb-md-200 {
    margin-bottom: 200px !important;
  }
  .ms-md-200 {
    margin-left: 200px !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .me-0 {
    margin-right: 0 !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .ms-0 {
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .mx-lg-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .me-lg-0 {
    margin-right: 0px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .ms-lg-0 {
    margin-left: 0px !important;
  }
  .m-lg-5 {
    margin: 5px !important;
  }
  .mx-lg-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .me-lg-5 {
    margin-right: 5px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .ms-lg-5 {
    margin-left: 5px !important;
  }
  .m-lg-10 {
    margin: 10px !important;
  }
  .mx-lg-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .me-lg-10 {
    margin-right: 10px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .ms-lg-10 {
    margin-left: 10px !important;
  }
  .m-lg-15 {
    margin: 15px !important;
  }
  .mx-lg-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .me-lg-15 {
    margin-right: 15px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .ms-lg-15 {
    margin-left: 15px !important;
  }
  .m-lg-20 {
    margin: 20px !important;
  }
  .mx-lg-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .me-lg-20 {
    margin-right: 20px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .ms-lg-20 {
    margin-left: 20px !important;
  }
  .m-lg-25 {
    margin: 25px !important;
  }
  .mx-lg-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .me-lg-25 {
    margin-right: 25px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .ms-lg-25 {
    margin-left: 25px !important;
  }
  .m-lg-30 {
    margin: 30px !important;
  }
  .mx-lg-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .me-lg-30 {
    margin-right: 30px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .ms-lg-30 {
    margin-left: 30px !important;
  }
  .m-lg-35 {
    margin: 35px !important;
  }
  .mx-lg-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .me-lg-35 {
    margin-right: 35px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .ms-lg-35 {
    margin-left: 35px !important;
  }
  .m-lg-40 {
    margin: 40px !important;
  }
  .mx-lg-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .me-lg-40 {
    margin-right: 40px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .ms-lg-40 {
    margin-left: 40px !important;
  }
  .m-lg-45 {
    margin: 45px !important;
  }
  .mx-lg-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .me-lg-45 {
    margin-right: 45px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .ms-lg-45 {
    margin-left: 45px !important;
  }
  .m-lg-50 {
    margin: 50px !important;
  }
  .mx-lg-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .me-lg-50 {
    margin-right: 50px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .ms-lg-50 {
    margin-left: 50px !important;
  }
  .m-lg-55 {
    margin: 55px !important;
  }
  .mx-lg-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .me-lg-55 {
    margin-right: 55px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .ms-lg-55 {
    margin-left: 55px !important;
  }
  .m-lg-60 {
    margin: 60px !important;
  }
  .mx-lg-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .me-lg-60 {
    margin-right: 60px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .ms-lg-60 {
    margin-left: 60px !important;
  }
  .m-lg-65 {
    margin: 65px !important;
  }
  .mx-lg-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .me-lg-65 {
    margin-right: 65px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .ms-lg-65 {
    margin-left: 65px !important;
  }
  .m-lg-70 {
    margin: 70px !important;
  }
  .mx-lg-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .me-lg-70 {
    margin-right: 70px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .ms-lg-70 {
    margin-left: 70px !important;
  }
  .m-lg-75 {
    margin: 75px !important;
  }
  .mx-lg-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .me-lg-75 {
    margin-right: 75px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .ms-lg-75 {
    margin-left: 75px !important;
  }
  .m-lg-80 {
    margin: 80px !important;
  }
  .mx-lg-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .me-lg-80 {
    margin-right: 80px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .ms-lg-80 {
    margin-left: 80px !important;
  }
  .m-lg-85 {
    margin: 85px !important;
  }
  .mx-lg-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-lg-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .me-lg-85 {
    margin-right: 85px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .ms-lg-85 {
    margin-left: 85px !important;
  }
  .m-lg-90 {
    margin: 90px !important;
  }
  .mx-lg-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .me-lg-90 {
    margin-right: 90px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .ms-lg-90 {
    margin-left: 90px !important;
  }
  .m-lg-95 {
    margin: 95px !important;
  }
  .mx-lg-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .me-lg-95 {
    margin-right: 95px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .ms-lg-95 {
    margin-left: 95px !important;
  }
  .m-lg-100 {
    margin: 100px !important;
  }
  .mx-lg-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .me-lg-100 {
    margin-right: 100px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .ms-lg-100 {
    margin-left: 100px !important;
  }
  .m-lg-105 {
    margin: 105px !important;
  }
  .mx-lg-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-lg-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-lg-105 {
    margin-top: 105px !important;
  }
  .me-lg-105 {
    margin-right: 105px !important;
  }
  .mb-lg-105 {
    margin-bottom: 105px !important;
  }
  .ms-lg-105 {
    margin-left: 105px !important;
  }
  .m-lg-110 {
    margin: 110px !important;
  }
  .mx-lg-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-lg-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-lg-110 {
    margin-top: 110px !important;
  }
  .me-lg-110 {
    margin-right: 110px !important;
  }
  .mb-lg-110 {
    margin-bottom: 110px !important;
  }
  .ms-lg-110 {
    margin-left: 110px !important;
  }
  .m-lg-115 {
    margin: 115px !important;
  }
  .mx-lg-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-lg-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-lg-115 {
    margin-top: 115px !important;
  }
  .me-lg-115 {
    margin-right: 115px !important;
  }
  .mb-lg-115 {
    margin-bottom: 115px !important;
  }
  .ms-lg-115 {
    margin-left: 115px !important;
  }
  .m-lg-120 {
    margin: 120px !important;
  }
  .mx-lg-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-lg-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-lg-120 {
    margin-top: 120px !important;
  }
  .me-lg-120 {
    margin-right: 120px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .ms-lg-120 {
    margin-left: 120px !important;
  }
  .m-lg-125 {
    margin: 125px !important;
  }
  .mx-lg-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-lg-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-lg-125 {
    margin-top: 125px !important;
  }
  .me-lg-125 {
    margin-right: 125px !important;
  }
  .mb-lg-125 {
    margin-bottom: 125px !important;
  }
  .ms-lg-125 {
    margin-left: 125px !important;
  }
  .m-lg-130 {
    margin: 130px !important;
  }
  .mx-lg-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-lg-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-lg-130 {
    margin-top: 130px !important;
  }
  .me-lg-130 {
    margin-right: 130px !important;
  }
  .mb-lg-130 {
    margin-bottom: 130px !important;
  }
  .ms-lg-130 {
    margin-left: 130px !important;
  }
  .m-lg-135 {
    margin: 135px !important;
  }
  .mx-lg-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-lg-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-lg-135 {
    margin-top: 135px !important;
  }
  .me-lg-135 {
    margin-right: 135px !important;
  }
  .mb-lg-135 {
    margin-bottom: 135px !important;
  }
  .ms-lg-135 {
    margin-left: 135px !important;
  }
  .m-lg-140 {
    margin: 140px !important;
  }
  .mx-lg-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-lg-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-lg-140 {
    margin-top: 140px !important;
  }
  .me-lg-140 {
    margin-right: 140px !important;
  }
  .mb-lg-140 {
    margin-bottom: 140px !important;
  }
  .ms-lg-140 {
    margin-left: 140px !important;
  }
  .m-lg-145 {
    margin: 145px !important;
  }
  .mx-lg-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-lg-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-lg-145 {
    margin-top: 145px !important;
  }
  .me-lg-145 {
    margin-right: 145px !important;
  }
  .mb-lg-145 {
    margin-bottom: 145px !important;
  }
  .ms-lg-145 {
    margin-left: 145px !important;
  }
  .m-lg-150 {
    margin: 150px !important;
  }
  .mx-lg-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-lg-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-lg-150 {
    margin-top: 150px !important;
  }
  .me-lg-150 {
    margin-right: 150px !important;
  }
  .mb-lg-150 {
    margin-bottom: 150px !important;
  }
  .ms-lg-150 {
    margin-left: 150px !important;
  }
  .m-lg-155 {
    margin: 155px !important;
  }
  .mx-lg-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-lg-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-lg-155 {
    margin-top: 155px !important;
  }
  .me-lg-155 {
    margin-right: 155px !important;
  }
  .mb-lg-155 {
    margin-bottom: 155px !important;
  }
  .ms-lg-155 {
    margin-left: 155px !important;
  }
  .m-lg-160 {
    margin: 160px !important;
  }
  .mx-lg-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-lg-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-lg-160 {
    margin-top: 160px !important;
  }
  .me-lg-160 {
    margin-right: 160px !important;
  }
  .mb-lg-160 {
    margin-bottom: 160px !important;
  }
  .ms-lg-160 {
    margin-left: 160px !important;
  }
  .m-lg-165 {
    margin: 165px !important;
  }
  .mx-lg-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-lg-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-lg-165 {
    margin-top: 165px !important;
  }
  .me-lg-165 {
    margin-right: 165px !important;
  }
  .mb-lg-165 {
    margin-bottom: 165px !important;
  }
  .ms-lg-165 {
    margin-left: 165px !important;
  }
  .m-lg-170 {
    margin: 170px !important;
  }
  .mx-lg-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-lg-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-lg-170 {
    margin-top: 170px !important;
  }
  .me-lg-170 {
    margin-right: 170px !important;
  }
  .mb-lg-170 {
    margin-bottom: 170px !important;
  }
  .ms-lg-170 {
    margin-left: 170px !important;
  }
  .m-lg-175 {
    margin: 175px !important;
  }
  .mx-lg-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-lg-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-lg-175 {
    margin-top: 175px !important;
  }
  .me-lg-175 {
    margin-right: 175px !important;
  }
  .mb-lg-175 {
    margin-bottom: 175px !important;
  }
  .ms-lg-175 {
    margin-left: 175px !important;
  }
  .m-lg-180 {
    margin: 180px !important;
  }
  .mx-lg-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-lg-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-lg-180 {
    margin-top: 180px !important;
  }
  .me-lg-180 {
    margin-right: 180px !important;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
  .ms-lg-180 {
    margin-left: 180px !important;
  }
  .m-lg-185 {
    margin: 185px !important;
  }
  .mx-lg-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-lg-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-lg-185 {
    margin-top: 185px !important;
  }
  .me-lg-185 {
    margin-right: 185px !important;
  }
  .mb-lg-185 {
    margin-bottom: 185px !important;
  }
  .ms-lg-185 {
    margin-left: 185px !important;
  }
  .m-lg-190 {
    margin: 190px !important;
  }
  .mx-lg-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-lg-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-lg-190 {
    margin-top: 190px !important;
  }
  .me-lg-190 {
    margin-right: 190px !important;
  }
  .mb-lg-190 {
    margin-bottom: 190px !important;
  }
  .ms-lg-190 {
    margin-left: 190px !important;
  }
  .m-lg-195 {
    margin: 195px !important;
  }
  .mx-lg-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-lg-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-lg-195 {
    margin-top: 195px !important;
  }
  .me-lg-195 {
    margin-right: 195px !important;
  }
  .mb-lg-195 {
    margin-bottom: 195px !important;
  }
  .ms-lg-195 {
    margin-left: 195px !important;
  }
  .m-lg-200 {
    margin: 200px !important;
  }
  .mx-lg-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-lg-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-lg-200 {
    margin-top: 200px !important;
  }
  .me-lg-200 {
    margin-right: 200px !important;
  }
  .mb-lg-200 {
    margin-bottom: 200px !important;
  }
  .ms-lg-200 {
    margin-left: 200px !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0px !important;
  }
  .mx-xl-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .me-xl-0 {
    margin-right: 0px !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .ms-xl-0 {
    margin-left: 0px !important;
  }
  .m-xl-5 {
    margin: 5px !important;
  }
  .mx-xl-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .me-xl-5 {
    margin-right: 5px !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .ms-xl-5 {
    margin-left: 5px !important;
  }
  .m-xl-10 {
    margin: 10px !important;
  }
  .mx-xl-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .me-xl-10 {
    margin-right: 10px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .ms-xl-10 {
    margin-left: 10px !important;
  }
  .m-xl-15 {
    margin: 15px !important;
  }
  .mx-xl-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .me-xl-15 {
    margin-right: 15px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .ms-xl-15 {
    margin-left: 15px !important;
  }
  .m-xl-20 {
    margin: 20px !important;
  }
  .mx-xl-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .me-xl-20 {
    margin-right: 20px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .ms-xl-20 {
    margin-left: 20px !important;
  }
  .m-xl-25 {
    margin: 25px !important;
  }
  .mx-xl-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-xl-25 {
    margin-top: 25px !important;
  }
  .me-xl-25 {
    margin-right: 25px !important;
  }
  .mb-xl-25 {
    margin-bottom: 25px !important;
  }
  .ms-xl-25 {
    margin-left: 25px !important;
  }
  .m-xl-30 {
    margin: 30px !important;
  }
  .mx-xl-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .me-xl-30 {
    margin-right: 30px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .ms-xl-30 {
    margin-left: 30px !important;
  }
  .m-xl-35 {
    margin: 35px !important;
  }
  .mx-xl-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-xl-35 {
    margin-top: 35px !important;
  }
  .me-xl-35 {
    margin-right: 35px !important;
  }
  .mb-xl-35 {
    margin-bottom: 35px !important;
  }
  .ms-xl-35 {
    margin-left: 35px !important;
  }
  .m-xl-40 {
    margin: 40px !important;
  }
  .mx-xl-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .me-xl-40 {
    margin-right: 40px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .ms-xl-40 {
    margin-left: 40px !important;
  }
  .m-xl-45 {
    margin: 45px !important;
  }
  .mx-xl-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-xl-45 {
    margin-top: 45px !important;
  }
  .me-xl-45 {
    margin-right: 45px !important;
  }
  .mb-xl-45 {
    margin-bottom: 45px !important;
  }
  .ms-xl-45 {
    margin-left: 45px !important;
  }
  .m-xl-50 {
    margin: 50px !important;
  }
  .mx-xl-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .me-xl-50 {
    margin-right: 50px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .ms-xl-50 {
    margin-left: 50px !important;
  }
  .m-xl-55 {
    margin: 55px !important;
  }
  .mx-xl-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-xl-55 {
    margin-top: 55px !important;
  }
  .me-xl-55 {
    margin-right: 55px !important;
  }
  .mb-xl-55 {
    margin-bottom: 55px !important;
  }
  .ms-xl-55 {
    margin-left: 55px !important;
  }
  .m-xl-60 {
    margin: 60px !important;
  }
  .mx-xl-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .me-xl-60 {
    margin-right: 60px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .ms-xl-60 {
    margin-left: 60px !important;
  }
  .m-xl-65 {
    margin: 65px !important;
  }
  .mx-xl-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-xl-65 {
    margin-top: 65px !important;
  }
  .me-xl-65 {
    margin-right: 65px !important;
  }
  .mb-xl-65 {
    margin-bottom: 65px !important;
  }
  .ms-xl-65 {
    margin-left: 65px !important;
  }
  .m-xl-70 {
    margin: 70px !important;
  }
  .mx-xl-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .me-xl-70 {
    margin-right: 70px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .ms-xl-70 {
    margin-left: 70px !important;
  }
  .m-xl-75 {
    margin: 75px !important;
  }
  .mx-xl-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-xl-75 {
    margin-top: 75px !important;
  }
  .me-xl-75 {
    margin-right: 75px !important;
  }
  .mb-xl-75 {
    margin-bottom: 75px !important;
  }
  .ms-xl-75 {
    margin-left: 75px !important;
  }
  .m-xl-80 {
    margin: 80px !important;
  }
  .mx-xl-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-xl-80 {
    margin-top: 80px !important;
  }
  .me-xl-80 {
    margin-right: 80px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .ms-xl-80 {
    margin-left: 80px !important;
  }
  .m-xl-85 {
    margin: 85px !important;
  }
  .mx-xl-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-xl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-xl-85 {
    margin-top: 85px !important;
  }
  .me-xl-85 {
    margin-right: 85px !important;
  }
  .mb-xl-85 {
    margin-bottom: 85px !important;
  }
  .ms-xl-85 {
    margin-left: 85px !important;
  }
  .m-xl-90 {
    margin: 90px !important;
  }
  .mx-xl-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-xl-90 {
    margin-top: 90px !important;
  }
  .me-xl-90 {
    margin-right: 90px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .ms-xl-90 {
    margin-left: 90px !important;
  }
  .m-xl-95 {
    margin: 95px !important;
  }
  .mx-xl-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-xl-95 {
    margin-top: 95px !important;
  }
  .me-xl-95 {
    margin-right: 95px !important;
  }
  .mb-xl-95 {
    margin-bottom: 95px !important;
  }
  .ms-xl-95 {
    margin-left: 95px !important;
  }
  .m-xl-100 {
    margin: 100px !important;
  }
  .mx-xl-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
  .me-xl-100 {
    margin-right: 100px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .ms-xl-100 {
    margin-left: 100px !important;
  }
  .m-xl-105 {
    margin: 105px !important;
  }
  .mx-xl-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-xl-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-xl-105 {
    margin-top: 105px !important;
  }
  .me-xl-105 {
    margin-right: 105px !important;
  }
  .mb-xl-105 {
    margin-bottom: 105px !important;
  }
  .ms-xl-105 {
    margin-left: 105px !important;
  }
  .m-xl-110 {
    margin: 110px !important;
  }
  .mx-xl-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-xl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-xl-110 {
    margin-top: 110px !important;
  }
  .me-xl-110 {
    margin-right: 110px !important;
  }
  .mb-xl-110 {
    margin-bottom: 110px !important;
  }
  .ms-xl-110 {
    margin-left: 110px !important;
  }
  .m-xl-115 {
    margin: 115px !important;
  }
  .mx-xl-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-xl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-xl-115 {
    margin-top: 115px !important;
  }
  .me-xl-115 {
    margin-right: 115px !important;
  }
  .mb-xl-115 {
    margin-bottom: 115px !important;
  }
  .ms-xl-115 {
    margin-left: 115px !important;
  }
  .m-xl-120 {
    margin: 120px !important;
  }
  .mx-xl-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-xl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-xl-120 {
    margin-top: 120px !important;
  }
  .me-xl-120 {
    margin-right: 120px !important;
  }
  .mb-xl-120 {
    margin-bottom: 120px !important;
  }
  .ms-xl-120 {
    margin-left: 120px !important;
  }
  .m-xl-125 {
    margin: 125px !important;
  }
  .mx-xl-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-xl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-xl-125 {
    margin-top: 125px !important;
  }
  .me-xl-125 {
    margin-right: 125px !important;
  }
  .mb-xl-125 {
    margin-bottom: 125px !important;
  }
  .ms-xl-125 {
    margin-left: 125px !important;
  }
  .m-xl-130 {
    margin: 130px !important;
  }
  .mx-xl-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-xl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-xl-130 {
    margin-top: 130px !important;
  }
  .me-xl-130 {
    margin-right: 130px !important;
  }
  .mb-xl-130 {
    margin-bottom: 130px !important;
  }
  .ms-xl-130 {
    margin-left: 130px !important;
  }
  .m-xl-135 {
    margin: 135px !important;
  }
  .mx-xl-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-xl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-xl-135 {
    margin-top: 135px !important;
  }
  .me-xl-135 {
    margin-right: 135px !important;
  }
  .mb-xl-135 {
    margin-bottom: 135px !important;
  }
  .ms-xl-135 {
    margin-left: 135px !important;
  }
  .m-xl-140 {
    margin: 140px !important;
  }
  .mx-xl-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-xl-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-xl-140 {
    margin-top: 140px !important;
  }
  .me-xl-140 {
    margin-right: 140px !important;
  }
  .mb-xl-140 {
    margin-bottom: 140px !important;
  }
  .ms-xl-140 {
    margin-left: 140px !important;
  }
  .m-xl-145 {
    margin: 145px !important;
  }
  .mx-xl-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-xl-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-xl-145 {
    margin-top: 145px !important;
  }
  .me-xl-145 {
    margin-right: 145px !important;
  }
  .mb-xl-145 {
    margin-bottom: 145px !important;
  }
  .ms-xl-145 {
    margin-left: 145px !important;
  }
  .m-xl-150 {
    margin: 150px !important;
  }
  .mx-xl-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-xl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-xl-150 {
    margin-top: 150px !important;
  }
  .me-xl-150 {
    margin-right: 150px !important;
  }
  .mb-xl-150 {
    margin-bottom: 150px !important;
  }
  .ms-xl-150 {
    margin-left: 150px !important;
  }
  .m-xl-155 {
    margin: 155px !important;
  }
  .mx-xl-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-xl-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-xl-155 {
    margin-top: 155px !important;
  }
  .me-xl-155 {
    margin-right: 155px !important;
  }
  .mb-xl-155 {
    margin-bottom: 155px !important;
  }
  .ms-xl-155 {
    margin-left: 155px !important;
  }
  .m-xl-160 {
    margin: 160px !important;
  }
  .mx-xl-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-xl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-xl-160 {
    margin-top: 160px !important;
  }
  .me-xl-160 {
    margin-right: 160px !important;
  }
  .mb-xl-160 {
    margin-bottom: 160px !important;
  }
  .ms-xl-160 {
    margin-left: 160px !important;
  }
  .m-xl-165 {
    margin: 165px !important;
  }
  .mx-xl-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-xl-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-xl-165 {
    margin-top: 165px !important;
  }
  .me-xl-165 {
    margin-right: 165px !important;
  }
  .mb-xl-165 {
    margin-bottom: 165px !important;
  }
  .ms-xl-165 {
    margin-left: 165px !important;
  }
  .m-xl-170 {
    margin: 170px !important;
  }
  .mx-xl-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-xl-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-xl-170 {
    margin-top: 170px !important;
  }
  .me-xl-170 {
    margin-right: 170px !important;
  }
  .mb-xl-170 {
    margin-bottom: 170px !important;
  }
  .ms-xl-170 {
    margin-left: 170px !important;
  }
  .m-xl-175 {
    margin: 175px !important;
  }
  .mx-xl-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-xl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-xl-175 {
    margin-top: 175px !important;
  }
  .me-xl-175 {
    margin-right: 175px !important;
  }
  .mb-xl-175 {
    margin-bottom: 175px !important;
  }
  .ms-xl-175 {
    margin-left: 175px !important;
  }
  .m-xl-180 {
    margin: 180px !important;
  }
  .mx-xl-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-xl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-xl-180 {
    margin-top: 180px !important;
  }
  .me-xl-180 {
    margin-right: 180px !important;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
  .ms-xl-180 {
    margin-left: 180px !important;
  }
  .m-xl-185 {
    margin: 185px !important;
  }
  .mx-xl-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-xl-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-xl-185 {
    margin-top: 185px !important;
  }
  .me-xl-185 {
    margin-right: 185px !important;
  }
  .mb-xl-185 {
    margin-bottom: 185px !important;
  }
  .ms-xl-185 {
    margin-left: 185px !important;
  }
  .m-xl-190 {
    margin: 190px !important;
  }
  .mx-xl-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-xl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-xl-190 {
    margin-top: 190px !important;
  }
  .me-xl-190 {
    margin-right: 190px !important;
  }
  .mb-xl-190 {
    margin-bottom: 190px !important;
  }
  .ms-xl-190 {
    margin-left: 190px !important;
  }
  .m-xl-195 {
    margin: 195px !important;
  }
  .mx-xl-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-xl-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-xl-195 {
    margin-top: 195px !important;
  }
  .me-xl-195 {
    margin-right: 195px !important;
  }
  .mb-xl-195 {
    margin-bottom: 195px !important;
  }
  .ms-xl-195 {
    margin-left: 195px !important;
  }
  .m-xl-200 {
    margin: 200px !important;
  }
  .mx-xl-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-xl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-xl-200 {
    margin-top: 200px !important;
  }
  .me-xl-200 {
    margin-right: 200px !important;
  }
  .mb-xl-200 {
    margin-bottom: 200px !important;
  }
  .ms-xl-200 {
    margin-left: 200px !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0px !important;
  }
  .mx-xxl-0 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .my-xxl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .mt-xxl-0 {
    margin-top: 0px !important;
  }
  .me-xxl-0 {
    margin-right: 0px !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0px !important;
  }
  .ms-xxl-0 {
    margin-left: 0px !important;
  }
  .m-xxl-5 {
    margin: 5px !important;
  }
  .mx-xxl-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }
  .my-xxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .mt-xxl-5 {
    margin-top: 5px !important;
  }
  .me-xxl-5 {
    margin-right: 5px !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5px !important;
  }
  .ms-xxl-5 {
    margin-left: 5px !important;
  }
  .m-xxl-10 {
    margin: 10px !important;
  }
  .mx-xxl-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
  .my-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .mt-xxl-10 {
    margin-top: 10px !important;
  }
  .me-xxl-10 {
    margin-right: 10px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .ms-xxl-10 {
    margin-left: 10px !important;
  }
  .m-xxl-15 {
    margin: 15px !important;
  }
  .mx-xxl-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .my-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .mt-xxl-15 {
    margin-top: 15px !important;
  }
  .me-xxl-15 {
    margin-right: 15px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .ms-xxl-15 {
    margin-left: 15px !important;
  }
  .m-xxl-20 {
    margin: 20px !important;
  }
  .mx-xxl-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
  .my-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .mt-xxl-20 {
    margin-top: 20px !important;
  }
  .me-xxl-20 {
    margin-right: 20px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .ms-xxl-20 {
    margin-left: 20px !important;
  }
  .m-xxl-25 {
    margin: 25px !important;
  }
  .mx-xxl-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .my-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .mt-xxl-25 {
    margin-top: 25px !important;
  }
  .me-xxl-25 {
    margin-right: 25px !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25px !important;
  }
  .ms-xxl-25 {
    margin-left: 25px !important;
  }
  .m-xxl-30 {
    margin: 30px !important;
  }
  .mx-xxl-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .my-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .mt-xxl-30 {
    margin-top: 30px !important;
  }
  .me-xxl-30 {
    margin-right: 30px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .ms-xxl-30 {
    margin-left: 30px !important;
  }
  .m-xxl-35 {
    margin: 35px !important;
  }
  .mx-xxl-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .my-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .mt-xxl-35 {
    margin-top: 35px !important;
  }
  .me-xxl-35 {
    margin-right: 35px !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35px !important;
  }
  .ms-xxl-35 {
    margin-left: 35px !important;
  }
  .m-xxl-40 {
    margin: 40px !important;
  }
  .mx-xxl-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }
  .my-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .mt-xxl-40 {
    margin-top: 40px !important;
  }
  .me-xxl-40 {
    margin-right: 40px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .ms-xxl-40 {
    margin-left: 40px !important;
  }
  .m-xxl-45 {
    margin: 45px !important;
  }
  .mx-xxl-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }
  .my-xxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .mt-xxl-45 {
    margin-top: 45px !important;
  }
  .me-xxl-45 {
    margin-right: 45px !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45px !important;
  }
  .ms-xxl-45 {
    margin-left: 45px !important;
  }
  .m-xxl-50 {
    margin: 50px !important;
  }
  .mx-xxl-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .my-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .mt-xxl-50 {
    margin-top: 50px !important;
  }
  .me-xxl-50 {
    margin-right: 50px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .ms-xxl-50 {
    margin-left: 50px !important;
  }
  .m-xxl-55 {
    margin: 55px !important;
  }
  .mx-xxl-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }
  .my-xxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .mt-xxl-55 {
    margin-top: 55px !important;
  }
  .me-xxl-55 {
    margin-right: 55px !important;
  }
  .mb-xxl-55 {
    margin-bottom: 55px !important;
  }
  .ms-xxl-55 {
    margin-left: 55px !important;
  }
  .m-xxl-60 {
    margin: 60px !important;
  }
  .mx-xxl-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }
  .my-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .mt-xxl-60 {
    margin-top: 60px !important;
  }
  .me-xxl-60 {
    margin-right: 60px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .ms-xxl-60 {
    margin-left: 60px !important;
  }
  .m-xxl-65 {
    margin: 65px !important;
  }
  .mx-xxl-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }
  .my-xxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .mt-xxl-65 {
    margin-top: 65px !important;
  }
  .me-xxl-65 {
    margin-right: 65px !important;
  }
  .mb-xxl-65 {
    margin-bottom: 65px !important;
  }
  .ms-xxl-65 {
    margin-left: 65px !important;
  }
  .m-xxl-70 {
    margin: 70px !important;
  }
  .mx-xxl-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }
  .my-xxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .mt-xxl-70 {
    margin-top: 70px !important;
  }
  .me-xxl-70 {
    margin-right: 70px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .ms-xxl-70 {
    margin-left: 70px !important;
  }
  .m-xxl-75 {
    margin: 75px !important;
  }
  .mx-xxl-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }
  .my-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .mt-xxl-75 {
    margin-top: 75px !important;
  }
  .me-xxl-75 {
    margin-right: 75px !important;
  }
  .mb-xxl-75 {
    margin-bottom: 75px !important;
  }
  .ms-xxl-75 {
    margin-left: 75px !important;
  }
  .m-xxl-80 {
    margin: 80px !important;
  }
  .mx-xxl-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }
  .my-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .mt-xxl-80 {
    margin-top: 80px !important;
  }
  .me-xxl-80 {
    margin-right: 80px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .ms-xxl-80 {
    margin-left: 80px !important;
  }
  .m-xxl-85 {
    margin: 85px !important;
  }
  .mx-xxl-85 {
    margin-right: 85px !important;
    margin-left: 85px !important;
  }
  .my-xxl-85 {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .mt-xxl-85 {
    margin-top: 85px !important;
  }
  .me-xxl-85 {
    margin-right: 85px !important;
  }
  .mb-xxl-85 {
    margin-bottom: 85px !important;
  }
  .ms-xxl-85 {
    margin-left: 85px !important;
  }
  .m-xxl-90 {
    margin: 90px !important;
  }
  .mx-xxl-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }
  .my-xxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .mt-xxl-90 {
    margin-top: 90px !important;
  }
  .me-xxl-90 {
    margin-right: 90px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .ms-xxl-90 {
    margin-left: 90px !important;
  }
  .m-xxl-95 {
    margin: 95px !important;
  }
  .mx-xxl-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }
  .my-xxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .mt-xxl-95 {
    margin-top: 95px !important;
  }
  .me-xxl-95 {
    margin-right: 95px !important;
  }
  .mb-xxl-95 {
    margin-bottom: 95px !important;
  }
  .ms-xxl-95 {
    margin-left: 95px !important;
  }
  .m-xxl-100 {
    margin: 100px !important;
  }
  .mx-xxl-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }
  .my-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .mt-xxl-100 {
    margin-top: 100px !important;
  }
  .me-xxl-100 {
    margin-right: 100px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .ms-xxl-100 {
    margin-left: 100px !important;
  }
  .m-xxl-105 {
    margin: 105px !important;
  }
  .mx-xxl-105 {
    margin-right: 105px !important;
    margin-left: 105px !important;
  }
  .my-xxl-105 {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .mt-xxl-105 {
    margin-top: 105px !important;
  }
  .me-xxl-105 {
    margin-right: 105px !important;
  }
  .mb-xxl-105 {
    margin-bottom: 105px !important;
  }
  .ms-xxl-105 {
    margin-left: 105px !important;
  }
  .m-xxl-110 {
    margin: 110px !important;
  }
  .mx-xxl-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }
  .my-xxl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .mt-xxl-110 {
    margin-top: 110px !important;
  }
  .me-xxl-110 {
    margin-right: 110px !important;
  }
  .mb-xxl-110 {
    margin-bottom: 110px !important;
  }
  .ms-xxl-110 {
    margin-left: 110px !important;
  }
  .m-xxl-115 {
    margin: 115px !important;
  }
  .mx-xxl-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }
  .my-xxl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .mt-xxl-115 {
    margin-top: 115px !important;
  }
  .me-xxl-115 {
    margin-right: 115px !important;
  }
  .mb-xxl-115 {
    margin-bottom: 115px !important;
  }
  .ms-xxl-115 {
    margin-left: 115px !important;
  }
  .m-xxl-120 {
    margin: 120px !important;
  }
  .mx-xxl-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }
  .my-xxl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mt-xxl-120 {
    margin-top: 120px !important;
  }
  .me-xxl-120 {
    margin-right: 120px !important;
  }
  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }
  .ms-xxl-120 {
    margin-left: 120px !important;
  }
  .m-xxl-125 {
    margin: 125px !important;
  }
  .mx-xxl-125 {
    margin-right: 125px !important;
    margin-left: 125px !important;
  }
  .my-xxl-125 {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .mt-xxl-125 {
    margin-top: 125px !important;
  }
  .me-xxl-125 {
    margin-right: 125px !important;
  }
  .mb-xxl-125 {
    margin-bottom: 125px !important;
  }
  .ms-xxl-125 {
    margin-left: 125px !important;
  }
  .m-xxl-130 {
    margin: 130px !important;
  }
  .mx-xxl-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }
  .my-xxl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .mt-xxl-130 {
    margin-top: 130px !important;
  }
  .me-xxl-130 {
    margin-right: 130px !important;
  }
  .mb-xxl-130 {
    margin-bottom: 130px !important;
  }
  .ms-xxl-130 {
    margin-left: 130px !important;
  }
  .m-xxl-135 {
    margin: 135px !important;
  }
  .mx-xxl-135 {
    margin-right: 135px !important;
    margin-left: 135px !important;
  }
  .my-xxl-135 {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .mt-xxl-135 {
    margin-top: 135px !important;
  }
  .me-xxl-135 {
    margin-right: 135px !important;
  }
  .mb-xxl-135 {
    margin-bottom: 135px !important;
  }
  .ms-xxl-135 {
    margin-left: 135px !important;
  }
  .m-xxl-140 {
    margin: 140px !important;
  }
  .mx-xxl-140 {
    margin-right: 140px !important;
    margin-left: 140px !important;
  }
  .my-xxl-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .mt-xxl-140 {
    margin-top: 140px !important;
  }
  .me-xxl-140 {
    margin-right: 140px !important;
  }
  .mb-xxl-140 {
    margin-bottom: 140px !important;
  }
  .ms-xxl-140 {
    margin-left: 140px !important;
  }
  .m-xxl-145 {
    margin: 145px !important;
  }
  .mx-xxl-145 {
    margin-right: 145px !important;
    margin-left: 145px !important;
  }
  .my-xxl-145 {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .mt-xxl-145 {
    margin-top: 145px !important;
  }
  .me-xxl-145 {
    margin-right: 145px !important;
  }
  .mb-xxl-145 {
    margin-bottom: 145px !important;
  }
  .ms-xxl-145 {
    margin-left: 145px !important;
  }
  .m-xxl-150 {
    margin: 150px !important;
  }
  .mx-xxl-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }
  .my-xxl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .mt-xxl-150 {
    margin-top: 150px !important;
  }
  .me-xxl-150 {
    margin-right: 150px !important;
  }
  .mb-xxl-150 {
    margin-bottom: 150px !important;
  }
  .ms-xxl-150 {
    margin-left: 150px !important;
  }
  .m-xxl-155 {
    margin: 155px !important;
  }
  .mx-xxl-155 {
    margin-right: 155px !important;
    margin-left: 155px !important;
  }
  .my-xxl-155 {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .mt-xxl-155 {
    margin-top: 155px !important;
  }
  .me-xxl-155 {
    margin-right: 155px !important;
  }
  .mb-xxl-155 {
    margin-bottom: 155px !important;
  }
  .ms-xxl-155 {
    margin-left: 155px !important;
  }
  .m-xxl-160 {
    margin: 160px !important;
  }
  .mx-xxl-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }
  .my-xxl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .mt-xxl-160 {
    margin-top: 160px !important;
  }
  .me-xxl-160 {
    margin-right: 160px !important;
  }
  .mb-xxl-160 {
    margin-bottom: 160px !important;
  }
  .ms-xxl-160 {
    margin-left: 160px !important;
  }
  .m-xxl-165 {
    margin: 165px !important;
  }
  .mx-xxl-165 {
    margin-right: 165px !important;
    margin-left: 165px !important;
  }
  .my-xxl-165 {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .mt-xxl-165 {
    margin-top: 165px !important;
  }
  .me-xxl-165 {
    margin-right: 165px !important;
  }
  .mb-xxl-165 {
    margin-bottom: 165px !important;
  }
  .ms-xxl-165 {
    margin-left: 165px !important;
  }
  .m-xxl-170 {
    margin: 170px !important;
  }
  .mx-xxl-170 {
    margin-right: 170px !important;
    margin-left: 170px !important;
  }
  .my-xxl-170 {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .mt-xxl-170 {
    margin-top: 170px !important;
  }
  .me-xxl-170 {
    margin-right: 170px !important;
  }
  .mb-xxl-170 {
    margin-bottom: 170px !important;
  }
  .ms-xxl-170 {
    margin-left: 170px !important;
  }
  .m-xxl-175 {
    margin: 175px !important;
  }
  .mx-xxl-175 {
    margin-right: 175px !important;
    margin-left: 175px !important;
  }
  .my-xxl-175 {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .mt-xxl-175 {
    margin-top: 175px !important;
  }
  .me-xxl-175 {
    margin-right: 175px !important;
  }
  .mb-xxl-175 {
    margin-bottom: 175px !important;
  }
  .ms-xxl-175 {
    margin-left: 175px !important;
  }
  .m-xxl-180 {
    margin: 180px !important;
  }
  .mx-xxl-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }
  .my-xxl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .mt-xxl-180 {
    margin-top: 180px !important;
  }
  .me-xxl-180 {
    margin-right: 180px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
  .ms-xxl-180 {
    margin-left: 180px !important;
  }
  .m-xxl-185 {
    margin: 185px !important;
  }
  .mx-xxl-185 {
    margin-right: 185px !important;
    margin-left: 185px !important;
  }
  .my-xxl-185 {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .mt-xxl-185 {
    margin-top: 185px !important;
  }
  .me-xxl-185 {
    margin-right: 185px !important;
  }
  .mb-xxl-185 {
    margin-bottom: 185px !important;
  }
  .ms-xxl-185 {
    margin-left: 185px !important;
  }
  .m-xxl-190 {
    margin: 190px !important;
  }
  .mx-xxl-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }
  .my-xxl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .mt-xxl-190 {
    margin-top: 190px !important;
  }
  .me-xxl-190 {
    margin-right: 190px !important;
  }
  .mb-xxl-190 {
    margin-bottom: 190px !important;
  }
  .ms-xxl-190 {
    margin-left: 190px !important;
  }
  .m-xxl-195 {
    margin: 195px !important;
  }
  .mx-xxl-195 {
    margin-right: 195px !important;
    margin-left: 195px !important;
  }
  .my-xxl-195 {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .mt-xxl-195 {
    margin-top: 195px !important;
  }
  .me-xxl-195 {
    margin-right: 195px !important;
  }
  .mb-xxl-195 {
    margin-bottom: 195px !important;
  }
  .ms-xxl-195 {
    margin-left: 195px !important;
  }
  .m-xxl-200 {
    margin: 200px !important;
  }
  .mx-xxl-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }
  .my-xxl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .mt-xxl-200 {
    margin-top: 200px !important;
  }
  .me-xxl-200 {
    margin-right: 200px !important;
  }
  .mb-xxl-200 {
    margin-bottom: 200px !important;
  }
  .ms-xxl-200 {
    margin-left: 200px !important;
  }
}
.p-0 {
  padding: 0px !important;
}

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

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

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

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

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

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

.p-5 {
  padding: 5px !important;
}

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

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pe-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.ps-5 {
  padding-left: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

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

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pe-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.ps-10 {
  padding-left: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

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

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pe-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.ps-15 {
  padding-left: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

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

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pe-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.ps-20 {
  padding-left: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

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

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pe-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.ps-25 {
  padding-left: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

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

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pe-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.ps-30 {
  padding-left: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

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

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pe-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.ps-35 {
  padding-left: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

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

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pe-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.ps-40 {
  padding-left: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

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

.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pe-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.ps-45 {
  padding-left: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

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

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pe-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.ps-50 {
  padding-left: 50px !important;
}

.p-55 {
  padding: 55px !important;
}

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

.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pe-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.ps-55 {
  padding-left: 55px !important;
}

.p-60 {
  padding: 60px !important;
}

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

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pe-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.ps-60 {
  padding-left: 60px !important;
}

.p-65 {
  padding: 65px !important;
}

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

.py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pe-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.ps-65 {
  padding-left: 65px !important;
}

.p-70 {
  padding: 70px !important;
}

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

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pe-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.ps-70 {
  padding-left: 70px !important;
}

.p-75 {
  padding: 75px !important;
}

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

.py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pe-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.ps-75 {
  padding-left: 75px !important;
}

.p-80 {
  padding: 80px !important;
}

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

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pe-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.ps-80 {
  padding-left: 80px !important;
}

.p-85 {
  padding: 85px !important;
}

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

.py-85 {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pe-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.ps-85 {
  padding-left: 85px !important;
}

.p-90 {
  padding: 90px !important;
}

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

.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pe-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.ps-90 {
  padding-left: 90px !important;
}

.p-95 {
  padding: 95px !important;
}

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

.py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pe-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.ps-95 {
  padding-left: 95px !important;
}

.p-100 {
  padding: 100px !important;
}

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

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pe-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.ps-100 {
  padding-left: 100px !important;
}

.p-105 {
  padding: 105px !important;
}

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

.py-105 {
  padding-top: 105px !important;
  padding-bottom: 105px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pe-105 {
  padding-right: 105px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.ps-105 {
  padding-left: 105px !important;
}

.p-110 {
  padding: 110px !important;
}

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

.py-110 {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pe-110 {
  padding-right: 110px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.ps-110 {
  padding-left: 110px !important;
}

.p-115 {
  padding: 115px !important;
}

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

.py-115 {
  padding-top: 115px !important;
  padding-bottom: 115px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pe-115 {
  padding-right: 115px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.ps-115 {
  padding-left: 115px !important;
}

.p-120 {
  padding: 120px !important;
}

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

.py-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pe-120 {
  padding-right: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.ps-120 {
  padding-left: 120px !important;
}

.p-125 {
  padding: 125px !important;
}

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

.py-125 {
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pe-125 {
  padding-right: 125px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.ps-125 {
  padding-left: 125px !important;
}

.p-130 {
  padding: 130px !important;
}

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

.py-130 {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pe-130 {
  padding-right: 130px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.ps-130 {
  padding-left: 130px !important;
}

.p-135 {
  padding: 135px !important;
}

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

.py-135 {
  padding-top: 135px !important;
  padding-bottom: 135px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

.pe-135 {
  padding-right: 135px !important;
}

.pb-135 {
  padding-bottom: 135px !important;
}

.ps-135 {
  padding-left: 135px !important;
}

.p-140 {
  padding: 140px !important;
}

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

.py-140 {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pe-140 {
  padding-right: 140px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.ps-140 {
  padding-left: 140px !important;
}

.p-145 {
  padding: 145px !important;
}

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

.py-145 {
  padding-top: 145px !important;
  padding-bottom: 145px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

.pe-145 {
  padding-right: 145px !important;
}

.pb-145 {
  padding-bottom: 145px !important;
}

.ps-145 {
  padding-left: 145px !important;
}

.p-150 {
  padding: 150px !important;
}

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

.py-150 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pe-150 {
  padding-right: 150px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.ps-150 {
  padding-left: 150px !important;
}

.p-155 {
  padding: 155px !important;
}

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

.py-155 {
  padding-top: 155px !important;
  padding-bottom: 155px !important;
}

.pt-155 {
  padding-top: 155px !important;
}

.pe-155 {
  padding-right: 155px !important;
}

.pb-155 {
  padding-bottom: 155px !important;
}

.ps-155 {
  padding-left: 155px !important;
}

.p-160 {
  padding: 160px !important;
}

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

.py-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pe-160 {
  padding-right: 160px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.ps-160 {
  padding-left: 160px !important;
}

.p-165 {
  padding: 165px !important;
}

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

.py-165 {
  padding-top: 165px !important;
  padding-bottom: 165px !important;
}

.pt-165 {
  padding-top: 165px !important;
}

.pe-165 {
  padding-right: 165px !important;
}

.pb-165 {
  padding-bottom: 165px !important;
}

.ps-165 {
  padding-left: 165px !important;
}

.p-170 {
  padding: 170px !important;
}

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

.py-170 {
  padding-top: 170px !important;
  padding-bottom: 170px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

.pe-170 {
  padding-right: 170px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

.ps-170 {
  padding-left: 170px !important;
}

.p-175 {
  padding: 175px !important;
}

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

.py-175 {
  padding-top: 175px !important;
  padding-bottom: 175px !important;
}

.pt-175 {
  padding-top: 175px !important;
}

.pe-175 {
  padding-right: 175px !important;
}

.pb-175 {
  padding-bottom: 175px !important;
}

.ps-175 {
  padding-left: 175px !important;
}

.p-180 {
  padding: 180px !important;
}

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

.py-180 {
  padding-top: 180px !important;
  padding-bottom: 180px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

.pe-180 {
  padding-right: 180px !important;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.ps-180 {
  padding-left: 180px !important;
}

.p-185 {
  padding: 185px !important;
}

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

.py-185 {
  padding-top: 185px !important;
  padding-bottom: 185px !important;
}

.pt-185 {
  padding-top: 185px !important;
}

.pe-185 {
  padding-right: 185px !important;
}

.pb-185 {
  padding-bottom: 185px !important;
}

.ps-185 {
  padding-left: 185px !important;
}

.p-190 {
  padding: 190px !important;
}

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

.py-190 {
  padding-top: 190px !important;
  padding-bottom: 190px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

.pe-190 {
  padding-right: 190px !important;
}

.pb-190 {
  padding-bottom: 190px !important;
}

.ps-190 {
  padding-left: 190px !important;
}

.p-195 {
  padding: 195px !important;
}

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

.py-195 {
  padding-top: 195px !important;
  padding-bottom: 195px !important;
}

.pt-195 {
  padding-top: 195px !important;
}

.pe-195 {
  padding-right: 195px !important;
}

.pb-195 {
  padding-bottom: 195px !important;
}

.ps-195 {
  padding-left: 195px !important;
}

.p-200 {
  padding: 200px !important;
}

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

.py-200 {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pe-200 {
  padding-right: 200px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.ps-200 {
  padding-left: 200px !important;
}

@media (min-width: 576px) {
  .p-sm-0 {
    padding: 0px !important;
  }
  .px-sm-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pe-sm-0 {
    padding-right: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .ps-sm-0 {
    padding-left: 0px !important;
  }
  .p-0 {
    padding: 0px !important;
  }
  .px-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-0 {
    padding-top: 0px !important;
  }
  .pe-0 {
    padding-right: 0px !important;
  }
  .pb-0 {
    padding-bottom: 0px !important;
  }
  .ps-0 {
    padding-left: 0px !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .px-sm-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pe-sm-5 {
    padding-right: 5px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .ps-sm-5 {
    padding-left: 5px !important;
  }
  .p-5 {
    padding: 5px !important;
  }
  .px-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-5 {
    padding-top: 5px !important;
  }
  .pe-5 {
    padding-right: 5px !important;
  }
  .pb-5 {
    padding-bottom: 5px !important;
  }
  .ps-5 {
    padding-left: 5px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .px-sm-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pe-sm-10 {
    padding-right: 10px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .ps-sm-10 {
    padding-left: 10px !important;
  }
  .p-10 {
    padding: 10px !important;
  }
  .px-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-10 {
    padding-top: 10px !important;
  }
  .pe-10 {
    padding-right: 10px !important;
  }
  .pb-10 {
    padding-bottom: 10px !important;
  }
  .ps-10 {
    padding-left: 10px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .px-sm-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pe-sm-15 {
    padding-right: 15px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .ps-sm-15 {
    padding-left: 15px !important;
  }
  .p-15 {
    padding: 15px !important;
  }
  .px-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-15 {
    padding-top: 15px !important;
  }
  .pe-15 {
    padding-right: 15px !important;
  }
  .pb-15 {
    padding-bottom: 15px !important;
  }
  .ps-15 {
    padding-left: 15px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .px-sm-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pe-sm-20 {
    padding-right: 20px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .ps-sm-20 {
    padding-left: 20px !important;
  }
  .p-20 {
    padding: 20px !important;
  }
  .px-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-20 {
    padding-top: 20px !important;
  }
  .pe-20 {
    padding-right: 20px !important;
  }
  .pb-20 {
    padding-bottom: 20px !important;
  }
  .ps-20 {
    padding-left: 20px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .px-sm-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pe-sm-25 {
    padding-right: 25px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .ps-sm-25 {
    padding-left: 25px !important;
  }
  .p-25 {
    padding: 25px !important;
  }
  .px-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-25 {
    padding-top: 25px !important;
  }
  .pe-25 {
    padding-right: 25px !important;
  }
  .pb-25 {
    padding-bottom: 25px !important;
  }
  .ps-25 {
    padding-left: 25px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .px-sm-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pe-sm-30 {
    padding-right: 30px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .ps-sm-30 {
    padding-left: 30px !important;
  }
  .p-30 {
    padding: 30px !important;
  }
  .px-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-30 {
    padding-top: 30px !important;
  }
  .pe-30 {
    padding-right: 30px !important;
  }
  .pb-30 {
    padding-bottom: 30px !important;
  }
  .ps-30 {
    padding-left: 30px !important;
  }
  .p-sm-35 {
    padding: 35px !important;
  }
  .px-sm-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .pe-sm-35 {
    padding-right: 35px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .ps-sm-35 {
    padding-left: 35px !important;
  }
  .p-35 {
    padding: 35px !important;
  }
  .px-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-35 {
    padding-top: 35px !important;
  }
  .pe-35 {
    padding-right: 35px !important;
  }
  .pb-35 {
    padding-bottom: 35px !important;
  }
  .ps-35 {
    padding-left: 35px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .px-sm-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pe-sm-40 {
    padding-right: 40px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .ps-sm-40 {
    padding-left: 40px !important;
  }
  .p-40 {
    padding: 40px !important;
  }
  .px-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .pe-40 {
    padding-right: 40px !important;
  }
  .pb-40 {
    padding-bottom: 40px !important;
  }
  .ps-40 {
    padding-left: 40px !important;
  }
  .p-sm-45 {
    padding: 45px !important;
  }
  .px-sm-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .pe-sm-45 {
    padding-right: 45px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .ps-sm-45 {
    padding-left: 45px !important;
  }
  .p-45 {
    padding: 45px !important;
  }
  .px-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-45 {
    padding-top: 45px !important;
  }
  .pe-45 {
    padding-right: 45px !important;
  }
  .pb-45 {
    padding-bottom: 45px !important;
  }
  .ps-45 {
    padding-left: 45px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .px-sm-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pe-sm-50 {
    padding-right: 50px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .ps-sm-50 {
    padding-left: 50px !important;
  }
  .p-50 {
    padding: 50px !important;
  }
  .px-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-50 {
    padding-top: 50px !important;
  }
  .pe-50 {
    padding-right: 50px !important;
  }
  .pb-50 {
    padding-bottom: 50px !important;
  }
  .ps-50 {
    padding-left: 50px !important;
  }
  .p-sm-55 {
    padding: 55px !important;
  }
  .px-sm-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .pe-sm-55 {
    padding-right: 55px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .ps-sm-55 {
    padding-left: 55px !important;
  }
  .p-55 {
    padding: 55px !important;
  }
  .px-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-55 {
    padding-top: 55px !important;
  }
  .pe-55 {
    padding-right: 55px !important;
  }
  .pb-55 {
    padding-bottom: 55px !important;
  }
  .ps-55 {
    padding-left: 55px !important;
  }
  .p-sm-60 {
    padding: 60px !important;
  }
  .px-sm-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pe-sm-60 {
    padding-right: 60px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .ps-sm-60 {
    padding-left: 60px !important;
  }
  .p-60 {
    padding: 60px !important;
  }
  .px-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-60 {
    padding-top: 60px !important;
  }
  .pe-60 {
    padding-right: 60px !important;
  }
  .pb-60 {
    padding-bottom: 60px !important;
  }
  .ps-60 {
    padding-left: 60px !important;
  }
  .p-sm-65 {
    padding: 65px !important;
  }
  .px-sm-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .pe-sm-65 {
    padding-right: 65px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .ps-sm-65 {
    padding-left: 65px !important;
  }
  .p-65 {
    padding: 65px !important;
  }
  .px-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-65 {
    padding-top: 65px !important;
  }
  .pe-65 {
    padding-right: 65px !important;
  }
  .pb-65 {
    padding-bottom: 65px !important;
  }
  .ps-65 {
    padding-left: 65px !important;
  }
  .p-sm-70 {
    padding: 70px !important;
  }
  .px-sm-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .pe-sm-70 {
    padding-right: 70px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .ps-sm-70 {
    padding-left: 70px !important;
  }
  .p-70 {
    padding: 70px !important;
  }
  .px-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-70 {
    padding-top: 70px !important;
  }
  .pe-70 {
    padding-right: 70px !important;
  }
  .pb-70 {
    padding-bottom: 70px !important;
  }
  .ps-70 {
    padding-left: 70px !important;
  }
  .p-sm-75 {
    padding: 75px !important;
  }
  .px-sm-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .pe-sm-75 {
    padding-right: 75px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .ps-sm-75 {
    padding-left: 75px !important;
  }
  .p-75 {
    padding: 75px !important;
  }
  .px-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-75 {
    padding-top: 75px !important;
  }
  .pe-75 {
    padding-right: 75px !important;
  }
  .pb-75 {
    padding-bottom: 75px !important;
  }
  .ps-75 {
    padding-left: 75px !important;
  }
  .p-sm-80 {
    padding: 80px !important;
  }
  .px-sm-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .pe-sm-80 {
    padding-right: 80px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .ps-sm-80 {
    padding-left: 80px !important;
  }
  .p-80 {
    padding: 80px !important;
  }
  .px-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-80 {
    padding-top: 80px !important;
  }
  .pe-80 {
    padding-right: 80px !important;
  }
  .pb-80 {
    padding-bottom: 80px !important;
  }
  .ps-80 {
    padding-left: 80px !important;
  }
  .p-sm-85 {
    padding: 85px !important;
  }
  .px-sm-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-sm-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .pe-sm-85 {
    padding-right: 85px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .ps-sm-85 {
    padding-left: 85px !important;
  }
  .p-85 {
    padding: 85px !important;
  }
  .px-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-85 {
    padding-top: 85px !important;
  }
  .pe-85 {
    padding-right: 85px !important;
  }
  .pb-85 {
    padding-bottom: 85px !important;
  }
  .ps-85 {
    padding-left: 85px !important;
  }
  .p-sm-90 {
    padding: 90px !important;
  }
  .px-sm-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .pe-sm-90 {
    padding-right: 90px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .ps-sm-90 {
    padding-left: 90px !important;
  }
  .p-90 {
    padding: 90px !important;
  }
  .px-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-90 {
    padding-top: 90px !important;
  }
  .pe-90 {
    padding-right: 90px !important;
  }
  .pb-90 {
    padding-bottom: 90px !important;
  }
  .ps-90 {
    padding-left: 90px !important;
  }
  .p-sm-95 {
    padding: 95px !important;
  }
  .px-sm-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .pe-sm-95 {
    padding-right: 95px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .ps-sm-95 {
    padding-left: 95px !important;
  }
  .p-95 {
    padding: 95px !important;
  }
  .px-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-95 {
    padding-top: 95px !important;
  }
  .pe-95 {
    padding-right: 95px !important;
  }
  .pb-95 {
    padding-bottom: 95px !important;
  }
  .ps-95 {
    padding-left: 95px !important;
  }
  .p-sm-100 {
    padding: 100px !important;
  }
  .px-sm-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
  .pe-sm-100 {
    padding-right: 100px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .ps-sm-100 {
    padding-left: 100px !important;
  }
  .p-100 {
    padding: 100px !important;
  }
  .px-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  .pe-100 {
    padding-right: 100px !important;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .ps-100 {
    padding-left: 100px !important;
  }
  .p-sm-105 {
    padding: 105px !important;
  }
  .px-sm-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-sm-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-sm-105 {
    padding-top: 105px !important;
  }
  .pe-sm-105 {
    padding-right: 105px !important;
  }
  .pb-sm-105 {
    padding-bottom: 105px !important;
  }
  .ps-sm-105 {
    padding-left: 105px !important;
  }
  .p-105 {
    padding: 105px !important;
  }
  .px-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-105 {
    padding-top: 105px !important;
  }
  .pe-105 {
    padding-right: 105px !important;
  }
  .pb-105 {
    padding-bottom: 105px !important;
  }
  .ps-105 {
    padding-left: 105px !important;
  }
  .p-sm-110 {
    padding: 110px !important;
  }
  .px-sm-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-sm-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-sm-110 {
    padding-top: 110px !important;
  }
  .pe-sm-110 {
    padding-right: 110px !important;
  }
  .pb-sm-110 {
    padding-bottom: 110px !important;
  }
  .ps-sm-110 {
    padding-left: 110px !important;
  }
  .p-110 {
    padding: 110px !important;
  }
  .px-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-110 {
    padding-top: 110px !important;
  }
  .pe-110 {
    padding-right: 110px !important;
  }
  .pb-110 {
    padding-bottom: 110px !important;
  }
  .ps-110 {
    padding-left: 110px !important;
  }
  .p-sm-115 {
    padding: 115px !important;
  }
  .px-sm-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-sm-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-sm-115 {
    padding-top: 115px !important;
  }
  .pe-sm-115 {
    padding-right: 115px !important;
  }
  .pb-sm-115 {
    padding-bottom: 115px !important;
  }
  .ps-sm-115 {
    padding-left: 115px !important;
  }
  .p-115 {
    padding: 115px !important;
  }
  .px-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-115 {
    padding-top: 115px !important;
  }
  .pe-115 {
    padding-right: 115px !important;
  }
  .pb-115 {
    padding-bottom: 115px !important;
  }
  .ps-115 {
    padding-left: 115px !important;
  }
  .p-sm-120 {
    padding: 120px !important;
  }
  .px-sm-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-sm-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-sm-120 {
    padding-top: 120px !important;
  }
  .pe-sm-120 {
    padding-right: 120px !important;
  }
  .pb-sm-120 {
    padding-bottom: 120px !important;
  }
  .ps-sm-120 {
    padding-left: 120px !important;
  }
  .p-120 {
    padding: 120px !important;
  }
  .px-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-120 {
    padding-top: 120px !important;
  }
  .pe-120 {
    padding-right: 120px !important;
  }
  .pb-120 {
    padding-bottom: 120px !important;
  }
  .ps-120 {
    padding-left: 120px !important;
  }
  .p-sm-125 {
    padding: 125px !important;
  }
  .px-sm-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-sm-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-sm-125 {
    padding-top: 125px !important;
  }
  .pe-sm-125 {
    padding-right: 125px !important;
  }
  .pb-sm-125 {
    padding-bottom: 125px !important;
  }
  .ps-sm-125 {
    padding-left: 125px !important;
  }
  .p-125 {
    padding: 125px !important;
  }
  .px-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-125 {
    padding-top: 125px !important;
  }
  .pe-125 {
    padding-right: 125px !important;
  }
  .pb-125 {
    padding-bottom: 125px !important;
  }
  .ps-125 {
    padding-left: 125px !important;
  }
  .p-sm-130 {
    padding: 130px !important;
  }
  .px-sm-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-sm-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-sm-130 {
    padding-top: 130px !important;
  }
  .pe-sm-130 {
    padding-right: 130px !important;
  }
  .pb-sm-130 {
    padding-bottom: 130px !important;
  }
  .ps-sm-130 {
    padding-left: 130px !important;
  }
  .p-130 {
    padding: 130px !important;
  }
  .px-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-130 {
    padding-top: 130px !important;
  }
  .pe-130 {
    padding-right: 130px !important;
  }
  .pb-130 {
    padding-bottom: 130px !important;
  }
  .ps-130 {
    padding-left: 130px !important;
  }
  .p-sm-135 {
    padding: 135px !important;
  }
  .px-sm-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-sm-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-sm-135 {
    padding-top: 135px !important;
  }
  .pe-sm-135 {
    padding-right: 135px !important;
  }
  .pb-sm-135 {
    padding-bottom: 135px !important;
  }
  .ps-sm-135 {
    padding-left: 135px !important;
  }
  .p-135 {
    padding: 135px !important;
  }
  .px-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-135 {
    padding-top: 135px !important;
  }
  .pe-135 {
    padding-right: 135px !important;
  }
  .pb-135 {
    padding-bottom: 135px !important;
  }
  .ps-135 {
    padding-left: 135px !important;
  }
  .p-sm-140 {
    padding: 140px !important;
  }
  .px-sm-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-sm-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-sm-140 {
    padding-top: 140px !important;
  }
  .pe-sm-140 {
    padding-right: 140px !important;
  }
  .pb-sm-140 {
    padding-bottom: 140px !important;
  }
  .ps-sm-140 {
    padding-left: 140px !important;
  }
  .p-140 {
    padding: 140px !important;
  }
  .px-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-140 {
    padding-top: 140px !important;
  }
  .pe-140 {
    padding-right: 140px !important;
  }
  .pb-140 {
    padding-bottom: 140px !important;
  }
  .ps-140 {
    padding-left: 140px !important;
  }
  .p-sm-145 {
    padding: 145px !important;
  }
  .px-sm-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-sm-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-sm-145 {
    padding-top: 145px !important;
  }
  .pe-sm-145 {
    padding-right: 145px !important;
  }
  .pb-sm-145 {
    padding-bottom: 145px !important;
  }
  .ps-sm-145 {
    padding-left: 145px !important;
  }
  .p-145 {
    padding: 145px !important;
  }
  .px-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-145 {
    padding-top: 145px !important;
  }
  .pe-145 {
    padding-right: 145px !important;
  }
  .pb-145 {
    padding-bottom: 145px !important;
  }
  .ps-145 {
    padding-left: 145px !important;
  }
  .p-sm-150 {
    padding: 150px !important;
  }
  .px-sm-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-sm-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-sm-150 {
    padding-top: 150px !important;
  }
  .pe-sm-150 {
    padding-right: 150px !important;
  }
  .pb-sm-150 {
    padding-bottom: 150px !important;
  }
  .ps-sm-150 {
    padding-left: 150px !important;
  }
  .p-150 {
    padding: 150px !important;
  }
  .px-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-150 {
    padding-top: 150px !important;
  }
  .pe-150 {
    padding-right: 150px !important;
  }
  .pb-150 {
    padding-bottom: 150px !important;
  }
  .ps-150 {
    padding-left: 150px !important;
  }
  .p-sm-155 {
    padding: 155px !important;
  }
  .px-sm-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-sm-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-sm-155 {
    padding-top: 155px !important;
  }
  .pe-sm-155 {
    padding-right: 155px !important;
  }
  .pb-sm-155 {
    padding-bottom: 155px !important;
  }
  .ps-sm-155 {
    padding-left: 155px !important;
  }
  .p-155 {
    padding: 155px !important;
  }
  .px-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-155 {
    padding-top: 155px !important;
  }
  .pe-155 {
    padding-right: 155px !important;
  }
  .pb-155 {
    padding-bottom: 155px !important;
  }
  .ps-155 {
    padding-left: 155px !important;
  }
  .p-sm-160 {
    padding: 160px !important;
  }
  .px-sm-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-sm-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-sm-160 {
    padding-top: 160px !important;
  }
  .pe-sm-160 {
    padding-right: 160px !important;
  }
  .pb-sm-160 {
    padding-bottom: 160px !important;
  }
  .ps-sm-160 {
    padding-left: 160px !important;
  }
  .p-160 {
    padding: 160px !important;
  }
  .px-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-160 {
    padding-top: 160px !important;
  }
  .pe-160 {
    padding-right: 160px !important;
  }
  .pb-160 {
    padding-bottom: 160px !important;
  }
  .ps-160 {
    padding-left: 160px !important;
  }
  .p-sm-165 {
    padding: 165px !important;
  }
  .px-sm-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-sm-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-sm-165 {
    padding-top: 165px !important;
  }
  .pe-sm-165 {
    padding-right: 165px !important;
  }
  .pb-sm-165 {
    padding-bottom: 165px !important;
  }
  .ps-sm-165 {
    padding-left: 165px !important;
  }
  .p-165 {
    padding: 165px !important;
  }
  .px-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-165 {
    padding-top: 165px !important;
  }
  .pe-165 {
    padding-right: 165px !important;
  }
  .pb-165 {
    padding-bottom: 165px !important;
  }
  .ps-165 {
    padding-left: 165px !important;
  }
  .p-sm-170 {
    padding: 170px !important;
  }
  .px-sm-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-sm-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-sm-170 {
    padding-top: 170px !important;
  }
  .pe-sm-170 {
    padding-right: 170px !important;
  }
  .pb-sm-170 {
    padding-bottom: 170px !important;
  }
  .ps-sm-170 {
    padding-left: 170px !important;
  }
  .p-170 {
    padding: 170px !important;
  }
  .px-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-170 {
    padding-top: 170px !important;
  }
  .pe-170 {
    padding-right: 170px !important;
  }
  .pb-170 {
    padding-bottom: 170px !important;
  }
  .ps-170 {
    padding-left: 170px !important;
  }
  .p-sm-175 {
    padding: 175px !important;
  }
  .px-sm-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-sm-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-sm-175 {
    padding-top: 175px !important;
  }
  .pe-sm-175 {
    padding-right: 175px !important;
  }
  .pb-sm-175 {
    padding-bottom: 175px !important;
  }
  .ps-sm-175 {
    padding-left: 175px !important;
  }
  .p-175 {
    padding: 175px !important;
  }
  .px-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-175 {
    padding-top: 175px !important;
  }
  .pe-175 {
    padding-right: 175px !important;
  }
  .pb-175 {
    padding-bottom: 175px !important;
  }
  .ps-175 {
    padding-left: 175px !important;
  }
  .p-sm-180 {
    padding: 180px !important;
  }
  .px-sm-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-sm-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-sm-180 {
    padding-top: 180px !important;
  }
  .pe-sm-180 {
    padding-right: 180px !important;
  }
  .pb-sm-180 {
    padding-bottom: 180px !important;
  }
  .ps-sm-180 {
    padding-left: 180px !important;
  }
  .p-180 {
    padding: 180px !important;
  }
  .px-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-180 {
    padding-top: 180px !important;
  }
  .pe-180 {
    padding-right: 180px !important;
  }
  .pb-180 {
    padding-bottom: 180px !important;
  }
  .ps-180 {
    padding-left: 180px !important;
  }
  .p-sm-185 {
    padding: 185px !important;
  }
  .px-sm-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-sm-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-sm-185 {
    padding-top: 185px !important;
  }
  .pe-sm-185 {
    padding-right: 185px !important;
  }
  .pb-sm-185 {
    padding-bottom: 185px !important;
  }
  .ps-sm-185 {
    padding-left: 185px !important;
  }
  .p-185 {
    padding: 185px !important;
  }
  .px-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-185 {
    padding-top: 185px !important;
  }
  .pe-185 {
    padding-right: 185px !important;
  }
  .pb-185 {
    padding-bottom: 185px !important;
  }
  .ps-185 {
    padding-left: 185px !important;
  }
  .p-sm-190 {
    padding: 190px !important;
  }
  .px-sm-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-sm-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-sm-190 {
    padding-top: 190px !important;
  }
  .pe-sm-190 {
    padding-right: 190px !important;
  }
  .pb-sm-190 {
    padding-bottom: 190px !important;
  }
  .ps-sm-190 {
    padding-left: 190px !important;
  }
  .p-190 {
    padding: 190px !important;
  }
  .px-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-190 {
    padding-top: 190px !important;
  }
  .pe-190 {
    padding-right: 190px !important;
  }
  .pb-190 {
    padding-bottom: 190px !important;
  }
  .ps-190 {
    padding-left: 190px !important;
  }
  .p-sm-195 {
    padding: 195px !important;
  }
  .px-sm-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-sm-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-sm-195 {
    padding-top: 195px !important;
  }
  .pe-sm-195 {
    padding-right: 195px !important;
  }
  .pb-sm-195 {
    padding-bottom: 195px !important;
  }
  .ps-sm-195 {
    padding-left: 195px !important;
  }
  .p-195 {
    padding: 195px !important;
  }
  .px-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-195 {
    padding-top: 195px !important;
  }
  .pe-195 {
    padding-right: 195px !important;
  }
  .pb-195 {
    padding-bottom: 195px !important;
  }
  .ps-195 {
    padding-left: 195px !important;
  }
  .p-sm-200 {
    padding: 200px !important;
  }
  .px-sm-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-sm-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-sm-200 {
    padding-top: 200px !important;
  }
  .pe-sm-200 {
    padding-right: 200px !important;
  }
  .pb-sm-200 {
    padding-bottom: 200px !important;
  }
  .ps-sm-200 {
    padding-left: 200px !important;
  }
  .p-200 {
    padding: 200px !important;
  }
  .px-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-200 {
    padding-top: 200px !important;
  }
  .pe-200 {
    padding-right: 200px !important;
  }
  .pb-200 {
    padding-bottom: 200px !important;
  }
  .ps-200 {
    padding-left: 200px !important;
  }
}
@media (min-width: 768px) {
  .p-0 {
    padding: 0px !important;
  }
  .px-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-0 {
    padding-top: 0px !important;
  }
  .pe-0 {
    padding-right: 0px !important;
  }
  .pb-0 {
    padding-bottom: 0px !important;
  }
  .ps-0 {
    padding-left: 0px !important;
  }
  .p-5 {
    padding: 5px !important;
  }
  .px-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-5 {
    padding-top: 5px !important;
  }
  .pe-5 {
    padding-right: 5px !important;
  }
  .pb-5 {
    padding-bottom: 5px !important;
  }
  .ps-5 {
    padding-left: 5px !important;
  }
  .p-10 {
    padding: 10px !important;
  }
  .px-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-10 {
    padding-top: 10px !important;
  }
  .pe-10 {
    padding-right: 10px !important;
  }
  .pb-10 {
    padding-bottom: 10px !important;
  }
  .ps-10 {
    padding-left: 10px !important;
  }
  .p-15 {
    padding: 15px !important;
  }
  .px-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-15 {
    padding-top: 15px !important;
  }
  .pe-15 {
    padding-right: 15px !important;
  }
  .pb-15 {
    padding-bottom: 15px !important;
  }
  .ps-15 {
    padding-left: 15px !important;
  }
  .p-20 {
    padding: 20px !important;
  }
  .px-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-20 {
    padding-top: 20px !important;
  }
  .pe-20 {
    padding-right: 20px !important;
  }
  .pb-20 {
    padding-bottom: 20px !important;
  }
  .ps-20 {
    padding-left: 20px !important;
  }
  .p-25 {
    padding: 25px !important;
  }
  .px-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-25 {
    padding-top: 25px !important;
  }
  .pe-25 {
    padding-right: 25px !important;
  }
  .pb-25 {
    padding-bottom: 25px !important;
  }
  .ps-25 {
    padding-left: 25px !important;
  }
  .p-30 {
    padding: 30px !important;
  }
  .px-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-30 {
    padding-top: 30px !important;
  }
  .pe-30 {
    padding-right: 30px !important;
  }
  .pb-30 {
    padding-bottom: 30px !important;
  }
  .ps-30 {
    padding-left: 30px !important;
  }
  .p-35 {
    padding: 35px !important;
  }
  .px-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-35 {
    padding-top: 35px !important;
  }
  .pe-35 {
    padding-right: 35px !important;
  }
  .pb-35 {
    padding-bottom: 35px !important;
  }
  .ps-35 {
    padding-left: 35px !important;
  }
  .p-40 {
    padding: 40px !important;
  }
  .px-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .pe-40 {
    padding-right: 40px !important;
  }
  .pb-40 {
    padding-bottom: 40px !important;
  }
  .ps-40 {
    padding-left: 40px !important;
  }
  .p-45 {
    padding: 45px !important;
  }
  .px-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-45 {
    padding-top: 45px !important;
  }
  .pe-45 {
    padding-right: 45px !important;
  }
  .pb-45 {
    padding-bottom: 45px !important;
  }
  .ps-45 {
    padding-left: 45px !important;
  }
  .p-50 {
    padding: 50px !important;
  }
  .px-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-50 {
    padding-top: 50px !important;
  }
  .pe-50 {
    padding-right: 50px !important;
  }
  .pb-50 {
    padding-bottom: 50px !important;
  }
  .ps-50 {
    padding-left: 50px !important;
  }
  .p-55 {
    padding: 55px !important;
  }
  .px-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-55 {
    padding-top: 55px !important;
  }
  .pe-55 {
    padding-right: 55px !important;
  }
  .pb-55 {
    padding-bottom: 55px !important;
  }
  .ps-55 {
    padding-left: 55px !important;
  }
  .p-60 {
    padding: 60px !important;
  }
  .px-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-60 {
    padding-top: 60px !important;
  }
  .pe-60 {
    padding-right: 60px !important;
  }
  .pb-60 {
    padding-bottom: 60px !important;
  }
  .ps-60 {
    padding-left: 60px !important;
  }
  .p-65 {
    padding: 65px !important;
  }
  .px-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-65 {
    padding-top: 65px !important;
  }
  .pe-65 {
    padding-right: 65px !important;
  }
  .pb-65 {
    padding-bottom: 65px !important;
  }
  .ps-65 {
    padding-left: 65px !important;
  }
  .p-70 {
    padding: 70px !important;
  }
  .px-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-70 {
    padding-top: 70px !important;
  }
  .pe-70 {
    padding-right: 70px !important;
  }
  .pb-70 {
    padding-bottom: 70px !important;
  }
  .ps-70 {
    padding-left: 70px !important;
  }
  .p-75 {
    padding: 75px !important;
  }
  .px-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-75 {
    padding-top: 75px !important;
  }
  .pe-75 {
    padding-right: 75px !important;
  }
  .pb-75 {
    padding-bottom: 75px !important;
  }
  .ps-75 {
    padding-left: 75px !important;
  }
  .p-80 {
    padding: 80px !important;
  }
  .px-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-80 {
    padding-top: 80px !important;
  }
  .pe-80 {
    padding-right: 80px !important;
  }
  .pb-80 {
    padding-bottom: 80px !important;
  }
  .ps-80 {
    padding-left: 80px !important;
  }
  .p-85 {
    padding: 85px !important;
  }
  .px-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-85 {
    padding-top: 85px !important;
  }
  .pe-85 {
    padding-right: 85px !important;
  }
  .pb-85 {
    padding-bottom: 85px !important;
  }
  .ps-85 {
    padding-left: 85px !important;
  }
  .p-90 {
    padding: 90px !important;
  }
  .px-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-90 {
    padding-top: 90px !important;
  }
  .pe-90 {
    padding-right: 90px !important;
  }
  .pb-90 {
    padding-bottom: 90px !important;
  }
  .ps-90 {
    padding-left: 90px !important;
  }
  .p-95 {
    padding: 95px !important;
  }
  .px-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-95 {
    padding-top: 95px !important;
  }
  .pe-95 {
    padding-right: 95px !important;
  }
  .pb-95 {
    padding-bottom: 95px !important;
  }
  .ps-95 {
    padding-left: 95px !important;
  }
  .p-100 {
    padding: 100px !important;
  }
  .px-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  .pe-100 {
    padding-right: 100px !important;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .ps-100 {
    padding-left: 100px !important;
  }
  .p-105 {
    padding: 105px !important;
  }
  .px-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-105 {
    padding-top: 105px !important;
  }
  .pe-105 {
    padding-right: 105px !important;
  }
  .pb-105 {
    padding-bottom: 105px !important;
  }
  .ps-105 {
    padding-left: 105px !important;
  }
  .p-110 {
    padding: 110px !important;
  }
  .px-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-110 {
    padding-top: 110px !important;
  }
  .pe-110 {
    padding-right: 110px !important;
  }
  .pb-110 {
    padding-bottom: 110px !important;
  }
  .ps-110 {
    padding-left: 110px !important;
  }
  .p-115 {
    padding: 115px !important;
  }
  .px-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-115 {
    padding-top: 115px !important;
  }
  .pe-115 {
    padding-right: 115px !important;
  }
  .pb-115 {
    padding-bottom: 115px !important;
  }
  .ps-115 {
    padding-left: 115px !important;
  }
  .p-120 {
    padding: 120px !important;
  }
  .px-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-120 {
    padding-top: 120px !important;
  }
  .pe-120 {
    padding-right: 120px !important;
  }
  .pb-120 {
    padding-bottom: 120px !important;
  }
  .ps-120 {
    padding-left: 120px !important;
  }
  .p-125 {
    padding: 125px !important;
  }
  .px-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-125 {
    padding-top: 125px !important;
  }
  .pe-125 {
    padding-right: 125px !important;
  }
  .pb-125 {
    padding-bottom: 125px !important;
  }
  .ps-125 {
    padding-left: 125px !important;
  }
  .p-130 {
    padding: 130px !important;
  }
  .px-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-130 {
    padding-top: 130px !important;
  }
  .pe-130 {
    padding-right: 130px !important;
  }
  .pb-130 {
    padding-bottom: 130px !important;
  }
  .ps-130 {
    padding-left: 130px !important;
  }
  .p-135 {
    padding: 135px !important;
  }
  .px-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-135 {
    padding-top: 135px !important;
  }
  .pe-135 {
    padding-right: 135px !important;
  }
  .pb-135 {
    padding-bottom: 135px !important;
  }
  .ps-135 {
    padding-left: 135px !important;
  }
  .p-140 {
    padding: 140px !important;
  }
  .px-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-140 {
    padding-top: 140px !important;
  }
  .pe-140 {
    padding-right: 140px !important;
  }
  .pb-140 {
    padding-bottom: 140px !important;
  }
  .ps-140 {
    padding-left: 140px !important;
  }
  .p-145 {
    padding: 145px !important;
  }
  .px-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-145 {
    padding-top: 145px !important;
  }
  .pe-145 {
    padding-right: 145px !important;
  }
  .pb-145 {
    padding-bottom: 145px !important;
  }
  .ps-145 {
    padding-left: 145px !important;
  }
  .p-150 {
    padding: 150px !important;
  }
  .px-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-150 {
    padding-top: 150px !important;
  }
  .pe-150 {
    padding-right: 150px !important;
  }
  .pb-150 {
    padding-bottom: 150px !important;
  }
  .ps-150 {
    padding-left: 150px !important;
  }
  .p-155 {
    padding: 155px !important;
  }
  .px-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-155 {
    padding-top: 155px !important;
  }
  .pe-155 {
    padding-right: 155px !important;
  }
  .pb-155 {
    padding-bottom: 155px !important;
  }
  .ps-155 {
    padding-left: 155px !important;
  }
  .p-160 {
    padding: 160px !important;
  }
  .px-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-160 {
    padding-top: 160px !important;
  }
  .pe-160 {
    padding-right: 160px !important;
  }
  .pb-160 {
    padding-bottom: 160px !important;
  }
  .ps-160 {
    padding-left: 160px !important;
  }
  .p-165 {
    padding: 165px !important;
  }
  .px-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-165 {
    padding-top: 165px !important;
  }
  .pe-165 {
    padding-right: 165px !important;
  }
  .pb-165 {
    padding-bottom: 165px !important;
  }
  .ps-165 {
    padding-left: 165px !important;
  }
  .p-170 {
    padding: 170px !important;
  }
  .px-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-170 {
    padding-top: 170px !important;
  }
  .pe-170 {
    padding-right: 170px !important;
  }
  .pb-170 {
    padding-bottom: 170px !important;
  }
  .ps-170 {
    padding-left: 170px !important;
  }
  .p-175 {
    padding: 175px !important;
  }
  .px-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-175 {
    padding-top: 175px !important;
  }
  .pe-175 {
    padding-right: 175px !important;
  }
  .pb-175 {
    padding-bottom: 175px !important;
  }
  .ps-175 {
    padding-left: 175px !important;
  }
  .p-180 {
    padding: 180px !important;
  }
  .px-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-180 {
    padding-top: 180px !important;
  }
  .pe-180 {
    padding-right: 180px !important;
  }
  .pb-180 {
    padding-bottom: 180px !important;
  }
  .ps-180 {
    padding-left: 180px !important;
  }
  .p-185 {
    padding: 185px !important;
  }
  .px-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-185 {
    padding-top: 185px !important;
  }
  .pe-185 {
    padding-right: 185px !important;
  }
  .pb-185 {
    padding-bottom: 185px !important;
  }
  .ps-185 {
    padding-left: 185px !important;
  }
  .p-190 {
    padding: 190px !important;
  }
  .px-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-190 {
    padding-top: 190px !important;
  }
  .pe-190 {
    padding-right: 190px !important;
  }
  .pb-190 {
    padding-bottom: 190px !important;
  }
  .ps-190 {
    padding-left: 190px !important;
  }
  .p-195 {
    padding: 195px !important;
  }
  .px-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-195 {
    padding-top: 195px !important;
  }
  .pe-195 {
    padding-right: 195px !important;
  }
  .pb-195 {
    padding-bottom: 195px !important;
  }
  .ps-195 {
    padding-left: 195px !important;
  }
  .p-200 {
    padding: 200px !important;
  }
  .px-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-200 {
    padding-top: 200px !important;
  }
  .pe-200 {
    padding-right: 200px !important;
  }
  .pb-200 {
    padding-bottom: 200px !important;
  }
  .ps-200 {
    padding-left: 200px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
  .px-md-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pe-md-0 {
    padding-right: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .ps-md-0 {
    padding-left: 0px !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .px-md-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pe-md-5 {
    padding-right: 5px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .ps-md-5 {
    padding-left: 5px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .px-md-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pe-md-10 {
    padding-right: 10px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .ps-md-10 {
    padding-left: 10px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .px-md-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pe-md-15 {
    padding-right: 15px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .ps-md-15 {
    padding-left: 15px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .px-md-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pe-md-20 {
    padding-right: 20px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .ps-md-20 {
    padding-left: 20px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .px-md-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pe-md-25 {
    padding-right: 25px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .ps-md-25 {
    padding-left: 25px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .px-md-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pe-md-30 {
    padding-right: 30px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .ps-md-30 {
    padding-left: 30px !important;
  }
  .p-md-35 {
    padding: 35px !important;
  }
  .px-md-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pe-md-35 {
    padding-right: 35px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .ps-md-35 {
    padding-left: 35px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .px-md-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pe-md-40 {
    padding-right: 40px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .ps-md-40 {
    padding-left: 40px !important;
  }
  .p-md-45 {
    padding: 45px !important;
  }
  .px-md-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .pe-md-45 {
    padding-right: 45px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .ps-md-45 {
    padding-left: 45px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .px-md-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pe-md-50 {
    padding-right: 50px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .ps-md-50 {
    padding-left: 50px !important;
  }
  .p-md-55 {
    padding: 55px !important;
  }
  .px-md-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .pe-md-55 {
    padding-right: 55px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .ps-md-55 {
    padding-left: 55px !important;
  }
  .p-md-60 {
    padding: 60px !important;
  }
  .px-md-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pe-md-60 {
    padding-right: 60px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .ps-md-60 {
    padding-left: 60px !important;
  }
  .p-md-65 {
    padding: 65px !important;
  }
  .px-md-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .pe-md-65 {
    padding-right: 65px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .ps-md-65 {
    padding-left: 65px !important;
  }
  .p-md-70 {
    padding: 70px !important;
  }
  .px-md-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .pe-md-70 {
    padding-right: 70px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .ps-md-70 {
    padding-left: 70px !important;
  }
  .p-md-75 {
    padding: 75px !important;
  }
  .px-md-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .pe-md-75 {
    padding-right: 75px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .ps-md-75 {
    padding-left: 75px !important;
  }
  .p-md-80 {
    padding: 80px !important;
  }
  .px-md-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pe-md-80 {
    padding-right: 80px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .ps-md-80 {
    padding-left: 80px !important;
  }
  .p-md-85 {
    padding: 85px !important;
  }
  .px-md-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-md-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .pe-md-85 {
    padding-right: 85px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .ps-md-85 {
    padding-left: 85px !important;
  }
  .p-md-90 {
    padding: 90px !important;
  }
  .px-md-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .pe-md-90 {
    padding-right: 90px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .ps-md-90 {
    padding-left: 90px !important;
  }
  .p-md-95 {
    padding: 95px !important;
  }
  .px-md-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .pe-md-95 {
    padding-right: 95px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .ps-md-95 {
    padding-left: 95px !important;
  }
  .p-md-100 {
    padding: 100px !important;
  }
  .px-md-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .pe-md-100 {
    padding-right: 100px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .ps-md-100 {
    padding-left: 100px !important;
  }
  .p-md-105 {
    padding: 105px !important;
  }
  .px-md-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-md-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-md-105 {
    padding-top: 105px !important;
  }
  .pe-md-105 {
    padding-right: 105px !important;
  }
  .pb-md-105 {
    padding-bottom: 105px !important;
  }
  .ps-md-105 {
    padding-left: 105px !important;
  }
  .p-md-110 {
    padding: 110px !important;
  }
  .px-md-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-md-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-md-110 {
    padding-top: 110px !important;
  }
  .pe-md-110 {
    padding-right: 110px !important;
  }
  .pb-md-110 {
    padding-bottom: 110px !important;
  }
  .ps-md-110 {
    padding-left: 110px !important;
  }
  .p-md-115 {
    padding: 115px !important;
  }
  .px-md-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-md-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-md-115 {
    padding-top: 115px !important;
  }
  .pe-md-115 {
    padding-right: 115px !important;
  }
  .pb-md-115 {
    padding-bottom: 115px !important;
  }
  .ps-md-115 {
    padding-left: 115px !important;
  }
  .p-md-120 {
    padding: 120px !important;
  }
  .px-md-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-md-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-md-120 {
    padding-top: 120px !important;
  }
  .pe-md-120 {
    padding-right: 120px !important;
  }
  .pb-md-120 {
    padding-bottom: 120px !important;
  }
  .ps-md-120 {
    padding-left: 120px !important;
  }
  .p-md-125 {
    padding: 125px !important;
  }
  .px-md-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-md-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-md-125 {
    padding-top: 125px !important;
  }
  .pe-md-125 {
    padding-right: 125px !important;
  }
  .pb-md-125 {
    padding-bottom: 125px !important;
  }
  .ps-md-125 {
    padding-left: 125px !important;
  }
  .p-md-130 {
    padding: 130px !important;
  }
  .px-md-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-md-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-md-130 {
    padding-top: 130px !important;
  }
  .pe-md-130 {
    padding-right: 130px !important;
  }
  .pb-md-130 {
    padding-bottom: 130px !important;
  }
  .ps-md-130 {
    padding-left: 130px !important;
  }
  .p-md-135 {
    padding: 135px !important;
  }
  .px-md-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-md-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-md-135 {
    padding-top: 135px !important;
  }
  .pe-md-135 {
    padding-right: 135px !important;
  }
  .pb-md-135 {
    padding-bottom: 135px !important;
  }
  .ps-md-135 {
    padding-left: 135px !important;
  }
  .p-md-140 {
    padding: 140px !important;
  }
  .px-md-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-md-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-md-140 {
    padding-top: 140px !important;
  }
  .pe-md-140 {
    padding-right: 140px !important;
  }
  .pb-md-140 {
    padding-bottom: 140px !important;
  }
  .ps-md-140 {
    padding-left: 140px !important;
  }
  .p-md-145 {
    padding: 145px !important;
  }
  .px-md-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-md-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-md-145 {
    padding-top: 145px !important;
  }
  .pe-md-145 {
    padding-right: 145px !important;
  }
  .pb-md-145 {
    padding-bottom: 145px !important;
  }
  .ps-md-145 {
    padding-left: 145px !important;
  }
  .p-md-150 {
    padding: 150px !important;
  }
  .px-md-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-md-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-md-150 {
    padding-top: 150px !important;
  }
  .pe-md-150 {
    padding-right: 150px !important;
  }
  .pb-md-150 {
    padding-bottom: 150px !important;
  }
  .ps-md-150 {
    padding-left: 150px !important;
  }
  .p-md-155 {
    padding: 155px !important;
  }
  .px-md-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-md-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-md-155 {
    padding-top: 155px !important;
  }
  .pe-md-155 {
    padding-right: 155px !important;
  }
  .pb-md-155 {
    padding-bottom: 155px !important;
  }
  .ps-md-155 {
    padding-left: 155px !important;
  }
  .p-md-160 {
    padding: 160px !important;
  }
  .px-md-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-md-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-md-160 {
    padding-top: 160px !important;
  }
  .pe-md-160 {
    padding-right: 160px !important;
  }
  .pb-md-160 {
    padding-bottom: 160px !important;
  }
  .ps-md-160 {
    padding-left: 160px !important;
  }
  .p-md-165 {
    padding: 165px !important;
  }
  .px-md-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-md-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-md-165 {
    padding-top: 165px !important;
  }
  .pe-md-165 {
    padding-right: 165px !important;
  }
  .pb-md-165 {
    padding-bottom: 165px !important;
  }
  .ps-md-165 {
    padding-left: 165px !important;
  }
  .p-md-170 {
    padding: 170px !important;
  }
  .px-md-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-md-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-md-170 {
    padding-top: 170px !important;
  }
  .pe-md-170 {
    padding-right: 170px !important;
  }
  .pb-md-170 {
    padding-bottom: 170px !important;
  }
  .ps-md-170 {
    padding-left: 170px !important;
  }
  .p-md-175 {
    padding: 175px !important;
  }
  .px-md-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-md-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-md-175 {
    padding-top: 175px !important;
  }
  .pe-md-175 {
    padding-right: 175px !important;
  }
  .pb-md-175 {
    padding-bottom: 175px !important;
  }
  .ps-md-175 {
    padding-left: 175px !important;
  }
  .p-md-180 {
    padding: 180px !important;
  }
  .px-md-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-md-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-md-180 {
    padding-top: 180px !important;
  }
  .pe-md-180 {
    padding-right: 180px !important;
  }
  .pb-md-180 {
    padding-bottom: 180px !important;
  }
  .ps-md-180 {
    padding-left: 180px !important;
  }
  .p-md-185 {
    padding: 185px !important;
  }
  .px-md-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-md-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-md-185 {
    padding-top: 185px !important;
  }
  .pe-md-185 {
    padding-right: 185px !important;
  }
  .pb-md-185 {
    padding-bottom: 185px !important;
  }
  .ps-md-185 {
    padding-left: 185px !important;
  }
  .p-md-190 {
    padding: 190px !important;
  }
  .px-md-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-md-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-md-190 {
    padding-top: 190px !important;
  }
  .pe-md-190 {
    padding-right: 190px !important;
  }
  .pb-md-190 {
    padding-bottom: 190px !important;
  }
  .ps-md-190 {
    padding-left: 190px !important;
  }
  .p-md-195 {
    padding: 195px !important;
  }
  .px-md-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-md-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-md-195 {
    padding-top: 195px !important;
  }
  .pe-md-195 {
    padding-right: 195px !important;
  }
  .pb-md-195 {
    padding-bottom: 195px !important;
  }
  .ps-md-195 {
    padding-left: 195px !important;
  }
  .p-md-200 {
    padding: 200px !important;
  }
  .px-md-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-md-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-md-200 {
    padding-top: 200px !important;
  }
  .pe-md-200 {
    padding-right: 200px !important;
  }
  .pb-md-200 {
    padding-bottom: 200px !important;
  }
  .ps-md-200 {
    padding-left: 200px !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .p-lg-0 {
    padding: 0px !important;
  }
  .px-lg-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pe-lg-0 {
    padding-right: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .ps-lg-0 {
    padding-left: 0px !important;
  }
  .p-lg-5 {
    padding: 5px !important;
  }
  .px-lg-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pe-lg-5 {
    padding-right: 5px !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .ps-lg-5 {
    padding-left: 5px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .px-lg-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pe-lg-10 {
    padding-right: 10px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .ps-lg-10 {
    padding-left: 10px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .px-lg-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pe-lg-15 {
    padding-right: 15px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .ps-lg-15 {
    padding-left: 15px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .px-lg-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pe-lg-20 {
    padding-right: 20px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .ps-lg-20 {
    padding-left: 20px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .px-lg-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pe-lg-25 {
    padding-right: 25px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .ps-lg-25 {
    padding-left: 25px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .px-lg-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pe-lg-30 {
    padding-right: 30px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .ps-lg-30 {
    padding-left: 30px !important;
  }
  .p-lg-35 {
    padding: 35px !important;
  }
  .px-lg-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-lg-35 {
    padding-top: 35px !important;
  }
  .pe-lg-35 {
    padding-right: 35px !important;
  }
  .pb-lg-35 {
    padding-bottom: 35px !important;
  }
  .ps-lg-35 {
    padding-left: 35px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .px-lg-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pe-lg-40 {
    padding-right: 40px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .ps-lg-40 {
    padding-left: 40px !important;
  }
  .p-lg-45 {
    padding: 45px !important;
  }
  .px-lg-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-lg-45 {
    padding-top: 45px !important;
  }
  .pe-lg-45 {
    padding-right: 45px !important;
  }
  .pb-lg-45 {
    padding-bottom: 45px !important;
  }
  .ps-lg-45 {
    padding-left: 45px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .px-lg-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pe-lg-50 {
    padding-right: 50px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .ps-lg-50 {
    padding-left: 50px !important;
  }
  .p-lg-55 {
    padding: 55px !important;
  }
  .px-lg-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-lg-55 {
    padding-top: 55px !important;
  }
  .pe-lg-55 {
    padding-right: 55px !important;
  }
  .pb-lg-55 {
    padding-bottom: 55px !important;
  }
  .ps-lg-55 {
    padding-left: 55px !important;
  }
  .p-lg-60 {
    padding: 60px !important;
  }
  .px-lg-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pe-lg-60 {
    padding-right: 60px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .ps-lg-60 {
    padding-left: 60px !important;
  }
  .p-lg-65 {
    padding: 65px !important;
  }
  .px-lg-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-lg-65 {
    padding-top: 65px !important;
  }
  .pe-lg-65 {
    padding-right: 65px !important;
  }
  .pb-lg-65 {
    padding-bottom: 65px !important;
  }
  .ps-lg-65 {
    padding-left: 65px !important;
  }
  .p-lg-70 {
    padding: 70px !important;
  }
  .px-lg-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-lg-70 {
    padding-top: 70px !important;
  }
  .pe-lg-70 {
    padding-right: 70px !important;
  }
  .pb-lg-70 {
    padding-bottom: 70px !important;
  }
  .ps-lg-70 {
    padding-left: 70px !important;
  }
  .p-lg-75 {
    padding: 75px !important;
  }
  .px-lg-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-lg-75 {
    padding-top: 75px !important;
  }
  .pe-lg-75 {
    padding-right: 75px !important;
  }
  .pb-lg-75 {
    padding-bottom: 75px !important;
  }
  .ps-lg-75 {
    padding-left: 75px !important;
  }
  .p-lg-80 {
    padding: 80px !important;
  }
  .px-lg-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pe-lg-80 {
    padding-right: 80px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .ps-lg-80 {
    padding-left: 80px !important;
  }
  .p-lg-85 {
    padding: 85px !important;
  }
  .px-lg-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-lg-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-lg-85 {
    padding-top: 85px !important;
  }
  .pe-lg-85 {
    padding-right: 85px !important;
  }
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
  .ps-lg-85 {
    padding-left: 85px !important;
  }
  .p-lg-90 {
    padding: 90px !important;
  }
  .px-lg-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-lg-90 {
    padding-top: 90px !important;
  }
  .pe-lg-90 {
    padding-right: 90px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .ps-lg-90 {
    padding-left: 90px !important;
  }
  .p-lg-95 {
    padding: 95px !important;
  }
  .px-lg-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-lg-95 {
    padding-top: 95px !important;
  }
  .pe-lg-95 {
    padding-right: 95px !important;
  }
  .pb-lg-95 {
    padding-bottom: 95px !important;
  }
  .ps-lg-95 {
    padding-left: 95px !important;
  }
  .p-lg-100 {
    padding: 100px !important;
  }
  .px-lg-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
  .pe-lg-100 {
    padding-right: 100px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
  .ps-lg-100 {
    padding-left: 100px !important;
  }
  .p-lg-105 {
    padding: 105px !important;
  }
  .px-lg-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-lg-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-lg-105 {
    padding-top: 105px !important;
  }
  .pe-lg-105 {
    padding-right: 105px !important;
  }
  .pb-lg-105 {
    padding-bottom: 105px !important;
  }
  .ps-lg-105 {
    padding-left: 105px !important;
  }
  .p-lg-110 {
    padding: 110px !important;
  }
  .px-lg-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-lg-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-lg-110 {
    padding-top: 110px !important;
  }
  .pe-lg-110 {
    padding-right: 110px !important;
  }
  .pb-lg-110 {
    padding-bottom: 110px !important;
  }
  .ps-lg-110 {
    padding-left: 110px !important;
  }
  .p-lg-115 {
    padding: 115px !important;
  }
  .px-lg-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-lg-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-lg-115 {
    padding-top: 115px !important;
  }
  .pe-lg-115 {
    padding-right: 115px !important;
  }
  .pb-lg-115 {
    padding-bottom: 115px !important;
  }
  .ps-lg-115 {
    padding-left: 115px !important;
  }
  .p-lg-120 {
    padding: 120px !important;
  }
  .px-lg-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-lg-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-lg-120 {
    padding-top: 120px !important;
  }
  .pe-lg-120 {
    padding-right: 120px !important;
  }
  .pb-lg-120 {
    padding-bottom: 120px !important;
  }
  .ps-lg-120 {
    padding-left: 120px !important;
  }
  .p-lg-125 {
    padding: 125px !important;
  }
  .px-lg-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-lg-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-lg-125 {
    padding-top: 125px !important;
  }
  .pe-lg-125 {
    padding-right: 125px !important;
  }
  .pb-lg-125 {
    padding-bottom: 125px !important;
  }
  .ps-lg-125 {
    padding-left: 125px !important;
  }
  .p-lg-130 {
    padding: 130px !important;
  }
  .px-lg-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-lg-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-lg-130 {
    padding-top: 130px !important;
  }
  .pe-lg-130 {
    padding-right: 130px !important;
  }
  .pb-lg-130 {
    padding-bottom: 130px !important;
  }
  .ps-lg-130 {
    padding-left: 130px !important;
  }
  .p-lg-135 {
    padding: 135px !important;
  }
  .px-lg-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-lg-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-lg-135 {
    padding-top: 135px !important;
  }
  .pe-lg-135 {
    padding-right: 135px !important;
  }
  .pb-lg-135 {
    padding-bottom: 135px !important;
  }
  .ps-lg-135 {
    padding-left: 135px !important;
  }
  .p-lg-140 {
    padding: 140px !important;
  }
  .px-lg-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-lg-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-lg-140 {
    padding-top: 140px !important;
  }
  .pe-lg-140 {
    padding-right: 140px !important;
  }
  .pb-lg-140 {
    padding-bottom: 140px !important;
  }
  .ps-lg-140 {
    padding-left: 140px !important;
  }
  .p-lg-145 {
    padding: 145px !important;
  }
  .px-lg-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-lg-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-lg-145 {
    padding-top: 145px !important;
  }
  .pe-lg-145 {
    padding-right: 145px !important;
  }
  .pb-lg-145 {
    padding-bottom: 145px !important;
  }
  .ps-lg-145 {
    padding-left: 145px !important;
  }
  .p-lg-150 {
    padding: 150px !important;
  }
  .px-lg-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-lg-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-lg-150 {
    padding-top: 150px !important;
  }
  .pe-lg-150 {
    padding-right: 150px !important;
  }
  .pb-lg-150 {
    padding-bottom: 150px !important;
  }
  .ps-lg-150 {
    padding-left: 150px !important;
  }
  .p-lg-155 {
    padding: 155px !important;
  }
  .px-lg-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-lg-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-lg-155 {
    padding-top: 155px !important;
  }
  .pe-lg-155 {
    padding-right: 155px !important;
  }
  .pb-lg-155 {
    padding-bottom: 155px !important;
  }
  .ps-lg-155 {
    padding-left: 155px !important;
  }
  .p-lg-160 {
    padding: 160px !important;
  }
  .px-lg-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-lg-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-lg-160 {
    padding-top: 160px !important;
  }
  .pe-lg-160 {
    padding-right: 160px !important;
  }
  .pb-lg-160 {
    padding-bottom: 160px !important;
  }
  .ps-lg-160 {
    padding-left: 160px !important;
  }
  .p-lg-165 {
    padding: 165px !important;
  }
  .px-lg-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-lg-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-lg-165 {
    padding-top: 165px !important;
  }
  .pe-lg-165 {
    padding-right: 165px !important;
  }
  .pb-lg-165 {
    padding-bottom: 165px !important;
  }
  .ps-lg-165 {
    padding-left: 165px !important;
  }
  .p-lg-170 {
    padding: 170px !important;
  }
  .px-lg-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-lg-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-lg-170 {
    padding-top: 170px !important;
  }
  .pe-lg-170 {
    padding-right: 170px !important;
  }
  .pb-lg-170 {
    padding-bottom: 170px !important;
  }
  .ps-lg-170 {
    padding-left: 170px !important;
  }
  .p-lg-175 {
    padding: 175px !important;
  }
  .px-lg-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-lg-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-lg-175 {
    padding-top: 175px !important;
  }
  .pe-lg-175 {
    padding-right: 175px !important;
  }
  .pb-lg-175 {
    padding-bottom: 175px !important;
  }
  .ps-lg-175 {
    padding-left: 175px !important;
  }
  .p-lg-180 {
    padding: 180px !important;
  }
  .px-lg-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-lg-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-lg-180 {
    padding-top: 180px !important;
  }
  .pe-lg-180 {
    padding-right: 180px !important;
  }
  .pb-lg-180 {
    padding-bottom: 180px !important;
  }
  .ps-lg-180 {
    padding-left: 180px !important;
  }
  .p-lg-185 {
    padding: 185px !important;
  }
  .px-lg-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-lg-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-lg-185 {
    padding-top: 185px !important;
  }
  .pe-lg-185 {
    padding-right: 185px !important;
  }
  .pb-lg-185 {
    padding-bottom: 185px !important;
  }
  .ps-lg-185 {
    padding-left: 185px !important;
  }
  .p-lg-190 {
    padding: 190px !important;
  }
  .px-lg-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-lg-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-lg-190 {
    padding-top: 190px !important;
  }
  .pe-lg-190 {
    padding-right: 190px !important;
  }
  .pb-lg-190 {
    padding-bottom: 190px !important;
  }
  .ps-lg-190 {
    padding-left: 190px !important;
  }
  .p-lg-195 {
    padding: 195px !important;
  }
  .px-lg-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-lg-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-lg-195 {
    padding-top: 195px !important;
  }
  .pe-lg-195 {
    padding-right: 195px !important;
  }
  .pb-lg-195 {
    padding-bottom: 195px !important;
  }
  .ps-lg-195 {
    padding-left: 195px !important;
  }
  .p-lg-200 {
    padding: 200px !important;
  }
  .px-lg-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-lg-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-lg-200 {
    padding-top: 200px !important;
  }
  .pe-lg-200 {
    padding-right: 200px !important;
  }
  .pb-lg-200 {
    padding-bottom: 200px !important;
  }
  .ps-lg-200 {
    padding-left: 200px !important;
  }
}
@media (min-width: 1200px) {
  .p-xl-0 {
    padding: 0px !important;
  }
  .px-xl-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .pe-xl-0 {
    padding-right: 0px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .ps-xl-0 {
    padding-left: 0px !important;
  }
  .p-xl-5 {
    padding: 5px !important;
  }
  .px-xl-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pe-xl-5 {
    padding-right: 5px !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .ps-xl-5 {
    padding-left: 5px !important;
  }
  .p-xl-10 {
    padding: 10px !important;
  }
  .px-xl-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pe-xl-10 {
    padding-right: 10px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .ps-xl-10 {
    padding-left: 10px !important;
  }
  .p-xl-15 {
    padding: 15px !important;
  }
  .px-xl-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pe-xl-15 {
    padding-right: 15px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .ps-xl-15 {
    padding-left: 15px !important;
  }
  .p-xl-20 {
    padding: 20px !important;
  }
  .px-xl-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pe-xl-20 {
    padding-right: 20px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .ps-xl-20 {
    padding-left: 20px !important;
  }
  .p-xl-25 {
    padding: 25px !important;
  }
  .px-xl-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-xl-25 {
    padding-top: 25px !important;
  }
  .pe-xl-25 {
    padding-right: 25px !important;
  }
  .pb-xl-25 {
    padding-bottom: 25px !important;
  }
  .ps-xl-25 {
    padding-left: 25px !important;
  }
  .p-xl-30 {
    padding: 30px !important;
  }
  .px-xl-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pe-xl-30 {
    padding-right: 30px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .ps-xl-30 {
    padding-left: 30px !important;
  }
  .p-xl-35 {
    padding: 35px !important;
  }
  .px-xl-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-xl-35 {
    padding-top: 35px !important;
  }
  .pe-xl-35 {
    padding-right: 35px !important;
  }
  .pb-xl-35 {
    padding-bottom: 35px !important;
  }
  .ps-xl-35 {
    padding-left: 35px !important;
  }
  .p-xl-40 {
    padding: 40px !important;
  }
  .px-xl-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pe-xl-40 {
    padding-right: 40px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .ps-xl-40 {
    padding-left: 40px !important;
  }
  .p-xl-45 {
    padding: 45px !important;
  }
  .px-xl-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-xl-45 {
    padding-top: 45px !important;
  }
  .pe-xl-45 {
    padding-right: 45px !important;
  }
  .pb-xl-45 {
    padding-bottom: 45px !important;
  }
  .ps-xl-45 {
    padding-left: 45px !important;
  }
  .p-xl-50 {
    padding: 50px !important;
  }
  .px-xl-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pe-xl-50 {
    padding-right: 50px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .ps-xl-50 {
    padding-left: 50px !important;
  }
  .p-xl-55 {
    padding: 55px !important;
  }
  .px-xl-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-xl-55 {
    padding-top: 55px !important;
  }
  .pe-xl-55 {
    padding-right: 55px !important;
  }
  .pb-xl-55 {
    padding-bottom: 55px !important;
  }
  .ps-xl-55 {
    padding-left: 55px !important;
  }
  .p-xl-60 {
    padding: 60px !important;
  }
  .px-xl-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pe-xl-60 {
    padding-right: 60px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .ps-xl-60 {
    padding-left: 60px !important;
  }
  .p-xl-65 {
    padding: 65px !important;
  }
  .px-xl-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-xl-65 {
    padding-top: 65px !important;
  }
  .pe-xl-65 {
    padding-right: 65px !important;
  }
  .pb-xl-65 {
    padding-bottom: 65px !important;
  }
  .ps-xl-65 {
    padding-left: 65px !important;
  }
  .p-xl-70 {
    padding: 70px !important;
  }
  .px-xl-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-xl-70 {
    padding-top: 70px !important;
  }
  .pe-xl-70 {
    padding-right: 70px !important;
  }
  .pb-xl-70 {
    padding-bottom: 70px !important;
  }
  .ps-xl-70 {
    padding-left: 70px !important;
  }
  .p-xl-75 {
    padding: 75px !important;
  }
  .px-xl-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-xl-75 {
    padding-top: 75px !important;
  }
  .pe-xl-75 {
    padding-right: 75px !important;
  }
  .pb-xl-75 {
    padding-bottom: 75px !important;
  }
  .ps-xl-75 {
    padding-left: 75px !important;
  }
  .p-xl-80 {
    padding: 80px !important;
  }
  .px-xl-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-xl-80 {
    padding-top: 80px !important;
  }
  .pe-xl-80 {
    padding-right: 80px !important;
  }
  .pb-xl-80 {
    padding-bottom: 80px !important;
  }
  .ps-xl-80 {
    padding-left: 80px !important;
  }
  .p-xl-85 {
    padding: 85px !important;
  }
  .px-xl-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-xl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-xl-85 {
    padding-top: 85px !important;
  }
  .pe-xl-85 {
    padding-right: 85px !important;
  }
  .pb-xl-85 {
    padding-bottom: 85px !important;
  }
  .ps-xl-85 {
    padding-left: 85px !important;
  }
  .p-xl-90 {
    padding: 90px !important;
  }
  .px-xl-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-xl-90 {
    padding-top: 90px !important;
  }
  .pe-xl-90 {
    padding-right: 90px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .ps-xl-90 {
    padding-left: 90px !important;
  }
  .p-xl-95 {
    padding: 95px !important;
  }
  .px-xl-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-xl-95 {
    padding-top: 95px !important;
  }
  .pe-xl-95 {
    padding-right: 95px !important;
  }
  .pb-xl-95 {
    padding-bottom: 95px !important;
  }
  .ps-xl-95 {
    padding-left: 95px !important;
  }
  .p-xl-100 {
    padding: 100px !important;
  }
  .px-xl-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-xl-100 {
    padding-top: 100px !important;
  }
  .pe-xl-100 {
    padding-right: 100px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
  .ps-xl-100 {
    padding-left: 100px !important;
  }
  .p-xl-105 {
    padding: 105px !important;
  }
  .px-xl-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-xl-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-xl-105 {
    padding-top: 105px !important;
  }
  .pe-xl-105 {
    padding-right: 105px !important;
  }
  .pb-xl-105 {
    padding-bottom: 105px !important;
  }
  .ps-xl-105 {
    padding-left: 105px !important;
  }
  .p-xl-110 {
    padding: 110px !important;
  }
  .px-xl-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-xl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-xl-110 {
    padding-top: 110px !important;
  }
  .pe-xl-110 {
    padding-right: 110px !important;
  }
  .pb-xl-110 {
    padding-bottom: 110px !important;
  }
  .ps-xl-110 {
    padding-left: 110px !important;
  }
  .p-xl-115 {
    padding: 115px !important;
  }
  .px-xl-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-xl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-xl-115 {
    padding-top: 115px !important;
  }
  .pe-xl-115 {
    padding-right: 115px !important;
  }
  .pb-xl-115 {
    padding-bottom: 115px !important;
  }
  .ps-xl-115 {
    padding-left: 115px !important;
  }
  .p-xl-120 {
    padding: 120px !important;
  }
  .px-xl-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-xl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-xl-120 {
    padding-top: 120px !important;
  }
  .pe-xl-120 {
    padding-right: 120px !important;
  }
  .pb-xl-120 {
    padding-bottom: 120px !important;
  }
  .ps-xl-120 {
    padding-left: 120px !important;
  }
  .p-xl-125 {
    padding: 125px !important;
  }
  .px-xl-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-xl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-xl-125 {
    padding-top: 125px !important;
  }
  .pe-xl-125 {
    padding-right: 125px !important;
  }
  .pb-xl-125 {
    padding-bottom: 125px !important;
  }
  .ps-xl-125 {
    padding-left: 125px !important;
  }
  .p-xl-130 {
    padding: 130px !important;
  }
  .px-xl-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-xl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-xl-130 {
    padding-top: 130px !important;
  }
  .pe-xl-130 {
    padding-right: 130px !important;
  }
  .pb-xl-130 {
    padding-bottom: 130px !important;
  }
  .ps-xl-130 {
    padding-left: 130px !important;
  }
  .p-xl-135 {
    padding: 135px !important;
  }
  .px-xl-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-xl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-xl-135 {
    padding-top: 135px !important;
  }
  .pe-xl-135 {
    padding-right: 135px !important;
  }
  .pb-xl-135 {
    padding-bottom: 135px !important;
  }
  .ps-xl-135 {
    padding-left: 135px !important;
  }
  .p-xl-140 {
    padding: 140px !important;
  }
  .px-xl-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-xl-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-xl-140 {
    padding-top: 140px !important;
  }
  .pe-xl-140 {
    padding-right: 140px !important;
  }
  .pb-xl-140 {
    padding-bottom: 140px !important;
  }
  .ps-xl-140 {
    padding-left: 140px !important;
  }
  .p-xl-145 {
    padding: 145px !important;
  }
  .px-xl-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-xl-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-xl-145 {
    padding-top: 145px !important;
  }
  .pe-xl-145 {
    padding-right: 145px !important;
  }
  .pb-xl-145 {
    padding-bottom: 145px !important;
  }
  .ps-xl-145 {
    padding-left: 145px !important;
  }
  .p-xl-150 {
    padding: 150px !important;
  }
  .px-xl-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-xl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-xl-150 {
    padding-top: 150px !important;
  }
  .pe-xl-150 {
    padding-right: 150px !important;
  }
  .pb-xl-150 {
    padding-bottom: 150px !important;
  }
  .ps-xl-150 {
    padding-left: 150px !important;
  }
  .p-xl-155 {
    padding: 155px !important;
  }
  .px-xl-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-xl-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-xl-155 {
    padding-top: 155px !important;
  }
  .pe-xl-155 {
    padding-right: 155px !important;
  }
  .pb-xl-155 {
    padding-bottom: 155px !important;
  }
  .ps-xl-155 {
    padding-left: 155px !important;
  }
  .p-xl-160 {
    padding: 160px !important;
  }
  .px-xl-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-xl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-xl-160 {
    padding-top: 160px !important;
  }
  .pe-xl-160 {
    padding-right: 160px !important;
  }
  .pb-xl-160 {
    padding-bottom: 160px !important;
  }
  .ps-xl-160 {
    padding-left: 160px !important;
  }
  .p-xl-165 {
    padding: 165px !important;
  }
  .px-xl-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-xl-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-xl-165 {
    padding-top: 165px !important;
  }
  .pe-xl-165 {
    padding-right: 165px !important;
  }
  .pb-xl-165 {
    padding-bottom: 165px !important;
  }
  .ps-xl-165 {
    padding-left: 165px !important;
  }
  .p-xl-170 {
    padding: 170px !important;
  }
  .px-xl-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-xl-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-xl-170 {
    padding-top: 170px !important;
  }
  .pe-xl-170 {
    padding-right: 170px !important;
  }
  .pb-xl-170 {
    padding-bottom: 170px !important;
  }
  .ps-xl-170 {
    padding-left: 170px !important;
  }
  .p-xl-175 {
    padding: 175px !important;
  }
  .px-xl-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-xl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-xl-175 {
    padding-top: 175px !important;
  }
  .pe-xl-175 {
    padding-right: 175px !important;
  }
  .pb-xl-175 {
    padding-bottom: 175px !important;
  }
  .ps-xl-175 {
    padding-left: 175px !important;
  }
  .p-xl-180 {
    padding: 180px !important;
  }
  .px-xl-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-xl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-xl-180 {
    padding-top: 180px !important;
  }
  .pe-xl-180 {
    padding-right: 180px !important;
  }
  .pb-xl-180 {
    padding-bottom: 180px !important;
  }
  .ps-xl-180 {
    padding-left: 180px !important;
  }
  .p-xl-185 {
    padding: 185px !important;
  }
  .px-xl-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-xl-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-xl-185 {
    padding-top: 185px !important;
  }
  .pe-xl-185 {
    padding-right: 185px !important;
  }
  .pb-xl-185 {
    padding-bottom: 185px !important;
  }
  .ps-xl-185 {
    padding-left: 185px !important;
  }
  .p-xl-190 {
    padding: 190px !important;
  }
  .px-xl-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-xl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-xl-190 {
    padding-top: 190px !important;
  }
  .pe-xl-190 {
    padding-right: 190px !important;
  }
  .pb-xl-190 {
    padding-bottom: 190px !important;
  }
  .ps-xl-190 {
    padding-left: 190px !important;
  }
  .p-xl-195 {
    padding: 195px !important;
  }
  .px-xl-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-xl-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-xl-195 {
    padding-top: 195px !important;
  }
  .pe-xl-195 {
    padding-right: 195px !important;
  }
  .pb-xl-195 {
    padding-bottom: 195px !important;
  }
  .ps-xl-195 {
    padding-left: 195px !important;
  }
  .p-xl-200 {
    padding: 200px !important;
  }
  .px-xl-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-xl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-xl-200 {
    padding-top: 200px !important;
  }
  .pe-xl-200 {
    padding-right: 200px !important;
  }
  .pb-xl-200 {
    padding-bottom: 200px !important;
  }
  .ps-xl-200 {
    padding-left: 200px !important;
  }
}
@media (min-width: 1400px) {
  .p-xxl-0 {
    padding: 0px !important;
  }
  .px-xxl-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .py-xxl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .pt-xxl-0 {
    padding-top: 0px !important;
  }
  .pe-xxl-0 {
    padding-right: 0px !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0px !important;
  }
  .ps-xxl-0 {
    padding-left: 0px !important;
  }
  .p-xxl-5 {
    padding: 5px !important;
  }
  .px-xxl-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
  .py-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .pt-xxl-5 {
    padding-top: 5px !important;
  }
  .pe-xxl-5 {
    padding-right: 5px !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5px !important;
  }
  .ps-xxl-5 {
    padding-left: 5px !important;
  }
  .p-xxl-10 {
    padding: 10px !important;
  }
  .px-xxl-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .pt-xxl-10 {
    padding-top: 10px !important;
  }
  .pe-xxl-10 {
    padding-right: 10px !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10px !important;
  }
  .ps-xxl-10 {
    padding-left: 10px !important;
  }
  .p-xxl-15 {
    padding: 15px !important;
  }
  .px-xxl-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .pt-xxl-15 {
    padding-top: 15px !important;
  }
  .pe-xxl-15 {
    padding-right: 15px !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15px !important;
  }
  .ps-xxl-15 {
    padding-left: 15px !important;
  }
  .p-xxl-20 {
    padding: 20px !important;
  }
  .px-xxl-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .pt-xxl-20 {
    padding-top: 20px !important;
  }
  .pe-xxl-20 {
    padding-right: 20px !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20px !important;
  }
  .ps-xxl-20 {
    padding-left: 20px !important;
  }
  .p-xxl-25 {
    padding: 25px !important;
  }
  .px-xxl-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .py-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .pt-xxl-25 {
    padding-top: 25px !important;
  }
  .pe-xxl-25 {
    padding-right: 25px !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25px !important;
  }
  .ps-xxl-25 {
    padding-left: 25px !important;
  }
  .p-xxl-30 {
    padding: 30px !important;
  }
  .px-xxl-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
  .py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .pt-xxl-30 {
    padding-top: 30px !important;
  }
  .pe-xxl-30 {
    padding-right: 30px !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30px !important;
  }
  .ps-xxl-30 {
    padding-left: 30px !important;
  }
  .p-xxl-35 {
    padding: 35px !important;
  }
  .px-xxl-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .py-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .pt-xxl-35 {
    padding-top: 35px !important;
  }
  .pe-xxl-35 {
    padding-right: 35px !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35px !important;
  }
  .ps-xxl-35 {
    padding-left: 35px !important;
  }
  .p-xxl-40 {
    padding: 40px !important;
  }
  .px-xxl-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
  .py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .pt-xxl-40 {
    padding-top: 40px !important;
  }
  .pe-xxl-40 {
    padding-right: 40px !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40px !important;
  }
  .ps-xxl-40 {
    padding-left: 40px !important;
  }
  .p-xxl-45 {
    padding: 45px !important;
  }
  .px-xxl-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
  .py-xxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .pt-xxl-45 {
    padding-top: 45px !important;
  }
  .pe-xxl-45 {
    padding-right: 45px !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45px !important;
  }
  .ps-xxl-45 {
    padding-left: 45px !important;
  }
  .p-xxl-50 {
    padding: 50px !important;
  }
  .px-xxl-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .pt-xxl-50 {
    padding-top: 50px !important;
  }
  .pe-xxl-50 {
    padding-right: 50px !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50px !important;
  }
  .ps-xxl-50 {
    padding-left: 50px !important;
  }
  .p-xxl-55 {
    padding: 55px !important;
  }
  .px-xxl-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
  .py-xxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .pt-xxl-55 {
    padding-top: 55px !important;
  }
  .pe-xxl-55 {
    padding-right: 55px !important;
  }
  .pb-xxl-55 {
    padding-bottom: 55px !important;
  }
  .ps-xxl-55 {
    padding-left: 55px !important;
  }
  .p-xxl-60 {
    padding: 60px !important;
  }
  .px-xxl-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  .py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .pt-xxl-60 {
    padding-top: 60px !important;
  }
  .pe-xxl-60 {
    padding-right: 60px !important;
  }
  .pb-xxl-60 {
    padding-bottom: 60px !important;
  }
  .ps-xxl-60 {
    padding-left: 60px !important;
  }
  .p-xxl-65 {
    padding: 65px !important;
  }
  .px-xxl-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
  .py-xxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .pt-xxl-65 {
    padding-top: 65px !important;
  }
  .pe-xxl-65 {
    padding-right: 65px !important;
  }
  .pb-xxl-65 {
    padding-bottom: 65px !important;
  }
  .ps-xxl-65 {
    padding-left: 65px !important;
  }
  .p-xxl-70 {
    padding: 70px !important;
  }
  .px-xxl-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
  .py-xxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .pt-xxl-70 {
    padding-top: 70px !important;
  }
  .pe-xxl-70 {
    padding-right: 70px !important;
  }
  .pb-xxl-70 {
    padding-bottom: 70px !important;
  }
  .ps-xxl-70 {
    padding-left: 70px !important;
  }
  .p-xxl-75 {
    padding: 75px !important;
  }
  .px-xxl-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
  .py-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .pt-xxl-75 {
    padding-top: 75px !important;
  }
  .pe-xxl-75 {
    padding-right: 75px !important;
  }
  .pb-xxl-75 {
    padding-bottom: 75px !important;
  }
  .ps-xxl-75 {
    padding-left: 75px !important;
  }
  .p-xxl-80 {
    padding: 80px !important;
  }
  .px-xxl-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
  .py-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .pt-xxl-80 {
    padding-top: 80px !important;
  }
  .pe-xxl-80 {
    padding-right: 80px !important;
  }
  .pb-xxl-80 {
    padding-bottom: 80px !important;
  }
  .ps-xxl-80 {
    padding-left: 80px !important;
  }
  .p-xxl-85 {
    padding: 85px !important;
  }
  .px-xxl-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
  .py-xxl-85 {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
  }
  .pt-xxl-85 {
    padding-top: 85px !important;
  }
  .pe-xxl-85 {
    padding-right: 85px !important;
  }
  .pb-xxl-85 {
    padding-bottom: 85px !important;
  }
  .ps-xxl-85 {
    padding-left: 85px !important;
  }
  .p-xxl-90 {
    padding: 90px !important;
  }
  .px-xxl-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
  .py-xxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .pt-xxl-90 {
    padding-top: 90px !important;
  }
  .pe-xxl-90 {
    padding-right: 90px !important;
  }
  .pb-xxl-90 {
    padding-bottom: 90px !important;
  }
  .ps-xxl-90 {
    padding-left: 90px !important;
  }
  .p-xxl-95 {
    padding: 95px !important;
  }
  .px-xxl-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
  .py-xxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }
  .pt-xxl-95 {
    padding-top: 95px !important;
  }
  .pe-xxl-95 {
    padding-right: 95px !important;
  }
  .pb-xxl-95 {
    padding-bottom: 95px !important;
  }
  .ps-xxl-95 {
    padding-left: 95px !important;
  }
  .p-xxl-100 {
    padding: 100px !important;
  }
  .px-xxl-100 {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .py-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .pt-xxl-100 {
    padding-top: 100px !important;
  }
  .pe-xxl-100 {
    padding-right: 100px !important;
  }
  .pb-xxl-100 {
    padding-bottom: 100px !important;
  }
  .ps-xxl-100 {
    padding-left: 100px !important;
  }
  .p-xxl-105 {
    padding: 105px !important;
  }
  .px-xxl-105 {
    padding-right: 105px !important;
    padding-left: 105px !important;
  }
  .py-xxl-105 {
    padding-top: 105px !important;
    padding-bottom: 105px !important;
  }
  .pt-xxl-105 {
    padding-top: 105px !important;
  }
  .pe-xxl-105 {
    padding-right: 105px !important;
  }
  .pb-xxl-105 {
    padding-bottom: 105px !important;
  }
  .ps-xxl-105 {
    padding-left: 105px !important;
  }
  .p-xxl-110 {
    padding: 110px !important;
  }
  .px-xxl-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }
  .py-xxl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
  .pt-xxl-110 {
    padding-top: 110px !important;
  }
  .pe-xxl-110 {
    padding-right: 110px !important;
  }
  .pb-xxl-110 {
    padding-bottom: 110px !important;
  }
  .ps-xxl-110 {
    padding-left: 110px !important;
  }
  .p-xxl-115 {
    padding: 115px !important;
  }
  .px-xxl-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }
  .py-xxl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }
  .pt-xxl-115 {
    padding-top: 115px !important;
  }
  .pe-xxl-115 {
    padding-right: 115px !important;
  }
  .pb-xxl-115 {
    padding-bottom: 115px !important;
  }
  .ps-xxl-115 {
    padding-left: 115px !important;
  }
  .p-xxl-120 {
    padding: 120px !important;
  }
  .px-xxl-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }
  .py-xxl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
  .pt-xxl-120 {
    padding-top: 120px !important;
  }
  .pe-xxl-120 {
    padding-right: 120px !important;
  }
  .pb-xxl-120 {
    padding-bottom: 120px !important;
  }
  .ps-xxl-120 {
    padding-left: 120px !important;
  }
  .p-xxl-125 {
    padding: 125px !important;
  }
  .px-xxl-125 {
    padding-right: 125px !important;
    padding-left: 125px !important;
  }
  .py-xxl-125 {
    padding-top: 125px !important;
    padding-bottom: 125px !important;
  }
  .pt-xxl-125 {
    padding-top: 125px !important;
  }
  .pe-xxl-125 {
    padding-right: 125px !important;
  }
  .pb-xxl-125 {
    padding-bottom: 125px !important;
  }
  .ps-xxl-125 {
    padding-left: 125px !important;
  }
  .p-xxl-130 {
    padding: 130px !important;
  }
  .px-xxl-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }
  .py-xxl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }
  .pt-xxl-130 {
    padding-top: 130px !important;
  }
  .pe-xxl-130 {
    padding-right: 130px !important;
  }
  .pb-xxl-130 {
    padding-bottom: 130px !important;
  }
  .ps-xxl-130 {
    padding-left: 130px !important;
  }
  .p-xxl-135 {
    padding: 135px !important;
  }
  .px-xxl-135 {
    padding-right: 135px !important;
    padding-left: 135px !important;
  }
  .py-xxl-135 {
    padding-top: 135px !important;
    padding-bottom: 135px !important;
  }
  .pt-xxl-135 {
    padding-top: 135px !important;
  }
  .pe-xxl-135 {
    padding-right: 135px !important;
  }
  .pb-xxl-135 {
    padding-bottom: 135px !important;
  }
  .ps-xxl-135 {
    padding-left: 135px !important;
  }
  .p-xxl-140 {
    padding: 140px !important;
  }
  .px-xxl-140 {
    padding-right: 140px !important;
    padding-left: 140px !important;
  }
  .py-xxl-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
  .pt-xxl-140 {
    padding-top: 140px !important;
  }
  .pe-xxl-140 {
    padding-right: 140px !important;
  }
  .pb-xxl-140 {
    padding-bottom: 140px !important;
  }
  .ps-xxl-140 {
    padding-left: 140px !important;
  }
  .p-xxl-145 {
    padding: 145px !important;
  }
  .px-xxl-145 {
    padding-right: 145px !important;
    padding-left: 145px !important;
  }
  .py-xxl-145 {
    padding-top: 145px !important;
    padding-bottom: 145px !important;
  }
  .pt-xxl-145 {
    padding-top: 145px !important;
  }
  .pe-xxl-145 {
    padding-right: 145px !important;
  }
  .pb-xxl-145 {
    padding-bottom: 145px !important;
  }
  .ps-xxl-145 {
    padding-left: 145px !important;
  }
  .p-xxl-150 {
    padding: 150px !important;
  }
  .px-xxl-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }
  .py-xxl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
  .pt-xxl-150 {
    padding-top: 150px !important;
  }
  .pe-xxl-150 {
    padding-right: 150px !important;
  }
  .pb-xxl-150 {
    padding-bottom: 150px !important;
  }
  .ps-xxl-150 {
    padding-left: 150px !important;
  }
  .p-xxl-155 {
    padding: 155px !important;
  }
  .px-xxl-155 {
    padding-right: 155px !important;
    padding-left: 155px !important;
  }
  .py-xxl-155 {
    padding-top: 155px !important;
    padding-bottom: 155px !important;
  }
  .pt-xxl-155 {
    padding-top: 155px !important;
  }
  .pe-xxl-155 {
    padding-right: 155px !important;
  }
  .pb-xxl-155 {
    padding-bottom: 155px !important;
  }
  .ps-xxl-155 {
    padding-left: 155px !important;
  }
  .p-xxl-160 {
    padding: 160px !important;
  }
  .px-xxl-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }
  .py-xxl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }
  .pt-xxl-160 {
    padding-top: 160px !important;
  }
  .pe-xxl-160 {
    padding-right: 160px !important;
  }
  .pb-xxl-160 {
    padding-bottom: 160px !important;
  }
  .ps-xxl-160 {
    padding-left: 160px !important;
  }
  .p-xxl-165 {
    padding: 165px !important;
  }
  .px-xxl-165 {
    padding-right: 165px !important;
    padding-left: 165px !important;
  }
  .py-xxl-165 {
    padding-top: 165px !important;
    padding-bottom: 165px !important;
  }
  .pt-xxl-165 {
    padding-top: 165px !important;
  }
  .pe-xxl-165 {
    padding-right: 165px !important;
  }
  .pb-xxl-165 {
    padding-bottom: 165px !important;
  }
  .ps-xxl-165 {
    padding-left: 165px !important;
  }
  .p-xxl-170 {
    padding: 170px !important;
  }
  .px-xxl-170 {
    padding-right: 170px !important;
    padding-left: 170px !important;
  }
  .py-xxl-170 {
    padding-top: 170px !important;
    padding-bottom: 170px !important;
  }
  .pt-xxl-170 {
    padding-top: 170px !important;
  }
  .pe-xxl-170 {
    padding-right: 170px !important;
  }
  .pb-xxl-170 {
    padding-bottom: 170px !important;
  }
  .ps-xxl-170 {
    padding-left: 170px !important;
  }
  .p-xxl-175 {
    padding: 175px !important;
  }
  .px-xxl-175 {
    padding-right: 175px !important;
    padding-left: 175px !important;
  }
  .py-xxl-175 {
    padding-top: 175px !important;
    padding-bottom: 175px !important;
  }
  .pt-xxl-175 {
    padding-top: 175px !important;
  }
  .pe-xxl-175 {
    padding-right: 175px !important;
  }
  .pb-xxl-175 {
    padding-bottom: 175px !important;
  }
  .ps-xxl-175 {
    padding-left: 175px !important;
  }
  .p-xxl-180 {
    padding: 180px !important;
  }
  .px-xxl-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }
  .py-xxl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
  .pt-xxl-180 {
    padding-top: 180px !important;
  }
  .pe-xxl-180 {
    padding-right: 180px !important;
  }
  .pb-xxl-180 {
    padding-bottom: 180px !important;
  }
  .ps-xxl-180 {
    padding-left: 180px !important;
  }
  .p-xxl-185 {
    padding: 185px !important;
  }
  .px-xxl-185 {
    padding-right: 185px !important;
    padding-left: 185px !important;
  }
  .py-xxl-185 {
    padding-top: 185px !important;
    padding-bottom: 185px !important;
  }
  .pt-xxl-185 {
    padding-top: 185px !important;
  }
  .pe-xxl-185 {
    padding-right: 185px !important;
  }
  .pb-xxl-185 {
    padding-bottom: 185px !important;
  }
  .ps-xxl-185 {
    padding-left: 185px !important;
  }
  .p-xxl-190 {
    padding: 190px !important;
  }
  .px-xxl-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }
  .py-xxl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }
  .pt-xxl-190 {
    padding-top: 190px !important;
  }
  .pe-xxl-190 {
    padding-right: 190px !important;
  }
  .pb-xxl-190 {
    padding-bottom: 190px !important;
  }
  .ps-xxl-190 {
    padding-left: 190px !important;
  }
  .p-xxl-195 {
    padding: 195px !important;
  }
  .px-xxl-195 {
    padding-right: 195px !important;
    padding-left: 195px !important;
  }
  .py-xxl-195 {
    padding-top: 195px !important;
    padding-bottom: 195px !important;
  }
  .pt-xxl-195 {
    padding-top: 195px !important;
  }
  .pe-xxl-195 {
    padding-right: 195px !important;
  }
  .pb-xxl-195 {
    padding-bottom: 195px !important;
  }
  .ps-xxl-195 {
    padding-left: 195px !important;
  }
  .p-xxl-200 {
    padding: 200px !important;
  }
  .px-xxl-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }
  .py-xxl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }
  .pt-xxl-200 {
    padding-top: 200px !important;
  }
  .pe-xxl-200 {
    padding-right: 200px !important;
  }
  .pb-xxl-200 {
    padding-bottom: 200px !important;
  }
  .ps-xxl-200 {
    padding-left: 200px !important;
  }
}
.text-start {
  text-align: left;
}

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

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

@media (min-width: 0) {
  .text-xs-start {
    text-align: left;
  }
  .text-xs-center {
    text-align: center;
  }
  .text-xs-end {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .text-sm-start {
    text-align: left;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-end {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-end {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: left;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-end {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .text-xl-start {
    text-align: left;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-end {
    text-align: right;
  }
}
@media (min-width: 1400px) {
  .text-xxl-start {
    text-align: left;
  }
  .text-xxl-center {
    text-align: center;
  }
  .text-xxl-end {
    text-align: right;
  }
}
.fw-semibold {
  font-weight: 600;
}

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

.fw-bolder {
  font-weight: bolder;
}

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

.fw-light {
  font-weight: light;
}

.fw-lighter {
  font-weight: lighter;
}

.fst-italic {
  font-style: italic;
}

.fst-normal {
  font-style: normal;
}

@media (min-width: 0) {
  .fw-xs-bold {
    font-weight: bold;
  }
  .fw-xs-bolder {
    font-weight: bolder;
  }
  .fw-xs-normal {
    font-weight: normal;
  }
  .fw-xs-light {
    font-weight: light;
  }
  .fw-xs-lighter {
    font-weight: lighter;
  }
  .fst-xs-italic {
    font-style: italic;
  }
  .fst-xs-normal {
    font-style: normal;
  }
}
@media (min-width: 576px) {
  .fw-sm-bold {
    font-weight: bold;
  }
  .fw-sm-bolder {
    font-weight: bolder;
  }
  .fw-sm-normal {
    font-weight: normal;
  }
  .fw-sm-light {
    font-weight: light;
  }
  .fw-sm-lighter {
    font-weight: lighter;
  }
  .fst-sm-italic {
    font-style: italic;
  }
  .fst-sm-normal {
    font-style: normal;
  }
}
@media (min-width: 768px) {
  .fw-md-bold {
    font-weight: bold;
  }
  .fw-md-bolder {
    font-weight: bolder;
  }
  .fw-md-normal {
    font-weight: normal;
  }
  .fw-md-light {
    font-weight: light;
  }
  .fw-md-lighter {
    font-weight: lighter;
  }
  .fst-md-italic {
    font-style: italic;
  }
  .fst-md-normal {
    font-style: normal;
  }
}
@media (min-width: 992px) {
  .fw-lg-bold {
    font-weight: bold;
  }
  .fw-lg-bolder {
    font-weight: bolder;
  }
  .fw-lg-normal {
    font-weight: normal;
  }
  .fw-lg-light {
    font-weight: light;
  }
  .fw-lg-lighter {
    font-weight: lighter;
  }
  .fst-lg-italic {
    font-style: italic;
  }
  .fst-lg-normal {
    font-style: normal;
  }
}
@media (min-width: 1200px) {
  .fw-xl-bold {
    font-weight: bold;
  }
  .fw-xl-bolder {
    font-weight: bolder;
  }
  .fw-xl-normal {
    font-weight: normal;
  }
  .fw-xl-light {
    font-weight: light;
  }
  .fw-xl-lighter {
    font-weight: lighter;
  }
  .fst-xl-italic {
    font-style: italic;
  }
  .fst-xl-normal {
    font-style: normal;
  }
}
@media (min-width: 1400px) {
  .fw-xxl-bold {
    font-weight: bold;
  }
  .fw-xxl-bolder {
    font-weight: bolder;
  }
  .fw-xxl-normal {
    font-weight: normal;
  }
  .fw-xxl-light {
    font-weight: light;
  }
  .fw-xxl-lighter {
    font-weight: lighter;
  }
  .fst-xxl-italic {
    font-style: italic;
  }
  .fst-xxl-normal {
    font-style: normal;
  }
}
.text-decoration-underline {
  text-decoration: underline;
}

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

.text-decoration-none {
  text-decoration: none;
}

@media (min-width: 0) {
  .text-decoration-xs-underline {
    text-decoration: underline;
  }
  .text-decoration-xs-line-through {
    text-decoration: line-through;
  }
  .text-decoration-xs-none {
    text-decoration: none;
  }
}
@media (min-width: 576px) {
  .text-decoration-sm-underline {
    text-decoration: underline;
  }
  .text-decoration-sm-line-through {
    text-decoration: line-through;
  }
  .text-decoration-sm-none {
    text-decoration: none;
  }
}
@media (min-width: 768px) {
  .text-decoration-md-underline {
    text-decoration: underline;
  }
  .text-decoration-md-line-through {
    text-decoration: line-through;
  }
  .text-decoration-md-none {
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  .text-decoration-lg-underline {
    text-decoration: underline;
  }
  .text-decoration-lg-line-through {
    text-decoration: line-through;
  }
  .text-decoration-lg-none {
    text-decoration: none;
  }
}
@media (min-width: 1200px) {
  .text-decoration-xl-underline {
    text-decoration: underline;
  }
  .text-decoration-xl-line-through {
    text-decoration: line-through;
  }
  .text-decoration-xl-none {
    text-decoration: none;
  }
}
@media (min-width: 1400px) {
  .text-decoration-xxl-underline {
    text-decoration: underline;
  }
  .text-decoration-xxl-line-through {
    text-decoration: line-through;
  }
  .text-decoration-xxl-none {
    text-decoration: none;
  }
}
.d-block {
  display: block;
}

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

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

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

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

@media (min-width: 0) {
  .d-xs-block {
    display: block;
  }
  .d-xs-inline-block {
    display: inline-block;
  }
  .d-xs-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-xs-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-xs-none {
    display: none;
  }
  .d-xs-inline {
    display: inline;
  }
}
@media (min-width: 576px) {
  .d-sm-block {
    display: block;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-inline {
    display: inline;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
  .d-md-inline {
    display: inline;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-inline {
    display: inline;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-inline {
    display: inline;
  }
}
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block;
  }
  .d-xxl-inline-block {
    display: inline-block;
  }
  .d-xxl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .d-xxl-none {
    display: none;
  }
  .d-xxl-inline {
    display: inline;
  }
}
#pagination {
  position: fixed;
  z-index: 9999998;
  top: 50%;
  right: 36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  visibility: hidden;
}
#pagination.view {
  visibility: visible;
}
#pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 12px;
  border: solid 4px #000000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#pagination a:hover, #pagination a:focus, #pagination a.active {
  text-decoration: none;
}
#pagination a::before {
  display: none;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 12px;
}
#pagination a:nth-child(1) {
  display: none;
}
#pagination a:nth-child(2)::before {
  content: "コンセプト";
}
#pagination a:nth-child(4)::before {
  content: "プロフィール";
}
#pagination a:nth-child(6)::before {
  content: "ビジネス";
}
#pagination a:nth-child(8)::before {
  content: "お問い合わせ";
}
#pagination a.active {
  width: 24px;
  height: auto;
  padding: 12px 0;
  background-color: #000000;
  color: #ffffff;
}
#pagination a.active::before {
  display: block;
}
#pagination a:hover {
  opacity: 0.75;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#pagination .line {
  width: 1px;
  height: 30px;
  background-color: #000000;
}
@media (max-width: 991.98px) {
  #pagination {
    display: none;
  }
}

#spmenu-wrapper {
  display: none;
}
@media (max-width: 991.98px) {
  #spmenu-wrapper {
    position: fixed;
    z-index: 9999997;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 5.8666666667vw 5.3333333333vw;
  }
  #spmenu-wrapper .button {
    width: 100%;
  }
  #spmenu-wrapper .button .menu-btn {
    width: 5.0666666667vw;
    height: 3.0666666667vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/button-nav-bk.png");
  }
  #spmenu-wrapper .menu-container {
    height: 0;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
    overflow: hidden;
    color: #ffffff;
  }
  #spmenu-wrapper .menu-container ul {
    text-align: center;
  }
  #spmenu-wrapper .menu-container ul li {
    font-size: 15px;
    margin-bottom: 1em;
  }
  #spmenu-wrapper .menu-container ul li a {
    font-weight: bold;
  }
  #spmenu-wrapper.menu-open {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
  }
  #spmenu-wrapper.menu-open .button {
    padding-bottom: 12.6666666667vw;
  }
  #spmenu-wrapper.menu-open .button .menu-btn {
    background-image: url("../images/button-nav-close.png");
  }
  #spmenu-wrapper.menu-open .menu-container {
    height: auto;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
  }
}

body.home .fullPageScroll {
  width: 100%;
  height: 100vh;
}
@media (min-width: 992px) {
  body.home .fullPageScroll {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  body.home .fullPageScroll {
    overflow-x: hidden;
  }
}
body.home section {
  position: relative;
  min-height: 100vh;
}
@media (min-width: 992px) {
  body.home section {
    scroll-snap-align: start;
    overflow: hidden;
  }
}
body.home section .container,
body.home section .container-fluid {
  min-height: 100%;
}
body.home #mainimage {
  position: relative;
  background: #1e98ce;
  z-index: 9999999;
}
body.home #mainimage .anime-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home #mainimage .anime-container .bg {
  width: 100%;
  height: 100%;
  background: bottom center/cover url("../images/home-mainimage-pc.jpg") no-repeat;
}
@media (max-width: 991.98px) {
  body.home #mainimage .anime-container .bg {
    background: center/cover url("../images/home-mainimage-sp.jpg") no-repeat;
  }
}
body.home #mainimage .anime-container .splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #1e98ce, #ffffff);
  -webkit-animation: gradientFade 0.4s linear 0.4s forwards;
          animation: gradientFade 0.4s linear 0.4s forwards;
  -webkit-mask-position: 0 100vh;
          mask-position: 0 100vh;
  -webkit-mask-image: linear-gradient(-45deg, #000, #000 66.6666666667%, transparent 77.7777777778%);
          mask-image: linear-gradient(-45deg, #000, #000 66.6666666667%, transparent 77.7777777778%);
  -webkit-mask-size: 100vw 350vw;
          mask-size: 100vw 350vw;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
body.home #mainimage .container {
  position: relative;
  min-height: 100vh;
  padding: 5vw 0;
}
@media (max-width: 991.98px) {
  body.home #mainimage .container {
    padding: 9.3333333333vw 0;
  }
}
body.home #mainimage .text {
  position: absolute;
  bottom: 70px;
  left: 0;
}
@media (max-width: 991.98px) {
  body.home #mainimage .text {
    top: 50%;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 63.3333333333vw;
  }
}
body.home #mainimage .text h1 {
  width: 33.9285714286vw;
  margin-bottom: 3.5714285714vw;
}
@media (max-width: 991.98px) {
  body.home #mainimage .text h1 {
    width: 63.3333333333vw;
    margin-bottom: 3.2vw;
  }
}
body.home #mainimage .text h2 {
  font-size: clamp(0.8125rem, 0.4988rem + 1.2871vw, 1.625rem);
}
body.home #mainimage .logo {
  position: absolute;
  bottom: 10.2142857143vw;
  right: 4.2857142857vw;
  width: 15.4285714286vw;
  max-width: 216px;
}
@media (max-width: 991.98px) {
  body.home #mainimage .logo {
    top: 74.6428571429vh;
    bottom: auto;
    right: auto;
    left: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  body.home #mainimage .logo img {
    width: 41.0666666667vw;
    max-width: 308px;
  }
}
body.home #mainimage .blog {
  position: absolute;
  bottom: 5.7142857143vw;
  right: 4.2857142857vw;
  width: 4.8571428571vw;
  max-width: 68px;
}
@media (max-width: 991.98px) {
  body.home #mainimage .blog {
    top: 4vw;
    right: 4vw;
    width: 13.6vw;
    max-width: 102px;
    max-width: 102px;
    bottom: auto;
  }
}
body.home #mainimage .down {
  display: none;
}
@media (max-width: 991.98px) {
  body.home #mainimage .down {
    display: block;
    position: absolute;
    top: 83.0714285714vh;
    left: 0;
    width: 100%;
  }
  body.home #mainimage .down img {
    height: 20vw;
  }
}
body.home .fixed-content {
  visibility: hidden;
}
body.home .fixed-content.view {
  visibility: visible;
}
body.home .fixed-content .logo {
  position: fixed;
  top: 5vw;
  right: 9.2857142857vw;
  width: 11vw;
  max-width: 154px;
  z-index: 9999998;
}
@media (max-width: 991.98px) {
  body.home .fixed-content .logo {
    top: 6.1333333333vw;
    right: 21.3333333333vw;
    width: 24.6666666667vw;
    max-width: 175px;
  }
}
body.home .fixed-content .blog {
  position: fixed;
  top: 4.7142857143vw;
  right: 3.5714285714vw;
  width: 4.8571428571vw;
  max-width: 68px;
  z-index: 9999998;
}
@media (max-width: 991.98px) {
  body.home .fixed-content .blog {
    top: 4.5333333333vw;
    right: 4vw;
    width: 13.6vw;
    max-width: 102px;
  }
}
body.home .fixed-content .contact {
  position: fixed;
  right: 2.1428571429vw;
  bottom: 2.1428571429vw;
  z-index: 9999998;
}
@media (max-width: 991.98px) {
  body.home .fixed-content .contact {
    right: 2vw;
    bottom: 2vw;
  }
}
body.home .fixed-content .contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 12.8571428571vw;
  max-width: 180px;
  height: 12.8571428571vw;
  max-height: 180px;
  border-radius: 50%;
  background-color: #1e98ce;
  color: #ffffff;
  text-align: center;
}
body.home .fixed-content .contact a:hover, body.home .fixed-content .contact a:focus {
  text-decoration: none;
}
body.home .fixed-content .contact a p {
  width: 100%;
}
body.home .fixed-content .contact a .title {
  font-size: clamp(0.75rem, 0.4604rem + 1.1881vw, 1.5rem);
}
body.home .fixed-content .contact a .text {
  font-size: clamp(0.625rem, 0.5767rem + 0.198vw, 0.75rem);
}
@media (max-width: 991.98px) {
  body.home .fixed-content .contact a {
    width: 33.6vw;
    height: 33.6vw;
  }
}
body.home #concept {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #eeeeee;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
body.home #concept .anime-container {
  width: 100%;
  padding-top: 8.1818181818vh;
  padding-bottom: 10vh;
}
body.home #concept .container {
  position: relative;
  min-height: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 991.98px) {
  body.home #concept .container {
    padding-bottom: 13.3333333333vw;
  }
}
body.home #concept .container .text-content {
  position: relative;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  body.home #concept .container .text-content {
    position: static;
  }
}
body.home #concept .container .text-content h2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 34.2857142857vw;
}
@media (max-width: 991.98px) {
  body.home #concept .container .text-content h2 {
    width: 64vw;
    margin: 0 auto 3.4666666667vw;
  }
}
body.home #concept .container .text-content h3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  font-size: clamp(0.8125rem, 0.4988rem + 1.2871vw, 1.625rem);
}
@media (max-width: 991.98px) {
  body.home #concept .container .text-content h3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 59.6vw;
    margin: 0 auto 6.6666666667vw;
  }
}
body.home #concept .container .text-content .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: calc(100% - 34.2857142857vw - 3.5714285714vw);
  margin-left: 3.5714285714vw;
  font-size: clamp(0.75rem, 0.7017rem + 0.198vw, 0.875rem);
}
@media (max-width: 991.98px) {
  body.home #concept .container .text-content .text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: 0;
  }
}
body.home #profile .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  body.home #profile .container {
    display: block;
    padding-top: 30.9333333333vw;
    padding-bottom: 9.3333333333vw;
  }
}
body.home #profile .container .image {
  width: 35.7142857143vw;
  max-width: 500px;
  margin-left: -60px;
}
@media (max-width: 991.98px) {
  body.home #profile .container .image {
    width: 69.3333333333vw;
    max-width: inherit;
    margin: 0 auto 4.4vw;
  }
}
body.home #profile .container .text-content {
  max-width: 460px;
  margin-left: 60px;
}
@media (max-width: 991.98px) {
  body.home #profile .container .text-content {
    width: 100%;
    max-width: inherit;
    margin-left: 0;
  }
}
body.home #profile .container .text-content h2 {
  font-size: clamp(1.875rem, 1.151rem + 2.9703vw, 3.75rem);
}
body.home #profile .container .text-content .text1 {
  font-size: clamp(0.8125rem, 0.4988rem + 1.2871vw, 1.625rem);
  margin-bottom: 3.5714285714vw;
}
@media (max-width: 991.98px) {
  body.home #profile .container .text-content .text1 {
    margin-bottom: 2.6666666667vw;
  }
}
body.home #profile .container .text-content .text2 {
  font-size: clamp(0.75rem, 0.6052rem + 0.5941vw, 1.125rem);
  margin-bottom: 2.8571428571vw;
}
@media (max-width: 991.98px) {
  body.home #profile .container .text-content .text2 {
    margin-bottom: 4vw;
  }
}
body.home #profile .container .text-content .text3,
body.home #profile .container .text-content .text4 {
  font-size: clamp(0.75rem, 0.7017rem + 0.198vw, 0.875rem);
}
body.home #profile .container .text-content .text3 {
  margin-bottom: 2.8571428571vw;
}
@media (max-width: 991.98px) {
  body.home #profile .container .text-content .text3 {
    margin-bottom: 2.6666666667vw;
  }
}
body.home #business {
  position: relative;
  color: #ffffff;
}
body.home #business .anime-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home #business .anime-container .bg {
  width: 100%;
  height: 100%;
  background: center/cover url("../images/home-business-bg-pc.jpg") no-repeat;
}
@media (max-width: 991.98px) {
  body.home #business .anime-container .bg {
    background: center/cover url("../images/home-business-bg-sp.jpg") no-repeat;
  }
}
body.home #business .container {
  position: relative;
  min-height: 100vh;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
@media (max-width: 991.98px) {
  body.home #business .container {
    padding: 32vw 20vw 13.3333333333vw;
  }
}
body.home #business .container .text-content {
  position: absolute;
  bottom: 5vw;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content {
    position: static;
    display: block;
  }
}
body.home #business .container .text-content h2 {
  width: 34.2857142857vw;
  margin-bottom: 3.5714285714vw;
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content h2 {
    width: 64vw;
    margin: 0 auto 4.8vw;
  }
}
body.home #business .container .text-content h3 {
  font-size: clamp(0.8125rem, 0.4988rem + 1.2871vw, 1.625rem);
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content h3 {
    margin-bottom: 5.3333333333vw;
  }
}
body.home #business .container .text-content .text {
  width: calc(100% - 34.2857142857vw - 3.5714285714vw);
  margin-left: 3.5714285714vw;
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content .text {
    margin-left: 0;
    width: 100%;
  }
}
body.home #business .container .text-content .text .title {
  font-size: clamp(1.125rem, 0.9802rem + 0.5941vw, 1.5rem);
}
body.home #business .container .text-content .text .list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content .text .list-content {
    display: block;
  }
}
body.home #business .container .text-content .text .list-content .list {
  white-space: nowrap;
}
body.home #business .container .text-content .text .list-content .list span {
  font-size: clamp(1.125rem, 1.0526rem + 0.297vw, 1.3125rem);
}
body.home #business .container .text-content .text .list-content .list2 {
  margin-left: 3.5714285714vw;
}
@media (max-width: 991.98px) {
  body.home #business .container .text-content .text .list-content .list2 {
    margin-top: 1rem;
    margin-left: 0;
  }
}
body.home #contact {
  background-color: #1e98ce;
  color: #ffffff;
}
body.home #contact .container {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 6.4285714286vw;
  padding-bottom: 1.4285714286vw;
}
@media (max-width: 991.98px) {
  body.home #contact .container {
    padding-top: 28.9333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
body.home #contact .container h2 {
  font-size: clamp(1.875rem, 1.151rem + 2.9703vw, 3.75rem);
  margin-bottom: 2.8571428571vw;
}
@media (max-width: 991.98px) {
  body.home #contact .container h2 {
    margin-bottom: 4vw;
  }
}
body.home #contact .container h3 {
  font-size: clamp(1.125rem, 0.9802rem + 0.5941vw, 1.5rem);
  margin-bottom: 2.1428571429vw;
}
@media (max-width: 991.98px) {
  body.home #contact .container h3 {
    margin-bottom: 2.6666666667vw;
  }
}
body.home #contact .container .text-content {
  width: 43.5714285714vw;
  max-width: 470px;
}
body.home #contact .container .text-content .text1 {
  font-size: clamp(0.75rem, 0.7017rem + 0.198vw, 0.875rem);
}
body.home #contact .container .text-content .text2 {
  font-size: clamp(1.5rem, 1.2104rem + 1.1881vw, 2.25rem);
}
body.home #contact .container .text-content .text3 {
  font-size: clamp(1.25rem, 1.0087rem + 0.9901vw, 1.875rem);
}
@media (max-width: 991.98px) {
  body.home #contact .container .text-content {
    width: 100%;
    max-width: inherit;
    margin-bottom: 4vw;
  }
}
body.home #contact .container .form-content {
  width: 25.7142857143vw;
  max-width: 100%;
  margin-bottom: 7.1428571429vw;
  margin-left: 5vw;
}
@media (max-width: 991.98px) {
  body.home #contact .container .form-content {
    width: 100%;
    max-width: 72vw;
    margin: 0 auto;
    margin-bottom: 12.2666666667vw;
  }
}
body.home #contact .container .form-content input,
body.home #contact .container .form-content textarea {
  margin-top: 10px;
  /* margin-bottom: 22px; */
  padding: 0.5rem;
  border-radius: 6px;
  color: #262626;
  border: none;
}
/*add 250212 stt*/
body.home #contact .container .form-content p {
  margin-bottom: 1rem;
}
/*add 250212 end*/
body.home #contact .container .form-content label {
  font-size: 14px;
}
body.home #contact .container .form-content label .req {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 33px;
  min-height: 19px;
  font-size: 10px;
  background-color: #a40000;
  border-radius: 4px;
}
body.home #contact .container .form-content .confirm_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 300px;
  min-height: 70px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #002e72;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
}
body.home #contact .container .form-content .confirm_button:disabled {
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  body.home #contact .container .form-content .confirm_button {
    font-size: 11px;
    max-width: 60vw;
    min-height: 14vw;
  }
}
body.home #contact .container .form-content .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.home #contact .container .form-content .button-wrapper input{
  text-align: center;
}
body.home #contact .container .form-content .button-wrapper .back_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  min-height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #262626;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  body.home #contact .container .form-content .button-wrapper .back_button {
    font-size: 11px;
    max-width: 100%;
    min-height: 14vw;
  }
}
body.home #contact .container .form-content .button-wrapper input[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  min-height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #002e72;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  border: none;
}
@media (max-width: 991.98px) {
  body.home #contact .container .form-content .button-wrapper input[type=submit] {
    font-size: 11px;
    max-width: 100%;
    min-height: 14vw;
  }
}
body.home #contact .container .footer {
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: calc(100% + 30px);
  margin-right: -30px;
}
@media (max-width: 991.98px) {
  body.home #contact .container .footer {
    width: 100%;
    margin-right: 0;
  }
}
body.home #contact .container .footer .footer-logo {
  margin-bottom: 0.7142857143vw;
  font-size: clamp(0.625rem, 0.5285rem + 0.396vw, 0.875rem);
}
@media (max-width: 991.98px) {
  body.home #contact .container .footer .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  body.home #contact .container .footer .footer-logo img {
    width: 124px;
  }
}
body.home #contact .container .footer .zip {
  font-size: clamp(0.5625rem, 0.4418rem + 0.495vw, 0.875rem);
}
body.home #contact .container .footer .copyright {
  font-size: clamp(0.5625rem, 0.4901rem + 0.297vw, 0.75rem);
}
body.home .screen-reader-response,
body.home #page_top {
  display: none;
}

.title-01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 200px;
  min-height: 50px;
  padding: 5px 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.125rem !important;
  line-height: 1;
  border-radius: 25px;
}
@media (max-width: 767.98px) {
  .title-01 {
    font-size: 0.9375rem !important;
  }
}

.container {
  width: calc(100% - 120px);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }
}

.container-fluid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.frame-wrapper__video, .frame-wrapper__calendar, .frame-wrapper__map2, .frame-wrapper__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.frame-wrapper__video iframe, .frame-wrapper__calendar iframe, .frame-wrapper__map2 iframe, .frame-wrapper__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.frame-wrapper__map {
  padding-bottom: 97.4358974359%;
}
@media (min-width: 992px) {
  .frame-wrapper__map {
    padding-bottom: 20.3125%;
  }
}

.frame-wrapper__map2 {
  padding-bottom: 97.4358974359%;
}
@media (min-width: 992px) {
  .frame-wrapper__map2 {
    padding-bottom: 30.2325581395%;
  }
}

.frame-wrapper__calendar {
  padding-bottom: 66.6666666667%;
}

.noscroll {
  overflow: hidden;
}